diff options
Diffstat (limited to 'vendor/golang.org/x/net')
322 files changed, 0 insertions, 71126 deletions
diff --git a/vendor/golang.org/x/net/LICENSE b/vendor/golang.org/x/net/LICENSE deleted file mode 100644 index 2a7cf70da..000000000 --- a/vendor/golang.org/x/net/LICENSE +++ /dev/null @@ -1,27 +0,0 @@ -Copyright 2009 The Go Authors. - -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are -met: - -   * Redistributions of source code must retain the above copyright -notice, this list of conditions and the following disclaimer. -   * Redistributions in binary form must reproduce the above -copyright notice, this list of conditions and the following disclaimer -in the documentation and/or other materials provided with the -distribution. -   * Neither the name of Google LLC nor the names of its -contributors may be used to endorse or promote products derived from -this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/vendor/golang.org/x/net/PATENTS b/vendor/golang.org/x/net/PATENTS deleted file mode 100644 index 733099041..000000000 --- a/vendor/golang.org/x/net/PATENTS +++ /dev/null @@ -1,22 +0,0 @@ -Additional IP Rights Grant (Patents) - -"This implementation" means the copyrightable works distributed by -Google as part of the Go project. - -Google hereby grants to You a perpetual, worldwide, non-exclusive, -no-charge, royalty-free, irrevocable (except as stated in this section) -patent license to make, have made, use, offer to sell, sell, import, -transfer and otherwise run, modify and propagate the contents of this -implementation of Go, where such license applies only to those patent -claims, both currently owned or controlled by Google and acquired in -the future, licensable by Google that are necessarily infringed by this -implementation of Go.  This grant does not include claims that would be -infringed only as a consequence of further modification of this -implementation.  If you or your agent or exclusive licensee institute or -order or agree to the institution of patent litigation against any -entity (including a cross-claim or counterclaim in a lawsuit) alleging -that this implementation of Go or any code incorporated within this -implementation of Go constitutes direct or contributory patent -infringement, or inducement of patent infringement, then any patent -rights granted to you under this License for this implementation of Go -shall terminate as of the date such litigation is filed. diff --git a/vendor/golang.org/x/net/bpf/asm.go b/vendor/golang.org/x/net/bpf/asm.go deleted file mode 100644 index 15e21b181..000000000 --- a/vendor/golang.org/x/net/bpf/asm.go +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2016 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. - -package bpf - -import "fmt" - -// Assemble converts insts into raw instructions suitable for loading -// into a BPF virtual machine. -// -// Currently, no optimization is attempted, the assembled program flow -// is exactly as provided. -func Assemble(insts []Instruction) ([]RawInstruction, error) { -	ret := make([]RawInstruction, len(insts)) -	var err error -	for i, inst := range insts { -		ret[i], err = inst.Assemble() -		if err != nil { -			return nil, fmt.Errorf("assembling instruction %d: %s", i+1, err) -		} -	} -	return ret, nil -} - -// Disassemble attempts to parse raw back into -// Instructions. Unrecognized RawInstructions are assumed to be an -// extension not implemented by this package, and are passed through -// unchanged to the output. The allDecoded value reports whether insts -// contains no RawInstructions. -func Disassemble(raw []RawInstruction) (insts []Instruction, allDecoded bool) { -	insts = make([]Instruction, len(raw)) -	allDecoded = true -	for i, r := range raw { -		insts[i] = r.Disassemble() -		if _, ok := insts[i].(RawInstruction); ok { -			allDecoded = false -		} -	} -	return insts, allDecoded -} diff --git a/vendor/golang.org/x/net/bpf/constants.go b/vendor/golang.org/x/net/bpf/constants.go deleted file mode 100644 index 12f3ee835..000000000 --- a/vendor/golang.org/x/net/bpf/constants.go +++ /dev/null @@ -1,222 +0,0 @@ -// Copyright 2016 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. - -package bpf - -// A Register is a register of the BPF virtual machine. -type Register uint16 - -const ( -	// RegA is the accumulator register. RegA is always the -	// destination register of ALU operations. -	RegA Register = iota -	// RegX is the indirection register, used by LoadIndirect -	// operations. -	RegX -) - -// An ALUOp is an arithmetic or logic operation. -type ALUOp uint16 - -// ALU binary operation types. -const ( -	ALUOpAdd ALUOp = iota << 4 -	ALUOpSub -	ALUOpMul -	ALUOpDiv -	ALUOpOr -	ALUOpAnd -	ALUOpShiftLeft -	ALUOpShiftRight -	aluOpNeg // Not exported because it's the only unary ALU operation, and gets its own instruction type. -	ALUOpMod -	ALUOpXor -) - -// A JumpTest is a comparison operator used in conditional jumps. -type JumpTest uint16 - -// Supported operators for conditional jumps. -// K can be RegX for JumpIfX -const ( -	// K == A -	JumpEqual JumpTest = iota -	// K != A -	JumpNotEqual -	// K > A -	JumpGreaterThan -	// K < A -	JumpLessThan -	// K >= A -	JumpGreaterOrEqual -	// K <= A -	JumpLessOrEqual -	// K & A != 0 -	JumpBitsSet -	// K & A == 0 -	JumpBitsNotSet -) - -// An Extension is a function call provided by the kernel that -// performs advanced operations that are expensive or impossible -// within the BPF virtual machine. -// -// Extensions are only implemented by the Linux kernel. -// -// TODO: should we prune this list? Some of these extensions seem -// either broken or near-impossible to use correctly, whereas other -// (len, random, ifindex) are quite useful. -type Extension int - -// Extension functions available in the Linux kernel. -const ( -	// extOffset is the negative maximum number of instructions used -	// to load instructions by overloading the K argument. -	extOffset = -0x1000 -	// ExtLen returns the length of the packet. -	ExtLen Extension = 1 -	// ExtProto returns the packet's L3 protocol type. -	ExtProto Extension = 0 -	// ExtType returns the packet's type (skb->pkt_type in the kernel) -	// -	// TODO: better documentation. How nice an API do we want to -	// provide for these esoteric extensions? -	ExtType Extension = 4 -	// ExtPayloadOffset returns the offset of the packet payload, or -	// the first protocol header that the kernel does not know how to -	// parse. -	ExtPayloadOffset Extension = 52 -	// ExtInterfaceIndex returns the index of the interface on which -	// the packet was received. -	ExtInterfaceIndex Extension = 8 -	// ExtNetlinkAttr returns the netlink attribute of type X at -	// offset A. -	ExtNetlinkAttr Extension = 12 -	// ExtNetlinkAttrNested returns the nested netlink attribute of -	// type X at offset A. -	ExtNetlinkAttrNested Extension = 16 -	// ExtMark returns the packet's mark value. -	ExtMark Extension = 20 -	// ExtQueue returns the packet's assigned hardware queue. -	ExtQueue Extension = 24 -	// ExtLinkLayerType returns the packet's hardware address type -	// (e.g. Ethernet, Infiniband). -	ExtLinkLayerType Extension = 28 -	// ExtRXHash returns the packets receive hash. -	// -	// TODO: figure out what this rxhash actually is. -	ExtRXHash Extension = 32 -	// ExtCPUID returns the ID of the CPU processing the current -	// packet. -	ExtCPUID Extension = 36 -	// ExtVLANTag returns the packet's VLAN tag. -	ExtVLANTag Extension = 44 -	// ExtVLANTagPresent returns non-zero if the packet has a VLAN -	// tag. -	// -	// TODO: I think this might be a lie: it reads bit 0x1000 of the -	// VLAN header, which changed meaning in recent revisions of the -	// spec - this extension may now return meaningless information. -	ExtVLANTagPresent Extension = 48 -	// ExtVLANProto returns 0x8100 if the frame has a VLAN header, -	// 0x88a8 if the frame has a "Q-in-Q" double VLAN header, or some -	// other value if no VLAN information is present. -	ExtVLANProto Extension = 60 -	// ExtRand returns a uniformly random uint32. -	ExtRand Extension = 56 -) - -// The following gives names to various bit patterns used in opcode construction. - -const ( -	opMaskCls uint16 = 0x7 -	// opClsLoad masks -	opMaskLoadDest  = 0x01 -	opMaskLoadWidth = 0x18 -	opMaskLoadMode  = 0xe0 -	// opClsALU & opClsJump -	opMaskOperand  = 0x08 -	opMaskOperator = 0xf0 -) - -const ( -	// +---------------+-----------------+---+---+---+ -	// | AddrMode (3b) | LoadWidth (2b)  | 0 | 0 | 0 | -	// +---------------+-----------------+---+---+---+ -	opClsLoadA uint16 = iota -	// +---------------+-----------------+---+---+---+ -	// | AddrMode (3b) | LoadWidth (2b)  | 0 | 0 | 1 | -	// +---------------+-----------------+---+---+---+ -	opClsLoadX -	// +---+---+---+---+---+---+---+---+ -	// | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | -	// +---+---+---+---+---+---+---+---+ -	opClsStoreA -	// +---+---+---+---+---+---+---+---+ -	// | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | -	// +---+---+---+---+---+---+---+---+ -	opClsStoreX -	// +---------------+-----------------+---+---+---+ -	// | Operator (4b) | OperandSrc (1b) | 1 | 0 | 0 | -	// +---------------+-----------------+---+---+---+ -	opClsALU -	// +-----------------------------+---+---+---+---+ -	// |      TestOperator (4b)      | 0 | 1 | 0 | 1 | -	// +-----------------------------+---+---+---+---+ -	opClsJump -	// +---+-------------------------+---+---+---+---+ -	// | 0 | 0 | 0 |   RetSrc (1b)   | 0 | 1 | 1 | 0 | -	// +---+-------------------------+---+---+---+---+ -	opClsReturn -	// +---+-------------------------+---+---+---+---+ -	// | 0 | 0 | 0 |  TXAorTAX (1b)  | 0 | 1 | 1 | 1 | -	// +---+-------------------------+---+---+---+---+ -	opClsMisc -) - -const ( -	opAddrModeImmediate uint16 = iota << 5 -	opAddrModeAbsolute -	opAddrModeIndirect -	opAddrModeScratch -	opAddrModePacketLen // actually an extension, not an addressing mode. -	opAddrModeMemShift -) - -const ( -	opLoadWidth4 uint16 = iota << 3 -	opLoadWidth2 -	opLoadWidth1 -) - -// Operand for ALU and Jump instructions -type opOperand uint16 - -// Supported operand sources. -const ( -	opOperandConstant opOperand = iota << 3 -	opOperandX -) - -// An jumpOp is a conditional jump condition. -type jumpOp uint16 - -// Supported jump conditions. -const ( -	opJumpAlways jumpOp = iota << 4 -	opJumpEqual -	opJumpGT -	opJumpGE -	opJumpSet -) - -const ( -	opRetSrcConstant uint16 = iota << 4 -	opRetSrcA -) - -const ( -	opMiscTAX = 0x00 -	opMiscTXA = 0x80 -) diff --git a/vendor/golang.org/x/net/bpf/doc.go b/vendor/golang.org/x/net/bpf/doc.go deleted file mode 100644 index 04ec1c8ab..000000000 --- a/vendor/golang.org/x/net/bpf/doc.go +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright 2016 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. - -/* -Package bpf implements marshaling and unmarshaling of programs for the -Berkeley Packet Filter virtual machine, and provides a Go implementation -of the virtual machine. - -BPF's main use is to specify a packet filter for network taps, so that -the kernel doesn't have to expensively copy every packet it sees to -userspace. However, it's been repurposed to other areas where running -user code in-kernel is needed. For example, Linux's seccomp uses BPF -to apply security policies to system calls. For simplicity, this -documentation refers only to packets, but other uses of BPF have their -own data payloads. - -BPF programs run in a restricted virtual machine. It has almost no -access to kernel functions, and while conditional branches are -allowed, they can only jump forwards, to guarantee that there are no -infinite loops. - -# The virtual machine - -The BPF VM is an accumulator machine. Its main register, called -register A, is an implicit source and destination in all arithmetic -and logic operations. The machine also has 16 scratch registers for -temporary storage, and an indirection register (register X) for -indirect memory access. All registers are 32 bits wide. - -Each run of a BPF program is given one packet, which is placed in the -VM's read-only "main memory". LoadAbsolute and LoadIndirect -instructions can fetch up to 32 bits at a time into register A for -examination. - -The goal of a BPF program is to produce and return a verdict (uint32), -which tells the kernel what to do with the packet. In the context of -packet filtering, the returned value is the number of bytes of the -packet to forward to userspace, or 0 to ignore the packet. Other -contexts like seccomp define their own return values. - -In order to simplify programs, attempts to read past the end of the -packet terminate the program execution with a verdict of 0 (ignore -packet). This means that the vast majority of BPF programs don't need -to do any explicit bounds checking. - -In addition to the bytes of the packet, some BPF programs have access -to extensions, which are essentially calls to kernel utility -functions. Currently, the only extensions supported by this package -are the Linux packet filter extensions. - -# Examples - -This packet filter selects all ARP packets. - -	bpf.Assemble([]bpf.Instruction{ -		// Load "EtherType" field from the ethernet header. -		bpf.LoadAbsolute{Off: 12, Size: 2}, -		// Skip over the next instruction if EtherType is not ARP. -		bpf.JumpIf{Cond: bpf.JumpNotEqual, Val: 0x0806, SkipTrue: 1}, -		// Verdict is "send up to 4k of the packet to userspace." -		bpf.RetConstant{Val: 4096}, -		// Verdict is "ignore packet." -		bpf.RetConstant{Val: 0}, -	}) - -This packet filter captures a random 1% sample of traffic. - -	bpf.Assemble([]bpf.Instruction{ -		// Get a 32-bit random number from the Linux kernel. -		bpf.LoadExtension{Num: bpf.ExtRand}, -		// 1% dice roll? -		bpf.JumpIf{Cond: bpf.JumpLessThan, Val: 2^32/100, SkipFalse: 1}, -		// Capture. -		bpf.RetConstant{Val: 4096}, -		// Ignore. -		bpf.RetConstant{Val: 0}, -	}) -*/ -package bpf // import "golang.org/x/net/bpf" diff --git a/vendor/golang.org/x/net/bpf/instructions.go b/vendor/golang.org/x/net/bpf/instructions.go deleted file mode 100644 index 3cffcaa01..000000000 --- a/vendor/golang.org/x/net/bpf/instructions.go +++ /dev/null @@ -1,726 +0,0 @@ -// Copyright 2016 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. - -package bpf - -import "fmt" - -// An Instruction is one instruction executed by the BPF virtual -// machine. -type Instruction interface { -	// Assemble assembles the Instruction into a RawInstruction. -	Assemble() (RawInstruction, error) -} - -// A RawInstruction is a raw BPF virtual machine instruction. -type RawInstruction struct { -	// Operation to execute. -	Op uint16 -	// For conditional jump instructions, the number of instructions -	// to skip if the condition is true/false. -	Jt uint8 -	Jf uint8 -	// Constant parameter. The meaning depends on the Op. -	K uint32 -} - -// Assemble implements the Instruction Assemble method. -func (ri RawInstruction) Assemble() (RawInstruction, error) { return ri, nil } - -// Disassemble parses ri into an Instruction and returns it. If ri is -// not recognized by this package, ri itself is returned. -func (ri RawInstruction) Disassemble() Instruction { -	switch ri.Op & opMaskCls { -	case opClsLoadA, opClsLoadX: -		reg := Register(ri.Op & opMaskLoadDest) -		sz := 0 -		switch ri.Op & opMaskLoadWidth { -		case opLoadWidth4: -			sz = 4 -		case opLoadWidth2: -			sz = 2 -		case opLoadWidth1: -			sz = 1 -		default: -			return ri -		} -		switch ri.Op & opMaskLoadMode { -		case opAddrModeImmediate: -			if sz != 4 { -				return ri -			} -			return LoadConstant{Dst: reg, Val: ri.K} -		case opAddrModeScratch: -			if sz != 4 || ri.K > 15 { -				return ri -			} -			return LoadScratch{Dst: reg, N: int(ri.K)} -		case opAddrModeAbsolute: -			if ri.K > extOffset+0xffffffff { -				return LoadExtension{Num: Extension(-extOffset + ri.K)} -			} -			return LoadAbsolute{Size: sz, Off: ri.K} -		case opAddrModeIndirect: -			return LoadIndirect{Size: sz, Off: ri.K} -		case opAddrModePacketLen: -			if sz != 4 { -				return ri -			} -			return LoadExtension{Num: ExtLen} -		case opAddrModeMemShift: -			return LoadMemShift{Off: ri.K} -		default: -			return ri -		} - -	case opClsStoreA: -		if ri.Op != opClsStoreA || ri.K > 15 { -			return ri -		} -		return StoreScratch{Src: RegA, N: int(ri.K)} - -	case opClsStoreX: -		if ri.Op != opClsStoreX || ri.K > 15 { -			return ri -		} -		return StoreScratch{Src: RegX, N: int(ri.K)} - -	case opClsALU: -		switch op := ALUOp(ri.Op & opMaskOperator); op { -		case ALUOpAdd, ALUOpSub, ALUOpMul, ALUOpDiv, ALUOpOr, ALUOpAnd, ALUOpShiftLeft, ALUOpShiftRight, ALUOpMod, ALUOpXor: -			switch operand := opOperand(ri.Op & opMaskOperand); operand { -			case opOperandX: -				return ALUOpX{Op: op} -			case opOperandConstant: -				return ALUOpConstant{Op: op, Val: ri.K} -			default: -				return ri -			} -		case aluOpNeg: -			return NegateA{} -		default: -			return ri -		} - -	case opClsJump: -		switch op := jumpOp(ri.Op & opMaskOperator); op { -		case opJumpAlways: -			return Jump{Skip: ri.K} -		case opJumpEqual, opJumpGT, opJumpGE, opJumpSet: -			cond, skipTrue, skipFalse := jumpOpToTest(op, ri.Jt, ri.Jf) -			switch operand := opOperand(ri.Op & opMaskOperand); operand { -			case opOperandX: -				return JumpIfX{Cond: cond, SkipTrue: skipTrue, SkipFalse: skipFalse} -			case opOperandConstant: -				return JumpIf{Cond: cond, Val: ri.K, SkipTrue: skipTrue, SkipFalse: skipFalse} -			default: -				return ri -			} -		default: -			return ri -		} - -	case opClsReturn: -		switch ri.Op { -		case opClsReturn | opRetSrcA: -			return RetA{} -		case opClsReturn | opRetSrcConstant: -			return RetConstant{Val: ri.K} -		default: -			return ri -		} - -	case opClsMisc: -		switch ri.Op { -		case opClsMisc | opMiscTAX: -			return TAX{} -		case opClsMisc | opMiscTXA: -			return TXA{} -		default: -			return ri -		} - -	default: -		panic("unreachable") // switch is exhaustive on the bit pattern -	} -} - -func jumpOpToTest(op jumpOp, skipTrue uint8, skipFalse uint8) (JumpTest, uint8, uint8) { -	var test JumpTest - -	// Decode "fake" jump conditions that don't appear in machine code -	// Ensures the Assemble -> Disassemble stage recreates the same instructions -	// See https://github.com/golang/go/issues/18470 -	if skipTrue == 0 { -		switch op { -		case opJumpEqual: -			test = JumpNotEqual -		case opJumpGT: -			test = JumpLessOrEqual -		case opJumpGE: -			test = JumpLessThan -		case opJumpSet: -			test = JumpBitsNotSet -		} - -		return test, skipFalse, 0 -	} - -	switch op { -	case opJumpEqual: -		test = JumpEqual -	case opJumpGT: -		test = JumpGreaterThan -	case opJumpGE: -		test = JumpGreaterOrEqual -	case opJumpSet: -		test = JumpBitsSet -	} - -	return test, skipTrue, skipFalse -} - -// LoadConstant loads Val into register Dst. -type LoadConstant struct { -	Dst Register -	Val uint32 -} - -// Assemble implements the Instruction Assemble method. -func (a LoadConstant) Assemble() (RawInstruction, error) { -	return assembleLoad(a.Dst, 4, opAddrModeImmediate, a.Val) -} - -// String returns the instruction in assembler notation. -func (a LoadConstant) String() string { -	switch a.Dst { -	case RegA: -		return fmt.Sprintf("ld #%d", a.Val) -	case RegX: -		return fmt.Sprintf("ldx #%d", a.Val) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// LoadScratch loads scratch[N] into register Dst. -type LoadScratch struct { -	Dst Register -	N   int // 0-15 -} - -// Assemble implements the Instruction Assemble method. -func (a LoadScratch) Assemble() (RawInstruction, error) { -	if a.N < 0 || a.N > 15 { -		return RawInstruction{}, fmt.Errorf("invalid scratch slot %d", a.N) -	} -	return assembleLoad(a.Dst, 4, opAddrModeScratch, uint32(a.N)) -} - -// String returns the instruction in assembler notation. -func (a LoadScratch) String() string { -	switch a.Dst { -	case RegA: -		return fmt.Sprintf("ld M[%d]", a.N) -	case RegX: -		return fmt.Sprintf("ldx M[%d]", a.N) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// LoadAbsolute loads packet[Off:Off+Size] as an integer value into -// register A. -type LoadAbsolute struct { -	Off  uint32 -	Size int // 1, 2 or 4 -} - -// Assemble implements the Instruction Assemble method. -func (a LoadAbsolute) Assemble() (RawInstruction, error) { -	return assembleLoad(RegA, a.Size, opAddrModeAbsolute, a.Off) -} - -// String returns the instruction in assembler notation. -func (a LoadAbsolute) String() string { -	switch a.Size { -	case 1: // byte -		return fmt.Sprintf("ldb [%d]", a.Off) -	case 2: // half word -		return fmt.Sprintf("ldh [%d]", a.Off) -	case 4: // word -		if a.Off > extOffset+0xffffffff { -			return LoadExtension{Num: Extension(a.Off + 0x1000)}.String() -		} -		return fmt.Sprintf("ld [%d]", a.Off) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// LoadIndirect loads packet[X+Off:X+Off+Size] as an integer value -// into register A. -type LoadIndirect struct { -	Off  uint32 -	Size int // 1, 2 or 4 -} - -// Assemble implements the Instruction Assemble method. -func (a LoadIndirect) Assemble() (RawInstruction, error) { -	return assembleLoad(RegA, a.Size, opAddrModeIndirect, a.Off) -} - -// String returns the instruction in assembler notation. -func (a LoadIndirect) String() string { -	switch a.Size { -	case 1: // byte -		return fmt.Sprintf("ldb [x + %d]", a.Off) -	case 2: // half word -		return fmt.Sprintf("ldh [x + %d]", a.Off) -	case 4: // word -		return fmt.Sprintf("ld [x + %d]", a.Off) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// LoadMemShift multiplies the first 4 bits of the byte at packet[Off] -// by 4 and stores the result in register X. -// -// This instruction is mainly useful to load into X the length of an -// IPv4 packet header in a single instruction, rather than have to do -// the arithmetic on the header's first byte by hand. -type LoadMemShift struct { -	Off uint32 -} - -// Assemble implements the Instruction Assemble method. -func (a LoadMemShift) Assemble() (RawInstruction, error) { -	return assembleLoad(RegX, 1, opAddrModeMemShift, a.Off) -} - -// String returns the instruction in assembler notation. -func (a LoadMemShift) String() string { -	return fmt.Sprintf("ldx 4*([%d]&0xf)", a.Off) -} - -// LoadExtension invokes a linux-specific extension and stores the -// result in register A. -type LoadExtension struct { -	Num Extension -} - -// Assemble implements the Instruction Assemble method. -func (a LoadExtension) Assemble() (RawInstruction, error) { -	if a.Num == ExtLen { -		return assembleLoad(RegA, 4, opAddrModePacketLen, 0) -	} -	return assembleLoad(RegA, 4, opAddrModeAbsolute, uint32(extOffset+a.Num)) -} - -// String returns the instruction in assembler notation. -func (a LoadExtension) String() string { -	switch a.Num { -	case ExtLen: -		return "ld #len" -	case ExtProto: -		return "ld #proto" -	case ExtType: -		return "ld #type" -	case ExtPayloadOffset: -		return "ld #poff" -	case ExtInterfaceIndex: -		return "ld #ifidx" -	case ExtNetlinkAttr: -		return "ld #nla" -	case ExtNetlinkAttrNested: -		return "ld #nlan" -	case ExtMark: -		return "ld #mark" -	case ExtQueue: -		return "ld #queue" -	case ExtLinkLayerType: -		return "ld #hatype" -	case ExtRXHash: -		return "ld #rxhash" -	case ExtCPUID: -		return "ld #cpu" -	case ExtVLANTag: -		return "ld #vlan_tci" -	case ExtVLANTagPresent: -		return "ld #vlan_avail" -	case ExtVLANProto: -		return "ld #vlan_tpid" -	case ExtRand: -		return "ld #rand" -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// StoreScratch stores register Src into scratch[N]. -type StoreScratch struct { -	Src Register -	N   int // 0-15 -} - -// Assemble implements the Instruction Assemble method. -func (a StoreScratch) Assemble() (RawInstruction, error) { -	if a.N < 0 || a.N > 15 { -		return RawInstruction{}, fmt.Errorf("invalid scratch slot %d", a.N) -	} -	var op uint16 -	switch a.Src { -	case RegA: -		op = opClsStoreA -	case RegX: -		op = opClsStoreX -	default: -		return RawInstruction{}, fmt.Errorf("invalid source register %v", a.Src) -	} - -	return RawInstruction{ -		Op: op, -		K:  uint32(a.N), -	}, nil -} - -// String returns the instruction in assembler notation. -func (a StoreScratch) String() string { -	switch a.Src { -	case RegA: -		return fmt.Sprintf("st M[%d]", a.N) -	case RegX: -		return fmt.Sprintf("stx M[%d]", a.N) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// ALUOpConstant executes A = A <Op> Val. -type ALUOpConstant struct { -	Op  ALUOp -	Val uint32 -} - -// Assemble implements the Instruction Assemble method. -func (a ALUOpConstant) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsALU | uint16(opOperandConstant) | uint16(a.Op), -		K:  a.Val, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a ALUOpConstant) String() string { -	switch a.Op { -	case ALUOpAdd: -		return fmt.Sprintf("add #%d", a.Val) -	case ALUOpSub: -		return fmt.Sprintf("sub #%d", a.Val) -	case ALUOpMul: -		return fmt.Sprintf("mul #%d", a.Val) -	case ALUOpDiv: -		return fmt.Sprintf("div #%d", a.Val) -	case ALUOpMod: -		return fmt.Sprintf("mod #%d", a.Val) -	case ALUOpAnd: -		return fmt.Sprintf("and #%d", a.Val) -	case ALUOpOr: -		return fmt.Sprintf("or #%d", a.Val) -	case ALUOpXor: -		return fmt.Sprintf("xor #%d", a.Val) -	case ALUOpShiftLeft: -		return fmt.Sprintf("lsh #%d", a.Val) -	case ALUOpShiftRight: -		return fmt.Sprintf("rsh #%d", a.Val) -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// ALUOpX executes A = A <Op> X -type ALUOpX struct { -	Op ALUOp -} - -// Assemble implements the Instruction Assemble method. -func (a ALUOpX) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsALU | uint16(opOperandX) | uint16(a.Op), -	}, nil -} - -// String returns the instruction in assembler notation. -func (a ALUOpX) String() string { -	switch a.Op { -	case ALUOpAdd: -		return "add x" -	case ALUOpSub: -		return "sub x" -	case ALUOpMul: -		return "mul x" -	case ALUOpDiv: -		return "div x" -	case ALUOpMod: -		return "mod x" -	case ALUOpAnd: -		return "and x" -	case ALUOpOr: -		return "or x" -	case ALUOpXor: -		return "xor x" -	case ALUOpShiftLeft: -		return "lsh x" -	case ALUOpShiftRight: -		return "rsh x" -	default: -		return fmt.Sprintf("unknown instruction: %#v", a) -	} -} - -// NegateA executes A = -A. -type NegateA struct{} - -// Assemble implements the Instruction Assemble method. -func (a NegateA) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsALU | uint16(aluOpNeg), -	}, nil -} - -// String returns the instruction in assembler notation. -func (a NegateA) String() string { -	return fmt.Sprintf("neg") -} - -// Jump skips the following Skip instructions in the program. -type Jump struct { -	Skip uint32 -} - -// Assemble implements the Instruction Assemble method. -func (a Jump) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsJump | uint16(opJumpAlways), -		K:  a.Skip, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a Jump) String() string { -	return fmt.Sprintf("ja %d", a.Skip) -} - -// JumpIf skips the following Skip instructions in the program if A -// <Cond> Val is true. -type JumpIf struct { -	Cond      JumpTest -	Val       uint32 -	SkipTrue  uint8 -	SkipFalse uint8 -} - -// Assemble implements the Instruction Assemble method. -func (a JumpIf) Assemble() (RawInstruction, error) { -	return jumpToRaw(a.Cond, opOperandConstant, a.Val, a.SkipTrue, a.SkipFalse) -} - -// String returns the instruction in assembler notation. -func (a JumpIf) String() string { -	return jumpToString(a.Cond, fmt.Sprintf("#%d", a.Val), a.SkipTrue, a.SkipFalse) -} - -// JumpIfX skips the following Skip instructions in the program if A -// <Cond> X is true. -type JumpIfX struct { -	Cond      JumpTest -	SkipTrue  uint8 -	SkipFalse uint8 -} - -// Assemble implements the Instruction Assemble method. -func (a JumpIfX) Assemble() (RawInstruction, error) { -	return jumpToRaw(a.Cond, opOperandX, 0, a.SkipTrue, a.SkipFalse) -} - -// String returns the instruction in assembler notation. -func (a JumpIfX) String() string { -	return jumpToString(a.Cond, "x", a.SkipTrue, a.SkipFalse) -} - -// jumpToRaw assembles a jump instruction into a RawInstruction -func jumpToRaw(test JumpTest, operand opOperand, k uint32, skipTrue, skipFalse uint8) (RawInstruction, error) { -	var ( -		cond jumpOp -		flip bool -	) -	switch test { -	case JumpEqual: -		cond = opJumpEqual -	case JumpNotEqual: -		cond, flip = opJumpEqual, true -	case JumpGreaterThan: -		cond = opJumpGT -	case JumpLessThan: -		cond, flip = opJumpGE, true -	case JumpGreaterOrEqual: -		cond = opJumpGE -	case JumpLessOrEqual: -		cond, flip = opJumpGT, true -	case JumpBitsSet: -		cond = opJumpSet -	case JumpBitsNotSet: -		cond, flip = opJumpSet, true -	default: -		return RawInstruction{}, fmt.Errorf("unknown JumpTest %v", test) -	} -	jt, jf := skipTrue, skipFalse -	if flip { -		jt, jf = jf, jt -	} -	return RawInstruction{ -		Op: opClsJump | uint16(cond) | uint16(operand), -		Jt: jt, -		Jf: jf, -		K:  k, -	}, nil -} - -// jumpToString converts a jump instruction to assembler notation -func jumpToString(cond JumpTest, operand string, skipTrue, skipFalse uint8) string { -	switch cond { -	// K == A -	case JumpEqual: -		return conditionalJump(operand, skipTrue, skipFalse, "jeq", "jneq") -	// K != A -	case JumpNotEqual: -		return fmt.Sprintf("jneq %s,%d", operand, skipTrue) -	// K > A -	case JumpGreaterThan: -		return conditionalJump(operand, skipTrue, skipFalse, "jgt", "jle") -	// K < A -	case JumpLessThan: -		return fmt.Sprintf("jlt %s,%d", operand, skipTrue) -	// K >= A -	case JumpGreaterOrEqual: -		return conditionalJump(operand, skipTrue, skipFalse, "jge", "jlt") -	// K <= A -	case JumpLessOrEqual: -		return fmt.Sprintf("jle %s,%d", operand, skipTrue) -	// K & A != 0 -	case JumpBitsSet: -		if skipFalse > 0 { -			return fmt.Sprintf("jset %s,%d,%d", operand, skipTrue, skipFalse) -		} -		return fmt.Sprintf("jset %s,%d", operand, skipTrue) -	// K & A == 0, there is no assembler instruction for JumpBitNotSet, use JumpBitSet and invert skips -	case JumpBitsNotSet: -		return jumpToString(JumpBitsSet, operand, skipFalse, skipTrue) -	default: -		return fmt.Sprintf("unknown JumpTest %#v", cond) -	} -} - -func conditionalJump(operand string, skipTrue, skipFalse uint8, positiveJump, negativeJump string) string { -	if skipTrue > 0 { -		if skipFalse > 0 { -			return fmt.Sprintf("%s %s,%d,%d", positiveJump, operand, skipTrue, skipFalse) -		} -		return fmt.Sprintf("%s %s,%d", positiveJump, operand, skipTrue) -	} -	return fmt.Sprintf("%s %s,%d", negativeJump, operand, skipFalse) -} - -// RetA exits the BPF program, returning the value of register A. -type RetA struct{} - -// Assemble implements the Instruction Assemble method. -func (a RetA) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsReturn | opRetSrcA, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a RetA) String() string { -	return fmt.Sprintf("ret a") -} - -// RetConstant exits the BPF program, returning a constant value. -type RetConstant struct { -	Val uint32 -} - -// Assemble implements the Instruction Assemble method. -func (a RetConstant) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsReturn | opRetSrcConstant, -		K:  a.Val, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a RetConstant) String() string { -	return fmt.Sprintf("ret #%d", a.Val) -} - -// TXA copies the value of register X to register A. -type TXA struct{} - -// Assemble implements the Instruction Assemble method. -func (a TXA) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsMisc | opMiscTXA, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a TXA) String() string { -	return fmt.Sprintf("txa") -} - -// TAX copies the value of register A to register X. -type TAX struct{} - -// Assemble implements the Instruction Assemble method. -func (a TAX) Assemble() (RawInstruction, error) { -	return RawInstruction{ -		Op: opClsMisc | opMiscTAX, -	}, nil -} - -// String returns the instruction in assembler notation. -func (a TAX) String() string { -	return fmt.Sprintf("tax") -} - -func assembleLoad(dst Register, loadSize int, mode uint16, k uint32) (RawInstruction, error) { -	var ( -		cls uint16 -		sz  uint16 -	) -	switch dst { -	case RegA: -		cls = opClsLoadA -	case RegX: -		cls = opClsLoadX -	default: -		return RawInstruction{}, fmt.Errorf("invalid target register %v", dst) -	} -	switch loadSize { -	case 1: -		sz = opLoadWidth1 -	case 2: -		sz = opLoadWidth2 -	case 4: -		sz = opLoadWidth4 -	default: -		return RawInstruction{}, fmt.Errorf("invalid load byte length %d", sz) -	} -	return RawInstruction{ -		Op: cls | sz | mode, -		K:  k, -	}, nil -} diff --git a/vendor/golang.org/x/net/bpf/setter.go b/vendor/golang.org/x/net/bpf/setter.go deleted file mode 100644 index 43e35f0ac..000000000 --- a/vendor/golang.org/x/net/bpf/setter.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package bpf - -// A Setter is a type which can attach a compiled BPF filter to itself. -type Setter interface { -	SetBPF(filter []RawInstruction) error -} diff --git a/vendor/golang.org/x/net/bpf/vm.go b/vendor/golang.org/x/net/bpf/vm.go deleted file mode 100644 index 73f57f1f7..000000000 --- a/vendor/golang.org/x/net/bpf/vm.go +++ /dev/null @@ -1,150 +0,0 @@ -// Copyright 2016 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. - -package bpf - -import ( -	"errors" -	"fmt" -) - -// A VM is an emulated BPF virtual machine. -type VM struct { -	filter []Instruction -} - -// NewVM returns a new VM using the input BPF program. -func NewVM(filter []Instruction) (*VM, error) { -	if len(filter) == 0 { -		return nil, errors.New("one or more Instructions must be specified") -	} - -	for i, ins := range filter { -		check := len(filter) - (i + 1) -		switch ins := ins.(type) { -		// Check for out-of-bounds jumps in instructions -		case Jump: -			if check <= int(ins.Skip) { -				return nil, fmt.Errorf("cannot jump %d instructions; jumping past program bounds", ins.Skip) -			} -		case JumpIf: -			if check <= int(ins.SkipTrue) { -				return nil, fmt.Errorf("cannot jump %d instructions in true case; jumping past program bounds", ins.SkipTrue) -			} -			if check <= int(ins.SkipFalse) { -				return nil, fmt.Errorf("cannot jump %d instructions in false case; jumping past program bounds", ins.SkipFalse) -			} -		case JumpIfX: -			if check <= int(ins.SkipTrue) { -				return nil, fmt.Errorf("cannot jump %d instructions in true case; jumping past program bounds", ins.SkipTrue) -			} -			if check <= int(ins.SkipFalse) { -				return nil, fmt.Errorf("cannot jump %d instructions in false case; jumping past program bounds", ins.SkipFalse) -			} -		// Check for division or modulus by zero -		case ALUOpConstant: -			if ins.Val != 0 { -				break -			} - -			switch ins.Op { -			case ALUOpDiv, ALUOpMod: -				return nil, errors.New("cannot divide by zero using ALUOpConstant") -			} -		// Check for unknown extensions -		case LoadExtension: -			switch ins.Num { -			case ExtLen: -			default: -				return nil, fmt.Errorf("extension %d not implemented", ins.Num) -			} -		} -	} - -	// Make sure last instruction is a return instruction -	switch filter[len(filter)-1].(type) { -	case RetA, RetConstant: -	default: -		return nil, errors.New("BPF program must end with RetA or RetConstant") -	} - -	// Though our VM works using disassembled instructions, we -	// attempt to assemble the input filter anyway to ensure it is compatible -	// with an operating system VM. -	_, err := Assemble(filter) - -	return &VM{ -		filter: filter, -	}, err -} - -// Run runs the VM's BPF program against the input bytes. -// Run returns the number of bytes accepted by the BPF program, and any errors -// which occurred while processing the program. -func (v *VM) Run(in []byte) (int, error) { -	var ( -		// Registers of the virtual machine -		regA       uint32 -		regX       uint32 -		regScratch [16]uint32 - -		// OK is true if the program should continue processing the next -		// instruction, or false if not, causing the loop to break -		ok = true -	) - -	// TODO(mdlayher): implement: -	// - NegateA: -	//   - would require a change from uint32 registers to int32 -	//     registers - -	// TODO(mdlayher): add interop tests that check signedness of ALU -	// operations against kernel implementation, and make sure Go -	// implementation matches behavior - -	for i := 0; i < len(v.filter) && ok; i++ { -		ins := v.filter[i] - -		switch ins := ins.(type) { -		case ALUOpConstant: -			regA = aluOpConstant(ins, regA) -		case ALUOpX: -			regA, ok = aluOpX(ins, regA, regX) -		case Jump: -			i += int(ins.Skip) -		case JumpIf: -			jump := jumpIf(ins, regA) -			i += jump -		case JumpIfX: -			jump := jumpIfX(ins, regA, regX) -			i += jump -		case LoadAbsolute: -			regA, ok = loadAbsolute(ins, in) -		case LoadConstant: -			regA, regX = loadConstant(ins, regA, regX) -		case LoadExtension: -			regA = loadExtension(ins, in) -		case LoadIndirect: -			regA, ok = loadIndirect(ins, in, regX) -		case LoadMemShift: -			regX, ok = loadMemShift(ins, in) -		case LoadScratch: -			regA, regX = loadScratch(ins, regScratch, regA, regX) -		case RetA: -			return int(regA), nil -		case RetConstant: -			return int(ins.Val), nil -		case StoreScratch: -			regScratch = storeScratch(ins, regScratch, regA, regX) -		case TAX: -			regX = regA -		case TXA: -			regA = regX -		default: -			return 0, fmt.Errorf("unknown Instruction at index %d: %T", i, ins) -		} -	} - -	return 0, nil -} diff --git a/vendor/golang.org/x/net/bpf/vm_instructions.go b/vendor/golang.org/x/net/bpf/vm_instructions.go deleted file mode 100644 index 0aa307c06..000000000 --- a/vendor/golang.org/x/net/bpf/vm_instructions.go +++ /dev/null @@ -1,182 +0,0 @@ -// Copyright 2016 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. - -package bpf - -import ( -	"encoding/binary" -	"fmt" -) - -func aluOpConstant(ins ALUOpConstant, regA uint32) uint32 { -	return aluOpCommon(ins.Op, regA, ins.Val) -} - -func aluOpX(ins ALUOpX, regA uint32, regX uint32) (uint32, bool) { -	// Guard against division or modulus by zero by terminating -	// the program, as the OS BPF VM does -	if regX == 0 { -		switch ins.Op { -		case ALUOpDiv, ALUOpMod: -			return 0, false -		} -	} - -	return aluOpCommon(ins.Op, regA, regX), true -} - -func aluOpCommon(op ALUOp, regA uint32, value uint32) uint32 { -	switch op { -	case ALUOpAdd: -		return regA + value -	case ALUOpSub: -		return regA - value -	case ALUOpMul: -		return regA * value -	case ALUOpDiv: -		// Division by zero not permitted by NewVM and aluOpX checks -		return regA / value -	case ALUOpOr: -		return regA | value -	case ALUOpAnd: -		return regA & value -	case ALUOpShiftLeft: -		return regA << value -	case ALUOpShiftRight: -		return regA >> value -	case ALUOpMod: -		// Modulus by zero not permitted by NewVM and aluOpX checks -		return regA % value -	case ALUOpXor: -		return regA ^ value -	default: -		return regA -	} -} - -func jumpIf(ins JumpIf, regA uint32) int { -	return jumpIfCommon(ins.Cond, ins.SkipTrue, ins.SkipFalse, regA, ins.Val) -} - -func jumpIfX(ins JumpIfX, regA uint32, regX uint32) int { -	return jumpIfCommon(ins.Cond, ins.SkipTrue, ins.SkipFalse, regA, regX) -} - -func jumpIfCommon(cond JumpTest, skipTrue, skipFalse uint8, regA uint32, value uint32) int { -	var ok bool - -	switch cond { -	case JumpEqual: -		ok = regA == value -	case JumpNotEqual: -		ok = regA != value -	case JumpGreaterThan: -		ok = regA > value -	case JumpLessThan: -		ok = regA < value -	case JumpGreaterOrEqual: -		ok = regA >= value -	case JumpLessOrEqual: -		ok = regA <= value -	case JumpBitsSet: -		ok = (regA & value) != 0 -	case JumpBitsNotSet: -		ok = (regA & value) == 0 -	} - -	if ok { -		return int(skipTrue) -	} - -	return int(skipFalse) -} - -func loadAbsolute(ins LoadAbsolute, in []byte) (uint32, bool) { -	offset := int(ins.Off) -	size := ins.Size - -	return loadCommon(in, offset, size) -} - -func loadConstant(ins LoadConstant, regA uint32, regX uint32) (uint32, uint32) { -	switch ins.Dst { -	case RegA: -		regA = ins.Val -	case RegX: -		regX = ins.Val -	} - -	return regA, regX -} - -func loadExtension(ins LoadExtension, in []byte) uint32 { -	switch ins.Num { -	case ExtLen: -		return uint32(len(in)) -	default: -		panic(fmt.Sprintf("unimplemented extension: %d", ins.Num)) -	} -} - -func loadIndirect(ins LoadIndirect, in []byte, regX uint32) (uint32, bool) { -	offset := int(ins.Off) + int(regX) -	size := ins.Size - -	return loadCommon(in, offset, size) -} - -func loadMemShift(ins LoadMemShift, in []byte) (uint32, bool) { -	offset := int(ins.Off) - -	// Size of LoadMemShift is always 1 byte -	if !inBounds(len(in), offset, 1) { -		return 0, false -	} - -	// Mask off high 4 bits and multiply low 4 bits by 4 -	return uint32(in[offset]&0x0f) * 4, true -} - -func inBounds(inLen int, offset int, size int) bool { -	return offset+size <= inLen -} - -func loadCommon(in []byte, offset int, size int) (uint32, bool) { -	if !inBounds(len(in), offset, size) { -		return 0, false -	} - -	switch size { -	case 1: -		return uint32(in[offset]), true -	case 2: -		return uint32(binary.BigEndian.Uint16(in[offset : offset+size])), true -	case 4: -		return uint32(binary.BigEndian.Uint32(in[offset : offset+size])), true -	default: -		panic(fmt.Sprintf("invalid load size: %d", size)) -	} -} - -func loadScratch(ins LoadScratch, regScratch [16]uint32, regA uint32, regX uint32) (uint32, uint32) { -	switch ins.Dst { -	case RegA: -		regA = regScratch[ins.N] -	case RegX: -		regX = regScratch[ins.N] -	} - -	return regA, regX -} - -func storeScratch(ins StoreScratch, regScratch [16]uint32, regA uint32, regX uint32) [16]uint32 { -	switch ins.Src { -	case RegA: -		regScratch[ins.N] = regA -	case RegX: -		regScratch[ins.N] = regX -	} - -	return regScratch -} diff --git a/vendor/golang.org/x/net/context/context.go b/vendor/golang.org/x/net/context/context.go deleted file mode 100644 index cf66309c4..000000000 --- a/vendor/golang.org/x/net/context/context.go +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2014 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. - -// Package context defines the Context type, which carries deadlines, -// cancelation signals, and other request-scoped values across API boundaries -// and between processes. -// As of Go 1.7 this package is available in the standard library under the -// name context.  https://golang.org/pkg/context. -// -// Incoming requests to a server should create a Context, and outgoing calls to -// servers should accept a Context. The chain of function calls between must -// propagate the Context, optionally replacing it with a modified copy created -// using WithDeadline, WithTimeout, WithCancel, or WithValue. -// -// Programs that use Contexts should follow these rules to keep interfaces -// consistent across packages and enable static analysis tools to check context -// propagation: -// -// Do not store Contexts inside a struct type; instead, pass a Context -// explicitly to each function that needs it. The Context should be the first -// parameter, typically named ctx: -// -//	func DoSomething(ctx context.Context, arg Arg) error { -//		// ... use ctx ... -//	} -// -// Do not pass a nil Context, even if a function permits it. Pass context.TODO -// if you are unsure about which Context to use. -// -// Use context Values only for request-scoped data that transits processes and -// APIs, not for passing optional parameters to functions. -// -// The same Context may be passed to functions running in different goroutines; -// Contexts are safe for simultaneous use by multiple goroutines. -// -// See http://blog.golang.org/context for example code for a server that uses -// Contexts. -package context // import "golang.org/x/net/context" - -// Background returns a non-nil, empty Context. It is never canceled, has no -// values, and has no deadline. It is typically used by the main function, -// initialization, and tests, and as the top-level Context for incoming -// requests. -func Background() Context { -	return background -} - -// TODO returns a non-nil, empty Context. Code should use context.TODO when -// it's unclear which Context to use or it is not yet available (because the -// surrounding function has not yet been extended to accept a Context -// parameter).  TODO is recognized by static analysis tools that determine -// whether Contexts are propagated correctly in a program. -func TODO() Context { -	return todo -} diff --git a/vendor/golang.org/x/net/context/go17.go b/vendor/golang.org/x/net/context/go17.go deleted file mode 100644 index 0c1b86793..000000000 --- a/vendor/golang.org/x/net/context/go17.go +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright 2016 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 go1.7 - -package context - -import ( -	"context" // standard library's context, as of Go 1.7 -	"time" -) - -var ( -	todo       = context.TODO() -	background = context.Background() -) - -// Canceled is the error returned by Context.Err when the context is canceled. -var Canceled = context.Canceled - -// DeadlineExceeded is the error returned by Context.Err when the context's -// deadline passes. -var DeadlineExceeded = context.DeadlineExceeded - -// WithCancel returns a copy of parent with a new Done channel. The returned -// context's Done channel is closed when the returned cancel function is called -// or when the parent context's Done channel is closed, whichever happens first. -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete. -func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { -	ctx, f := context.WithCancel(parent) -	return ctx, f -} - -// WithDeadline returns a copy of the parent context with the deadline adjusted -// to be no later than d. If the parent's deadline is already earlier than d, -// WithDeadline(parent, d) is semantically equivalent to parent. The returned -// context's Done channel is closed when the deadline expires, when the returned -// cancel function is called, or when the parent context's Done channel is -// closed, whichever happens first. -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete. -func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) { -	ctx, f := context.WithDeadline(parent, deadline) -	return ctx, f -} - -// WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)). -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete: -// -//	func slowOperationWithTimeout(ctx context.Context) (Result, error) { -//		ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond) -//		defer cancel()  // releases resources if slowOperation completes before timeout elapses -//		return slowOperation(ctx) -//	} -func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) { -	return WithDeadline(parent, time.Now().Add(timeout)) -} - -// WithValue returns a copy of parent in which the value associated with key is -// val. -// -// Use context Values only for request-scoped data that transits processes and -// APIs, not for passing optional parameters to functions. -func WithValue(parent Context, key interface{}, val interface{}) Context { -	return context.WithValue(parent, key, val) -} diff --git a/vendor/golang.org/x/net/context/go19.go b/vendor/golang.org/x/net/context/go19.go deleted file mode 100644 index e31e35a90..000000000 --- a/vendor/golang.org/x/net/context/go19.go +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2017 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 go1.9 - -package context - -import "context" // standard library's context, as of Go 1.7 - -// A Context carries a deadline, a cancelation signal, and other values across -// API boundaries. -// -// Context's methods may be called by multiple goroutines simultaneously. -type Context = context.Context - -// A CancelFunc tells an operation to abandon its work. -// A CancelFunc does not wait for the work to stop. -// After the first call, subsequent calls to a CancelFunc do nothing. -type CancelFunc = context.CancelFunc diff --git a/vendor/golang.org/x/net/context/pre_go17.go b/vendor/golang.org/x/net/context/pre_go17.go deleted file mode 100644 index 065ff3dfa..000000000 --- a/vendor/golang.org/x/net/context/pre_go17.go +++ /dev/null @@ -1,300 +0,0 @@ -// Copyright 2014 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 !go1.7 - -package context - -import ( -	"errors" -	"fmt" -	"sync" -	"time" -) - -// An emptyCtx is never canceled, has no values, and has no deadline. It is not -// struct{}, since vars of this type must have distinct addresses. -type emptyCtx int - -func (*emptyCtx) Deadline() (deadline time.Time, ok bool) { -	return -} - -func (*emptyCtx) Done() <-chan struct{} { -	return nil -} - -func (*emptyCtx) Err() error { -	return nil -} - -func (*emptyCtx) Value(key interface{}) interface{} { -	return nil -} - -func (e *emptyCtx) String() string { -	switch e { -	case background: -		return "context.Background" -	case todo: -		return "context.TODO" -	} -	return "unknown empty Context" -} - -var ( -	background = new(emptyCtx) -	todo       = new(emptyCtx) -) - -// Canceled is the error returned by Context.Err when the context is canceled. -var Canceled = errors.New("context canceled") - -// DeadlineExceeded is the error returned by Context.Err when the context's -// deadline passes. -var DeadlineExceeded = errors.New("context deadline exceeded") - -// WithCancel returns a copy of parent with a new Done channel. The returned -// context's Done channel is closed when the returned cancel function is called -// or when the parent context's Done channel is closed, whichever happens first. -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete. -func WithCancel(parent Context) (ctx Context, cancel CancelFunc) { -	c := newCancelCtx(parent) -	propagateCancel(parent, c) -	return c, func() { c.cancel(true, Canceled) } -} - -// newCancelCtx returns an initialized cancelCtx. -func newCancelCtx(parent Context) *cancelCtx { -	return &cancelCtx{ -		Context: parent, -		done:    make(chan struct{}), -	} -} - -// propagateCancel arranges for child to be canceled when parent is. -func propagateCancel(parent Context, child canceler) { -	if parent.Done() == nil { -		return // parent is never canceled -	} -	if p, ok := parentCancelCtx(parent); ok { -		p.mu.Lock() -		if p.err != nil { -			// parent has already been canceled -			child.cancel(false, p.err) -		} else { -			if p.children == nil { -				p.children = make(map[canceler]bool) -			} -			p.children[child] = true -		} -		p.mu.Unlock() -	} else { -		go func() { -			select { -			case <-parent.Done(): -				child.cancel(false, parent.Err()) -			case <-child.Done(): -			} -		}() -	} -} - -// parentCancelCtx follows a chain of parent references until it finds a -// *cancelCtx. This function understands how each of the concrete types in this -// package represents its parent. -func parentCancelCtx(parent Context) (*cancelCtx, bool) { -	for { -		switch c := parent.(type) { -		case *cancelCtx: -			return c, true -		case *timerCtx: -			return c.cancelCtx, true -		case *valueCtx: -			parent = c.Context -		default: -			return nil, false -		} -	} -} - -// removeChild removes a context from its parent. -func removeChild(parent Context, child canceler) { -	p, ok := parentCancelCtx(parent) -	if !ok { -		return -	} -	p.mu.Lock() -	if p.children != nil { -		delete(p.children, child) -	} -	p.mu.Unlock() -} - -// A canceler is a context type that can be canceled directly. The -// implementations are *cancelCtx and *timerCtx. -type canceler interface { -	cancel(removeFromParent bool, err error) -	Done() <-chan struct{} -} - -// A cancelCtx can be canceled. When canceled, it also cancels any children -// that implement canceler. -type cancelCtx struct { -	Context - -	done chan struct{} // closed by the first cancel call. - -	mu       sync.Mutex -	children map[canceler]bool // set to nil by the first cancel call -	err      error             // set to non-nil by the first cancel call -} - -func (c *cancelCtx) Done() <-chan struct{} { -	return c.done -} - -func (c *cancelCtx) Err() error { -	c.mu.Lock() -	defer c.mu.Unlock() -	return c.err -} - -func (c *cancelCtx) String() string { -	return fmt.Sprintf("%v.WithCancel", c.Context) -} - -// cancel closes c.done, cancels each of c's children, and, if -// removeFromParent is true, removes c from its parent's children. -func (c *cancelCtx) cancel(removeFromParent bool, err error) { -	if err == nil { -		panic("context: internal error: missing cancel error") -	} -	c.mu.Lock() -	if c.err != nil { -		c.mu.Unlock() -		return // already canceled -	} -	c.err = err -	close(c.done) -	for child := range c.children { -		// NOTE: acquiring the child's lock while holding parent's lock. -		child.cancel(false, err) -	} -	c.children = nil -	c.mu.Unlock() - -	if removeFromParent { -		removeChild(c.Context, c) -	} -} - -// WithDeadline returns a copy of the parent context with the deadline adjusted -// to be no later than d. If the parent's deadline is already earlier than d, -// WithDeadline(parent, d) is semantically equivalent to parent. The returned -// context's Done channel is closed when the deadline expires, when the returned -// cancel function is called, or when the parent context's Done channel is -// closed, whichever happens first. -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete. -func WithDeadline(parent Context, deadline time.Time) (Context, CancelFunc) { -	if cur, ok := parent.Deadline(); ok && cur.Before(deadline) { -		// The current deadline is already sooner than the new one. -		return WithCancel(parent) -	} -	c := &timerCtx{ -		cancelCtx: newCancelCtx(parent), -		deadline:  deadline, -	} -	propagateCancel(parent, c) -	d := deadline.Sub(time.Now()) -	if d <= 0 { -		c.cancel(true, DeadlineExceeded) // deadline has already passed -		return c, func() { c.cancel(true, Canceled) } -	} -	c.mu.Lock() -	defer c.mu.Unlock() -	if c.err == nil { -		c.timer = time.AfterFunc(d, func() { -			c.cancel(true, DeadlineExceeded) -		}) -	} -	return c, func() { c.cancel(true, Canceled) } -} - -// A timerCtx carries a timer and a deadline. It embeds a cancelCtx to -// implement Done and Err. It implements cancel by stopping its timer then -// delegating to cancelCtx.cancel. -type timerCtx struct { -	*cancelCtx -	timer *time.Timer // Under cancelCtx.mu. - -	deadline time.Time -} - -func (c *timerCtx) Deadline() (deadline time.Time, ok bool) { -	return c.deadline, true -} - -func (c *timerCtx) String() string { -	return fmt.Sprintf("%v.WithDeadline(%s [%s])", c.cancelCtx.Context, c.deadline, c.deadline.Sub(time.Now())) -} - -func (c *timerCtx) cancel(removeFromParent bool, err error) { -	c.cancelCtx.cancel(false, err) -	if removeFromParent { -		// Remove this timerCtx from its parent cancelCtx's children. -		removeChild(c.cancelCtx.Context, c) -	} -	c.mu.Lock() -	if c.timer != nil { -		c.timer.Stop() -		c.timer = nil -	} -	c.mu.Unlock() -} - -// WithTimeout returns WithDeadline(parent, time.Now().Add(timeout)). -// -// Canceling this context releases resources associated with it, so code should -// call cancel as soon as the operations running in this Context complete: -// -//	func slowOperationWithTimeout(ctx context.Context) (Result, error) { -//		ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond) -//		defer cancel()  // releases resources if slowOperation completes before timeout elapses -//		return slowOperation(ctx) -//	} -func WithTimeout(parent Context, timeout time.Duration) (Context, CancelFunc) { -	return WithDeadline(parent, time.Now().Add(timeout)) -} - -// WithValue returns a copy of parent in which the value associated with key is -// val. -// -// Use context Values only for request-scoped data that transits processes and -// APIs, not for passing optional parameters to functions. -func WithValue(parent Context, key interface{}, val interface{}) Context { -	return &valueCtx{parent, key, val} -} - -// A valueCtx carries a key-value pair. It implements Value for that key and -// delegates all other calls to the embedded Context. -type valueCtx struct { -	Context -	key, val interface{} -} - -func (c *valueCtx) String() string { -	return fmt.Sprintf("%v.WithValue(%#v, %#v)", c.Context, c.key, c.val) -} - -func (c *valueCtx) Value(key interface{}) interface{} { -	if c.key == key { -		return c.val -	} -	return c.Context.Value(key) -} diff --git a/vendor/golang.org/x/net/context/pre_go19.go b/vendor/golang.org/x/net/context/pre_go19.go deleted file mode 100644 index ec5a63803..000000000 --- a/vendor/golang.org/x/net/context/pre_go19.go +++ /dev/null @@ -1,109 +0,0 @@ -// Copyright 2014 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 !go1.9 - -package context - -import "time" - -// A Context carries a deadline, a cancelation signal, and other values across -// API boundaries. -// -// Context's methods may be called by multiple goroutines simultaneously. -type Context interface { -	// Deadline returns the time when work done on behalf of this context -	// should be canceled. Deadline returns ok==false when no deadline is -	// set. Successive calls to Deadline return the same results. -	Deadline() (deadline time.Time, ok bool) - -	// Done returns a channel that's closed when work done on behalf of this -	// context should be canceled. Done may return nil if this context can -	// never be canceled. Successive calls to Done return the same value. -	// -	// WithCancel arranges for Done to be closed when cancel is called; -	// WithDeadline arranges for Done to be closed when the deadline -	// expires; WithTimeout arranges for Done to be closed when the timeout -	// elapses. -	// -	// Done is provided for use in select statements: -	// -	//  // Stream generates values with DoSomething and sends them to out -	//  // until DoSomething returns an error or ctx.Done is closed. -	//  func Stream(ctx context.Context, out chan<- Value) error { -	//  	for { -	//  		v, err := DoSomething(ctx) -	//  		if err != nil { -	//  			return err -	//  		} -	//  		select { -	//  		case <-ctx.Done(): -	//  			return ctx.Err() -	//  		case out <- v: -	//  		} -	//  	} -	//  } -	// -	// See http://blog.golang.org/pipelines for more examples of how to use -	// a Done channel for cancelation. -	Done() <-chan struct{} - -	// Err returns a non-nil error value after Done is closed. Err returns -	// Canceled if the context was canceled or DeadlineExceeded if the -	// context's deadline passed. No other values for Err are defined. -	// After Done is closed, successive calls to Err return the same value. -	Err() error - -	// Value returns the value associated with this context for key, or nil -	// if no value is associated with key. Successive calls to Value with -	// the same key returns the same result. -	// -	// Use context values only for request-scoped data that transits -	// processes and API boundaries, not for passing optional parameters to -	// functions. -	// -	// A key identifies a specific value in a Context. Functions that wish -	// to store values in Context typically allocate a key in a global -	// variable then use that key as the argument to context.WithValue and -	// Context.Value. A key can be any type that supports equality; -	// packages should define keys as an unexported type to avoid -	// collisions. -	// -	// Packages that define a Context key should provide type-safe accessors -	// for the values stores using that key: -	// -	// 	// Package user defines a User type that's stored in Contexts. -	// 	package user -	// -	// 	import "golang.org/x/net/context" -	// -	// 	// User is the type of value stored in the Contexts. -	// 	type User struct {...} -	// -	// 	// key is an unexported type for keys defined in this package. -	// 	// This prevents collisions with keys defined in other packages. -	// 	type key int -	// -	// 	// userKey is the key for user.User values in Contexts. It is -	// 	// unexported; clients use user.NewContext and user.FromContext -	// 	// instead of using this key directly. -	// 	var userKey key = 0 -	// -	// 	// NewContext returns a new Context that carries value u. -	// 	func NewContext(ctx context.Context, u *User) context.Context { -	// 		return context.WithValue(ctx, userKey, u) -	// 	} -	// -	// 	// FromContext returns the User value stored in ctx, if any. -	// 	func FromContext(ctx context.Context) (*User, bool) { -	// 		u, ok := ctx.Value(userKey).(*User) -	// 		return u, ok -	// 	} -	Value(key interface{}) interface{} -} - -// A CancelFunc tells an operation to abandon its work. -// A CancelFunc does not wait for the work to stop. -// After the first call, subsequent calls to a CancelFunc do nothing. -type CancelFunc func() diff --git a/vendor/golang.org/x/net/html/atom/atom.go b/vendor/golang.org/x/net/html/atom/atom.go deleted file mode 100644 index cd0a8ac15..000000000 --- a/vendor/golang.org/x/net/html/atom/atom.go +++ /dev/null @@ -1,78 +0,0 @@ -// Copyright 2012 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. - -// Package atom provides integer codes (also known as atoms) for a fixed set of -// frequently occurring HTML strings: tag names and attribute keys such as "p" -// and "id". -// -// Sharing an atom's name between all elements with the same tag can result in -// fewer string allocations when tokenizing and parsing HTML. Integer -// comparisons are also generally faster than string comparisons. -// -// The value of an atom's particular code is not guaranteed to stay the same -// between versions of this package. Neither is any ordering guaranteed: -// whether atom.H1 < atom.H2 may also change. The codes are not guaranteed to -// be dense. The only guarantees are that e.g. looking up "div" will yield -// atom.Div, calling atom.Div.String will return "div", and atom.Div != 0. -package atom // import "golang.org/x/net/html/atom" - -// Atom is an integer code for a string. The zero value maps to "". -type Atom uint32 - -// String returns the atom's name. -func (a Atom) String() string { -	start := uint32(a >> 8) -	n := uint32(a & 0xff) -	if start+n > uint32(len(atomText)) { -		return "" -	} -	return atomText[start : start+n] -} - -func (a Atom) string() string { -	return atomText[a>>8 : a>>8+a&0xff] -} - -// fnv computes the FNV hash with an arbitrary starting value h. -func fnv(h uint32, s []byte) uint32 { -	for i := range s { -		h ^= uint32(s[i]) -		h *= 16777619 -	} -	return h -} - -func match(s string, t []byte) bool { -	for i, c := range t { -		if s[i] != c { -			return false -		} -	} -	return true -} - -// Lookup returns the atom whose name is s. It returns zero if there is no -// such atom. The lookup is case sensitive. -func Lookup(s []byte) Atom { -	if len(s) == 0 || len(s) > maxAtomLen { -		return 0 -	} -	h := fnv(hash0, s) -	if a := table[h&uint32(len(table)-1)]; int(a&0xff) == len(s) && match(a.string(), s) { -		return a -	} -	if a := table[(h>>16)&uint32(len(table)-1)]; int(a&0xff) == len(s) && match(a.string(), s) { -		return a -	} -	return 0 -} - -// String returns a string whose contents are equal to s. In that sense, it is -// equivalent to string(s) but may be more efficient. -func String(s []byte) string { -	if a := Lookup(s); a != 0 { -		return a.String() -	} -	return string(s) -} diff --git a/vendor/golang.org/x/net/html/atom/table.go b/vendor/golang.org/x/net/html/atom/table.go deleted file mode 100644 index 2a938864c..000000000 --- a/vendor/golang.org/x/net/html/atom/table.go +++ /dev/null @@ -1,783 +0,0 @@ -// Code generated by go generate gen.go; DO NOT EDIT. - -//go:generate go run gen.go - -package atom - -const ( -	A                         Atom = 0x1 -	Abbr                      Atom = 0x4 -	Accept                    Atom = 0x1a06 -	AcceptCharset             Atom = 0x1a0e -	Accesskey                 Atom = 0x2c09 -	Acronym                   Atom = 0xaa07 -	Action                    Atom = 0x27206 -	Address                   Atom = 0x6f307 -	Align                     Atom = 0xb105 -	Allowfullscreen           Atom = 0x2080f -	Allowpaymentrequest       Atom = 0xc113 -	Allowusermedia            Atom = 0xdd0e -	Alt                       Atom = 0xf303 -	Annotation                Atom = 0x1c90a -	AnnotationXml             Atom = 0x1c90e -	Applet                    Atom = 0x31906 -	Area                      Atom = 0x35604 -	Article                   Atom = 0x3fc07 -	As                        Atom = 0x3c02 -	Aside                     Atom = 0x10705 -	Async                     Atom = 0xff05 -	Audio                     Atom = 0x11505 -	Autocomplete              Atom = 0x2780c -	Autofocus                 Atom = 0x12109 -	Autoplay                  Atom = 0x13c08 -	B                         Atom = 0x101 -	Base                      Atom = 0x3b04 -	Basefont                  Atom = 0x3b08 -	Bdi                       Atom = 0xba03 -	Bdo                       Atom = 0x14b03 -	Bgsound                   Atom = 0x15e07 -	Big                       Atom = 0x17003 -	Blink                     Atom = 0x17305 -	Blockquote                Atom = 0x1870a -	Body                      Atom = 0x2804 -	Br                        Atom = 0x202 -	Button                    Atom = 0x19106 -	Canvas                    Atom = 0x10306 -	Caption                   Atom = 0x23107 -	Center                    Atom = 0x22006 -	Challenge                 Atom = 0x29b09 -	Charset                   Atom = 0x2107 -	Checked                   Atom = 0x47907 -	Cite                      Atom = 0x19c04 -	Class                     Atom = 0x56405 -	Code                      Atom = 0x5c504 -	Col                       Atom = 0x1ab03 -	Colgroup                  Atom = 0x1ab08 -	Color                     Atom = 0x1bf05 -	Cols                      Atom = 0x1c404 -	Colspan                   Atom = 0x1c407 -	Command                   Atom = 0x1d707 -	Content                   Atom = 0x58b07 -	Contenteditable           Atom = 0x58b0f -	Contextmenu               Atom = 0x3800b -	Controls                  Atom = 0x1de08 -	Coords                    Atom = 0x1ea06 -	Crossorigin               Atom = 0x1fb0b -	Data                      Atom = 0x4a504 -	Datalist                  Atom = 0x4a508 -	Datetime                  Atom = 0x2b808 -	Dd                        Atom = 0x2d702 -	Default                   Atom = 0x10a07 -	Defer                     Atom = 0x5c705 -	Del                       Atom = 0x45203 -	Desc                      Atom = 0x56104 -	Details                   Atom = 0x7207 -	Dfn                       Atom = 0x8703 -	Dialog                    Atom = 0xbb06 -	Dir                       Atom = 0x9303 -	Dirname                   Atom = 0x9307 -	Disabled                  Atom = 0x16408 -	Div                       Atom = 0x16b03 -	Dl                        Atom = 0x5e602 -	Download                  Atom = 0x46308 -	Draggable                 Atom = 0x17a09 -	Dropzone                  Atom = 0x40508 -	Dt                        Atom = 0x64b02 -	Em                        Atom = 0x6e02 -	Embed                     Atom = 0x6e05 -	Enctype                   Atom = 0x28d07 -	Face                      Atom = 0x21e04 -	Fieldset                  Atom = 0x22608 -	Figcaption                Atom = 0x22e0a -	Figure                    Atom = 0x24806 -	Font                      Atom = 0x3f04 -	Footer                    Atom = 0xf606 -	For                       Atom = 0x25403 -	ForeignObject             Atom = 0x2540d -	Foreignobject             Atom = 0x2610d -	Form                      Atom = 0x26e04 -	Formaction                Atom = 0x26e0a -	Formenctype               Atom = 0x2890b -	Formmethod                Atom = 0x2a40a -	Formnovalidate            Atom = 0x2ae0e -	Formtarget                Atom = 0x2c00a -	Frame                     Atom = 0x8b05 -	Frameset                  Atom = 0x8b08 -	H1                        Atom = 0x15c02 -	H2                        Atom = 0x2de02 -	H3                        Atom = 0x30d02 -	H4                        Atom = 0x34502 -	H5                        Atom = 0x34f02 -	H6                        Atom = 0x64d02 -	Head                      Atom = 0x33104 -	Header                    Atom = 0x33106 -	Headers                   Atom = 0x33107 -	Height                    Atom = 0x5206 -	Hgroup                    Atom = 0x2ca06 -	Hidden                    Atom = 0x2d506 -	High                      Atom = 0x2db04 -	Hr                        Atom = 0x15702 -	Href                      Atom = 0x2e004 -	Hreflang                  Atom = 0x2e008 -	Html                      Atom = 0x5604 -	HttpEquiv                 Atom = 0x2e80a -	I                         Atom = 0x601 -	Icon                      Atom = 0x58a04 -	Id                        Atom = 0x10902 -	Iframe                    Atom = 0x2fc06 -	Image                     Atom = 0x30205 -	Img                       Atom = 0x30703 -	Input                     Atom = 0x44b05 -	Inputmode                 Atom = 0x44b09 -	Ins                       Atom = 0x20403 -	Integrity                 Atom = 0x23f09 -	Is                        Atom = 0x16502 -	Isindex                   Atom = 0x30f07 -	Ismap                     Atom = 0x31605 -	Itemid                    Atom = 0x38b06 -	Itemprop                  Atom = 0x19d08 -	Itemref                   Atom = 0x3cd07 -	Itemscope                 Atom = 0x67109 -	Itemtype                  Atom = 0x31f08 -	Kbd                       Atom = 0xb903 -	Keygen                    Atom = 0x3206 -	Keytype                   Atom = 0xd607 -	Kind                      Atom = 0x17704 -	Label                     Atom = 0x5905 -	Lang                      Atom = 0x2e404 -	Legend                    Atom = 0x18106 -	Li                        Atom = 0xb202 -	Link                      Atom = 0x17404 -	List                      Atom = 0x4a904 -	Listing                   Atom = 0x4a907 -	Loop                      Atom = 0x5d04 -	Low                       Atom = 0xc303 -	Main                      Atom = 0x1004 -	Malignmark                Atom = 0xb00a -	Manifest                  Atom = 0x6d708 -	Map                       Atom = 0x31803 -	Mark                      Atom = 0xb604 -	Marquee                   Atom = 0x32707 -	Math                      Atom = 0x32e04 -	Max                       Atom = 0x33d03 -	Maxlength                 Atom = 0x33d09 -	Media                     Atom = 0xe605 -	Mediagroup                Atom = 0xe60a -	Menu                      Atom = 0x38704 -	Menuitem                  Atom = 0x38708 -	Meta                      Atom = 0x4b804 -	Meter                     Atom = 0x9805 -	Method                    Atom = 0x2a806 -	Mglyph                    Atom = 0x30806 -	Mi                        Atom = 0x34702 -	Min                       Atom = 0x34703 -	Minlength                 Atom = 0x34709 -	Mn                        Atom = 0x2b102 -	Mo                        Atom = 0xa402 -	Ms                        Atom = 0x67402 -	Mtext                     Atom = 0x35105 -	Multiple                  Atom = 0x35f08 -	Muted                     Atom = 0x36705 -	Name                      Atom = 0x9604 -	Nav                       Atom = 0x1303 -	Nobr                      Atom = 0x3704 -	Noembed                   Atom = 0x6c07 -	Noframes                  Atom = 0x8908 -	Nomodule                  Atom = 0xa208 -	Nonce                     Atom = 0x1a605 -	Noscript                  Atom = 0x21608 -	Novalidate                Atom = 0x2b20a -	Object                    Atom = 0x26806 -	Ol                        Atom = 0x13702 -	Onabort                   Atom = 0x19507 -	Onafterprint              Atom = 0x2360c -	Onautocomplete            Atom = 0x2760e -	Onautocompleteerror       Atom = 0x27613 -	Onauxclick                Atom = 0x61f0a -	Onbeforeprint             Atom = 0x69e0d -	Onbeforeunload            Atom = 0x6e70e -	Onblur                    Atom = 0x56d06 -	Oncancel                  Atom = 0x11908 -	Oncanplay                 Atom = 0x14d09 -	Oncanplaythrough          Atom = 0x14d10 -	Onchange                  Atom = 0x41b08 -	Onclick                   Atom = 0x2f507 -	Onclose                   Atom = 0x36c07 -	Oncontextmenu             Atom = 0x37e0d -	Oncopy                    Atom = 0x39106 -	Oncuechange               Atom = 0x3970b -	Oncut                     Atom = 0x3a205 -	Ondblclick                Atom = 0x3a70a -	Ondrag                    Atom = 0x3b106 -	Ondragend                 Atom = 0x3b109 -	Ondragenter               Atom = 0x3ba0b -	Ondragexit                Atom = 0x3c50a -	Ondragleave               Atom = 0x3df0b -	Ondragover                Atom = 0x3ea0a -	Ondragstart               Atom = 0x3f40b -	Ondrop                    Atom = 0x40306 -	Ondurationchange          Atom = 0x41310 -	Onemptied                 Atom = 0x40a09 -	Onended                   Atom = 0x42307 -	Onerror                   Atom = 0x42a07 -	Onfocus                   Atom = 0x43107 -	Onhashchange              Atom = 0x43d0c -	Oninput                   Atom = 0x44907 -	Oninvalid                 Atom = 0x45509 -	Onkeydown                 Atom = 0x45e09 -	Onkeypress                Atom = 0x46b0a -	Onkeyup                   Atom = 0x48007 -	Onlanguagechange          Atom = 0x48d10 -	Onload                    Atom = 0x49d06 -	Onloadeddata              Atom = 0x49d0c -	Onloadedmetadata          Atom = 0x4b010 -	Onloadend                 Atom = 0x4c609 -	Onloadstart               Atom = 0x4cf0b -	Onmessage                 Atom = 0x4da09 -	Onmessageerror            Atom = 0x4da0e -	Onmousedown               Atom = 0x4e80b -	Onmouseenter              Atom = 0x4f30c -	Onmouseleave              Atom = 0x4ff0c -	Onmousemove               Atom = 0x50b0b -	Onmouseout                Atom = 0x5160a -	Onmouseover               Atom = 0x5230b -	Onmouseup                 Atom = 0x52e09 -	Onmousewheel              Atom = 0x53c0c -	Onoffline                 Atom = 0x54809 -	Ononline                  Atom = 0x55108 -	Onpagehide                Atom = 0x5590a -	Onpageshow                Atom = 0x5730a -	Onpaste                   Atom = 0x57f07 -	Onpause                   Atom = 0x59a07 -	Onplay                    Atom = 0x5a406 -	Onplaying                 Atom = 0x5a409 -	Onpopstate                Atom = 0x5ad0a -	Onprogress                Atom = 0x5b70a -	Onratechange              Atom = 0x5cc0c -	Onrejectionhandled        Atom = 0x5d812 -	Onreset                   Atom = 0x5ea07 -	Onresize                  Atom = 0x5f108 -	Onscroll                  Atom = 0x60008 -	Onsecuritypolicyviolation Atom = 0x60819 -	Onseeked                  Atom = 0x62908 -	Onseeking                 Atom = 0x63109 -	Onselect                  Atom = 0x63a08 -	Onshow                    Atom = 0x64406 -	Onsort                    Atom = 0x64f06 -	Onstalled                 Atom = 0x65909 -	Onstorage                 Atom = 0x66209 -	Onsubmit                  Atom = 0x66b08 -	Onsuspend                 Atom = 0x67b09 -	Ontimeupdate              Atom = 0x400c -	Ontoggle                  Atom = 0x68408 -	Onunhandledrejection      Atom = 0x68c14 -	Onunload                  Atom = 0x6ab08 -	Onvolumechange            Atom = 0x6b30e -	Onwaiting                 Atom = 0x6c109 -	Onwheel                   Atom = 0x6ca07 -	Open                      Atom = 0x1a304 -	Optgroup                  Atom = 0x5f08 -	Optimum                   Atom = 0x6d107 -	Option                    Atom = 0x6e306 -	Output                    Atom = 0x51d06 -	P                         Atom = 0xc01 -	Param                     Atom = 0xc05 -	Pattern                   Atom = 0x6607 -	Picture                   Atom = 0x7b07 -	Ping                      Atom = 0xef04 -	Placeholder               Atom = 0x1310b -	Plaintext                 Atom = 0x1b209 -	Playsinline               Atom = 0x1400b -	Poster                    Atom = 0x2cf06 -	Pre                       Atom = 0x47003 -	Preload                   Atom = 0x48607 -	Progress                  Atom = 0x5b908 -	Prompt                    Atom = 0x53606 -	Public                    Atom = 0x58606 -	Q                         Atom = 0xcf01 -	Radiogroup                Atom = 0x30a -	Rb                        Atom = 0x3a02 -	Readonly                  Atom = 0x35708 -	Referrerpolicy            Atom = 0x3d10e -	Rel                       Atom = 0x48703 -	Required                  Atom = 0x24c08 -	Reversed                  Atom = 0x8008 -	Rows                      Atom = 0x9c04 -	Rowspan                   Atom = 0x9c07 -	Rp                        Atom = 0x23c02 -	Rt                        Atom = 0x19a02 -	Rtc                       Atom = 0x19a03 -	Ruby                      Atom = 0xfb04 -	S                         Atom = 0x2501 -	Samp                      Atom = 0x7804 -	Sandbox                   Atom = 0x12907 -	Scope                     Atom = 0x67505 -	Scoped                    Atom = 0x67506 -	Script                    Atom = 0x21806 -	Seamless                  Atom = 0x37108 -	Section                   Atom = 0x56807 -	Select                    Atom = 0x63c06 -	Selected                  Atom = 0x63c08 -	Shape                     Atom = 0x1e505 -	Size                      Atom = 0x5f504 -	Sizes                     Atom = 0x5f505 -	Slot                      Atom = 0x1ef04 -	Small                     Atom = 0x20605 -	Sortable                  Atom = 0x65108 -	Sorted                    Atom = 0x33706 -	Source                    Atom = 0x37806 -	Spacer                    Atom = 0x43706 -	Span                      Atom = 0x9f04 -	Spellcheck                Atom = 0x4740a -	Src                       Atom = 0x5c003 -	Srcdoc                    Atom = 0x5c006 -	Srclang                   Atom = 0x5f907 -	Srcset                    Atom = 0x6f906 -	Start                     Atom = 0x3fa05 -	Step                      Atom = 0x58304 -	Strike                    Atom = 0xd206 -	Strong                    Atom = 0x6dd06 -	Style                     Atom = 0x6ff05 -	Sub                       Atom = 0x66d03 -	Summary                   Atom = 0x70407 -	Sup                       Atom = 0x70b03 -	Svg                       Atom = 0x70e03 -	System                    Atom = 0x71106 -	Tabindex                  Atom = 0x4be08 -	Table                     Atom = 0x59505 -	Target                    Atom = 0x2c406 -	Tbody                     Atom = 0x2705 -	Td                        Atom = 0x9202 -	Template                  Atom = 0x71408 -	Textarea                  Atom = 0x35208 -	Tfoot                     Atom = 0xf505 -	Th                        Atom = 0x15602 -	Thead                     Atom = 0x33005 -	Time                      Atom = 0x4204 -	Title                     Atom = 0x11005 -	Tr                        Atom = 0xcc02 -	Track                     Atom = 0x1ba05 -	Translate                 Atom = 0x1f209 -	Tt                        Atom = 0x6802 -	Type                      Atom = 0xd904 -	Typemustmatch             Atom = 0x2900d -	U                         Atom = 0xb01 -	Ul                        Atom = 0xa702 -	Updateviacache            Atom = 0x460e -	Usemap                    Atom = 0x59e06 -	Value                     Atom = 0x1505 -	Var                       Atom = 0x16d03 -	Video                     Atom = 0x2f105 -	Wbr                       Atom = 0x57c03 -	Width                     Atom = 0x64905 -	Workertype                Atom = 0x71c0a -	Wrap                      Atom = 0x72604 -	Xmp                       Atom = 0x12f03 -) - -const hash0 = 0x81cdf10e - -const maxAtomLen = 25 - -var table = [1 << 9]Atom{ -	0x1:   0xe60a,  // mediagroup -	0x2:   0x2e404, // lang -	0x4:   0x2c09,  // accesskey -	0x5:   0x8b08,  // frameset -	0x7:   0x63a08, // onselect -	0x8:   0x71106, // system -	0xa:   0x64905, // width -	0xc:   0x2890b, // formenctype -	0xd:   0x13702, // ol -	0xe:   0x3970b, // oncuechange -	0x10:  0x14b03, // bdo -	0x11:  0x11505, // audio -	0x12:  0x17a09, // draggable -	0x14:  0x2f105, // video -	0x15:  0x2b102, // mn -	0x16:  0x38704, // menu -	0x17:  0x2cf06, // poster -	0x19:  0xf606,  // footer -	0x1a:  0x2a806, // method -	0x1b:  0x2b808, // datetime -	0x1c:  0x19507, // onabort -	0x1d:  0x460e,  // updateviacache -	0x1e:  0xff05,  // async -	0x1f:  0x49d06, // onload -	0x21:  0x11908, // oncancel -	0x22:  0x62908, // onseeked -	0x23:  0x30205, // image -	0x24:  0x5d812, // onrejectionhandled -	0x26:  0x17404, // link -	0x27:  0x51d06, // output -	0x28:  0x33104, // head -	0x29:  0x4ff0c, // onmouseleave -	0x2a:  0x57f07, // onpaste -	0x2b:  0x5a409, // onplaying -	0x2c:  0x1c407, // colspan -	0x2f:  0x1bf05, // color -	0x30:  0x5f504, // size -	0x31:  0x2e80a, // http-equiv -	0x33:  0x601,   // i -	0x34:  0x5590a, // onpagehide -	0x35:  0x68c14, // onunhandledrejection -	0x37:  0x42a07, // onerror -	0x3a:  0x3b08,  // basefont -	0x3f:  0x1303,  // nav -	0x40:  0x17704, // kind -	0x41:  0x35708, // readonly -	0x42:  0x30806, // mglyph -	0x44:  0xb202,  // li -	0x46:  0x2d506, // hidden -	0x47:  0x70e03, // svg -	0x48:  0x58304, // step -	0x49:  0x23f09, // integrity -	0x4a:  0x58606, // public -	0x4c:  0x1ab03, // col -	0x4d:  0x1870a, // blockquote -	0x4e:  0x34f02, // h5 -	0x50:  0x5b908, // progress -	0x51:  0x5f505, // sizes -	0x52:  0x34502, // h4 -	0x56:  0x33005, // thead -	0x57:  0xd607,  // keytype -	0x58:  0x5b70a, // onprogress -	0x59:  0x44b09, // inputmode -	0x5a:  0x3b109, // ondragend -	0x5d:  0x3a205, // oncut -	0x5e:  0x43706, // spacer -	0x5f:  0x1ab08, // colgroup -	0x62:  0x16502, // is -	0x65:  0x3c02,  // as -	0x66:  0x54809, // onoffline -	0x67:  0x33706, // sorted -	0x69:  0x48d10, // onlanguagechange -	0x6c:  0x43d0c, // onhashchange -	0x6d:  0x9604,  // name -	0x6e:  0xf505,  // tfoot -	0x6f:  0x56104, // desc -	0x70:  0x33d03, // max -	0x72:  0x1ea06, // coords -	0x73:  0x30d02, // h3 -	0x74:  0x6e70e, // onbeforeunload -	0x75:  0x9c04,  // rows -	0x76:  0x63c06, // select -	0x77:  0x9805,  // meter -	0x78:  0x38b06, // itemid -	0x79:  0x53c0c, // onmousewheel -	0x7a:  0x5c006, // srcdoc -	0x7d:  0x1ba05, // track -	0x7f:  0x31f08, // itemtype -	0x82:  0xa402,  // mo -	0x83:  0x41b08, // onchange -	0x84:  0x33107, // headers -	0x85:  0x5cc0c, // onratechange -	0x86:  0x60819, // onsecuritypolicyviolation -	0x88:  0x4a508, // datalist -	0x89:  0x4e80b, // onmousedown -	0x8a:  0x1ef04, // slot -	0x8b:  0x4b010, // onloadedmetadata -	0x8c:  0x1a06,  // accept -	0x8d:  0x26806, // object -	0x91:  0x6b30e, // onvolumechange -	0x92:  0x2107,  // charset -	0x93:  0x27613, // onautocompleteerror -	0x94:  0xc113,  // allowpaymentrequest -	0x95:  0x2804,  // body -	0x96:  0x10a07, // default -	0x97:  0x63c08, // selected -	0x98:  0x21e04, // face -	0x99:  0x1e505, // shape -	0x9b:  0x68408, // ontoggle -	0x9e:  0x64b02, // dt -	0x9f:  0xb604,  // mark -	0xa1:  0xb01,   // u -	0xa4:  0x6ab08, // onunload -	0xa5:  0x5d04,  // loop -	0xa6:  0x16408, // disabled -	0xaa:  0x42307, // onended -	0xab:  0xb00a,  // malignmark -	0xad:  0x67b09, // onsuspend -	0xae:  0x35105, // mtext -	0xaf:  0x64f06, // onsort -	0xb0:  0x19d08, // itemprop -	0xb3:  0x67109, // itemscope -	0xb4:  0x17305, // blink -	0xb6:  0x3b106, // ondrag -	0xb7:  0xa702,  // ul -	0xb8:  0x26e04, // form -	0xb9:  0x12907, // sandbox -	0xba:  0x8b05,  // frame -	0xbb:  0x1505,  // value -	0xbc:  0x66209, // onstorage -	0xbf:  0xaa07,  // acronym -	0xc0:  0x19a02, // rt -	0xc2:  0x202,   // br -	0xc3:  0x22608, // fieldset -	0xc4:  0x2900d, // typemustmatch -	0xc5:  0xa208,  // nomodule -	0xc6:  0x6c07,  // noembed -	0xc7:  0x69e0d, // onbeforeprint -	0xc8:  0x19106, // button -	0xc9:  0x2f507, // onclick -	0xca:  0x70407, // summary -	0xcd:  0xfb04,  // ruby -	0xce:  0x56405, // class -	0xcf:  0x3f40b, // ondragstart -	0xd0:  0x23107, // caption -	0xd4:  0xdd0e,  // allowusermedia -	0xd5:  0x4cf0b, // onloadstart -	0xd9:  0x16b03, // div -	0xda:  0x4a904, // list -	0xdb:  0x32e04, // math -	0xdc:  0x44b05, // input -	0xdf:  0x3ea0a, // ondragover -	0xe0:  0x2de02, // h2 -	0xe2:  0x1b209, // plaintext -	0xe4:  0x4f30c, // onmouseenter -	0xe7:  0x47907, // checked -	0xe8:  0x47003, // pre -	0xea:  0x35f08, // multiple -	0xeb:  0xba03,  // bdi -	0xec:  0x33d09, // maxlength -	0xed:  0xcf01,  // q -	0xee:  0x61f0a, // onauxclick -	0xf0:  0x57c03, // wbr -	0xf2:  0x3b04,  // base -	0xf3:  0x6e306, // option -	0xf5:  0x41310, // ondurationchange -	0xf7:  0x8908,  // noframes -	0xf9:  0x40508, // dropzone -	0xfb:  0x67505, // scope -	0xfc:  0x8008,  // reversed -	0xfd:  0x3ba0b, // ondragenter -	0xfe:  0x3fa05, // start -	0xff:  0x12f03, // xmp -	0x100: 0x5f907, // srclang -	0x101: 0x30703, // img -	0x104: 0x101,   // b -	0x105: 0x25403, // for -	0x106: 0x10705, // aside -	0x107: 0x44907, // oninput -	0x108: 0x35604, // area -	0x109: 0x2a40a, // formmethod -	0x10a: 0x72604, // wrap -	0x10c: 0x23c02, // rp -	0x10d: 0x46b0a, // onkeypress -	0x10e: 0x6802,  // tt -	0x110: 0x34702, // mi -	0x111: 0x36705, // muted -	0x112: 0xf303,  // alt -	0x113: 0x5c504, // code -	0x114: 0x6e02,  // em -	0x115: 0x3c50a, // ondragexit -	0x117: 0x9f04,  // span -	0x119: 0x6d708, // manifest -	0x11a: 0x38708, // menuitem -	0x11b: 0x58b07, // content -	0x11d: 0x6c109, // onwaiting -	0x11f: 0x4c609, // onloadend -	0x121: 0x37e0d, // oncontextmenu -	0x123: 0x56d06, // onblur -	0x124: 0x3fc07, // article -	0x125: 0x9303,  // dir -	0x126: 0xef04,  // ping -	0x127: 0x24c08, // required -	0x128: 0x45509, // oninvalid -	0x129: 0xb105,  // align -	0x12b: 0x58a04, // icon -	0x12c: 0x64d02, // h6 -	0x12d: 0x1c404, // cols -	0x12e: 0x22e0a, // figcaption -	0x12f: 0x45e09, // onkeydown -	0x130: 0x66b08, // onsubmit -	0x131: 0x14d09, // oncanplay -	0x132: 0x70b03, // sup -	0x133: 0xc01,   // p -	0x135: 0x40a09, // onemptied -	0x136: 0x39106, // oncopy -	0x137: 0x19c04, // cite -	0x138: 0x3a70a, // ondblclick -	0x13a: 0x50b0b, // onmousemove -	0x13c: 0x66d03, // sub -	0x13d: 0x48703, // rel -	0x13e: 0x5f08,  // optgroup -	0x142: 0x9c07,  // rowspan -	0x143: 0x37806, // source -	0x144: 0x21608, // noscript -	0x145: 0x1a304, // open -	0x146: 0x20403, // ins -	0x147: 0x2540d, // foreignObject -	0x148: 0x5ad0a, // onpopstate -	0x14a: 0x28d07, // enctype -	0x14b: 0x2760e, // onautocomplete -	0x14c: 0x35208, // textarea -	0x14e: 0x2780c, // autocomplete -	0x14f: 0x15702, // hr -	0x150: 0x1de08, // controls -	0x151: 0x10902, // id -	0x153: 0x2360c, // onafterprint -	0x155: 0x2610d, // foreignobject -	0x156: 0x32707, // marquee -	0x157: 0x59a07, // onpause -	0x158: 0x5e602, // dl -	0x159: 0x5206,  // height -	0x15a: 0x34703, // min -	0x15b: 0x9307,  // dirname -	0x15c: 0x1f209, // translate -	0x15d: 0x5604,  // html -	0x15e: 0x34709, // minlength -	0x15f: 0x48607, // preload -	0x160: 0x71408, // template -	0x161: 0x3df0b, // ondragleave -	0x162: 0x3a02,  // rb -	0x164: 0x5c003, // src -	0x165: 0x6dd06, // strong -	0x167: 0x7804,  // samp -	0x168: 0x6f307, // address -	0x169: 0x55108, // ononline -	0x16b: 0x1310b, // placeholder -	0x16c: 0x2c406, // target -	0x16d: 0x20605, // small -	0x16e: 0x6ca07, // onwheel -	0x16f: 0x1c90a, // annotation -	0x170: 0x4740a, // spellcheck -	0x171: 0x7207,  // details -	0x172: 0x10306, // canvas -	0x173: 0x12109, // autofocus -	0x174: 0xc05,   // param -	0x176: 0x46308, // download -	0x177: 0x45203, // del -	0x178: 0x36c07, // onclose -	0x179: 0xb903,  // kbd -	0x17a: 0x31906, // applet -	0x17b: 0x2e004, // href -	0x17c: 0x5f108, // onresize -	0x17e: 0x49d0c, // onloadeddata -	0x180: 0xcc02,  // tr -	0x181: 0x2c00a, // formtarget -	0x182: 0x11005, // title -	0x183: 0x6ff05, // style -	0x184: 0xd206,  // strike -	0x185: 0x59e06, // usemap -	0x186: 0x2fc06, // iframe -	0x187: 0x1004,  // main -	0x189: 0x7b07,  // picture -	0x18c: 0x31605, // ismap -	0x18e: 0x4a504, // data -	0x18f: 0x5905,  // label -	0x191: 0x3d10e, // referrerpolicy -	0x192: 0x15602, // th -	0x194: 0x53606, // prompt -	0x195: 0x56807, // section -	0x197: 0x6d107, // optimum -	0x198: 0x2db04, // high -	0x199: 0x15c02, // h1 -	0x19a: 0x65909, // onstalled -	0x19b: 0x16d03, // var -	0x19c: 0x4204,  // time -	0x19e: 0x67402, // ms -	0x19f: 0x33106, // header -	0x1a0: 0x4da09, // onmessage -	0x1a1: 0x1a605, // nonce -	0x1a2: 0x26e0a, // formaction -	0x1a3: 0x22006, // center -	0x1a4: 0x3704,  // nobr -	0x1a5: 0x59505, // table -	0x1a6: 0x4a907, // listing -	0x1a7: 0x18106, // legend -	0x1a9: 0x29b09, // challenge -	0x1aa: 0x24806, // figure -	0x1ab: 0xe605,  // media -	0x1ae: 0xd904,  // type -	0x1af: 0x3f04,  // font -	0x1b0: 0x4da0e, // onmessageerror -	0x1b1: 0x37108, // seamless -	0x1b2: 0x8703,  // dfn -	0x1b3: 0x5c705, // defer -	0x1b4: 0xc303,  // low -	0x1b5: 0x19a03, // rtc -	0x1b6: 0x5230b, // onmouseover -	0x1b7: 0x2b20a, // novalidate -	0x1b8: 0x71c0a, // workertype -	0x1ba: 0x3cd07, // itemref -	0x1bd: 0x1,     // a -	0x1be: 0x31803, // map -	0x1bf: 0x400c,  // ontimeupdate -	0x1c0: 0x15e07, // bgsound -	0x1c1: 0x3206,  // keygen -	0x1c2: 0x2705,  // tbody -	0x1c5: 0x64406, // onshow -	0x1c7: 0x2501,  // s -	0x1c8: 0x6607,  // pattern -	0x1cc: 0x14d10, // oncanplaythrough -	0x1ce: 0x2d702, // dd -	0x1cf: 0x6f906, // srcset -	0x1d0: 0x17003, // big -	0x1d2: 0x65108, // sortable -	0x1d3: 0x48007, // onkeyup -	0x1d5: 0x5a406, // onplay -	0x1d7: 0x4b804, // meta -	0x1d8: 0x40306, // ondrop -	0x1da: 0x60008, // onscroll -	0x1db: 0x1fb0b, // crossorigin -	0x1dc: 0x5730a, // onpageshow -	0x1dd: 0x4,     // abbr -	0x1de: 0x9202,  // td -	0x1df: 0x58b0f, // contenteditable -	0x1e0: 0x27206, // action -	0x1e1: 0x1400b, // playsinline -	0x1e2: 0x43107, // onfocus -	0x1e3: 0x2e008, // hreflang -	0x1e5: 0x5160a, // onmouseout -	0x1e6: 0x5ea07, // onreset -	0x1e7: 0x13c08, // autoplay -	0x1e8: 0x63109, // onseeking -	0x1ea: 0x67506, // scoped -	0x1ec: 0x30a,   // radiogroup -	0x1ee: 0x3800b, // contextmenu -	0x1ef: 0x52e09, // onmouseup -	0x1f1: 0x2ca06, // hgroup -	0x1f2: 0x2080f, // allowfullscreen -	0x1f3: 0x4be08, // tabindex -	0x1f6: 0x30f07, // isindex -	0x1f7: 0x1a0e,  // accept-charset -	0x1f8: 0x2ae0e, // formnovalidate -	0x1fb: 0x1c90e, // annotation-xml -	0x1fc: 0x6e05,  // embed -	0x1fd: 0x21806, // script -	0x1fe: 0xbb06,  // dialog -	0x1ff: 0x1d707, // command -} - -const atomText = "abbradiogrouparamainavalueaccept-charsetbodyaccesskeygenobrb" + -	"asefontimeupdateviacacheightmlabelooptgroupatternoembedetail" + -	"sampictureversedfnoframesetdirnameterowspanomoduleacronymali" + -	"gnmarkbdialogallowpaymentrequestrikeytypeallowusermediagroup" + -	"ingaltfooterubyasyncanvasidefaultitleaudioncancelautofocusan" + -	"dboxmplaceholderautoplaysinlinebdoncanplaythrough1bgsoundisa" + -	"bledivarbigblinkindraggablegendblockquotebuttonabortcitempro" + -	"penoncecolgrouplaintextrackcolorcolspannotation-xmlcommandco" + -	"ntrolshapecoordslotranslatecrossoriginsmallowfullscreenoscri" + -	"ptfacenterfieldsetfigcaptionafterprintegrityfigurequiredfore" + -	"ignObjectforeignobjectformactionautocompleteerrorformenctype" + -	"mustmatchallengeformmethodformnovalidatetimeformtargethgroup" + -	"osterhiddenhigh2hreflanghttp-equivideonclickiframeimageimgly" + -	"ph3isindexismappletitemtypemarqueematheadersortedmaxlength4m" + -	"inlength5mtextareadonlymultiplemutedoncloseamlessourceoncont" + -	"extmenuitemidoncopyoncuechangeoncutondblclickondragendondrag" + -	"enterondragexitemreferrerpolicyondragleaveondragoverondragst" + -	"articleondropzonemptiedondurationchangeonendedonerroronfocus" + -	"paceronhashchangeoninputmodeloninvalidonkeydownloadonkeypres" + -	"spellcheckedonkeyupreloadonlanguagechangeonloadeddatalisting" + -	"onloadedmetadatabindexonloadendonloadstartonmessageerroronmo" + -	"usedownonmouseenteronmouseleaveonmousemoveonmouseoutputonmou" + -	"seoveronmouseupromptonmousewheelonofflineononlineonpagehides" + -	"classectionbluronpageshowbronpastepublicontenteditableonpaus" + -	"emaponplayingonpopstateonprogressrcdocodeferonratechangeonre" + -	"jectionhandledonresetonresizesrclangonscrollonsecuritypolicy" + -	"violationauxclickonseekedonseekingonselectedonshowidth6onsor" + -	"tableonstalledonstorageonsubmitemscopedonsuspendontoggleonun" + -	"handledrejectionbeforeprintonunloadonvolumechangeonwaitingon" + -	"wheeloptimumanifestrongoptionbeforeunloaddressrcsetstylesumm" + -	"arysupsvgsystemplateworkertypewrap" diff --git a/vendor/golang.org/x/net/html/const.go b/vendor/golang.org/x/net/html/const.go deleted file mode 100644 index ff7acf2d5..000000000 --- a/vendor/golang.org/x/net/html/const.go +++ /dev/null @@ -1,111 +0,0 @@ -// Copyright 2011 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. - -package html - -// Section 12.2.4.2 of the HTML5 specification says "The following elements -// have varying levels of special parsing rules". -// https://html.spec.whatwg.org/multipage/syntax.html#the-stack-of-open-elements -var isSpecialElementMap = map[string]bool{ -	"address":    true, -	"applet":     true, -	"area":       true, -	"article":    true, -	"aside":      true, -	"base":       true, -	"basefont":   true, -	"bgsound":    true, -	"blockquote": true, -	"body":       true, -	"br":         true, -	"button":     true, -	"caption":    true, -	"center":     true, -	"col":        true, -	"colgroup":   true, -	"dd":         true, -	"details":    true, -	"dir":        true, -	"div":        true, -	"dl":         true, -	"dt":         true, -	"embed":      true, -	"fieldset":   true, -	"figcaption": true, -	"figure":     true, -	"footer":     true, -	"form":       true, -	"frame":      true, -	"frameset":   true, -	"h1":         true, -	"h2":         true, -	"h3":         true, -	"h4":         true, -	"h5":         true, -	"h6":         true, -	"head":       true, -	"header":     true, -	"hgroup":     true, -	"hr":         true, -	"html":       true, -	"iframe":     true, -	"img":        true, -	"input":      true, -	"keygen":     true, // "keygen" has been removed from the spec, but are kept here for backwards compatibility. -	"li":         true, -	"link":       true, -	"listing":    true, -	"main":       true, -	"marquee":    true, -	"menu":       true, -	"meta":       true, -	"nav":        true, -	"noembed":    true, -	"noframes":   true, -	"noscript":   true, -	"object":     true, -	"ol":         true, -	"p":          true, -	"param":      true, -	"plaintext":  true, -	"pre":        true, -	"script":     true, -	"section":    true, -	"select":     true, -	"source":     true, -	"style":      true, -	"summary":    true, -	"table":      true, -	"tbody":      true, -	"td":         true, -	"template":   true, -	"textarea":   true, -	"tfoot":      true, -	"th":         true, -	"thead":      true, -	"title":      true, -	"tr":         true, -	"track":      true, -	"ul":         true, -	"wbr":        true, -	"xmp":        true, -} - -func isSpecialElement(element *Node) bool { -	switch element.Namespace { -	case "", "html": -		return isSpecialElementMap[element.Data] -	case "math": -		switch element.Data { -		case "mi", "mo", "mn", "ms", "mtext", "annotation-xml": -			return true -		} -	case "svg": -		switch element.Data { -		case "foreignObject", "desc", "title": -			return true -		} -	} -	return false -} diff --git a/vendor/golang.org/x/net/html/doc.go b/vendor/golang.org/x/net/html/doc.go deleted file mode 100644 index 885c4c593..000000000 --- a/vendor/golang.org/x/net/html/doc.go +++ /dev/null @@ -1,122 +0,0 @@ -// Copyright 2010 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. - -/* -Package html implements an HTML5-compliant tokenizer and parser. - -Tokenization is done by creating a Tokenizer for an io.Reader r. It is the -caller's responsibility to ensure that r provides UTF-8 encoded HTML. - -	z := html.NewTokenizer(r) - -Given a Tokenizer z, the HTML is tokenized by repeatedly calling z.Next(), -which parses the next token and returns its type, or an error: - -	for { -		tt := z.Next() -		if tt == html.ErrorToken { -			// ... -			return ... -		} -		// Process the current token. -	} - -There are two APIs for retrieving the current token. The high-level API is to -call Token; the low-level API is to call Text or TagName / TagAttr. Both APIs -allow optionally calling Raw after Next but before Token, Text, TagName, or -TagAttr. In EBNF notation, the valid call sequence per token is: - -	Next {Raw} [ Token | Text | TagName {TagAttr} ] - -Token returns an independent data structure that completely describes a token. -Entities (such as "<") are unescaped, tag names and attribute keys are -lower-cased, and attributes are collected into a []Attribute. For example: - -	for { -		if z.Next() == html.ErrorToken { -			// Returning io.EOF indicates success. -			return z.Err() -		} -		emitToken(z.Token()) -	} - -The low-level API performs fewer allocations and copies, but the contents of -the []byte values returned by Text, TagName and TagAttr may change on the next -call to Next. For example, to extract an HTML page's anchor text: - -	depth := 0 -	for { -		tt := z.Next() -		switch tt { -		case html.ErrorToken: -			return z.Err() -		case html.TextToken: -			if depth > 0 { -				// emitBytes should copy the []byte it receives, -				// if it doesn't process it immediately. -				emitBytes(z.Text()) -			} -		case html.StartTagToken, html.EndTagToken: -			tn, _ := z.TagName() -			if len(tn) == 1 && tn[0] == 'a' { -				if tt == html.StartTagToken { -					depth++ -				} else { -					depth-- -				} -			} -		} -	} - -Parsing is done by calling Parse with an io.Reader, which returns the root of -the parse tree (the document element) as a *Node. It is the caller's -responsibility to ensure that the Reader provides UTF-8 encoded HTML. For -example, to process each anchor node in depth-first order: - -	doc, err := html.Parse(r) -	if err != nil { -		// ... -	} -	for n := range doc.Descendants() { -		if n.Type == html.ElementNode && n.Data == "a" { -			// Do something with n... -		} -	} - -The relevant specifications include: -https://html.spec.whatwg.org/multipage/syntax.html and -https://html.spec.whatwg.org/multipage/syntax.html#tokenization - -# Security Considerations - -Care should be taken when parsing and interpreting HTML, whether full documents -or fragments, within the framework of the HTML specification, especially with -regard to untrusted inputs. - -This package provides both a tokenizer and a parser, which implement the -tokenization, and tokenization and tree construction stages of the WHATWG HTML -parsing specification respectively. While the tokenizer parses and normalizes -individual HTML tokens, only the parser constructs the DOM tree from the -tokenized HTML, as described in the tree construction stage of the -specification, dynamically modifying or extending the document's DOM tree. - -If your use case requires semantically well-formed HTML documents, as defined by -the WHATWG specification, the parser should be used rather than the tokenizer. - -In security contexts, if trust decisions are being made using the tokenized or -parsed content, the input must be re-serialized (for instance by using Render or -Token.String) in order for those trust decisions to hold, as the process of -tokenization or parsing may alter the content. -*/ -package html // import "golang.org/x/net/html" - -// The tokenization algorithm implemented by this package is not a line-by-line -// transliteration of the relatively verbose state-machine in the WHATWG -// specification. A more direct approach is used instead, where the program -// counter implies the state, such as whether it is tokenizing a tag or a text -// node. Specification compliance is verified by checking expected and actual -// outputs over a test suite rather than aiming for algorithmic fidelity. - -// TODO(nigeltao): Does a DOM API belong in this package or a separate one? -// TODO(nigeltao): How does parsing interact with a JavaScript engine? diff --git a/vendor/golang.org/x/net/html/doctype.go b/vendor/golang.org/x/net/html/doctype.go deleted file mode 100644 index bca3ae9a0..000000000 --- a/vendor/golang.org/x/net/html/doctype.go +++ /dev/null @@ -1,156 +0,0 @@ -// Copyright 2011 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. - -package html - -import ( -	"strings" -) - -// parseDoctype parses the data from a DoctypeToken into a name, -// public identifier, and system identifier. It returns a Node whose Type -// is DoctypeNode, whose Data is the name, and which has attributes -// named "system" and "public" for the two identifiers if they were present. -// quirks is whether the document should be parsed in "quirks mode". -func parseDoctype(s string) (n *Node, quirks bool) { -	n = &Node{Type: DoctypeNode} - -	// Find the name. -	space := strings.IndexAny(s, whitespace) -	if space == -1 { -		space = len(s) -	} -	n.Data = s[:space] -	// The comparison to "html" is case-sensitive. -	if n.Data != "html" { -		quirks = true -	} -	n.Data = strings.ToLower(n.Data) -	s = strings.TrimLeft(s[space:], whitespace) - -	if len(s) < 6 { -		// It can't start with "PUBLIC" or "SYSTEM". -		// Ignore the rest of the string. -		return n, quirks || s != "" -	} - -	key := strings.ToLower(s[:6]) -	s = s[6:] -	for key == "public" || key == "system" { -		s = strings.TrimLeft(s, whitespace) -		if s == "" { -			break -		} -		quote := s[0] -		if quote != '"' && quote != '\'' { -			break -		} -		s = s[1:] -		q := strings.IndexRune(s, rune(quote)) -		var id string -		if q == -1 { -			id = s -			s = "" -		} else { -			id = s[:q] -			s = s[q+1:] -		} -		n.Attr = append(n.Attr, Attribute{Key: key, Val: id}) -		if key == "public" { -			key = "system" -		} else { -			key = "" -		} -	} - -	if key != "" || s != "" { -		quirks = true -	} else if len(n.Attr) > 0 { -		if n.Attr[0].Key == "public" { -			public := strings.ToLower(n.Attr[0].Val) -			switch public { -			case "-//w3o//dtd w3 html strict 3.0//en//", "-/w3d/dtd html 4.0 transitional/en", "html": -				quirks = true -			default: -				for _, q := range quirkyIDs { -					if strings.HasPrefix(public, q) { -						quirks = true -						break -					} -				} -			} -			// The following two public IDs only cause quirks mode if there is no system ID. -			if len(n.Attr) == 1 && (strings.HasPrefix(public, "-//w3c//dtd html 4.01 frameset//") || -				strings.HasPrefix(public, "-//w3c//dtd html 4.01 transitional//")) { -				quirks = true -			} -		} -		if lastAttr := n.Attr[len(n.Attr)-1]; lastAttr.Key == "system" && -			strings.EqualFold(lastAttr.Val, "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd") { -			quirks = true -		} -	} - -	return n, quirks -} - -// quirkyIDs is a list of public doctype identifiers that cause a document -// to be interpreted in quirks mode. The identifiers should be in lower case. -var quirkyIDs = []string{ -	"+//silmaril//dtd html pro v0r11 19970101//", -	"-//advasoft ltd//dtd html 3.0 aswedit + extensions//", -	"-//as//dtd html 3.0 aswedit + extensions//", -	"-//ietf//dtd html 2.0 level 1//", -	"-//ietf//dtd html 2.0 level 2//", -	"-//ietf//dtd html 2.0 strict level 1//", -	"-//ietf//dtd html 2.0 strict level 2//", -	"-//ietf//dtd html 2.0 strict//", -	"-//ietf//dtd html 2.0//", -	"-//ietf//dtd html 2.1e//", -	"-//ietf//dtd html 3.0//", -	"-//ietf//dtd html 3.2 final//", -	"-//ietf//dtd html 3.2//", -	"-//ietf//dtd html 3//", -	"-//ietf//dtd html level 0//", -	"-//ietf//dtd html level 1//", -	"-//ietf//dtd html level 2//", -	"-//ietf//dtd html level 3//", -	"-//ietf//dtd html strict level 0//", -	"-//ietf//dtd html strict level 1//", -	"-//ietf//dtd html strict level 2//", -	"-//ietf//dtd html strict level 3//", -	"-//ietf//dtd html strict//", -	"-//ietf//dtd html//", -	"-//metrius//dtd metrius presentational//", -	"-//microsoft//dtd internet explorer 2.0 html strict//", -	"-//microsoft//dtd internet explorer 2.0 html//", -	"-//microsoft//dtd internet explorer 2.0 tables//", -	"-//microsoft//dtd internet explorer 3.0 html strict//", -	"-//microsoft//dtd internet explorer 3.0 html//", -	"-//microsoft//dtd internet explorer 3.0 tables//", -	"-//netscape comm. corp.//dtd html//", -	"-//netscape comm. corp.//dtd strict html//", -	"-//o'reilly and associates//dtd html 2.0//", -	"-//o'reilly and associates//dtd html extended 1.0//", -	"-//o'reilly and associates//dtd html extended relaxed 1.0//", -	"-//softquad software//dtd hotmetal pro 6.0::19990601::extensions to html 4.0//", -	"-//softquad//dtd hotmetal pro 4.0::19971010::extensions to html 4.0//", -	"-//spyglass//dtd html 2.0 extended//", -	"-//sq//dtd html 2.0 hotmetal + extensions//", -	"-//sun microsystems corp.//dtd hotjava html//", -	"-//sun microsystems corp.//dtd hotjava strict html//", -	"-//w3c//dtd html 3 1995-03-24//", -	"-//w3c//dtd html 3.2 draft//", -	"-//w3c//dtd html 3.2 final//", -	"-//w3c//dtd html 3.2//", -	"-//w3c//dtd html 3.2s draft//", -	"-//w3c//dtd html 4.0 frameset//", -	"-//w3c//dtd html 4.0 transitional//", -	"-//w3c//dtd html experimental 19960712//", -	"-//w3c//dtd html experimental 970421//", -	"-//w3c//dtd w3 html//", -	"-//w3o//dtd w3 html 3.0//", -	"-//webtechs//dtd mozilla html 2.0//", -	"-//webtechs//dtd mozilla html//", -} diff --git a/vendor/golang.org/x/net/html/entity.go b/vendor/golang.org/x/net/html/entity.go deleted file mode 100644 index b628880a0..000000000 --- a/vendor/golang.org/x/net/html/entity.go +++ /dev/null @@ -1,2253 +0,0 @@ -// Copyright 2010 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. - -package html - -// All entities that do not end with ';' are 6 or fewer bytes long. -const longestEntityWithoutSemicolon = 6 - -// entity is a map from HTML entity names to their values. The semicolon matters: -// https://html.spec.whatwg.org/multipage/syntax.html#named-character-references -// lists both "amp" and "amp;" as two separate entries. -// -// Note that the HTML5 list is larger than the HTML4 list at -// http://www.w3.org/TR/html4/sgml/entities.html -var entity = map[string]rune{ -	"AElig;":                           '\U000000C6', -	"AMP;":                             '\U00000026', -	"Aacute;":                          '\U000000C1', -	"Abreve;":                          '\U00000102', -	"Acirc;":                           '\U000000C2', -	"Acy;":                             '\U00000410', -	"Afr;":                             '\U0001D504', -	"Agrave;":                          '\U000000C0', -	"Alpha;":                           '\U00000391', -	"Amacr;":                           '\U00000100', -	"And;":                             '\U00002A53', -	"Aogon;":                           '\U00000104', -	"Aopf;":                            '\U0001D538', -	"ApplyFunction;":                   '\U00002061', -	"Aring;":                           '\U000000C5', -	"Ascr;":                            '\U0001D49C', -	"Assign;":                          '\U00002254', -	"Atilde;":                          '\U000000C3', -	"Auml;":                            '\U000000C4', -	"Backslash;":                       '\U00002216', -	"Barv;":                            '\U00002AE7', -	"Barwed;":                          '\U00002306', -	"Bcy;":                             '\U00000411', -	"Because;":                         '\U00002235', -	"Bernoullis;":                      '\U0000212C', -	"Beta;":                            '\U00000392', -	"Bfr;":                             '\U0001D505', -	"Bopf;":                            '\U0001D539', -	"Breve;":                           '\U000002D8', -	"Bscr;":                            '\U0000212C', -	"Bumpeq;":                          '\U0000224E', -	"CHcy;":                            '\U00000427', -	"COPY;":                            '\U000000A9', -	"Cacute;":                          '\U00000106', -	"Cap;":                             '\U000022D2', -	"CapitalDifferentialD;":            '\U00002145', -	"Cayleys;":                         '\U0000212D', -	"Ccaron;":                          '\U0000010C', -	"Ccedil;":                          '\U000000C7', -	"Ccirc;":                           '\U00000108', -	"Cconint;":                         '\U00002230', -	"Cdot;":                            '\U0000010A', -	"Cedilla;":                         '\U000000B8', -	"CenterDot;":                       '\U000000B7', -	"Cfr;":                             '\U0000212D', -	"Chi;":                             '\U000003A7', -	"CircleDot;":                       '\U00002299', -	"CircleMinus;":                     '\U00002296', -	"CirclePlus;":                      '\U00002295', -	"CircleTimes;":                     '\U00002297', -	"ClockwiseContourIntegral;":        '\U00002232', -	"CloseCurlyDoubleQuote;":           '\U0000201D', -	"CloseCurlyQuote;":                 '\U00002019', -	"Colon;":                           '\U00002237', -	"Colone;":                          '\U00002A74', -	"Congruent;":                       '\U00002261', -	"Conint;":                          '\U0000222F', -	"ContourIntegral;":                 '\U0000222E', -	"Copf;":                            '\U00002102', -	"Coproduct;":                       '\U00002210', -	"CounterClockwiseContourIntegral;": '\U00002233', -	"Cross;":                           '\U00002A2F', -	"Cscr;":                            '\U0001D49E', -	"Cup;":                             '\U000022D3', -	"CupCap;":                          '\U0000224D', -	"DD;":                              '\U00002145', -	"DDotrahd;":                        '\U00002911', -	"DJcy;":                            '\U00000402', -	"DScy;":                            '\U00000405', -	"DZcy;":                            '\U0000040F', -	"Dagger;":                          '\U00002021', -	"Darr;":                            '\U000021A1', -	"Dashv;":                           '\U00002AE4', -	"Dcaron;":                          '\U0000010E', -	"Dcy;":                             '\U00000414', -	"Del;":                             '\U00002207', -	"Delta;":                           '\U00000394', -	"Dfr;":                             '\U0001D507', -	"DiacriticalAcute;":                '\U000000B4', -	"DiacriticalDot;":                  '\U000002D9', -	"DiacriticalDoubleAcute;":          '\U000002DD', -	"DiacriticalGrave;":                '\U00000060', -	"DiacriticalTilde;":                '\U000002DC', -	"Diamond;":                         '\U000022C4', -	"DifferentialD;":                   '\U00002146', -	"Dopf;":                            '\U0001D53B', -	"Dot;":                             '\U000000A8', -	"DotDot;":                          '\U000020DC', -	"DotEqual;":                        '\U00002250', -	"DoubleContourIntegral;":           '\U0000222F', -	"DoubleDot;":                       '\U000000A8', -	"DoubleDownArrow;":                 '\U000021D3', -	"DoubleLeftArrow;":                 '\U000021D0', -	"DoubleLeftRightArrow;":            '\U000021D4', -	"DoubleLeftTee;":                   '\U00002AE4', -	"DoubleLongLeftArrow;":             '\U000027F8', -	"DoubleLongLeftRightArrow;":        '\U000027FA', -	"DoubleLongRightArrow;":            '\U000027F9', -	"DoubleRightArrow;":                '\U000021D2', -	"DoubleRightTee;":                  '\U000022A8', -	"DoubleUpArrow;":                   '\U000021D1', -	"DoubleUpDownArrow;":               '\U000021D5', -	"DoubleVerticalBar;":               '\U00002225', -	"DownArrow;":                       '\U00002193', -	"DownArrowBar;":                    '\U00002913', -	"DownArrowUpArrow;":                '\U000021F5', -	"DownBreve;":                       '\U00000311', -	"DownLeftRightVector;":             '\U00002950', -	"DownLeftTeeVector;":               '\U0000295E', -	"DownLeftVector;":                  '\U000021BD', -	"DownLeftVectorBar;":               '\U00002956', -	"DownRightTeeVector;":              '\U0000295F', -	"DownRightVector;":                 '\U000021C1', -	"DownRightVectorBar;":              '\U00002957', -	"DownTee;":                         '\U000022A4', -	"DownTeeArrow;":                    '\U000021A7', -	"Downarrow;":                       '\U000021D3', -	"Dscr;":                            '\U0001D49F', -	"Dstrok;":                          '\U00000110', -	"ENG;":                             '\U0000014A', -	"ETH;":                             '\U000000D0', -	"Eacute;":                          '\U000000C9', -	"Ecaron;":                          '\U0000011A', -	"Ecirc;":                           '\U000000CA', -	"Ecy;":                             '\U0000042D', -	"Edot;":                            '\U00000116', -	"Efr;":                             '\U0001D508', -	"Egrave;":                          '\U000000C8', -	"Element;":                         '\U00002208', -	"Emacr;":                           '\U00000112', -	"EmptySmallSquare;":                '\U000025FB', -	"EmptyVerySmallSquare;":            '\U000025AB', -	"Eogon;":                           '\U00000118', -	"Eopf;":                            '\U0001D53C', -	"Epsilon;":                         '\U00000395', -	"Equal;":                           '\U00002A75', -	"EqualTilde;":                      '\U00002242', -	"Equilibrium;":                     '\U000021CC', -	"Escr;":                            '\U00002130', -	"Esim;":                            '\U00002A73', -	"Eta;":                             '\U00000397', -	"Euml;":                            '\U000000CB', -	"Exists;":                          '\U00002203', -	"ExponentialE;":                    '\U00002147', -	"Fcy;":                             '\U00000424', -	"Ffr;":                             '\U0001D509', -	"FilledSmallSquare;":               '\U000025FC', -	"FilledVerySmallSquare;":           '\U000025AA', -	"Fopf;":                            '\U0001D53D', -	"ForAll;":                          '\U00002200', -	"Fouriertrf;":                      '\U00002131', -	"Fscr;":                            '\U00002131', -	"GJcy;":                            '\U00000403', -	"GT;":                              '\U0000003E', -	"Gamma;":                           '\U00000393', -	"Gammad;":                          '\U000003DC', -	"Gbreve;":                          '\U0000011E', -	"Gcedil;":                          '\U00000122', -	"Gcirc;":                           '\U0000011C', -	"Gcy;":                             '\U00000413', -	"Gdot;":                            '\U00000120', -	"Gfr;":                             '\U0001D50A', -	"Gg;":                              '\U000022D9', -	"Gopf;":                            '\U0001D53E', -	"GreaterEqual;":                    '\U00002265', -	"GreaterEqualLess;":                '\U000022DB', -	"GreaterFullEqual;":                '\U00002267', -	"GreaterGreater;":                  '\U00002AA2', -	"GreaterLess;":                     '\U00002277', -	"GreaterSlantEqual;":               '\U00002A7E', -	"GreaterTilde;":                    '\U00002273', -	"Gscr;":                            '\U0001D4A2', -	"Gt;":                              '\U0000226B', -	"HARDcy;":                          '\U0000042A', -	"Hacek;":                           '\U000002C7', -	"Hat;":                             '\U0000005E', -	"Hcirc;":                           '\U00000124', -	"Hfr;":                             '\U0000210C', -	"HilbertSpace;":                    '\U0000210B', -	"Hopf;":                            '\U0000210D', -	"HorizontalLine;":                  '\U00002500', -	"Hscr;":                            '\U0000210B', -	"Hstrok;":                          '\U00000126', -	"HumpDownHump;":                    '\U0000224E', -	"HumpEqual;":                       '\U0000224F', -	"IEcy;":                            '\U00000415', -	"IJlig;":                           '\U00000132', -	"IOcy;":                            '\U00000401', -	"Iacute;":                          '\U000000CD', -	"Icirc;":                           '\U000000CE', -	"Icy;":                             '\U00000418', -	"Idot;":                            '\U00000130', -	"Ifr;":                             '\U00002111', -	"Igrave;":                          '\U000000CC', -	"Im;":                              '\U00002111', -	"Imacr;":                           '\U0000012A', -	"ImaginaryI;":                      '\U00002148', -	"Implies;":                         '\U000021D2', -	"Int;":                             '\U0000222C', -	"Integral;":                        '\U0000222B', -	"Intersection;":                    '\U000022C2', -	"InvisibleComma;":                  '\U00002063', -	"InvisibleTimes;":                  '\U00002062', -	"Iogon;":                           '\U0000012E', -	"Iopf;":                            '\U0001D540', -	"Iota;":                            '\U00000399', -	"Iscr;":                            '\U00002110', -	"Itilde;":                          '\U00000128', -	"Iukcy;":                           '\U00000406', -	"Iuml;":                            '\U000000CF', -	"Jcirc;":                           '\U00000134', -	"Jcy;":                             '\U00000419', -	"Jfr;":                             '\U0001D50D', -	"Jopf;":                            '\U0001D541', -	"Jscr;":                            '\U0001D4A5', -	"Jsercy;":                          '\U00000408', -	"Jukcy;":                           '\U00000404', -	"KHcy;":                            '\U00000425', -	"KJcy;":                            '\U0000040C', -	"Kappa;":                           '\U0000039A', -	"Kcedil;":                          '\U00000136', -	"Kcy;":                             '\U0000041A', -	"Kfr;":                             '\U0001D50E', -	"Kopf;":                            '\U0001D542', -	"Kscr;":                            '\U0001D4A6', -	"LJcy;":                            '\U00000409', -	"LT;":                              '\U0000003C', -	"Lacute;":                          '\U00000139', -	"Lambda;":                          '\U0000039B', -	"Lang;":                            '\U000027EA', -	"Laplacetrf;":                      '\U00002112', -	"Larr;":                            '\U0000219E', -	"Lcaron;":                          '\U0000013D', -	"Lcedil;":                          '\U0000013B', -	"Lcy;":                             '\U0000041B', -	"LeftAngleBracket;":                '\U000027E8', -	"LeftArrow;":                       '\U00002190', -	"LeftArrowBar;":                    '\U000021E4', -	"LeftArrowRightArrow;":             '\U000021C6', -	"LeftCeiling;":                     '\U00002308', -	"LeftDoubleBracket;":               '\U000027E6', -	"LeftDownTeeVector;":               '\U00002961', -	"LeftDownVector;":                  '\U000021C3', -	"LeftDownVectorBar;":               '\U00002959', -	"LeftFloor;":                       '\U0000230A', -	"LeftRightArrow;":                  '\U00002194', -	"LeftRightVector;":                 '\U0000294E', -	"LeftTee;":                         '\U000022A3', -	"LeftTeeArrow;":                    '\U000021A4', -	"LeftTeeVector;":                   '\U0000295A', -	"LeftTriangle;":                    '\U000022B2', -	"LeftTriangleBar;":                 '\U000029CF', -	"LeftTriangleEqual;":               '\U000022B4', -	"LeftUpDownVector;":                '\U00002951', -	"LeftUpTeeVector;":                 '\U00002960', -	"LeftUpVector;":                    '\U000021BF', -	"LeftUpVectorBar;":                 '\U00002958', -	"LeftVector;":                      '\U000021BC', -	"LeftVectorBar;":                   '\U00002952', -	"Leftarrow;":                       '\U000021D0', -	"Leftrightarrow;":                  '\U000021D4', -	"LessEqualGreater;":                '\U000022DA', -	"LessFullEqual;":                   '\U00002266', -	"LessGreater;":                     '\U00002276', -	"LessLess;":                        '\U00002AA1', -	"LessSlantEqual;":                  '\U00002A7D', -	"LessTilde;":                       '\U00002272', -	"Lfr;":                             '\U0001D50F', -	"Ll;":                              '\U000022D8', -	"Lleftarrow;":                      '\U000021DA', -	"Lmidot;":                          '\U0000013F', -	"LongLeftArrow;":                   '\U000027F5', -	"LongLeftRightArrow;":              '\U000027F7', -	"LongRightArrow;":                  '\U000027F6', -	"Longleftarrow;":                   '\U000027F8', -	"Longleftrightarrow;":              '\U000027FA', -	"Longrightarrow;":                  '\U000027F9', -	"Lopf;":                            '\U0001D543', -	"LowerLeftArrow;":                  '\U00002199', -	"LowerRightArrow;":                 '\U00002198', -	"Lscr;":                            '\U00002112', -	"Lsh;":                             '\U000021B0', -	"Lstrok;":                          '\U00000141', -	"Lt;":                              '\U0000226A', -	"Map;":                             '\U00002905', -	"Mcy;":                             '\U0000041C', -	"MediumSpace;":                     '\U0000205F', -	"Mellintrf;":                       '\U00002133', -	"Mfr;":                             '\U0001D510', -	"MinusPlus;":                       '\U00002213', -	"Mopf;":                            '\U0001D544', -	"Mscr;":                            '\U00002133', -	"Mu;":                              '\U0000039C', -	"NJcy;":                            '\U0000040A', -	"Nacute;":                          '\U00000143', -	"Ncaron;":                          '\U00000147', -	"Ncedil;":                          '\U00000145', -	"Ncy;":                             '\U0000041D', -	"NegativeMediumSpace;":             '\U0000200B', -	"NegativeThickSpace;":              '\U0000200B', -	"NegativeThinSpace;":               '\U0000200B', -	"NegativeVeryThinSpace;":           '\U0000200B', -	"NestedGreaterGreater;":            '\U0000226B', -	"NestedLessLess;":                  '\U0000226A', -	"NewLine;":                         '\U0000000A', -	"Nfr;":                             '\U0001D511', -	"NoBreak;":                         '\U00002060', -	"NonBreakingSpace;":                '\U000000A0', -	"Nopf;":                            '\U00002115', -	"Not;":                             '\U00002AEC', -	"NotCongruent;":                    '\U00002262', -	"NotCupCap;":                       '\U0000226D', -	"NotDoubleVerticalBar;":            '\U00002226', -	"NotElement;":                      '\U00002209', -	"NotEqual;":                        '\U00002260', -	"NotExists;":                       '\U00002204', -	"NotGreater;":                      '\U0000226F', -	"NotGreaterEqual;":                 '\U00002271', -	"NotGreaterLess;":                  '\U00002279', -	"NotGreaterTilde;":                 '\U00002275', -	"NotLeftTriangle;":                 '\U000022EA', -	"NotLeftTriangleEqual;":            '\U000022EC', -	"NotLess;":                         '\U0000226E', -	"NotLessEqual;":                    '\U00002270', -	"NotLessGreater;":                  '\U00002278', -	"NotLessTilde;":                    '\U00002274', -	"NotPrecedes;":                     '\U00002280', -	"NotPrecedesSlantEqual;":           '\U000022E0', -	"NotReverseElement;":               '\U0000220C', -	"NotRightTriangle;":                '\U000022EB', -	"NotRightTriangleEqual;":           '\U000022ED', -	"NotSquareSubsetEqual;":            '\U000022E2', -	"NotSquareSupersetEqual;":          '\U000022E3', -	"NotSubsetEqual;":                  '\U00002288', -	"NotSucceeds;":                     '\U00002281', -	"NotSucceedsSlantEqual;":           '\U000022E1', -	"NotSupersetEqual;":                '\U00002289', -	"NotTilde;":                        '\U00002241', -	"NotTildeEqual;":                   '\U00002244', -	"NotTildeFullEqual;":               '\U00002247', -	"NotTildeTilde;":                   '\U00002249', -	"NotVerticalBar;":                  '\U00002224', -	"Nscr;":                            '\U0001D4A9', -	"Ntilde;":                          '\U000000D1', -	"Nu;":                              '\U0000039D', -	"OElig;":                           '\U00000152', -	"Oacute;":                          '\U000000D3', -	"Ocirc;":                           '\U000000D4', -	"Ocy;":                             '\U0000041E', -	"Odblac;":                          '\U00000150', -	"Ofr;":                             '\U0001D512', -	"Ograve;":                          '\U000000D2', -	"Omacr;":                           '\U0000014C', -	"Omega;":                           '\U000003A9', -	"Omicron;":                         '\U0000039F', -	"Oopf;":                            '\U0001D546', -	"OpenCurlyDoubleQuote;":            '\U0000201C', -	"OpenCurlyQuote;":                  '\U00002018', -	"Or;":                              '\U00002A54', -	"Oscr;":                            '\U0001D4AA', -	"Oslash;":                          '\U000000D8', -	"Otilde;":                          '\U000000D5', -	"Otimes;":                          '\U00002A37', -	"Ouml;":                            '\U000000D6', -	"OverBar;":                         '\U0000203E', -	"OverBrace;":                       '\U000023DE', -	"OverBracket;":                     '\U000023B4', -	"OverParenthesis;":                 '\U000023DC', -	"PartialD;":                        '\U00002202', -	"Pcy;":                             '\U0000041F', -	"Pfr;":                             '\U0001D513', -	"Phi;":                             '\U000003A6', -	"Pi;":                              '\U000003A0', -	"PlusMinus;":                       '\U000000B1', -	"Poincareplane;":                   '\U0000210C', -	"Popf;":                            '\U00002119', -	"Pr;":                              '\U00002ABB', -	"Precedes;":                        '\U0000227A', -	"PrecedesEqual;":                   '\U00002AAF', -	"PrecedesSlantEqual;":              '\U0000227C', -	"PrecedesTilde;":                   '\U0000227E', -	"Prime;":                           '\U00002033', -	"Product;":                         '\U0000220F', -	"Proportion;":                      '\U00002237', -	"Proportional;":                    '\U0000221D', -	"Pscr;":                            '\U0001D4AB', -	"Psi;":                             '\U000003A8', -	"QUOT;":                            '\U00000022', -	"Qfr;":                             '\U0001D514', -	"Qopf;":                            '\U0000211A', -	"Qscr;":                            '\U0001D4AC', -	"RBarr;":                           '\U00002910', -	"REG;":                             '\U000000AE', -	"Racute;":                          '\U00000154', -	"Rang;":                            '\U000027EB', -	"Rarr;":                            '\U000021A0', -	"Rarrtl;":                          '\U00002916', -	"Rcaron;":                          '\U00000158', -	"Rcedil;":                          '\U00000156', -	"Rcy;":                             '\U00000420', -	"Re;":                              '\U0000211C', -	"ReverseElement;":                  '\U0000220B', -	"ReverseEquilibrium;":              '\U000021CB', -	"ReverseUpEquilibrium;":            '\U0000296F', -	"Rfr;":                             '\U0000211C', -	"Rho;":                             '\U000003A1', -	"RightAngleBracket;":               '\U000027E9', -	"RightArrow;":                      '\U00002192', -	"RightArrowBar;":                   '\U000021E5', -	"RightArrowLeftArrow;":             '\U000021C4', -	"RightCeiling;":                    '\U00002309', -	"RightDoubleBracket;":              '\U000027E7', -	"RightDownTeeVector;":              '\U0000295D', -	"RightDownVector;":                 '\U000021C2', -	"RightDownVectorBar;":              '\U00002955', -	"RightFloor;":                      '\U0000230B', -	"RightTee;":                        '\U000022A2', -	"RightTeeArrow;":                   '\U000021A6', -	"RightTeeVector;":                  '\U0000295B', -	"RightTriangle;":                   '\U000022B3', -	"RightTriangleBar;":                '\U000029D0', -	"RightTriangleEqual;":              '\U000022B5', -	"RightUpDownVector;":               '\U0000294F', -	"RightUpTeeVector;":                '\U0000295C', -	"RightUpVector;":                   '\U000021BE', -	"RightUpVectorBar;":                '\U00002954', -	"RightVector;":                     '\U000021C0', -	"RightVectorBar;":                  '\U00002953', -	"Rightarrow;":                      '\U000021D2', -	"Ropf;":                            '\U0000211D', -	"RoundImplies;":                    '\U00002970', -	"Rrightarrow;":                     '\U000021DB', -	"Rscr;":                            '\U0000211B', -	"Rsh;":                             '\U000021B1', -	"RuleDelayed;":                     '\U000029F4', -	"SHCHcy;":                          '\U00000429', -	"SHcy;":                            '\U00000428', -	"SOFTcy;":                          '\U0000042C', -	"Sacute;":                          '\U0000015A', -	"Sc;":                              '\U00002ABC', -	"Scaron;":                          '\U00000160', -	"Scedil;":                          '\U0000015E', -	"Scirc;":                           '\U0000015C', -	"Scy;":                             '\U00000421', -	"Sfr;":                             '\U0001D516', -	"ShortDownArrow;":                  '\U00002193', -	"ShortLeftArrow;":                  '\U00002190', -	"ShortRightArrow;":                 '\U00002192', -	"ShortUpArrow;":                    '\U00002191', -	"Sigma;":                           '\U000003A3', -	"SmallCircle;":                     '\U00002218', -	"Sopf;":                            '\U0001D54A', -	"Sqrt;":                            '\U0000221A', -	"Square;":                          '\U000025A1', -	"SquareIntersection;":              '\U00002293', -	"SquareSubset;":                    '\U0000228F', -	"SquareSubsetEqual;":               '\U00002291', -	"SquareSuperset;":                  '\U00002290', -	"SquareSupersetEqual;":             '\U00002292', -	"SquareUnion;":                     '\U00002294', -	"Sscr;":                            '\U0001D4AE', -	"Star;":                            '\U000022C6', -	"Sub;":                             '\U000022D0', -	"Subset;":                          '\U000022D0', -	"SubsetEqual;":                     '\U00002286', -	"Succeeds;":                        '\U0000227B', -	"SucceedsEqual;":                   '\U00002AB0', -	"SucceedsSlantEqual;":              '\U0000227D', -	"SucceedsTilde;":                   '\U0000227F', -	"SuchThat;":                        '\U0000220B', -	"Sum;":                             '\U00002211', -	"Sup;":                             '\U000022D1', -	"Superset;":                        '\U00002283', -	"SupersetEqual;":                   '\U00002287', -	"Supset;":                          '\U000022D1', -	"THORN;":                           '\U000000DE', -	"TRADE;":                           '\U00002122', -	"TSHcy;":                           '\U0000040B', -	"TScy;":                            '\U00000426', -	"Tab;":                             '\U00000009', -	"Tau;":                             '\U000003A4', -	"Tcaron;":                          '\U00000164', -	"Tcedil;":                          '\U00000162', -	"Tcy;":                             '\U00000422', -	"Tfr;":                             '\U0001D517', -	"Therefore;":                       '\U00002234', -	"Theta;":                           '\U00000398', -	"ThinSpace;":                       '\U00002009', -	"Tilde;":                           '\U0000223C', -	"TildeEqual;":                      '\U00002243', -	"TildeFullEqual;":                  '\U00002245', -	"TildeTilde;":                      '\U00002248', -	"Topf;":                            '\U0001D54B', -	"TripleDot;":                       '\U000020DB', -	"Tscr;":                            '\U0001D4AF', -	"Tstrok;":                          '\U00000166', -	"Uacute;":                          '\U000000DA', -	"Uarr;":                            '\U0000219F', -	"Uarrocir;":                        '\U00002949', -	"Ubrcy;":                           '\U0000040E', -	"Ubreve;":                          '\U0000016C', -	"Ucirc;":                           '\U000000DB', -	"Ucy;":                             '\U00000423', -	"Udblac;":                          '\U00000170', -	"Ufr;":                             '\U0001D518', -	"Ugrave;":                          '\U000000D9', -	"Umacr;":                           '\U0000016A', -	"UnderBar;":                        '\U0000005F', -	"UnderBrace;":                      '\U000023DF', -	"UnderBracket;":                    '\U000023B5', -	"UnderParenthesis;":                '\U000023DD', -	"Union;":                           '\U000022C3', -	"UnionPlus;":                       '\U0000228E', -	"Uogon;":                           '\U00000172', -	"Uopf;":                            '\U0001D54C', -	"UpArrow;":                         '\U00002191', -	"UpArrowBar;":                      '\U00002912', -	"UpArrowDownArrow;":                '\U000021C5', -	"UpDownArrow;":                     '\U00002195', -	"UpEquilibrium;":                   '\U0000296E', -	"UpTee;":                           '\U000022A5', -	"UpTeeArrow;":                      '\U000021A5', -	"Uparrow;":                         '\U000021D1', -	"Updownarrow;":                     '\U000021D5', -	"UpperLeftArrow;":                  '\U00002196', -	"UpperRightArrow;":                 '\U00002197', -	"Upsi;":                            '\U000003D2', -	"Upsilon;":                         '\U000003A5', -	"Uring;":                           '\U0000016E', -	"Uscr;":                            '\U0001D4B0', -	"Utilde;":                          '\U00000168', -	"Uuml;":                            '\U000000DC', -	"VDash;":                           '\U000022AB', -	"Vbar;":                            '\U00002AEB', -	"Vcy;":                             '\U00000412', -	"Vdash;":                           '\U000022A9', -	"Vdashl;":                          '\U00002AE6', -	"Vee;":                             '\U000022C1', -	"Verbar;":                          '\U00002016', -	"Vert;":                            '\U00002016', -	"VerticalBar;":                     '\U00002223', -	"VerticalLine;":                    '\U0000007C', -	"VerticalSeparator;":               '\U00002758', -	"VerticalTilde;":                   '\U00002240', -	"VeryThinSpace;":                   '\U0000200A', -	"Vfr;":                             '\U0001D519', -	"Vopf;":                            '\U0001D54D', -	"Vscr;":                            '\U0001D4B1', -	"Vvdash;":                          '\U000022AA', -	"Wcirc;":                           '\U00000174', -	"Wedge;":                           '\U000022C0', -	"Wfr;":                             '\U0001D51A', -	"Wopf;":                            '\U0001D54E', -	"Wscr;":                            '\U0001D4B2', -	"Xfr;":                             '\U0001D51B', -	"Xi;":                              '\U0000039E', -	"Xopf;":                            '\U0001D54F', -	"Xscr;":                            '\U0001D4B3', -	"YAcy;":                            '\U0000042F', -	"YIcy;":                            '\U00000407', -	"YUcy;":                            '\U0000042E', -	"Yacute;":                          '\U000000DD', -	"Ycirc;":                           '\U00000176', -	"Ycy;":                             '\U0000042B', -	"Yfr;":                             '\U0001D51C', -	"Yopf;":                            '\U0001D550', -	"Yscr;":                            '\U0001D4B4', -	"Yuml;":                            '\U00000178', -	"ZHcy;":                            '\U00000416', -	"Zacute;":                          '\U00000179', -	"Zcaron;":                          '\U0000017D', -	"Zcy;":                             '\U00000417', -	"Zdot;":                            '\U0000017B', -	"ZeroWidthSpace;":                  '\U0000200B', -	"Zeta;":                            '\U00000396', -	"Zfr;":                             '\U00002128', -	"Zopf;":                            '\U00002124', -	"Zscr;":                            '\U0001D4B5', -	"aacute;":                          '\U000000E1', -	"abreve;":                          '\U00000103', -	"ac;":                              '\U0000223E', -	"acd;":                             '\U0000223F', -	"acirc;":                           '\U000000E2', -	"acute;":                           '\U000000B4', -	"acy;":                             '\U00000430', -	"aelig;":                           '\U000000E6', -	"af;":                              '\U00002061', -	"afr;":                             '\U0001D51E', -	"agrave;":                          '\U000000E0', -	"alefsym;":                         '\U00002135', -	"aleph;":                           '\U00002135', -	"alpha;":                           '\U000003B1', -	"amacr;":                           '\U00000101', -	"amalg;":                           '\U00002A3F', -	"amp;":                             '\U00000026', -	"and;":                             '\U00002227', -	"andand;":                          '\U00002A55', -	"andd;":                            '\U00002A5C', -	"andslope;":                        '\U00002A58', -	"andv;":                            '\U00002A5A', -	"ang;":                             '\U00002220', -	"ange;":                            '\U000029A4', -	"angle;":                           '\U00002220', -	"angmsd;":                          '\U00002221', -	"angmsdaa;":                        '\U000029A8', -	"angmsdab;":                        '\U000029A9', -	"angmsdac;":                        '\U000029AA', -	"angmsdad;":                        '\U000029AB', -	"angmsdae;":                        '\U000029AC', -	"angmsdaf;":                        '\U000029AD', -	"angmsdag;":                        '\U000029AE', -	"angmsdah;":                        '\U000029AF', -	"angrt;":                           '\U0000221F', -	"angrtvb;":                         '\U000022BE', -	"angrtvbd;":                        '\U0000299D', -	"angsph;":                          '\U00002222', -	"angst;":                           '\U000000C5', -	"angzarr;":                         '\U0000237C', -	"aogon;":                           '\U00000105', -	"aopf;":                            '\U0001D552', -	"ap;":                              '\U00002248', -	"apE;":                             '\U00002A70', -	"apacir;":                          '\U00002A6F', -	"ape;":                             '\U0000224A', -	"apid;":                            '\U0000224B', -	"apos;":                            '\U00000027', -	"approx;":                          '\U00002248', -	"approxeq;":                        '\U0000224A', -	"aring;":                           '\U000000E5', -	"ascr;":                            '\U0001D4B6', -	"ast;":                             '\U0000002A', -	"asymp;":                           '\U00002248', -	"asympeq;":                         '\U0000224D', -	"atilde;":                          '\U000000E3', -	"auml;":                            '\U000000E4', -	"awconint;":                        '\U00002233', -	"awint;":                           '\U00002A11', -	"bNot;":                            '\U00002AED', -	"backcong;":                        '\U0000224C', -	"backepsilon;":                     '\U000003F6', -	"backprime;":                       '\U00002035', -	"backsim;":                         '\U0000223D', -	"backsimeq;":                       '\U000022CD', -	"barvee;":                          '\U000022BD', -	"barwed;":                          '\U00002305', -	"barwedge;":                        '\U00002305', -	"bbrk;":                            '\U000023B5', -	"bbrktbrk;":                        '\U000023B6', -	"bcong;":                           '\U0000224C', -	"bcy;":                             '\U00000431', -	"bdquo;":                           '\U0000201E', -	"becaus;":                          '\U00002235', -	"because;":                         '\U00002235', -	"bemptyv;":                         '\U000029B0', -	"bepsi;":                           '\U000003F6', -	"bernou;":                          '\U0000212C', -	"beta;":                            '\U000003B2', -	"beth;":                            '\U00002136', -	"between;":                         '\U0000226C', -	"bfr;":                             '\U0001D51F', -	"bigcap;":                          '\U000022C2', -	"bigcirc;":                         '\U000025EF', -	"bigcup;":                          '\U000022C3', -	"bigodot;":                         '\U00002A00', -	"bigoplus;":                        '\U00002A01', -	"bigotimes;":                       '\U00002A02', -	"bigsqcup;":                        '\U00002A06', -	"bigstar;":                         '\U00002605', -	"bigtriangledown;":                 '\U000025BD', -	"bigtriangleup;":                   '\U000025B3', -	"biguplus;":                        '\U00002A04', -	"bigvee;":                          '\U000022C1', -	"bigwedge;":                        '\U000022C0', -	"bkarow;":                          '\U0000290D', -	"blacklozenge;":                    '\U000029EB', -	"blacksquare;":                     '\U000025AA', -	"blacktriangle;":                   '\U000025B4', -	"blacktriangledown;":               '\U000025BE', -	"blacktriangleleft;":               '\U000025C2', -	"blacktriangleright;":              '\U000025B8', -	"blank;":                           '\U00002423', -	"blk12;":                           '\U00002592', -	"blk14;":                           '\U00002591', -	"blk34;":                           '\U00002593', -	"block;":                           '\U00002588', -	"bnot;":                            '\U00002310', -	"bopf;":                            '\U0001D553', -	"bot;":                             '\U000022A5', -	"bottom;":                          '\U000022A5', -	"bowtie;":                          '\U000022C8', -	"boxDL;":                           '\U00002557', -	"boxDR;":                           '\U00002554', -	"boxDl;":                           '\U00002556', -	"boxDr;":                           '\U00002553', -	"boxH;":                            '\U00002550', -	"boxHD;":                           '\U00002566', -	"boxHU;":                           '\U00002569', -	"boxHd;":                           '\U00002564', -	"boxHu;":                           '\U00002567', -	"boxUL;":                           '\U0000255D', -	"boxUR;":                           '\U0000255A', -	"boxUl;":                           '\U0000255C', -	"boxUr;":                           '\U00002559', -	"boxV;":                            '\U00002551', -	"boxVH;":                           '\U0000256C', -	"boxVL;":                           '\U00002563', -	"boxVR;":                           '\U00002560', -	"boxVh;":                           '\U0000256B', -	"boxVl;":                           '\U00002562', -	"boxVr;":                           '\U0000255F', -	"boxbox;":                          '\U000029C9', -	"boxdL;":                           '\U00002555', -	"boxdR;":                           '\U00002552', -	"boxdl;":                           '\U00002510', -	"boxdr;":                           '\U0000250C', -	"boxh;":                            '\U00002500', -	"boxhD;":                           '\U00002565', -	"boxhU;":                           '\U00002568', -	"boxhd;":                           '\U0000252C', -	"boxhu;":                           '\U00002534', -	"boxminus;":                        '\U0000229F', -	"boxplus;":                         '\U0000229E', -	"boxtimes;":                        '\U000022A0', -	"boxuL;":                           '\U0000255B', -	"boxuR;":                           '\U00002558', -	"boxul;":                           '\U00002518', -	"boxur;":                           '\U00002514', -	"boxv;":                            '\U00002502', -	"boxvH;":                           '\U0000256A', -	"boxvL;":                           '\U00002561', -	"boxvR;":                           '\U0000255E', -	"boxvh;":                           '\U0000253C', -	"boxvl;":                           '\U00002524', -	"boxvr;":                           '\U0000251C', -	"bprime;":                          '\U00002035', -	"breve;":                           '\U000002D8', -	"brvbar;":                          '\U000000A6', -	"bscr;":                            '\U0001D4B7', -	"bsemi;":                           '\U0000204F', -	"bsim;":                            '\U0000223D', -	"bsime;":                           '\U000022CD', -	"bsol;":                            '\U0000005C', -	"bsolb;":                           '\U000029C5', -	"bsolhsub;":                        '\U000027C8', -	"bull;":                            '\U00002022', -	"bullet;":                          '\U00002022', -	"bump;":                            '\U0000224E', -	"bumpE;":                           '\U00002AAE', -	"bumpe;":                           '\U0000224F', -	"bumpeq;":                          '\U0000224F', -	"cacute;":                          '\U00000107', -	"cap;":                             '\U00002229', -	"capand;":                          '\U00002A44', -	"capbrcup;":                        '\U00002A49', -	"capcap;":                          '\U00002A4B', -	"capcup;":                          '\U00002A47', -	"capdot;":                          '\U00002A40', -	"caret;":                           '\U00002041', -	"caron;":                           '\U000002C7', -	"ccaps;":                           '\U00002A4D', -	"ccaron;":                          '\U0000010D', -	"ccedil;":                          '\U000000E7', -	"ccirc;":                           '\U00000109', -	"ccups;":                           '\U00002A4C', -	"ccupssm;":                         '\U00002A50', -	"cdot;":                            '\U0000010B', -	"cedil;":                           '\U000000B8', -	"cemptyv;":                         '\U000029B2', -	"cent;":                            '\U000000A2', -	"centerdot;":                       '\U000000B7', -	"cfr;":                             '\U0001D520', -	"chcy;":                            '\U00000447', -	"check;":                           '\U00002713', -	"checkmark;":                       '\U00002713', -	"chi;":                             '\U000003C7', -	"cir;":                             '\U000025CB', -	"cirE;":                            '\U000029C3', -	"circ;":                            '\U000002C6', -	"circeq;":                          '\U00002257', -	"circlearrowleft;":                 '\U000021BA', -	"circlearrowright;":                '\U000021BB', -	"circledR;":                        '\U000000AE', -	"circledS;":                        '\U000024C8', -	"circledast;":                      '\U0000229B', -	"circledcirc;":                     '\U0000229A', -	"circleddash;":                     '\U0000229D', -	"cire;":                            '\U00002257', -	"cirfnint;":                        '\U00002A10', -	"cirmid;":                          '\U00002AEF', -	"cirscir;":                         '\U000029C2', -	"clubs;":                           '\U00002663', -	"clubsuit;":                        '\U00002663', -	"colon;":                           '\U0000003A', -	"colone;":                          '\U00002254', -	"coloneq;":                         '\U00002254', -	"comma;":                           '\U0000002C', -	"commat;":                          '\U00000040', -	"comp;":                            '\U00002201', -	"compfn;":                          '\U00002218', -	"complement;":                      '\U00002201', -	"complexes;":                       '\U00002102', -	"cong;":                            '\U00002245', -	"congdot;":                         '\U00002A6D', -	"conint;":                          '\U0000222E', -	"copf;":                            '\U0001D554', -	"coprod;":                          '\U00002210', -	"copy;":                            '\U000000A9', -	"copysr;":                          '\U00002117', -	"crarr;":                           '\U000021B5', -	"cross;":                           '\U00002717', -	"cscr;":                            '\U0001D4B8', -	"csub;":                            '\U00002ACF', -	"csube;":                           '\U00002AD1', -	"csup;":                            '\U00002AD0', -	"csupe;":                           '\U00002AD2', -	"ctdot;":                           '\U000022EF', -	"cudarrl;":                         '\U00002938', -	"cudarrr;":                         '\U00002935', -	"cuepr;":                           '\U000022DE', -	"cuesc;":                           '\U000022DF', -	"cularr;":                          '\U000021B6', -	"cularrp;":                         '\U0000293D', -	"cup;":                             '\U0000222A', -	"cupbrcap;":                        '\U00002A48', -	"cupcap;":                          '\U00002A46', -	"cupcup;":                          '\U00002A4A', -	"cupdot;":                          '\U0000228D', -	"cupor;":                           '\U00002A45', -	"curarr;":                          '\U000021B7', -	"curarrm;":                         '\U0000293C', -	"curlyeqprec;":                     '\U000022DE', -	"curlyeqsucc;":                     '\U000022DF', -	"curlyvee;":                        '\U000022CE', -	"curlywedge;":                      '\U000022CF', -	"curren;":                          '\U000000A4', -	"curvearrowleft;":                  '\U000021B6', -	"curvearrowright;":                 '\U000021B7', -	"cuvee;":                           '\U000022CE', -	"cuwed;":                           '\U000022CF', -	"cwconint;":                        '\U00002232', -	"cwint;":                           '\U00002231', -	"cylcty;":                          '\U0000232D', -	"dArr;":                            '\U000021D3', -	"dHar;":                            '\U00002965', -	"dagger;":                          '\U00002020', -	"daleth;":                          '\U00002138', -	"darr;":                            '\U00002193', -	"dash;":                            '\U00002010', -	"dashv;":                           '\U000022A3', -	"dbkarow;":                         '\U0000290F', -	"dblac;":                           '\U000002DD', -	"dcaron;":                          '\U0000010F', -	"dcy;":                             '\U00000434', -	"dd;":                              '\U00002146', -	"ddagger;":                         '\U00002021', -	"ddarr;":                           '\U000021CA', -	"ddotseq;":                         '\U00002A77', -	"deg;":                             '\U000000B0', -	"delta;":                           '\U000003B4', -	"demptyv;":                         '\U000029B1', -	"dfisht;":                          '\U0000297F', -	"dfr;":                             '\U0001D521', -	"dharl;":                           '\U000021C3', -	"dharr;":                           '\U000021C2', -	"diam;":                            '\U000022C4', -	"diamond;":                         '\U000022C4', -	"diamondsuit;":                     '\U00002666', -	"diams;":                           '\U00002666', -	"die;":                             '\U000000A8', -	"digamma;":                         '\U000003DD', -	"disin;":                           '\U000022F2', -	"div;":                             '\U000000F7', -	"divide;":                          '\U000000F7', -	"divideontimes;":                   '\U000022C7', -	"divonx;":                          '\U000022C7', -	"djcy;":                            '\U00000452', -	"dlcorn;":                          '\U0000231E', -	"dlcrop;":                          '\U0000230D', -	"dollar;":                          '\U00000024', -	"dopf;":                            '\U0001D555', -	"dot;":                             '\U000002D9', -	"doteq;":                           '\U00002250', -	"doteqdot;":                        '\U00002251', -	"dotminus;":                        '\U00002238', -	"dotplus;":                         '\U00002214', -	"dotsquare;":                       '\U000022A1', -	"doublebarwedge;":                  '\U00002306', -	"downarrow;":                       '\U00002193', -	"downdownarrows;":                  '\U000021CA', -	"downharpoonleft;":                 '\U000021C3', -	"downharpoonright;":                '\U000021C2', -	"drbkarow;":                        '\U00002910', -	"drcorn;":                          '\U0000231F', -	"drcrop;":                          '\U0000230C', -	"dscr;":                            '\U0001D4B9', -	"dscy;":                            '\U00000455', -	"dsol;":                            '\U000029F6', -	"dstrok;":                          '\U00000111', -	"dtdot;":                           '\U000022F1', -	"dtri;":                            '\U000025BF', -	"dtrif;":                           '\U000025BE', -	"duarr;":                           '\U000021F5', -	"duhar;":                           '\U0000296F', -	"dwangle;":                         '\U000029A6', -	"dzcy;":                            '\U0000045F', -	"dzigrarr;":                        '\U000027FF', -	"eDDot;":                           '\U00002A77', -	"eDot;":                            '\U00002251', -	"eacute;":                          '\U000000E9', -	"easter;":                          '\U00002A6E', -	"ecaron;":                          '\U0000011B', -	"ecir;":                            '\U00002256', -	"ecirc;":                           '\U000000EA', -	"ecolon;":                          '\U00002255', -	"ecy;":                             '\U0000044D', -	"edot;":                            '\U00000117', -	"ee;":                              '\U00002147', -	"efDot;":                           '\U00002252', -	"efr;":                             '\U0001D522', -	"eg;":                              '\U00002A9A', -	"egrave;":                          '\U000000E8', -	"egs;":                             '\U00002A96', -	"egsdot;":                          '\U00002A98', -	"el;":                              '\U00002A99', -	"elinters;":                        '\U000023E7', -	"ell;":                             '\U00002113', -	"els;":                             '\U00002A95', -	"elsdot;":                          '\U00002A97', -	"emacr;":                           '\U00000113', -	"empty;":                           '\U00002205', -	"emptyset;":                        '\U00002205', -	"emptyv;":                          '\U00002205', -	"emsp;":                            '\U00002003', -	"emsp13;":                          '\U00002004', -	"emsp14;":                          '\U00002005', -	"eng;":                             '\U0000014B', -	"ensp;":                            '\U00002002', -	"eogon;":                           '\U00000119', -	"eopf;":                            '\U0001D556', -	"epar;":                            '\U000022D5', -	"eparsl;":                          '\U000029E3', -	"eplus;":                           '\U00002A71', -	"epsi;":                            '\U000003B5', -	"epsilon;":                         '\U000003B5', -	"epsiv;":                           '\U000003F5', -	"eqcirc;":                          '\U00002256', -	"eqcolon;":                         '\U00002255', -	"eqsim;":                           '\U00002242', -	"eqslantgtr;":                      '\U00002A96', -	"eqslantless;":                     '\U00002A95', -	"equals;":                          '\U0000003D', -	"equest;":                          '\U0000225F', -	"equiv;":                           '\U00002261', -	"equivDD;":                         '\U00002A78', -	"eqvparsl;":                        '\U000029E5', -	"erDot;":                           '\U00002253', -	"erarr;":                           '\U00002971', -	"escr;":                            '\U0000212F', -	"esdot;":                           '\U00002250', -	"esim;":                            '\U00002242', -	"eta;":                             '\U000003B7', -	"eth;":                             '\U000000F0', -	"euml;":                            '\U000000EB', -	"euro;":                            '\U000020AC', -	"excl;":                            '\U00000021', -	"exist;":                           '\U00002203', -	"expectation;":                     '\U00002130', -	"exponentiale;":                    '\U00002147', -	"fallingdotseq;":                   '\U00002252', -	"fcy;":                             '\U00000444', -	"female;":                          '\U00002640', -	"ffilig;":                          '\U0000FB03', -	"fflig;":                           '\U0000FB00', -	"ffllig;":                          '\U0000FB04', -	"ffr;":                             '\U0001D523', -	"filig;":                           '\U0000FB01', -	"flat;":                            '\U0000266D', -	"fllig;":                           '\U0000FB02', -	"fltns;":                           '\U000025B1', -	"fnof;":                            '\U00000192', -	"fopf;":                            '\U0001D557', -	"forall;":                          '\U00002200', -	"fork;":                            '\U000022D4', -	"forkv;":                           '\U00002AD9', -	"fpartint;":                        '\U00002A0D', -	"frac12;":                          '\U000000BD', -	"frac13;":                          '\U00002153', -	"frac14;":                          '\U000000BC', -	"frac15;":                          '\U00002155', -	"frac16;":                          '\U00002159', -	"frac18;":                          '\U0000215B', -	"frac23;":                          '\U00002154', -	"frac25;":                          '\U00002156', -	"frac34;":                          '\U000000BE', -	"frac35;":                          '\U00002157', -	"frac38;":                          '\U0000215C', -	"frac45;":                          '\U00002158', -	"frac56;":                          '\U0000215A', -	"frac58;":                          '\U0000215D', -	"frac78;":                          '\U0000215E', -	"frasl;":                           '\U00002044', -	"frown;":                           '\U00002322', -	"fscr;":                            '\U0001D4BB', -	"gE;":                              '\U00002267', -	"gEl;":                             '\U00002A8C', -	"gacute;":                          '\U000001F5', -	"gamma;":                           '\U000003B3', -	"gammad;":                          '\U000003DD', -	"gap;":                             '\U00002A86', -	"gbreve;":                          '\U0000011F', -	"gcirc;":                           '\U0000011D', -	"gcy;":                             '\U00000433', -	"gdot;":                            '\U00000121', -	"ge;":                              '\U00002265', -	"gel;":                             '\U000022DB', -	"geq;":                             '\U00002265', -	"geqq;":                            '\U00002267', -	"geqslant;":                        '\U00002A7E', -	"ges;":                             '\U00002A7E', -	"gescc;":                           '\U00002AA9', -	"gesdot;":                          '\U00002A80', -	"gesdoto;":                         '\U00002A82', -	"gesdotol;":                        '\U00002A84', -	"gesles;":                          '\U00002A94', -	"gfr;":                             '\U0001D524', -	"gg;":                              '\U0000226B', -	"ggg;":                             '\U000022D9', -	"gimel;":                           '\U00002137', -	"gjcy;":                            '\U00000453', -	"gl;":                              '\U00002277', -	"glE;":                             '\U00002A92', -	"gla;":                             '\U00002AA5', -	"glj;":                             '\U00002AA4', -	"gnE;":                             '\U00002269', -	"gnap;":                            '\U00002A8A', -	"gnapprox;":                        '\U00002A8A', -	"gne;":                             '\U00002A88', -	"gneq;":                            '\U00002A88', -	"gneqq;":                           '\U00002269', -	"gnsim;":                           '\U000022E7', -	"gopf;":                            '\U0001D558', -	"grave;":                           '\U00000060', -	"gscr;":                            '\U0000210A', -	"gsim;":                            '\U00002273', -	"gsime;":                           '\U00002A8E', -	"gsiml;":                           '\U00002A90', -	"gt;":                              '\U0000003E', -	"gtcc;":                            '\U00002AA7', -	"gtcir;":                           '\U00002A7A', -	"gtdot;":                           '\U000022D7', -	"gtlPar;":                          '\U00002995', -	"gtquest;":                         '\U00002A7C', -	"gtrapprox;":                       '\U00002A86', -	"gtrarr;":                          '\U00002978', -	"gtrdot;":                          '\U000022D7', -	"gtreqless;":                       '\U000022DB', -	"gtreqqless;":                      '\U00002A8C', -	"gtrless;":                         '\U00002277', -	"gtrsim;":                          '\U00002273', -	"hArr;":                            '\U000021D4', -	"hairsp;":                          '\U0000200A', -	"half;":                            '\U000000BD', -	"hamilt;":                          '\U0000210B', -	"hardcy;":                          '\U0000044A', -	"harr;":                            '\U00002194', -	"harrcir;":                         '\U00002948', -	"harrw;":                           '\U000021AD', -	"hbar;":                            '\U0000210F', -	"hcirc;":                           '\U00000125', -	"hearts;":                          '\U00002665', -	"heartsuit;":                       '\U00002665', -	"hellip;":                          '\U00002026', -	"hercon;":                          '\U000022B9', -	"hfr;":                             '\U0001D525', -	"hksearow;":                        '\U00002925', -	"hkswarow;":                        '\U00002926', -	"hoarr;":                           '\U000021FF', -	"homtht;":                          '\U0000223B', -	"hookleftarrow;":                   '\U000021A9', -	"hookrightarrow;":                  '\U000021AA', -	"hopf;":                            '\U0001D559', -	"horbar;":                          '\U00002015', -	"hscr;":                            '\U0001D4BD', -	"hslash;":                          '\U0000210F', -	"hstrok;":                          '\U00000127', -	"hybull;":                          '\U00002043', -	"hyphen;":                          '\U00002010', -	"iacute;":                          '\U000000ED', -	"ic;":                              '\U00002063', -	"icirc;":                           '\U000000EE', -	"icy;":                             '\U00000438', -	"iecy;":                            '\U00000435', -	"iexcl;":                           '\U000000A1', -	"iff;":                             '\U000021D4', -	"ifr;":                             '\U0001D526', -	"igrave;":                          '\U000000EC', -	"ii;":                              '\U00002148', -	"iiiint;":                          '\U00002A0C', -	"iiint;":                           '\U0000222D', -	"iinfin;":                          '\U000029DC', -	"iiota;":                           '\U00002129', -	"ijlig;":                           '\U00000133', -	"imacr;":                           '\U0000012B', -	"image;":                           '\U00002111', -	"imagline;":                        '\U00002110', -	"imagpart;":                        '\U00002111', -	"imath;":                           '\U00000131', -	"imof;":                            '\U000022B7', -	"imped;":                           '\U000001B5', -	"in;":                              '\U00002208', -	"incare;":                          '\U00002105', -	"infin;":                           '\U0000221E', -	"infintie;":                        '\U000029DD', -	"inodot;":                          '\U00000131', -	"int;":                             '\U0000222B', -	"intcal;":                          '\U000022BA', -	"integers;":                        '\U00002124', -	"intercal;":                        '\U000022BA', -	"intlarhk;":                        '\U00002A17', -	"intprod;":                         '\U00002A3C', -	"iocy;":                            '\U00000451', -	"iogon;":                           '\U0000012F', -	"iopf;":                            '\U0001D55A', -	"iota;":                            '\U000003B9', -	"iprod;":                           '\U00002A3C', -	"iquest;":                          '\U000000BF', -	"iscr;":                            '\U0001D4BE', -	"isin;":                            '\U00002208', -	"isinE;":                           '\U000022F9', -	"isindot;":                         '\U000022F5', -	"isins;":                           '\U000022F4', -	"isinsv;":                          '\U000022F3', -	"isinv;":                           '\U00002208', -	"it;":                              '\U00002062', -	"itilde;":                          '\U00000129', -	"iukcy;":                           '\U00000456', -	"iuml;":                            '\U000000EF', -	"jcirc;":                           '\U00000135', -	"jcy;":                             '\U00000439', -	"jfr;":                             '\U0001D527', -	"jmath;":                           '\U00000237', -	"jopf;":                            '\U0001D55B', -	"jscr;":                            '\U0001D4BF', -	"jsercy;":                          '\U00000458', -	"jukcy;":                           '\U00000454', -	"kappa;":                           '\U000003BA', -	"kappav;":                          '\U000003F0', -	"kcedil;":                          '\U00000137', -	"kcy;":                             '\U0000043A', -	"kfr;":                             '\U0001D528', -	"kgreen;":                          '\U00000138', -	"khcy;":                            '\U00000445', -	"kjcy;":                            '\U0000045C', -	"kopf;":                            '\U0001D55C', -	"kscr;":                            '\U0001D4C0', -	"lAarr;":                           '\U000021DA', -	"lArr;":                            '\U000021D0', -	"lAtail;":                          '\U0000291B', -	"lBarr;":                           '\U0000290E', -	"lE;":                              '\U00002266', -	"lEg;":                             '\U00002A8B', -	"lHar;":                            '\U00002962', -	"lacute;":                          '\U0000013A', -	"laemptyv;":                        '\U000029B4', -	"lagran;":                          '\U00002112', -	"lambda;":                          '\U000003BB', -	"lang;":                            '\U000027E8', -	"langd;":                           '\U00002991', -	"langle;":                          '\U000027E8', -	"lap;":                             '\U00002A85', -	"laquo;":                           '\U000000AB', -	"larr;":                            '\U00002190', -	"larrb;":                           '\U000021E4', -	"larrbfs;":                         '\U0000291F', -	"larrfs;":                          '\U0000291D', -	"larrhk;":                          '\U000021A9', -	"larrlp;":                          '\U000021AB', -	"larrpl;":                          '\U00002939', -	"larrsim;":                         '\U00002973', -	"larrtl;":                          '\U000021A2', -	"lat;":                             '\U00002AAB', -	"latail;":                          '\U00002919', -	"late;":                            '\U00002AAD', -	"lbarr;":                           '\U0000290C', -	"lbbrk;":                           '\U00002772', -	"lbrace;":                          '\U0000007B', -	"lbrack;":                          '\U0000005B', -	"lbrke;":                           '\U0000298B', -	"lbrksld;":                         '\U0000298F', -	"lbrkslu;":                         '\U0000298D', -	"lcaron;":                          '\U0000013E', -	"lcedil;":                          '\U0000013C', -	"lceil;":                           '\U00002308', -	"lcub;":                            '\U0000007B', -	"lcy;":                             '\U0000043B', -	"ldca;":                            '\U00002936', -	"ldquo;":                           '\U0000201C', -	"ldquor;":                          '\U0000201E', -	"ldrdhar;":                         '\U00002967', -	"ldrushar;":                        '\U0000294B', -	"ldsh;":                            '\U000021B2', -	"le;":                              '\U00002264', -	"leftarrow;":                       '\U00002190', -	"leftarrowtail;":                   '\U000021A2', -	"leftharpoondown;":                 '\U000021BD', -	"leftharpoonup;":                   '\U000021BC', -	"leftleftarrows;":                  '\U000021C7', -	"leftrightarrow;":                  '\U00002194', -	"leftrightarrows;":                 '\U000021C6', -	"leftrightharpoons;":               '\U000021CB', -	"leftrightsquigarrow;":             '\U000021AD', -	"leftthreetimes;":                  '\U000022CB', -	"leg;":                             '\U000022DA', -	"leq;":                             '\U00002264', -	"leqq;":                            '\U00002266', -	"leqslant;":                        '\U00002A7D', -	"les;":                             '\U00002A7D', -	"lescc;":                           '\U00002AA8', -	"lesdot;":                          '\U00002A7F', -	"lesdoto;":                         '\U00002A81', -	"lesdotor;":                        '\U00002A83', -	"lesges;":                          '\U00002A93', -	"lessapprox;":                      '\U00002A85', -	"lessdot;":                         '\U000022D6', -	"lesseqgtr;":                       '\U000022DA', -	"lesseqqgtr;":                      '\U00002A8B', -	"lessgtr;":                         '\U00002276', -	"lesssim;":                         '\U00002272', -	"lfisht;":                          '\U0000297C', -	"lfloor;":                          '\U0000230A', -	"lfr;":                             '\U0001D529', -	"lg;":                              '\U00002276', -	"lgE;":                             '\U00002A91', -	"lhard;":                           '\U000021BD', -	"lharu;":                           '\U000021BC', -	"lharul;":                          '\U0000296A', -	"lhblk;":                           '\U00002584', -	"ljcy;":                            '\U00000459', -	"ll;":                              '\U0000226A', -	"llarr;":                           '\U000021C7', -	"llcorner;":                        '\U0000231E', -	"llhard;":                          '\U0000296B', -	"lltri;":                           '\U000025FA', -	"lmidot;":                          '\U00000140', -	"lmoust;":                          '\U000023B0', -	"lmoustache;":                      '\U000023B0', -	"lnE;":                             '\U00002268', -	"lnap;":                            '\U00002A89', -	"lnapprox;":                        '\U00002A89', -	"lne;":                             '\U00002A87', -	"lneq;":                            '\U00002A87', -	"lneqq;":                           '\U00002268', -	"lnsim;":                           '\U000022E6', -	"loang;":                           '\U000027EC', -	"loarr;":                           '\U000021FD', -	"lobrk;":                           '\U000027E6', -	"longleftarrow;":                   '\U000027F5', -	"longleftrightarrow;":              '\U000027F7', -	"longmapsto;":                      '\U000027FC', -	"longrightarrow;":                  '\U000027F6', -	"looparrowleft;":                   '\U000021AB', -	"looparrowright;":                  '\U000021AC', -	"lopar;":                           '\U00002985', -	"lopf;":                            '\U0001D55D', -	"loplus;":                          '\U00002A2D', -	"lotimes;":                         '\U00002A34', -	"lowast;":                          '\U00002217', -	"lowbar;":                          '\U0000005F', -	"loz;":                             '\U000025CA', -	"lozenge;":                         '\U000025CA', -	"lozf;":                            '\U000029EB', -	"lpar;":                            '\U00000028', -	"lparlt;":                          '\U00002993', -	"lrarr;":                           '\U000021C6', -	"lrcorner;":                        '\U0000231F', -	"lrhar;":                           '\U000021CB', -	"lrhard;":                          '\U0000296D', -	"lrm;":                             '\U0000200E', -	"lrtri;":                           '\U000022BF', -	"lsaquo;":                          '\U00002039', -	"lscr;":                            '\U0001D4C1', -	"lsh;":                             '\U000021B0', -	"lsim;":                            '\U00002272', -	"lsime;":                           '\U00002A8D', -	"lsimg;":                           '\U00002A8F', -	"lsqb;":                            '\U0000005B', -	"lsquo;":                           '\U00002018', -	"lsquor;":                          '\U0000201A', -	"lstrok;":                          '\U00000142', -	"lt;":                              '\U0000003C', -	"ltcc;":                            '\U00002AA6', -	"ltcir;":                           '\U00002A79', -	"ltdot;":                           '\U000022D6', -	"lthree;":                          '\U000022CB', -	"ltimes;":                          '\U000022C9', -	"ltlarr;":                          '\U00002976', -	"ltquest;":                         '\U00002A7B', -	"ltrPar;":                          '\U00002996', -	"ltri;":                            '\U000025C3', -	"ltrie;":                           '\U000022B4', -	"ltrif;":                           '\U000025C2', -	"lurdshar;":                        '\U0000294A', -	"luruhar;":                         '\U00002966', -	"mDDot;":                           '\U0000223A', -	"macr;":                            '\U000000AF', -	"male;":                            '\U00002642', -	"malt;":                            '\U00002720', -	"maltese;":                         '\U00002720', -	"map;":                             '\U000021A6', -	"mapsto;":                          '\U000021A6', -	"mapstodown;":                      '\U000021A7', -	"mapstoleft;":                      '\U000021A4', -	"mapstoup;":                        '\U000021A5', -	"marker;":                          '\U000025AE', -	"mcomma;":                          '\U00002A29', -	"mcy;":                             '\U0000043C', -	"mdash;":                           '\U00002014', -	"measuredangle;":                   '\U00002221', -	"mfr;":                             '\U0001D52A', -	"mho;":                             '\U00002127', -	"micro;":                           '\U000000B5', -	"mid;":                             '\U00002223', -	"midast;":                          '\U0000002A', -	"midcir;":                          '\U00002AF0', -	"middot;":                          '\U000000B7', -	"minus;":                           '\U00002212', -	"minusb;":                          '\U0000229F', -	"minusd;":                          '\U00002238', -	"minusdu;":                         '\U00002A2A', -	"mlcp;":                            '\U00002ADB', -	"mldr;":                            '\U00002026', -	"mnplus;":                          '\U00002213', -	"models;":                          '\U000022A7', -	"mopf;":                            '\U0001D55E', -	"mp;":                              '\U00002213', -	"mscr;":                            '\U0001D4C2', -	"mstpos;":                          '\U0000223E', -	"mu;":                              '\U000003BC', -	"multimap;":                        '\U000022B8', -	"mumap;":                           '\U000022B8', -	"nLeftarrow;":                      '\U000021CD', -	"nLeftrightarrow;":                 '\U000021CE', -	"nRightarrow;":                     '\U000021CF', -	"nVDash;":                          '\U000022AF', -	"nVdash;":                          '\U000022AE', -	"nabla;":                           '\U00002207', -	"nacute;":                          '\U00000144', -	"nap;":                             '\U00002249', -	"napos;":                           '\U00000149', -	"napprox;":                         '\U00002249', -	"natur;":                           '\U0000266E', -	"natural;":                         '\U0000266E', -	"naturals;":                        '\U00002115', -	"nbsp;":                            '\U000000A0', -	"ncap;":                            '\U00002A43', -	"ncaron;":                          '\U00000148', -	"ncedil;":                          '\U00000146', -	"ncong;":                           '\U00002247', -	"ncup;":                            '\U00002A42', -	"ncy;":                             '\U0000043D', -	"ndash;":                           '\U00002013', -	"ne;":                              '\U00002260', -	"neArr;":                           '\U000021D7', -	"nearhk;":                          '\U00002924', -	"nearr;":                           '\U00002197', -	"nearrow;":                         '\U00002197', -	"nequiv;":                          '\U00002262', -	"nesear;":                          '\U00002928', -	"nexist;":                          '\U00002204', -	"nexists;":                         '\U00002204', -	"nfr;":                             '\U0001D52B', -	"nge;":                             '\U00002271', -	"ngeq;":                            '\U00002271', -	"ngsim;":                           '\U00002275', -	"ngt;":                             '\U0000226F', -	"ngtr;":                            '\U0000226F', -	"nhArr;":                           '\U000021CE', -	"nharr;":                           '\U000021AE', -	"nhpar;":                           '\U00002AF2', -	"ni;":                              '\U0000220B', -	"nis;":                             '\U000022FC', -	"nisd;":                            '\U000022FA', -	"niv;":                             '\U0000220B', -	"njcy;":                            '\U0000045A', -	"nlArr;":                           '\U000021CD', -	"nlarr;":                           '\U0000219A', -	"nldr;":                            '\U00002025', -	"nle;":                             '\U00002270', -	"nleftarrow;":                      '\U0000219A', -	"nleftrightarrow;":                 '\U000021AE', -	"nleq;":                            '\U00002270', -	"nless;":                           '\U0000226E', -	"nlsim;":                           '\U00002274', -	"nlt;":                             '\U0000226E', -	"nltri;":                           '\U000022EA', -	"nltrie;":                          '\U000022EC', -	"nmid;":                            '\U00002224', -	"nopf;":                            '\U0001D55F', -	"not;":                             '\U000000AC', -	"notin;":                           '\U00002209', -	"notinva;":                         '\U00002209', -	"notinvb;":                         '\U000022F7', -	"notinvc;":                         '\U000022F6', -	"notni;":                           '\U0000220C', -	"notniva;":                         '\U0000220C', -	"notnivb;":                         '\U000022FE', -	"notnivc;":                         '\U000022FD', -	"npar;":                            '\U00002226', -	"nparallel;":                       '\U00002226', -	"npolint;":                         '\U00002A14', -	"npr;":                             '\U00002280', -	"nprcue;":                          '\U000022E0', -	"nprec;":                           '\U00002280', -	"nrArr;":                           '\U000021CF', -	"nrarr;":                           '\U0000219B', -	"nrightarrow;":                     '\U0000219B', -	"nrtri;":                           '\U000022EB', -	"nrtrie;":                          '\U000022ED', -	"nsc;":                             '\U00002281', -	"nsccue;":                          '\U000022E1', -	"nscr;":                            '\U0001D4C3', -	"nshortmid;":                       '\U00002224', -	"nshortparallel;":                  '\U00002226', -	"nsim;":                            '\U00002241', -	"nsime;":                           '\U00002244', -	"nsimeq;":                          '\U00002244', -	"nsmid;":                           '\U00002224', -	"nspar;":                           '\U00002226', -	"nsqsube;":                         '\U000022E2', -	"nsqsupe;":                         '\U000022E3', -	"nsub;":                            '\U00002284', -	"nsube;":                           '\U00002288', -	"nsubseteq;":                       '\U00002288', -	"nsucc;":                           '\U00002281', -	"nsup;":                            '\U00002285', -	"nsupe;":                           '\U00002289', -	"nsupseteq;":                       '\U00002289', -	"ntgl;":                            '\U00002279', -	"ntilde;":                          '\U000000F1', -	"ntlg;":                            '\U00002278', -	"ntriangleleft;":                   '\U000022EA', -	"ntrianglelefteq;":                 '\U000022EC', -	"ntriangleright;":                  '\U000022EB', -	"ntrianglerighteq;":                '\U000022ED', -	"nu;":                              '\U000003BD', -	"num;":                             '\U00000023', -	"numero;":                          '\U00002116', -	"numsp;":                           '\U00002007', -	"nvDash;":                          '\U000022AD', -	"nvHarr;":                          '\U00002904', -	"nvdash;":                          '\U000022AC', -	"nvinfin;":                         '\U000029DE', -	"nvlArr;":                          '\U00002902', -	"nvrArr;":                          '\U00002903', -	"nwArr;":                           '\U000021D6', -	"nwarhk;":                          '\U00002923', -	"nwarr;":                           '\U00002196', -	"nwarrow;":                         '\U00002196', -	"nwnear;":                          '\U00002927', -	"oS;":                              '\U000024C8', -	"oacute;":                          '\U000000F3', -	"oast;":                            '\U0000229B', -	"ocir;":                            '\U0000229A', -	"ocirc;":                           '\U000000F4', -	"ocy;":                             '\U0000043E', -	"odash;":                           '\U0000229D', -	"odblac;":                          '\U00000151', -	"odiv;":                            '\U00002A38', -	"odot;":                            '\U00002299', -	"odsold;":                          '\U000029BC', -	"oelig;":                           '\U00000153', -	"ofcir;":                           '\U000029BF', -	"ofr;":                             '\U0001D52C', -	"ogon;":                            '\U000002DB', -	"ograve;":                          '\U000000F2', -	"ogt;":                             '\U000029C1', -	"ohbar;":                           '\U000029B5', -	"ohm;":                             '\U000003A9', -	"oint;":                            '\U0000222E', -	"olarr;":                           '\U000021BA', -	"olcir;":                           '\U000029BE', -	"olcross;":                         '\U000029BB', -	"oline;":                           '\U0000203E', -	"olt;":                             '\U000029C0', -	"omacr;":                           '\U0000014D', -	"omega;":                           '\U000003C9', -	"omicron;":                         '\U000003BF', -	"omid;":                            '\U000029B6', -	"ominus;":                          '\U00002296', -	"oopf;":                            '\U0001D560', -	"opar;":                            '\U000029B7', -	"operp;":                           '\U000029B9', -	"oplus;":                           '\U00002295', -	"or;":                              '\U00002228', -	"orarr;":                           '\U000021BB', -	"ord;":                             '\U00002A5D', -	"order;":                           '\U00002134', -	"orderof;":                         '\U00002134', -	"ordf;":                            '\U000000AA', -	"ordm;":                            '\U000000BA', -	"origof;":                          '\U000022B6', -	"oror;":                            '\U00002A56', -	"orslope;":                         '\U00002A57', -	"orv;":                             '\U00002A5B', -	"oscr;":                            '\U00002134', -	"oslash;":                          '\U000000F8', -	"osol;":                            '\U00002298', -	"otilde;":                          '\U000000F5', -	"otimes;":                          '\U00002297', -	"otimesas;":                        '\U00002A36', -	"ouml;":                            '\U000000F6', -	"ovbar;":                           '\U0000233D', -	"par;":                             '\U00002225', -	"para;":                            '\U000000B6', -	"parallel;":                        '\U00002225', -	"parsim;":                          '\U00002AF3', -	"parsl;":                           '\U00002AFD', -	"part;":                            '\U00002202', -	"pcy;":                             '\U0000043F', -	"percnt;":                          '\U00000025', -	"period;":                          '\U0000002E', -	"permil;":                          '\U00002030', -	"perp;":                            '\U000022A5', -	"pertenk;":                         '\U00002031', -	"pfr;":                             '\U0001D52D', -	"phi;":                             '\U000003C6', -	"phiv;":                            '\U000003D5', -	"phmmat;":                          '\U00002133', -	"phone;":                           '\U0000260E', -	"pi;":                              '\U000003C0', -	"pitchfork;":                       '\U000022D4', -	"piv;":                             '\U000003D6', -	"planck;":                          '\U0000210F', -	"planckh;":                         '\U0000210E', -	"plankv;":                          '\U0000210F', -	"plus;":                            '\U0000002B', -	"plusacir;":                        '\U00002A23', -	"plusb;":                           '\U0000229E', -	"pluscir;":                         '\U00002A22', -	"plusdo;":                          '\U00002214', -	"plusdu;":                          '\U00002A25', -	"pluse;":                           '\U00002A72', -	"plusmn;":                          '\U000000B1', -	"plussim;":                         '\U00002A26', -	"plustwo;":                         '\U00002A27', -	"pm;":                              '\U000000B1', -	"pointint;":                        '\U00002A15', -	"popf;":                            '\U0001D561', -	"pound;":                           '\U000000A3', -	"pr;":                              '\U0000227A', -	"prE;":                             '\U00002AB3', -	"prap;":                            '\U00002AB7', -	"prcue;":                           '\U0000227C', -	"pre;":                             '\U00002AAF', -	"prec;":                            '\U0000227A', -	"precapprox;":                      '\U00002AB7', -	"preccurlyeq;":                     '\U0000227C', -	"preceq;":                          '\U00002AAF', -	"precnapprox;":                     '\U00002AB9', -	"precneqq;":                        '\U00002AB5', -	"precnsim;":                        '\U000022E8', -	"precsim;":                         '\U0000227E', -	"prime;":                           '\U00002032', -	"primes;":                          '\U00002119', -	"prnE;":                            '\U00002AB5', -	"prnap;":                           '\U00002AB9', -	"prnsim;":                          '\U000022E8', -	"prod;":                            '\U0000220F', -	"profalar;":                        '\U0000232E', -	"profline;":                        '\U00002312', -	"profsurf;":                        '\U00002313', -	"prop;":                            '\U0000221D', -	"propto;":                          '\U0000221D', -	"prsim;":                           '\U0000227E', -	"prurel;":                          '\U000022B0', -	"pscr;":                            '\U0001D4C5', -	"psi;":                             '\U000003C8', -	"puncsp;":                          '\U00002008', -	"qfr;":                             '\U0001D52E', -	"qint;":                            '\U00002A0C', -	"qopf;":                            '\U0001D562', -	"qprime;":                          '\U00002057', -	"qscr;":                            '\U0001D4C6', -	"quaternions;":                     '\U0000210D', -	"quatint;":                         '\U00002A16', -	"quest;":                           '\U0000003F', -	"questeq;":                         '\U0000225F', -	"quot;":                            '\U00000022', -	"rAarr;":                           '\U000021DB', -	"rArr;":                            '\U000021D2', -	"rAtail;":                          '\U0000291C', -	"rBarr;":                           '\U0000290F', -	"rHar;":                            '\U00002964', -	"racute;":                          '\U00000155', -	"radic;":                           '\U0000221A', -	"raemptyv;":                        '\U000029B3', -	"rang;":                            '\U000027E9', -	"rangd;":                           '\U00002992', -	"range;":                           '\U000029A5', -	"rangle;":                          '\U000027E9', -	"raquo;":                           '\U000000BB', -	"rarr;":                            '\U00002192', -	"rarrap;":                          '\U00002975', -	"rarrb;":                           '\U000021E5', -	"rarrbfs;":                         '\U00002920', -	"rarrc;":                           '\U00002933', -	"rarrfs;":                          '\U0000291E', -	"rarrhk;":                          '\U000021AA', -	"rarrlp;":                          '\U000021AC', -	"rarrpl;":                          '\U00002945', -	"rarrsim;":                         '\U00002974', -	"rarrtl;":                          '\U000021A3', -	"rarrw;":                           '\U0000219D', -	"ratail;":                          '\U0000291A', -	"ratio;":                           '\U00002236', -	"rationals;":                       '\U0000211A', -	"rbarr;":                           '\U0000290D', -	"rbbrk;":                           '\U00002773', -	"rbrace;":                          '\U0000007D', -	"rbrack;":                          '\U0000005D', -	"rbrke;":                           '\U0000298C', -	"rbrksld;":                         '\U0000298E', -	"rbrkslu;":                         '\U00002990', -	"rcaron;":                          '\U00000159', -	"rcedil;":                          '\U00000157', -	"rceil;":                           '\U00002309', -	"rcub;":                            '\U0000007D', -	"rcy;":                             '\U00000440', -	"rdca;":                            '\U00002937', -	"rdldhar;":                         '\U00002969', -	"rdquo;":                           '\U0000201D', -	"rdquor;":                          '\U0000201D', -	"rdsh;":                            '\U000021B3', -	"real;":                            '\U0000211C', -	"realine;":                         '\U0000211B', -	"realpart;":                        '\U0000211C', -	"reals;":                           '\U0000211D', -	"rect;":                            '\U000025AD', -	"reg;":                             '\U000000AE', -	"rfisht;":                          '\U0000297D', -	"rfloor;":                          '\U0000230B', -	"rfr;":                             '\U0001D52F', -	"rhard;":                           '\U000021C1', -	"rharu;":                           '\U000021C0', -	"rharul;":                          '\U0000296C', -	"rho;":                             '\U000003C1', -	"rhov;":                            '\U000003F1', -	"rightarrow;":                      '\U00002192', -	"rightarrowtail;":                  '\U000021A3', -	"rightharpoondown;":                '\U000021C1', -	"rightharpoonup;":                  '\U000021C0', -	"rightleftarrows;":                 '\U000021C4', -	"rightleftharpoons;":               '\U000021CC', -	"rightrightarrows;":                '\U000021C9', -	"rightsquigarrow;":                 '\U0000219D', -	"rightthreetimes;":                 '\U000022CC', -	"ring;":                            '\U000002DA', -	"risingdotseq;":                    '\U00002253', -	"rlarr;":                           '\U000021C4', -	"rlhar;":                           '\U000021CC', -	"rlm;":                             '\U0000200F', -	"rmoust;":                          '\U000023B1', -	"rmoustache;":                      '\U000023B1', -	"rnmid;":                           '\U00002AEE', -	"roang;":                           '\U000027ED', -	"roarr;":                           '\U000021FE', -	"robrk;":                           '\U000027E7', -	"ropar;":                           '\U00002986', -	"ropf;":                            '\U0001D563', -	"roplus;":                          '\U00002A2E', -	"rotimes;":                         '\U00002A35', -	"rpar;":                            '\U00000029', -	"rpargt;":                          '\U00002994', -	"rppolint;":                        '\U00002A12', -	"rrarr;":                           '\U000021C9', -	"rsaquo;":                          '\U0000203A', -	"rscr;":                            '\U0001D4C7', -	"rsh;":                             '\U000021B1', -	"rsqb;":                            '\U0000005D', -	"rsquo;":                           '\U00002019', -	"rsquor;":                          '\U00002019', -	"rthree;":                          '\U000022CC', -	"rtimes;":                          '\U000022CA', -	"rtri;":                            '\U000025B9', -	"rtrie;":                           '\U000022B5', -	"rtrif;":                           '\U000025B8', -	"rtriltri;":                        '\U000029CE', -	"ruluhar;":                         '\U00002968', -	"rx;":                              '\U0000211E', -	"sacute;":                          '\U0000015B', -	"sbquo;":                           '\U0000201A', -	"sc;":                              '\U0000227B', -	"scE;":                             '\U00002AB4', -	"scap;":                            '\U00002AB8', -	"scaron;":                          '\U00000161', -	"sccue;":                           '\U0000227D', -	"sce;":                             '\U00002AB0', -	"scedil;":                          '\U0000015F', -	"scirc;":                           '\U0000015D', -	"scnE;":                            '\U00002AB6', -	"scnap;":                           '\U00002ABA', -	"scnsim;":                          '\U000022E9', -	"scpolint;":                        '\U00002A13', -	"scsim;":                           '\U0000227F', -	"scy;":                             '\U00000441', -	"sdot;":                            '\U000022C5', -	"sdotb;":                           '\U000022A1', -	"sdote;":                           '\U00002A66', -	"seArr;":                           '\U000021D8', -	"searhk;":                          '\U00002925', -	"searr;":                           '\U00002198', -	"searrow;":                         '\U00002198', -	"sect;":                            '\U000000A7', -	"semi;":                            '\U0000003B', -	"seswar;":                          '\U00002929', -	"setminus;":                        '\U00002216', -	"setmn;":                           '\U00002216', -	"sext;":                            '\U00002736', -	"sfr;":                             '\U0001D530', -	"sfrown;":                          '\U00002322', -	"sharp;":                           '\U0000266F', -	"shchcy;":                          '\U00000449', -	"shcy;":                            '\U00000448', -	"shortmid;":                        '\U00002223', -	"shortparallel;":                   '\U00002225', -	"shy;":                             '\U000000AD', -	"sigma;":                           '\U000003C3', -	"sigmaf;":                          '\U000003C2', -	"sigmav;":                          '\U000003C2', -	"sim;":                             '\U0000223C', -	"simdot;":                          '\U00002A6A', -	"sime;":                            '\U00002243', -	"simeq;":                           '\U00002243', -	"simg;":                            '\U00002A9E', -	"simgE;":                           '\U00002AA0', -	"siml;":                            '\U00002A9D', -	"simlE;":                           '\U00002A9F', -	"simne;":                           '\U00002246', -	"simplus;":                         '\U00002A24', -	"simrarr;":                         '\U00002972', -	"slarr;":                           '\U00002190', -	"smallsetminus;":                   '\U00002216', -	"smashp;":                          '\U00002A33', -	"smeparsl;":                        '\U000029E4', -	"smid;":                            '\U00002223', -	"smile;":                           '\U00002323', -	"smt;":                             '\U00002AAA', -	"smte;":                            '\U00002AAC', -	"softcy;":                          '\U0000044C', -	"sol;":                             '\U0000002F', -	"solb;":                            '\U000029C4', -	"solbar;":                          '\U0000233F', -	"sopf;":                            '\U0001D564', -	"spades;":                          '\U00002660', -	"spadesuit;":                       '\U00002660', -	"spar;":                            '\U00002225', -	"sqcap;":                           '\U00002293', -	"sqcup;":                           '\U00002294', -	"sqsub;":                           '\U0000228F', -	"sqsube;":                          '\U00002291', -	"sqsubset;":                        '\U0000228F', -	"sqsubseteq;":                      '\U00002291', -	"sqsup;":                           '\U00002290', -	"sqsupe;":                          '\U00002292', -	"sqsupset;":                        '\U00002290', -	"sqsupseteq;":                      '\U00002292', -	"squ;":                             '\U000025A1', -	"square;":                          '\U000025A1', -	"squarf;":                          '\U000025AA', -	"squf;":                            '\U000025AA', -	"srarr;":                           '\U00002192', -	"sscr;":                            '\U0001D4C8', -	"ssetmn;":                          '\U00002216', -	"ssmile;":                          '\U00002323', -	"sstarf;":                          '\U000022C6', -	"star;":                            '\U00002606', -	"starf;":                           '\U00002605', -	"straightepsilon;":                 '\U000003F5', -	"straightphi;":                     '\U000003D5', -	"strns;":                           '\U000000AF', -	"sub;":                             '\U00002282', -	"subE;":                            '\U00002AC5', -	"subdot;":                          '\U00002ABD', -	"sube;":                            '\U00002286', -	"subedot;":                         '\U00002AC3', -	"submult;":                         '\U00002AC1', -	"subnE;":                           '\U00002ACB', -	"subne;":                           '\U0000228A', -	"subplus;":                         '\U00002ABF', -	"subrarr;":                         '\U00002979', -	"subset;":                          '\U00002282', -	"subseteq;":                        '\U00002286', -	"subseteqq;":                       '\U00002AC5', -	"subsetneq;":                       '\U0000228A', -	"subsetneqq;":                      '\U00002ACB', -	"subsim;":                          '\U00002AC7', -	"subsub;":                          '\U00002AD5', -	"subsup;":                          '\U00002AD3', -	"succ;":                            '\U0000227B', -	"succapprox;":                      '\U00002AB8', -	"succcurlyeq;":                     '\U0000227D', -	"succeq;":                          '\U00002AB0', -	"succnapprox;":                     '\U00002ABA', -	"succneqq;":                        '\U00002AB6', -	"succnsim;":                        '\U000022E9', -	"succsim;":                         '\U0000227F', -	"sum;":                             '\U00002211', -	"sung;":                            '\U0000266A', -	"sup;":                             '\U00002283', -	"sup1;":                            '\U000000B9', -	"sup2;":                            '\U000000B2', -	"sup3;":                            '\U000000B3', -	"supE;":                            '\U00002AC6', -	"supdot;":                          '\U00002ABE', -	"supdsub;":                         '\U00002AD8', -	"supe;":                            '\U00002287', -	"supedot;":                         '\U00002AC4', -	"suphsol;":                         '\U000027C9', -	"suphsub;":                         '\U00002AD7', -	"suplarr;":                         '\U0000297B', -	"supmult;":                         '\U00002AC2', -	"supnE;":                           '\U00002ACC', -	"supne;":                           '\U0000228B', -	"supplus;":                         '\U00002AC0', -	"supset;":                          '\U00002283', -	"supseteq;":                        '\U00002287', -	"supseteqq;":                       '\U00002AC6', -	"supsetneq;":                       '\U0000228B', -	"supsetneqq;":                      '\U00002ACC', -	"supsim;":                          '\U00002AC8', -	"supsub;":                          '\U00002AD4', -	"supsup;":                          '\U00002AD6', -	"swArr;":                           '\U000021D9', -	"swarhk;":                          '\U00002926', -	"swarr;":                           '\U00002199', -	"swarrow;":                         '\U00002199', -	"swnwar;":                          '\U0000292A', -	"szlig;":                           '\U000000DF', -	"target;":                          '\U00002316', -	"tau;":                             '\U000003C4', -	"tbrk;":                            '\U000023B4', -	"tcaron;":                          '\U00000165', -	"tcedil;":                          '\U00000163', -	"tcy;":                             '\U00000442', -	"tdot;":                            '\U000020DB', -	"telrec;":                          '\U00002315', -	"tfr;":                             '\U0001D531', -	"there4;":                          '\U00002234', -	"therefore;":                       '\U00002234', -	"theta;":                           '\U000003B8', -	"thetasym;":                        '\U000003D1', -	"thetav;":                          '\U000003D1', -	"thickapprox;":                     '\U00002248', -	"thicksim;":                        '\U0000223C', -	"thinsp;":                          '\U00002009', -	"thkap;":                           '\U00002248', -	"thksim;":                          '\U0000223C', -	"thorn;":                           '\U000000FE', -	"tilde;":                           '\U000002DC', -	"times;":                           '\U000000D7', -	"timesb;":                          '\U000022A0', -	"timesbar;":                        '\U00002A31', -	"timesd;":                          '\U00002A30', -	"tint;":                            '\U0000222D', -	"toea;":                            '\U00002928', -	"top;":                             '\U000022A4', -	"topbot;":                          '\U00002336', -	"topcir;":                          '\U00002AF1', -	"topf;":                            '\U0001D565', -	"topfork;":                         '\U00002ADA', -	"tosa;":                            '\U00002929', -	"tprime;":                          '\U00002034', -	"trade;":                           '\U00002122', -	"triangle;":                        '\U000025B5', -	"triangledown;":                    '\U000025BF', -	"triangleleft;":                    '\U000025C3', -	"trianglelefteq;":                  '\U000022B4', -	"triangleq;":                       '\U0000225C', -	"triangleright;":                   '\U000025B9', -	"trianglerighteq;":                 '\U000022B5', -	"tridot;":                          '\U000025EC', -	"trie;":                            '\U0000225C', -	"triminus;":                        '\U00002A3A', -	"triplus;":                         '\U00002A39', -	"trisb;":                           '\U000029CD', -	"tritime;":                         '\U00002A3B', -	"trpezium;":                        '\U000023E2', -	"tscr;":                            '\U0001D4C9', -	"tscy;":                            '\U00000446', -	"tshcy;":                           '\U0000045B', -	"tstrok;":                          '\U00000167', -	"twixt;":                           '\U0000226C', -	"twoheadleftarrow;":                '\U0000219E', -	"twoheadrightarrow;":               '\U000021A0', -	"uArr;":                            '\U000021D1', -	"uHar;":                            '\U00002963', -	"uacute;":                          '\U000000FA', -	"uarr;":                            '\U00002191', -	"ubrcy;":                           '\U0000045E', -	"ubreve;":                          '\U0000016D', -	"ucirc;":                           '\U000000FB', -	"ucy;":                             '\U00000443', -	"udarr;":                           '\U000021C5', -	"udblac;":                          '\U00000171', -	"udhar;":                           '\U0000296E', -	"ufisht;":                          '\U0000297E', -	"ufr;":                             '\U0001D532', -	"ugrave;":                          '\U000000F9', -	"uharl;":                           '\U000021BF', -	"uharr;":                           '\U000021BE', -	"uhblk;":                           '\U00002580', -	"ulcorn;":                          '\U0000231C', -	"ulcorner;":                        '\U0000231C', -	"ulcrop;":                          '\U0000230F', -	"ultri;":                           '\U000025F8', -	"umacr;":                           '\U0000016B', -	"uml;":                             '\U000000A8', -	"uogon;":                           '\U00000173', -	"uopf;":                            '\U0001D566', -	"uparrow;":                         '\U00002191', -	"updownarrow;":                     '\U00002195', -	"upharpoonleft;":                   '\U000021BF', -	"upharpoonright;":                  '\U000021BE', -	"uplus;":                           '\U0000228E', -	"upsi;":                            '\U000003C5', -	"upsih;":                           '\U000003D2', -	"upsilon;":                         '\U000003C5', -	"upuparrows;":                      '\U000021C8', -	"urcorn;":                          '\U0000231D', -	"urcorner;":                        '\U0000231D', -	"urcrop;":                          '\U0000230E', -	"uring;":                           '\U0000016F', -	"urtri;":                           '\U000025F9', -	"uscr;":                            '\U0001D4CA', -	"utdot;":                           '\U000022F0', -	"utilde;":                          '\U00000169', -	"utri;":                            '\U000025B5', -	"utrif;":                           '\U000025B4', -	"uuarr;":                           '\U000021C8', -	"uuml;":                            '\U000000FC', -	"uwangle;":                         '\U000029A7', -	"vArr;":                            '\U000021D5', -	"vBar;":                            '\U00002AE8', -	"vBarv;":                           '\U00002AE9', -	"vDash;":                           '\U000022A8', -	"vangrt;":                          '\U0000299C', -	"varepsilon;":                      '\U000003F5', -	"varkappa;":                        '\U000003F0', -	"varnothing;":                      '\U00002205', -	"varphi;":                          '\U000003D5', -	"varpi;":                           '\U000003D6', -	"varpropto;":                       '\U0000221D', -	"varr;":                            '\U00002195', -	"varrho;":                          '\U000003F1', -	"varsigma;":                        '\U000003C2', -	"vartheta;":                        '\U000003D1', -	"vartriangleleft;":                 '\U000022B2', -	"vartriangleright;":                '\U000022B3', -	"vcy;":                             '\U00000432', -	"vdash;":                           '\U000022A2', -	"vee;":                             '\U00002228', -	"veebar;":                          '\U000022BB', -	"veeeq;":                           '\U0000225A', -	"vellip;":                          '\U000022EE', -	"verbar;":                          '\U0000007C', -	"vert;":                            '\U0000007C', -	"vfr;":                             '\U0001D533', -	"vltri;":                           '\U000022B2', -	"vopf;":                            '\U0001D567', -	"vprop;":                           '\U0000221D', -	"vrtri;":                           '\U000022B3', -	"vscr;":                            '\U0001D4CB', -	"vzigzag;":                         '\U0000299A', -	"wcirc;":                           '\U00000175', -	"wedbar;":                          '\U00002A5F', -	"wedge;":                           '\U00002227', -	"wedgeq;":                          '\U00002259', -	"weierp;":                          '\U00002118', -	"wfr;":                             '\U0001D534', -	"wopf;":                            '\U0001D568', -	"wp;":                              '\U00002118', -	"wr;":                              '\U00002240', -	"wreath;":                          '\U00002240', -	"wscr;":                            '\U0001D4CC', -	"xcap;":                            '\U000022C2', -	"xcirc;":                           '\U000025EF', -	"xcup;":                            '\U000022C3', -	"xdtri;":                           '\U000025BD', -	"xfr;":                             '\U0001D535', -	"xhArr;":                           '\U000027FA', -	"xharr;":                           '\U000027F7', -	"xi;":                              '\U000003BE', -	"xlArr;":                           '\U000027F8', -	"xlarr;":                           '\U000027F5', -	"xmap;":                            '\U000027FC', -	"xnis;":                            '\U000022FB', -	"xodot;":                           '\U00002A00', -	"xopf;":                            '\U0001D569', -	"xoplus;":                          '\U00002A01', -	"xotime;":                          '\U00002A02', -	"xrArr;":                           '\U000027F9', -	"xrarr;":                           '\U000027F6', -	"xscr;":                            '\U0001D4CD', -	"xsqcup;":                          '\U00002A06', -	"xuplus;":                          '\U00002A04', -	"xutri;":                           '\U000025B3', -	"xvee;":                            '\U000022C1', -	"xwedge;":                          '\U000022C0', -	"yacute;":                          '\U000000FD', -	"yacy;":                            '\U0000044F', -	"ycirc;":                           '\U00000177', -	"ycy;":                             '\U0000044B', -	"yen;":                             '\U000000A5', -	"yfr;":                             '\U0001D536', -	"yicy;":                            '\U00000457', -	"yopf;":                            '\U0001D56A', -	"yscr;":                            '\U0001D4CE', -	"yucy;":                            '\U0000044E', -	"yuml;":                            '\U000000FF', -	"zacute;":                          '\U0000017A', -	"zcaron;":                          '\U0000017E', -	"zcy;":                             '\U00000437', -	"zdot;":                            '\U0000017C', -	"zeetrf;":                          '\U00002128', -	"zeta;":                            '\U000003B6', -	"zfr;":                             '\U0001D537', -	"zhcy;":                            '\U00000436', -	"zigrarr;":                         '\U000021DD', -	"zopf;":                            '\U0001D56B', -	"zscr;":                            '\U0001D4CF', -	"zwj;":                             '\U0000200D', -	"zwnj;":                            '\U0000200C', -	"AElig":                            '\U000000C6', -	"AMP":                              '\U00000026', -	"Aacute":                           '\U000000C1', -	"Acirc":                            '\U000000C2', -	"Agrave":                           '\U000000C0', -	"Aring":                            '\U000000C5', -	"Atilde":                           '\U000000C3', -	"Auml":                             '\U000000C4', -	"COPY":                             '\U000000A9', -	"Ccedil":                           '\U000000C7', -	"ETH":                              '\U000000D0', -	"Eacute":                           '\U000000C9', -	"Ecirc":                            '\U000000CA', -	"Egrave":                           '\U000000C8', -	"Euml":                             '\U000000CB', -	"GT":                               '\U0000003E', -	"Iacute":                           '\U000000CD', -	"Icirc":                            '\U000000CE', -	"Igrave":                           '\U000000CC', -	"Iuml":                             '\U000000CF', -	"LT":                               '\U0000003C', -	"Ntilde":                           '\U000000D1', -	"Oacute":                           '\U000000D3', -	"Ocirc":                            '\U000000D4', -	"Ograve":                           '\U000000D2', -	"Oslash":                           '\U000000D8', -	"Otilde":                           '\U000000D5', -	"Ouml":                             '\U000000D6', -	"QUOT":                             '\U00000022', -	"REG":                              '\U000000AE', -	"THORN":                            '\U000000DE', -	"Uacute":                           '\U000000DA', -	"Ucirc":                            '\U000000DB', -	"Ugrave":                           '\U000000D9', -	"Uuml":                             '\U000000DC', -	"Yacute":                           '\U000000DD', -	"aacute":                           '\U000000E1', -	"acirc":                            '\U000000E2', -	"acute":                            '\U000000B4', -	"aelig":                            '\U000000E6', -	"agrave":                           '\U000000E0', -	"amp":                              '\U00000026', -	"aring":                            '\U000000E5', -	"atilde":                           '\U000000E3', -	"auml":                             '\U000000E4', -	"brvbar":                           '\U000000A6', -	"ccedil":                           '\U000000E7', -	"cedil":                            '\U000000B8', -	"cent":                             '\U000000A2', -	"copy":                             '\U000000A9', -	"curren":                           '\U000000A4', -	"deg":                              '\U000000B0', -	"divide":                           '\U000000F7', -	"eacute":                           '\U000000E9', -	"ecirc":                            '\U000000EA', -	"egrave":                           '\U000000E8', -	"eth":                              '\U000000F0', -	"euml":                             '\U000000EB', -	"frac12":                           '\U000000BD', -	"frac14":                           '\U000000BC', -	"frac34":                           '\U000000BE', -	"gt":                               '\U0000003E', -	"iacute":                           '\U000000ED', -	"icirc":                            '\U000000EE', -	"iexcl":                            '\U000000A1', -	"igrave":                           '\U000000EC', -	"iquest":                           '\U000000BF', -	"iuml":                             '\U000000EF', -	"laquo":                            '\U000000AB', -	"lt":                               '\U0000003C', -	"macr":                             '\U000000AF', -	"micro":                            '\U000000B5', -	"middot":                           '\U000000B7', -	"nbsp":                             '\U000000A0', -	"not":                              '\U000000AC', -	"ntilde":                           '\U000000F1', -	"oacute":                           '\U000000F3', -	"ocirc":                            '\U000000F4', -	"ograve":                           '\U000000F2', -	"ordf":                             '\U000000AA', -	"ordm":                             '\U000000BA', -	"oslash":                           '\U000000F8', -	"otilde":                           '\U000000F5', -	"ouml":                             '\U000000F6', -	"para":                             '\U000000B6', -	"plusmn":                           '\U000000B1', -	"pound":                            '\U000000A3', -	"quot":                             '\U00000022', -	"raquo":                            '\U000000BB', -	"reg":                              '\U000000AE', -	"sect":                             '\U000000A7', -	"shy":                              '\U000000AD', -	"sup1":                             '\U000000B9', -	"sup2":                             '\U000000B2', -	"sup3":                             '\U000000B3', -	"szlig":                            '\U000000DF', -	"thorn":                            '\U000000FE', -	"times":                            '\U000000D7', -	"uacute":                           '\U000000FA', -	"ucirc":                            '\U000000FB', -	"ugrave":                           '\U000000F9', -	"uml":                              '\U000000A8', -	"uuml":                             '\U000000FC', -	"yacute":                           '\U000000FD', -	"yen":                              '\U000000A5', -	"yuml":                             '\U000000FF', -} - -// HTML entities that are two unicode codepoints. -var entity2 = map[string][2]rune{ -	// TODO(nigeltao): Handle replacements that are wider than their names. -	// "nLt;":                     {'\u226A', '\u20D2'}, -	// "nGt;":                     {'\u226B', '\u20D2'}, -	"NotEqualTilde;":           {'\u2242', '\u0338'}, -	"NotGreaterFullEqual;":     {'\u2267', '\u0338'}, -	"NotGreaterGreater;":       {'\u226B', '\u0338'}, -	"NotGreaterSlantEqual;":    {'\u2A7E', '\u0338'}, -	"NotHumpDownHump;":         {'\u224E', '\u0338'}, -	"NotHumpEqual;":            {'\u224F', '\u0338'}, -	"NotLeftTriangleBar;":      {'\u29CF', '\u0338'}, -	"NotLessLess;":             {'\u226A', '\u0338'}, -	"NotLessSlantEqual;":       {'\u2A7D', '\u0338'}, -	"NotNestedGreaterGreater;": {'\u2AA2', '\u0338'}, -	"NotNestedLessLess;":       {'\u2AA1', '\u0338'}, -	"NotPrecedesEqual;":        {'\u2AAF', '\u0338'}, -	"NotRightTriangleBar;":     {'\u29D0', '\u0338'}, -	"NotSquareSubset;":         {'\u228F', '\u0338'}, -	"NotSquareSuperset;":       {'\u2290', '\u0338'}, -	"NotSubset;":               {'\u2282', '\u20D2'}, -	"NotSucceedsEqual;":        {'\u2AB0', '\u0338'}, -	"NotSucceedsTilde;":        {'\u227F', '\u0338'}, -	"NotSuperset;":             {'\u2283', '\u20D2'}, -	"ThickSpace;":              {'\u205F', '\u200A'}, -	"acE;":                     {'\u223E', '\u0333'}, -	"bne;":                     {'\u003D', '\u20E5'}, -	"bnequiv;":                 {'\u2261', '\u20E5'}, -	"caps;":                    {'\u2229', '\uFE00'}, -	"cups;":                    {'\u222A', '\uFE00'}, -	"fjlig;":                   {'\u0066', '\u006A'}, -	"gesl;":                    {'\u22DB', '\uFE00'}, -	"gvertneqq;":               {'\u2269', '\uFE00'}, -	"gvnE;":                    {'\u2269', '\uFE00'}, -	"lates;":                   {'\u2AAD', '\uFE00'}, -	"lesg;":                    {'\u22DA', '\uFE00'}, -	"lvertneqq;":               {'\u2268', '\uFE00'}, -	"lvnE;":                    {'\u2268', '\uFE00'}, -	"nGg;":                     {'\u22D9', '\u0338'}, -	"nGtv;":                    {'\u226B', '\u0338'}, -	"nLl;":                     {'\u22D8', '\u0338'}, -	"nLtv;":                    {'\u226A', '\u0338'}, -	"nang;":                    {'\u2220', '\u20D2'}, -	"napE;":                    {'\u2A70', '\u0338'}, -	"napid;":                   {'\u224B', '\u0338'}, -	"nbump;":                   {'\u224E', '\u0338'}, -	"nbumpe;":                  {'\u224F', '\u0338'}, -	"ncongdot;":                {'\u2A6D', '\u0338'}, -	"nedot;":                   {'\u2250', '\u0338'}, -	"nesim;":                   {'\u2242', '\u0338'}, -	"ngE;":                     {'\u2267', '\u0338'}, -	"ngeqq;":                   {'\u2267', '\u0338'}, -	"ngeqslant;":               {'\u2A7E', '\u0338'}, -	"nges;":                    {'\u2A7E', '\u0338'}, -	"nlE;":                     {'\u2266', '\u0338'}, -	"nleqq;":                   {'\u2266', '\u0338'}, -	"nleqslant;":               {'\u2A7D', '\u0338'}, -	"nles;":                    {'\u2A7D', '\u0338'}, -	"notinE;":                  {'\u22F9', '\u0338'}, -	"notindot;":                {'\u22F5', '\u0338'}, -	"nparsl;":                  {'\u2AFD', '\u20E5'}, -	"npart;":                   {'\u2202', '\u0338'}, -	"npre;":                    {'\u2AAF', '\u0338'}, -	"npreceq;":                 {'\u2AAF', '\u0338'}, -	"nrarrc;":                  {'\u2933', '\u0338'}, -	"nrarrw;":                  {'\u219D', '\u0338'}, -	"nsce;":                    {'\u2AB0', '\u0338'}, -	"nsubE;":                   {'\u2AC5', '\u0338'}, -	"nsubset;":                 {'\u2282', '\u20D2'}, -	"nsubseteqq;":              {'\u2AC5', '\u0338'}, -	"nsucceq;":                 {'\u2AB0', '\u0338'}, -	"nsupE;":                   {'\u2AC6', '\u0338'}, -	"nsupset;":                 {'\u2283', '\u20D2'}, -	"nsupseteqq;":              {'\u2AC6', '\u0338'}, -	"nvap;":                    {'\u224D', '\u20D2'}, -	"nvge;":                    {'\u2265', '\u20D2'}, -	"nvgt;":                    {'\u003E', '\u20D2'}, -	"nvle;":                    {'\u2264', '\u20D2'}, -	"nvlt;":                    {'\u003C', '\u20D2'}, -	"nvltrie;":                 {'\u22B4', '\u20D2'}, -	"nvrtrie;":                 {'\u22B5', '\u20D2'}, -	"nvsim;":                   {'\u223C', '\u20D2'}, -	"race;":                    {'\u223D', '\u0331'}, -	"smtes;":                   {'\u2AAC', '\uFE00'}, -	"sqcaps;":                  {'\u2293', '\uFE00'}, -	"sqcups;":                  {'\u2294', '\uFE00'}, -	"varsubsetneq;":            {'\u228A', '\uFE00'}, -	"varsubsetneqq;":           {'\u2ACB', '\uFE00'}, -	"varsupsetneq;":            {'\u228B', '\uFE00'}, -	"varsupsetneqq;":           {'\u2ACC', '\uFE00'}, -	"vnsub;":                   {'\u2282', '\u20D2'}, -	"vnsup;":                   {'\u2283', '\u20D2'}, -	"vsubnE;":                  {'\u2ACB', '\uFE00'}, -	"vsubne;":                  {'\u228A', '\uFE00'}, -	"vsupnE;":                  {'\u2ACC', '\uFE00'}, -	"vsupne;":                  {'\u228B', '\uFE00'}, -} diff --git a/vendor/golang.org/x/net/html/escape.go b/vendor/golang.org/x/net/html/escape.go deleted file mode 100644 index 04c6bec21..000000000 --- a/vendor/golang.org/x/net/html/escape.go +++ /dev/null @@ -1,339 +0,0 @@ -// Copyright 2010 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. - -package html - -import ( -	"bytes" -	"strings" -	"unicode/utf8" -) - -// These replacements permit compatibility with old numeric entities that -// assumed Windows-1252 encoding. -// https://html.spec.whatwg.org/multipage/syntax.html#consume-a-character-reference -var replacementTable = [...]rune{ -	'\u20AC', // First entry is what 0x80 should be replaced with. -	'\u0081', -	'\u201A', -	'\u0192', -	'\u201E', -	'\u2026', -	'\u2020', -	'\u2021', -	'\u02C6', -	'\u2030', -	'\u0160', -	'\u2039', -	'\u0152', -	'\u008D', -	'\u017D', -	'\u008F', -	'\u0090', -	'\u2018', -	'\u2019', -	'\u201C', -	'\u201D', -	'\u2022', -	'\u2013', -	'\u2014', -	'\u02DC', -	'\u2122', -	'\u0161', -	'\u203A', -	'\u0153', -	'\u009D', -	'\u017E', -	'\u0178', // Last entry is 0x9F. -	// 0x00->'\uFFFD' is handled programmatically. -	// 0x0D->'\u000D' is a no-op. -} - -// unescapeEntity reads an entity like "<" from b[src:] and writes the -// corresponding "<" to b[dst:], returning the incremented dst and src cursors. -// Precondition: b[src] == '&' && dst <= src. -// attribute should be true if parsing an attribute value. -func unescapeEntity(b []byte, dst, src int, attribute bool) (dst1, src1 int) { -	// https://html.spec.whatwg.org/multipage/syntax.html#consume-a-character-reference - -	// i starts at 1 because we already know that s[0] == '&'. -	i, s := 1, b[src:] - -	if len(s) <= 1 { -		b[dst] = b[src] -		return dst + 1, src + 1 -	} - -	if s[i] == '#' { -		if len(s) <= 3 { // We need to have at least "&#.". -			b[dst] = b[src] -			return dst + 1, src + 1 -		} -		i++ -		c := s[i] -		hex := false -		if c == 'x' || c == 'X' { -			hex = true -			i++ -		} - -		x := '\x00' -		for i < len(s) { -			c = s[i] -			i++ -			if hex { -				if '0' <= c && c <= '9' { -					x = 16*x + rune(c) - '0' -					continue -				} else if 'a' <= c && c <= 'f' { -					x = 16*x + rune(c) - 'a' + 10 -					continue -				} else if 'A' <= c && c <= 'F' { -					x = 16*x + rune(c) - 'A' + 10 -					continue -				} -			} else if '0' <= c && c <= '9' { -				x = 10*x + rune(c) - '0' -				continue -			} -			if c != ';' { -				i-- -			} -			break -		} - -		if i <= 3 { // No characters matched. -			b[dst] = b[src] -			return dst + 1, src + 1 -		} - -		if 0x80 <= x && x <= 0x9F { -			// Replace characters from Windows-1252 with UTF-8 equivalents. -			x = replacementTable[x-0x80] -		} else if x == 0 || (0xD800 <= x && x <= 0xDFFF) || x > 0x10FFFF { -			// Replace invalid characters with the replacement character. -			x = '\uFFFD' -		} - -		return dst + utf8.EncodeRune(b[dst:], x), src + i -	} - -	// Consume the maximum number of characters possible, with the -	// consumed characters matching one of the named references. - -	for i < len(s) { -		c := s[i] -		i++ -		// Lower-cased characters are more common in entities, so we check for them first. -		if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' || '0' <= c && c <= '9' { -			continue -		} -		if c != ';' { -			i-- -		} -		break -	} - -	entityName := string(s[1:i]) -	if entityName == "" { -		// No-op. -	} else if attribute && entityName[len(entityName)-1] != ';' && len(s) > i && s[i] == '=' { -		// No-op. -	} else if x := entity[entityName]; x != 0 { -		return dst + utf8.EncodeRune(b[dst:], x), src + i -	} else if x := entity2[entityName]; x[0] != 0 { -		dst1 := dst + utf8.EncodeRune(b[dst:], x[0]) -		return dst1 + utf8.EncodeRune(b[dst1:], x[1]), src + i -	} else if !attribute { -		maxLen := len(entityName) - 1 -		if maxLen > longestEntityWithoutSemicolon { -			maxLen = longestEntityWithoutSemicolon -		} -		for j := maxLen; j > 1; j-- { -			if x := entity[entityName[:j]]; x != 0 { -				return dst + utf8.EncodeRune(b[dst:], x), src + j + 1 -			} -		} -	} - -	dst1, src1 = dst+i, src+i -	copy(b[dst:dst1], b[src:src1]) -	return dst1, src1 -} - -// unescape unescapes b's entities in-place, so that "a<b" becomes "a<b". -// attribute should be true if parsing an attribute value. -func unescape(b []byte, attribute bool) []byte { -	for i, c := range b { -		if c == '&' { -			dst, src := unescapeEntity(b, i, i, attribute) -			for src < len(b) { -				c := b[src] -				if c == '&' { -					dst, src = unescapeEntity(b, dst, src, attribute) -				} else { -					b[dst] = c -					dst, src = dst+1, src+1 -				} -			} -			return b[0:dst] -		} -	} -	return b -} - -// lower lower-cases the A-Z bytes in b in-place, so that "aBc" becomes "abc". -func lower(b []byte) []byte { -	for i, c := range b { -		if 'A' <= c && c <= 'Z' { -			b[i] = c + 'a' - 'A' -		} -	} -	return b -} - -// escapeComment is like func escape but escapes its input bytes less often. -// Per https://github.com/golang/go/issues/58246 some HTML comments are (1) -// meaningful and (2) contain angle brackets that we'd like to avoid escaping -// unless we have to. -// -// "We have to" includes the '&' byte, since that introduces other escapes. -// -// It also includes those bytes (not including EOF) that would otherwise end -// the comment. Per the summary table at the bottom of comment_test.go, this is -// the '>' byte that, per above, we'd like to avoid escaping unless we have to. -// -// Studying the summary table (and T actions in its '>' column) closely, we -// only need to escape in states 43, 44, 49, 51 and 52. State 43 is at the -// start of the comment data. State 52 is after a '!'. The other three states -// are after a '-'. -// -// Our algorithm is thus to escape every '&' and to escape '>' if and only if: -//   - The '>' is after a '!' or '-' (in the unescaped data) or -//   - The '>' is at the start of the comment data (after the opening "<!--"). -func escapeComment(w writer, s string) error { -	// When modifying this function, consider manually increasing the -	// maxSuffixLen constant in func TestComments, from 6 to e.g. 9 or more. -	// That increase should only be temporary, not committed, as it -	// exponentially affects the test running time. - -	if len(s) == 0 { -		return nil -	} - -	// Loop: -	//   - Grow j such that s[i:j] does not need escaping. -	//   - If s[j] does need escaping, output s[i:j] and an escaped s[j], -	//     resetting i and j to point past that s[j] byte. -	i := 0 -	for j := 0; j < len(s); j++ { -		escaped := "" -		switch s[j] { -		case '&': -			escaped = "&" - -		case '>': -			if j > 0 { -				if prev := s[j-1]; (prev != '!') && (prev != '-') { -					continue -				} -			} -			escaped = ">" - -		default: -			continue -		} - -		if i < j { -			if _, err := w.WriteString(s[i:j]); err != nil { -				return err -			} -		} -		if _, err := w.WriteString(escaped); err != nil { -			return err -		} -		i = j + 1 -	} - -	if i < len(s) { -		if _, err := w.WriteString(s[i:]); err != nil { -			return err -		} -	} -	return nil -} - -// escapeCommentString is to EscapeString as escapeComment is to escape. -func escapeCommentString(s string) string { -	if strings.IndexAny(s, "&>") == -1 { -		return s -	} -	var buf bytes.Buffer -	escapeComment(&buf, s) -	return buf.String() -} - -const escapedChars = "&'<>\"\r" - -func escape(w writer, s string) error { -	i := strings.IndexAny(s, escapedChars) -	for i != -1 { -		if _, err := w.WriteString(s[:i]); err != nil { -			return err -		} -		var esc string -		switch s[i] { -		case '&': -			esc = "&" -		case '\'': -			// "'" is shorter than "'" and apos was not in HTML until HTML5. -			esc = "'" -		case '<': -			esc = "<" -		case '>': -			esc = ">" -		case '"': -			// """ is shorter than """. -			esc = """ -		case '\r': -			esc = "
" -		default: -			panic("unrecognized escape character") -		} -		s = s[i+1:] -		if _, err := w.WriteString(esc); err != nil { -			return err -		} -		i = strings.IndexAny(s, escapedChars) -	} -	_, err := w.WriteString(s) -	return err -} - -// EscapeString escapes special characters like "<" to become "<". It -// escapes only five such characters: <, >, &, ' and ". -// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't -// always true. -func EscapeString(s string) string { -	if strings.IndexAny(s, escapedChars) == -1 { -		return s -	} -	var buf bytes.Buffer -	escape(&buf, s) -	return buf.String() -} - -// UnescapeString unescapes entities like "<" to become "<". It unescapes a -// larger range of entities than EscapeString escapes. For example, "á" -// unescapes to "á", as does "á" and "&xE1;". -// UnescapeString(EscapeString(s)) == s always holds, but the converse isn't -// always true. -func UnescapeString(s string) string { -	for _, c := range s { -		if c == '&' { -			return string(unescape([]byte(s), false)) -		} -	} -	return s -} diff --git a/vendor/golang.org/x/net/html/foreign.go b/vendor/golang.org/x/net/html/foreign.go deleted file mode 100644 index e8515d8e8..000000000 --- a/vendor/golang.org/x/net/html/foreign.go +++ /dev/null @@ -1,221 +0,0 @@ -// Copyright 2011 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. - -package html - -import ( -	"strings" -) - -func adjustAttributeNames(aa []Attribute, nameMap map[string]string) { -	for i := range aa { -		if newName, ok := nameMap[aa[i].Key]; ok { -			aa[i].Key = newName -		} -	} -} - -func adjustForeignAttributes(aa []Attribute) { -	for i, a := range aa { -		if a.Key == "" || a.Key[0] != 'x' { -			continue -		} -		switch a.Key { -		case "xlink:actuate", "xlink:arcrole", "xlink:href", "xlink:role", "xlink:show", -			"xlink:title", "xlink:type", "xml:base", "xml:lang", "xml:space", "xmlns:xlink": -			j := strings.Index(a.Key, ":") -			aa[i].Namespace = a.Key[:j] -			aa[i].Key = a.Key[j+1:] -		} -	} -} - -func htmlIntegrationPoint(n *Node) bool { -	if n.Type != ElementNode { -		return false -	} -	switch n.Namespace { -	case "math": -		if n.Data == "annotation-xml" { -			for _, a := range n.Attr { -				if a.Key == "encoding" { -					if strings.EqualFold(a.Val, "text/html") || strings.EqualFold(a.Val, "application/xhtml+xml") { -						return true -					} -				} -			} -		} -	case "svg": -		switch n.Data { -		case "desc", "foreignObject", "title": -			return true -		} -	} -	return false -} - -func mathMLTextIntegrationPoint(n *Node) bool { -	if n.Namespace != "math" { -		return false -	} -	switch n.Data { -	case "mi", "mo", "mn", "ms", "mtext": -		return true -	} -	return false -} - -// Section 12.2.6.5. -var breakout = map[string]bool{ -	"b":          true, -	"big":        true, -	"blockquote": true, -	"body":       true, -	"br":         true, -	"center":     true, -	"code":       true, -	"dd":         true, -	"div":        true, -	"dl":         true, -	"dt":         true, -	"em":         true, -	"embed":      true, -	"h1":         true, -	"h2":         true, -	"h3":         true, -	"h4":         true, -	"h5":         true, -	"h6":         true, -	"head":       true, -	"hr":         true, -	"i":          true, -	"img":        true, -	"li":         true, -	"listing":    true, -	"menu":       true, -	"meta":       true, -	"nobr":       true, -	"ol":         true, -	"p":          true, -	"pre":        true, -	"ruby":       true, -	"s":          true, -	"small":      true, -	"span":       true, -	"strong":     true, -	"strike":     true, -	"sub":        true, -	"sup":        true, -	"table":      true, -	"tt":         true, -	"u":          true, -	"ul":         true, -	"var":        true, -} - -// Section 12.2.6.5. -var svgTagNameAdjustments = map[string]string{ -	"altglyph":            "altGlyph", -	"altglyphdef":         "altGlyphDef", -	"altglyphitem":        "altGlyphItem", -	"animatecolor":        "animateColor", -	"animatemotion":       "animateMotion", -	"animatetransform":    "animateTransform", -	"clippath":            "clipPath", -	"feblend":             "feBlend", -	"fecolormatrix":       "feColorMatrix", -	"fecomponenttransfer": "feComponentTransfer", -	"fecomposite":         "feComposite", -	"feconvolvematrix":    "feConvolveMatrix", -	"fediffuselighting":   "feDiffuseLighting", -	"fedisplacementmap":   "feDisplacementMap", -	"fedistantlight":      "feDistantLight", -	"feflood":             "feFlood", -	"fefunca":             "feFuncA", -	"fefuncb":             "feFuncB", -	"fefuncg":             "feFuncG", -	"fefuncr":             "feFuncR", -	"fegaussianblur":      "feGaussianBlur", -	"feimage":             "feImage", -	"femerge":             "feMerge", -	"femergenode":         "feMergeNode", -	"femorphology":        "feMorphology", -	"feoffset":            "feOffset", -	"fepointlight":        "fePointLight", -	"fespecularlighting":  "feSpecularLighting", -	"fespotlight":         "feSpotLight", -	"fetile":              "feTile", -	"feturbulence":        "feTurbulence", -	"foreignobject":       "foreignObject", -	"glyphref":            "glyphRef", -	"lineargradient":      "linearGradient", -	"radialgradient":      "radialGradient", -	"textpath":            "textPath", -} - -// Section 12.2.6.1 -var mathMLAttributeAdjustments = map[string]string{ -	"definitionurl": "definitionURL", -} - -var svgAttributeAdjustments = map[string]string{ -	"attributename":       "attributeName", -	"attributetype":       "attributeType", -	"basefrequency":       "baseFrequency", -	"baseprofile":         "baseProfile", -	"calcmode":            "calcMode", -	"clippathunits":       "clipPathUnits", -	"diffuseconstant":     "diffuseConstant", -	"edgemode":            "edgeMode", -	"filterunits":         "filterUnits", -	"glyphref":            "glyphRef", -	"gradienttransform":   "gradientTransform", -	"gradientunits":       "gradientUnits", -	"kernelmatrix":        "kernelMatrix", -	"kernelunitlength":    "kernelUnitLength", -	"keypoints":           "keyPoints", -	"keysplines":          "keySplines", -	"keytimes":            "keyTimes", -	"lengthadjust":        "lengthAdjust", -	"limitingconeangle":   "limitingConeAngle", -	"markerheight":        "markerHeight", -	"markerunits":         "markerUnits", -	"markerwidth":         "markerWidth", -	"maskcontentunits":    "maskContentUnits", -	"maskunits":           "maskUnits", -	"numoctaves":          "numOctaves", -	"pathlength":          "pathLength", -	"patterncontentunits": "patternContentUnits", -	"patterntransform":    "patternTransform", -	"patternunits":        "patternUnits", -	"pointsatx":           "pointsAtX", -	"pointsaty":           "pointsAtY", -	"pointsatz":           "pointsAtZ", -	"preservealpha":       "preserveAlpha", -	"preserveaspectratio": "preserveAspectRatio", -	"primitiveunits":      "primitiveUnits", -	"refx":                "refX", -	"refy":                "refY", -	"repeatcount":         "repeatCount", -	"repeatdur":           "repeatDur", -	"requiredextensions":  "requiredExtensions", -	"requiredfeatures":    "requiredFeatures", -	"specularconstant":    "specularConstant", -	"specularexponent":    "specularExponent", -	"spreadmethod":        "spreadMethod", -	"startoffset":         "startOffset", -	"stddeviation":        "stdDeviation", -	"stitchtiles":         "stitchTiles", -	"surfacescale":        "surfaceScale", -	"systemlanguage":      "systemLanguage", -	"tablevalues":         "tableValues", -	"targetx":             "targetX", -	"targety":             "targetY", -	"textlength":          "textLength", -	"viewbox":             "viewBox", -	"viewtarget":          "viewTarget", -	"xchannelselector":    "xChannelSelector", -	"ychannelselector":    "yChannelSelector", -	"zoomandpan":          "zoomAndPan", -} diff --git a/vendor/golang.org/x/net/html/iter.go b/vendor/golang.org/x/net/html/iter.go deleted file mode 100644 index 54be8fd30..000000000 --- a/vendor/golang.org/x/net/html/iter.go +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2024 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 go1.23 - -package html - -import "iter" - -// Ancestors returns an iterator over the ancestors of n, starting with n.Parent. -// -// Mutating a Node or its parents while iterating may have unexpected results. -func (n *Node) Ancestors() iter.Seq[*Node] { -	_ = n.Parent // eager nil check - -	return func(yield func(*Node) bool) { -		for p := n.Parent; p != nil && yield(p); p = p.Parent { -		} -	} -} - -// ChildNodes returns an iterator over the immediate children of n, -// starting with n.FirstChild. -// -// Mutating a Node or its children while iterating may have unexpected results. -func (n *Node) ChildNodes() iter.Seq[*Node] { -	_ = n.FirstChild // eager nil check - -	return func(yield func(*Node) bool) { -		for c := n.FirstChild; c != nil && yield(c); c = c.NextSibling { -		} -	} - -} - -// Descendants returns an iterator over all nodes recursively beneath -// n, excluding n itself. Nodes are visited in depth-first preorder. -// -// Mutating a Node or its descendants while iterating may have unexpected results. -func (n *Node) Descendants() iter.Seq[*Node] { -	_ = n.FirstChild // eager nil check - -	return func(yield func(*Node) bool) { -		n.descendants(yield) -	} -} - -func (n *Node) descendants(yield func(*Node) bool) bool { -	for c := range n.ChildNodes() { -		if !yield(c) || !c.descendants(yield) { -			return false -		} -	} -	return true -} diff --git a/vendor/golang.org/x/net/html/node.go b/vendor/golang.org/x/net/html/node.go deleted file mode 100644 index 77741a195..000000000 --- a/vendor/golang.org/x/net/html/node.go +++ /dev/null @@ -1,229 +0,0 @@ -// Copyright 2011 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. - -package html - -import ( -	"golang.org/x/net/html/atom" -) - -// A NodeType is the type of a Node. -type NodeType uint32 - -const ( -	ErrorNode NodeType = iota -	TextNode -	DocumentNode -	ElementNode -	CommentNode -	DoctypeNode -	// RawNode nodes are not returned by the parser, but can be part of the -	// Node tree passed to func Render to insert raw HTML (without escaping). -	// If so, this package makes no guarantee that the rendered HTML is secure -	// (from e.g. Cross Site Scripting attacks) or well-formed. -	RawNode -	scopeMarkerNode -) - -// Section 12.2.4.3 says "The markers are inserted when entering applet, -// object, marquee, template, td, th, and caption elements, and are used -// to prevent formatting from "leaking" into applet, object, marquee, -// template, td, th, and caption elements". -var scopeMarker = Node{Type: scopeMarkerNode} - -// A Node consists of a NodeType and some Data (tag name for element nodes, -// content for text) and are part of a tree of Nodes. Element nodes may also -// have a Namespace and contain a slice of Attributes. Data is unescaped, so -// that it looks like "a<b" rather than "a<b". For element nodes, DataAtom -// is the atom for Data, or zero if Data is not a known tag name. -// -// Node trees may be navigated using the link fields (Parent, -// FirstChild, and so on) or a range loop over iterators such as -// [Node.Descendants]. -// -// An empty Namespace implies a "http://www.w3.org/1999/xhtml" namespace. -// Similarly, "math" is short for "http://www.w3.org/1998/Math/MathML", and -// "svg" is short for "http://www.w3.org/2000/svg". -type Node struct { -	Parent, FirstChild, LastChild, PrevSibling, NextSibling *Node - -	Type      NodeType -	DataAtom  atom.Atom -	Data      string -	Namespace string -	Attr      []Attribute -} - -// InsertBefore inserts newChild as a child of n, immediately before oldChild -// in the sequence of n's children. oldChild may be nil, in which case newChild -// is appended to the end of n's children. -// -// It will panic if newChild already has a parent or siblings. -func (n *Node) InsertBefore(newChild, oldChild *Node) { -	if newChild.Parent != nil || newChild.PrevSibling != nil || newChild.NextSibling != nil { -		panic("html: InsertBefore called for an attached child Node") -	} -	var prev, next *Node -	if oldChild != nil { -		prev, next = oldChild.PrevSibling, oldChild -	} else { -		prev = n.LastChild -	} -	if prev != nil { -		prev.NextSibling = newChild -	} else { -		n.FirstChild = newChild -	} -	if next != nil { -		next.PrevSibling = newChild -	} else { -		n.LastChild = newChild -	} -	newChild.Parent = n -	newChild.PrevSibling = prev -	newChild.NextSibling = next -} - -// AppendChild adds a node c as a child of n. -// -// It will panic if c already has a parent or siblings. -func (n *Node) AppendChild(c *Node) { -	if c.Parent != nil || c.PrevSibling != nil || c.NextSibling != nil { -		panic("html: AppendChild called for an attached child Node") -	} -	last := n.LastChild -	if last != nil { -		last.NextSibling = c -	} else { -		n.FirstChild = c -	} -	n.LastChild = c -	c.Parent = n -	c.PrevSibling = last -} - -// RemoveChild removes a node c that is a child of n. Afterwards, c will have -// no parent and no siblings. -// -// It will panic if c's parent is not n. -func (n *Node) RemoveChild(c *Node) { -	if c.Parent != n { -		panic("html: RemoveChild called for a non-child Node") -	} -	if n.FirstChild == c { -		n.FirstChild = c.NextSibling -	} -	if c.NextSibling != nil { -		c.NextSibling.PrevSibling = c.PrevSibling -	} -	if n.LastChild == c { -		n.LastChild = c.PrevSibling -	} -	if c.PrevSibling != nil { -		c.PrevSibling.NextSibling = c.NextSibling -	} -	c.Parent = nil -	c.PrevSibling = nil -	c.NextSibling = nil -} - -// reparentChildren reparents all of src's child nodes to dst. -func reparentChildren(dst, src *Node) { -	for { -		child := src.FirstChild -		if child == nil { -			break -		} -		src.RemoveChild(child) -		dst.AppendChild(child) -	} -} - -// clone returns a new node with the same type, data and attributes. -// The clone has no parent, no siblings and no children. -func (n *Node) clone() *Node { -	m := &Node{ -		Type:     n.Type, -		DataAtom: n.DataAtom, -		Data:     n.Data, -		Attr:     make([]Attribute, len(n.Attr)), -	} -	copy(m.Attr, n.Attr) -	return m -} - -// nodeStack is a stack of nodes. -type nodeStack []*Node - -// pop pops the stack. It will panic if s is empty. -func (s *nodeStack) pop() *Node { -	i := len(*s) -	n := (*s)[i-1] -	*s = (*s)[:i-1] -	return n -} - -// top returns the most recently pushed node, or nil if s is empty. -func (s *nodeStack) top() *Node { -	if i := len(*s); i > 0 { -		return (*s)[i-1] -	} -	return nil -} - -// index returns the index of the top-most occurrence of n in the stack, or -1 -// if n is not present. -func (s *nodeStack) index(n *Node) int { -	for i := len(*s) - 1; i >= 0; i-- { -		if (*s)[i] == n { -			return i -		} -	} -	return -1 -} - -// contains returns whether a is within s. -func (s *nodeStack) contains(a atom.Atom) bool { -	for _, n := range *s { -		if n.DataAtom == a && n.Namespace == "" { -			return true -		} -	} -	return false -} - -// insert inserts a node at the given index. -func (s *nodeStack) insert(i int, n *Node) { -	(*s) = append(*s, nil) -	copy((*s)[i+1:], (*s)[i:]) -	(*s)[i] = n -} - -// remove removes a node from the stack. It is a no-op if n is not present. -func (s *nodeStack) remove(n *Node) { -	i := s.index(n) -	if i == -1 { -		return -	} -	copy((*s)[i:], (*s)[i+1:]) -	j := len(*s) - 1 -	(*s)[j] = nil -	*s = (*s)[:j] -} - -type insertionModeStack []insertionMode - -func (s *insertionModeStack) pop() (im insertionMode) { -	i := len(*s) -	im = (*s)[i-1] -	*s = (*s)[:i-1] -	return im -} - -func (s *insertionModeStack) top() insertionMode { -	if i := len(*s); i > 0 { -		return (*s)[i-1] -	} -	return nil -} diff --git a/vendor/golang.org/x/net/html/parse.go b/vendor/golang.org/x/net/html/parse.go deleted file mode 100644 index 643c674e3..000000000 --- a/vendor/golang.org/x/net/html/parse.go +++ /dev/null @@ -1,2464 +0,0 @@ -// Copyright 2010 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. - -package html - -import ( -	"errors" -	"fmt" -	"io" -	"strings" - -	a "golang.org/x/net/html/atom" -) - -// A parser implements the HTML5 parsing algorithm: -// https://html.spec.whatwg.org/multipage/syntax.html#tree-construction -type parser struct { -	// tokenizer provides the tokens for the parser. -	tokenizer *Tokenizer -	// tok is the most recently read token. -	tok Token -	// Self-closing tags like <hr/> are treated as start tags, except that -	// hasSelfClosingToken is set while they are being processed. -	hasSelfClosingToken bool -	// doc is the document root element. -	doc *Node -	// The stack of open elements (section 12.2.4.2) and active formatting -	// elements (section 12.2.4.3). -	oe, afe nodeStack -	// Element pointers (section 12.2.4.4). -	head, form *Node -	// Other parsing state flags (section 12.2.4.5). -	scripting, framesetOK bool -	// The stack of template insertion modes -	templateStack insertionModeStack -	// im is the current insertion mode. -	im insertionMode -	// originalIM is the insertion mode to go back to after completing a text -	// or inTableText insertion mode. -	originalIM insertionMode -	// fosterParenting is whether new elements should be inserted according to -	// the foster parenting rules (section 12.2.6.1). -	fosterParenting bool -	// quirks is whether the parser is operating in "quirks mode." -	quirks bool -	// fragment is whether the parser is parsing an HTML fragment. -	fragment bool -	// context is the context element when parsing an HTML fragment -	// (section 12.4). -	context *Node -} - -func (p *parser) top() *Node { -	if n := p.oe.top(); n != nil { -		return n -	} -	return p.doc -} - -// Stop tags for use in popUntil. These come from section 12.2.4.2. -var ( -	defaultScopeStopTags = map[string][]a.Atom{ -		"":     {a.Applet, a.Caption, a.Html, a.Table, a.Td, a.Th, a.Marquee, a.Object, a.Template}, -		"math": {a.AnnotationXml, a.Mi, a.Mn, a.Mo, a.Ms, a.Mtext}, -		"svg":  {a.Desc, a.ForeignObject, a.Title}, -	} -) - -type scope int - -const ( -	defaultScope scope = iota -	listItemScope -	buttonScope -	tableScope -	tableRowScope -	tableBodyScope -	selectScope -) - -// popUntil pops the stack of open elements at the highest element whose tag -// is in matchTags, provided there is no higher element in the scope's stop -// tags (as defined in section 12.2.4.2). It returns whether or not there was -// such an element. If there was not, popUntil leaves the stack unchanged. -// -// For example, the set of stop tags for table scope is: "html", "table". If -// the stack was: -// ["html", "body", "font", "table", "b", "i", "u"] -// then popUntil(tableScope, "font") would return false, but -// popUntil(tableScope, "i") would return true and the stack would become: -// ["html", "body", "font", "table", "b"] -// -// If an element's tag is in both the stop tags and matchTags, then the stack -// will be popped and the function returns true (provided, of course, there was -// no higher element in the stack that was also in the stop tags). For example, -// popUntil(tableScope, "table") returns true and leaves: -// ["html", "body", "font"] -func (p *parser) popUntil(s scope, matchTags ...a.Atom) bool { -	if i := p.indexOfElementInScope(s, matchTags...); i != -1 { -		p.oe = p.oe[:i] -		return true -	} -	return false -} - -// indexOfElementInScope returns the index in p.oe of the highest element whose -// tag is in matchTags that is in scope. If no matching element is in scope, it -// returns -1. -func (p *parser) indexOfElementInScope(s scope, matchTags ...a.Atom) int { -	for i := len(p.oe) - 1; i >= 0; i-- { -		tagAtom := p.oe[i].DataAtom -		if p.oe[i].Namespace == "" { -			for _, t := range matchTags { -				if t == tagAtom { -					return i -				} -			} -			switch s { -			case defaultScope: -				// No-op. -			case listItemScope: -				if tagAtom == a.Ol || tagAtom == a.Ul { -					return -1 -				} -			case buttonScope: -				if tagAtom == a.Button { -					return -1 -				} -			case tableScope: -				if tagAtom == a.Html || tagAtom == a.Table || tagAtom == a.Template { -					return -1 -				} -			case selectScope: -				if tagAtom != a.Optgroup && tagAtom != a.Option { -					return -1 -				} -			default: -				panic("unreachable") -			} -		} -		switch s { -		case defaultScope, listItemScope, buttonScope: -			for _, t := range defaultScopeStopTags[p.oe[i].Namespace] { -				if t == tagAtom { -					return -1 -				} -			} -		} -	} -	return -1 -} - -// elementInScope is like popUntil, except that it doesn't modify the stack of -// open elements. -func (p *parser) elementInScope(s scope, matchTags ...a.Atom) bool { -	return p.indexOfElementInScope(s, matchTags...) != -1 -} - -// clearStackToContext pops elements off the stack of open elements until a -// scope-defined element is found. -func (p *parser) clearStackToContext(s scope) { -	for i := len(p.oe) - 1; i >= 0; i-- { -		tagAtom := p.oe[i].DataAtom -		switch s { -		case tableScope: -			if tagAtom == a.Html || tagAtom == a.Table || tagAtom == a.Template { -				p.oe = p.oe[:i+1] -				return -			} -		case tableRowScope: -			if tagAtom == a.Html || tagAtom == a.Tr || tagAtom == a.Template { -				p.oe = p.oe[:i+1] -				return -			} -		case tableBodyScope: -			if tagAtom == a.Html || tagAtom == a.Tbody || tagAtom == a.Tfoot || tagAtom == a.Thead || tagAtom == a.Template { -				p.oe = p.oe[:i+1] -				return -			} -		default: -			panic("unreachable") -		} -	} -} - -// parseGenericRawTextElement implements the generic raw text element parsing -// algorithm defined in 12.2.6.2. -// https://html.spec.whatwg.org/multipage/parsing.html#parsing-elements-that-contain-only-text -// TODO: Since both RAWTEXT and RCDATA states are treated as tokenizer's part -// officially, need to make tokenizer consider both states. -func (p *parser) parseGenericRawTextElement() { -	p.addElement() -	p.originalIM = p.im -	p.im = textIM -} - -// generateImpliedEndTags pops nodes off the stack of open elements as long as -// the top node has a tag name of dd, dt, li, optgroup, option, p, rb, rp, rt or rtc. -// If exceptions are specified, nodes with that name will not be popped off. -func (p *parser) generateImpliedEndTags(exceptions ...string) { -	var i int -loop: -	for i = len(p.oe) - 1; i >= 0; i-- { -		n := p.oe[i] -		if n.Type != ElementNode { -			break -		} -		switch n.DataAtom { -		case a.Dd, a.Dt, a.Li, a.Optgroup, a.Option, a.P, a.Rb, a.Rp, a.Rt, a.Rtc: -			for _, except := range exceptions { -				if n.Data == except { -					break loop -				} -			} -			continue -		} -		break -	} - -	p.oe = p.oe[:i+1] -} - -// addChild adds a child node n to the top element, and pushes n onto the stack -// of open elements if it is an element node. -func (p *parser) addChild(n *Node) { -	if p.shouldFosterParent() { -		p.fosterParent(n) -	} else { -		p.top().AppendChild(n) -	} - -	if n.Type == ElementNode { -		p.oe = append(p.oe, n) -	} -} - -// shouldFosterParent returns whether the next node to be added should be -// foster parented. -func (p *parser) shouldFosterParent() bool { -	if p.fosterParenting { -		switch p.top().DataAtom { -		case a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr: -			return true -		} -	} -	return false -} - -// fosterParent adds a child node according to the foster parenting rules. -// Section 12.2.6.1, "foster parenting". -func (p *parser) fosterParent(n *Node) { -	var table, parent, prev, template *Node -	var i int -	for i = len(p.oe) - 1; i >= 0; i-- { -		if p.oe[i].DataAtom == a.Table { -			table = p.oe[i] -			break -		} -	} - -	var j int -	for j = len(p.oe) - 1; j >= 0; j-- { -		if p.oe[j].DataAtom == a.Template { -			template = p.oe[j] -			break -		} -	} - -	if template != nil && (table == nil || j > i) { -		template.AppendChild(n) -		return -	} - -	if table == nil { -		// The foster parent is the html element. -		parent = p.oe[0] -	} else { -		parent = table.Parent -	} -	if parent == nil { -		parent = p.oe[i-1] -	} - -	if table != nil { -		prev = table.PrevSibling -	} else { -		prev = parent.LastChild -	} -	if prev != nil && prev.Type == TextNode && n.Type == TextNode { -		prev.Data += n.Data -		return -	} - -	parent.InsertBefore(n, table) -} - -// addText adds text to the preceding node if it is a text node, or else it -// calls addChild with a new text node. -func (p *parser) addText(text string) { -	if text == "" { -		return -	} - -	if p.shouldFosterParent() { -		p.fosterParent(&Node{ -			Type: TextNode, -			Data: text, -		}) -		return -	} - -	t := p.top() -	if n := t.LastChild; n != nil && n.Type == TextNode { -		n.Data += text -		return -	} -	p.addChild(&Node{ -		Type: TextNode, -		Data: text, -	}) -} - -// addElement adds a child element based on the current token. -func (p *parser) addElement() { -	p.addChild(&Node{ -		Type:     ElementNode, -		DataAtom: p.tok.DataAtom, -		Data:     p.tok.Data, -		Attr:     p.tok.Attr, -	}) -} - -// Section 12.2.4.3. -func (p *parser) addFormattingElement() { -	tagAtom, attr := p.tok.DataAtom, p.tok.Attr -	p.addElement() - -	// Implement the Noah's Ark clause, but with three per family instead of two. -	identicalElements := 0 -findIdenticalElements: -	for i := len(p.afe) - 1; i >= 0; i-- { -		n := p.afe[i] -		if n.Type == scopeMarkerNode { -			break -		} -		if n.Type != ElementNode { -			continue -		} -		if n.Namespace != "" { -			continue -		} -		if n.DataAtom != tagAtom { -			continue -		} -		if len(n.Attr) != len(attr) { -			continue -		} -	compareAttributes: -		for _, t0 := range n.Attr { -			for _, t1 := range attr { -				if t0.Key == t1.Key && t0.Namespace == t1.Namespace && t0.Val == t1.Val { -					// Found a match for this attribute, continue with the next attribute. -					continue compareAttributes -				} -			} -			// If we get here, there is no attribute that matches a. -			// Therefore the element is not identical to the new one. -			continue findIdenticalElements -		} - -		identicalElements++ -		if identicalElements >= 3 { -			p.afe.remove(n) -		} -	} - -	p.afe = append(p.afe, p.top()) -} - -// Section 12.2.4.3. -func (p *parser) clearActiveFormattingElements() { -	for { -		if n := p.afe.pop(); len(p.afe) == 0 || n.Type == scopeMarkerNode { -			return -		} -	} -} - -// Section 12.2.4.3. -func (p *parser) reconstructActiveFormattingElements() { -	n := p.afe.top() -	if n == nil { -		return -	} -	if n.Type == scopeMarkerNode || p.oe.index(n) != -1 { -		return -	} -	i := len(p.afe) - 1 -	for n.Type != scopeMarkerNode && p.oe.index(n) == -1 { -		if i == 0 { -			i = -1 -			break -		} -		i-- -		n = p.afe[i] -	} -	for { -		i++ -		clone := p.afe[i].clone() -		p.addChild(clone) -		p.afe[i] = clone -		if i == len(p.afe)-1 { -			break -		} -	} -} - -// Section 12.2.5. -func (p *parser) acknowledgeSelfClosingTag() { -	p.hasSelfClosingToken = false -} - -// An insertion mode (section 12.2.4.1) is the state transition function from -// a particular state in the HTML5 parser's state machine. It updates the -// parser's fields depending on parser.tok (where ErrorToken means EOF). -// It returns whether the token was consumed. -type insertionMode func(*parser) bool - -// setOriginalIM sets the insertion mode to return to after completing a text or -// inTableText insertion mode. -// Section 12.2.4.1, "using the rules for". -func (p *parser) setOriginalIM() { -	if p.originalIM != nil { -		panic("html: bad parser state: originalIM was set twice") -	} -	p.originalIM = p.im -} - -// Section 12.2.4.1, "reset the insertion mode". -func (p *parser) resetInsertionMode() { -	for i := len(p.oe) - 1; i >= 0; i-- { -		n := p.oe[i] -		last := i == 0 -		if last && p.context != nil { -			n = p.context -		} - -		switch n.DataAtom { -		case a.Select: -			if !last { -				for ancestor, first := n, p.oe[0]; ancestor != first; { -					ancestor = p.oe[p.oe.index(ancestor)-1] -					switch ancestor.DataAtom { -					case a.Template: -						p.im = inSelectIM -						return -					case a.Table: -						p.im = inSelectInTableIM -						return -					} -				} -			} -			p.im = inSelectIM -		case a.Td, a.Th: -			// TODO: remove this divergence from the HTML5 spec. -			// -			// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668 -			p.im = inCellIM -		case a.Tr: -			p.im = inRowIM -		case a.Tbody, a.Thead, a.Tfoot: -			p.im = inTableBodyIM -		case a.Caption: -			p.im = inCaptionIM -		case a.Colgroup: -			p.im = inColumnGroupIM -		case a.Table: -			p.im = inTableIM -		case a.Template: -			// TODO: remove this divergence from the HTML5 spec. -			if n.Namespace != "" { -				continue -			} -			p.im = p.templateStack.top() -		case a.Head: -			// TODO: remove this divergence from the HTML5 spec. -			// -			// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668 -			p.im = inHeadIM -		case a.Body: -			p.im = inBodyIM -		case a.Frameset: -			p.im = inFramesetIM -		case a.Html: -			if p.head == nil { -				p.im = beforeHeadIM -			} else { -				p.im = afterHeadIM -			} -		default: -			if last { -				p.im = inBodyIM -				return -			} -			continue -		} -		return -	} -} - -const whitespace = " \t\r\n\f" - -// Section 12.2.6.4.1. -func initialIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace) -		if len(p.tok.Data) == 0 { -			// It was all whitespace, so ignore it. -			return true -		} -	case CommentToken: -		p.doc.AppendChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		n, quirks := parseDoctype(p.tok.Data) -		p.doc.AppendChild(n) -		p.quirks = quirks -		p.im = beforeHTMLIM -		return true -	} -	p.quirks = true -	p.im = beforeHTMLIM -	return false -} - -// Section 12.2.6.4.2. -func beforeHTMLIM(p *parser) bool { -	switch p.tok.Type { -	case DoctypeToken: -		// Ignore the token. -		return true -	case TextToken: -		p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace) -		if len(p.tok.Data) == 0 { -			// It was all whitespace, so ignore it. -			return true -		} -	case StartTagToken: -		if p.tok.DataAtom == a.Html { -			p.addElement() -			p.im = beforeHeadIM -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Head, a.Body, a.Html, a.Br: -			p.parseImpliedToken(StartTagToken, a.Html, a.Html.String()) -			return false -		default: -			// Ignore the token. -			return true -		} -	case CommentToken: -		p.doc.AppendChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	} -	p.parseImpliedToken(StartTagToken, a.Html, a.Html.String()) -	return false -} - -// Section 12.2.6.4.3. -func beforeHeadIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		p.tok.Data = strings.TrimLeft(p.tok.Data, whitespace) -		if len(p.tok.Data) == 0 { -			// It was all whitespace, so ignore it. -			return true -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Head: -			p.addElement() -			p.head = p.top() -			p.im = inHeadIM -			return true -		case a.Html: -			return inBodyIM(p) -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Head, a.Body, a.Html, a.Br: -			p.parseImpliedToken(StartTagToken, a.Head, a.Head.String()) -			return false -		default: -			// Ignore the token. -			return true -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		// Ignore the token. -		return true -	} - -	p.parseImpliedToken(StartTagToken, a.Head, a.Head.String()) -	return false -} - -// Section 12.2.6.4.4. -func inHeadIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) < len(p.tok.Data) { -			// Add the initial whitespace to the current node. -			p.addText(p.tok.Data[:len(p.tok.Data)-len(s)]) -			if s == "" { -				return true -			} -			p.tok.Data = s -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta: -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -			return true -		case a.Noscript: -			if p.scripting { -				p.parseGenericRawTextElement() -				return true -			} -			p.addElement() -			p.im = inHeadNoscriptIM -			// Don't let the tokenizer go into raw text mode when scripting is disabled. -			p.tokenizer.NextIsNotRawText() -			return true -		case a.Script, a.Title: -			p.addElement() -			p.setOriginalIM() -			p.im = textIM -			return true -		case a.Noframes, a.Style: -			p.parseGenericRawTextElement() -			return true -		case a.Head: -			// Ignore the token. -			return true -		case a.Template: -			// TODO: remove this divergence from the HTML5 spec. -			// -			// We don't handle all of the corner cases when mixing foreign -			// content (i.e. <math> or <svg>) with <template>. Without this -			// early return, we can get into an infinite loop, possibly because -			// of the "TODO... further divergence" a little below. -			// -			// As a workaround, if we are mixing foreign content and templates, -			// just ignore the rest of the HTML. Foreign content is rare and a -			// relatively old HTML feature. Templates are also rare and a -			// relatively new HTML feature. Their combination is very rare. -			for _, e := range p.oe { -				if e.Namespace != "" { -					p.im = ignoreTheRemainingTokens -					return true -				} -			} - -			p.addElement() -			p.afe = append(p.afe, &scopeMarker) -			p.framesetOK = false -			p.im = inTemplateIM -			p.templateStack = append(p.templateStack, inTemplateIM) -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Head: -			p.oe.pop() -			p.im = afterHeadIM -			return true -		case a.Body, a.Html, a.Br: -			p.parseImpliedToken(EndTagToken, a.Head, a.Head.String()) -			return false -		case a.Template: -			if !p.oe.contains(a.Template) { -				return true -			} -			// TODO: remove this further divergence from the HTML5 spec. -			// -			// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668 -			p.generateImpliedEndTags() -			for i := len(p.oe) - 1; i >= 0; i-- { -				if n := p.oe[i]; n.Namespace == "" && n.DataAtom == a.Template { -					p.oe = p.oe[:i] -					break -				} -			} -			p.clearActiveFormattingElements() -			p.templateStack.pop() -			p.resetInsertionMode() -			return true -		default: -			// Ignore the token. -			return true -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		// Ignore the token. -		return true -	} - -	p.parseImpliedToken(EndTagToken, a.Head, a.Head.String()) -	return false -} - -// Section 12.2.6.4.5. -func inHeadNoscriptIM(p *parser) bool { -	switch p.tok.Type { -	case DoctypeToken: -		// Ignore the token. -		return true -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Style: -			return inHeadIM(p) -		case a.Head: -			// Ignore the token. -			return true -		case a.Noscript: -			// Don't let the tokenizer go into raw text mode even when a <noscript> -			// tag is in "in head noscript" insertion mode. -			p.tokenizer.NextIsNotRawText() -			// Ignore the token. -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Noscript, a.Br: -		default: -			// Ignore the token. -			return true -		} -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) == 0 { -			// It was all whitespace. -			return inHeadIM(p) -		} -	case CommentToken: -		return inHeadIM(p) -	} -	p.oe.pop() -	if p.top().DataAtom != a.Head { -		panic("html: the new current node will be a head element.") -	} -	p.im = inHeadIM -	if p.tok.DataAtom == a.Noscript { -		return true -	} -	return false -} - -// Section 12.2.6.4.6. -func afterHeadIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) < len(p.tok.Data) { -			// Add the initial whitespace to the current node. -			p.addText(p.tok.Data[:len(p.tok.Data)-len(s)]) -			if s == "" { -				return true -			} -			p.tok.Data = s -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Body: -			p.addElement() -			p.framesetOK = false -			p.im = inBodyIM -			return true -		case a.Frameset: -			p.addElement() -			p.im = inFramesetIM -			return true -		case a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title: -			p.oe = append(p.oe, p.head) -			defer p.oe.remove(p.head) -			return inHeadIM(p) -		case a.Head: -			// Ignore the token. -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Body, a.Html, a.Br: -			// Drop down to creating an implied <body> tag. -		case a.Template: -			return inHeadIM(p) -		default: -			// Ignore the token. -			return true -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		// Ignore the token. -		return true -	} - -	p.parseImpliedToken(StartTagToken, a.Body, a.Body.String()) -	p.framesetOK = true -	if p.tok.Type == ErrorToken { -		// Stop parsing. -		return true -	} -	return false -} - -// copyAttributes copies attributes of src not found on dst to dst. -func copyAttributes(dst *Node, src Token) { -	if len(src.Attr) == 0 { -		return -	} -	attr := map[string]string{} -	for _, t := range dst.Attr { -		attr[t.Key] = t.Val -	} -	for _, t := range src.Attr { -		if _, ok := attr[t.Key]; !ok { -			dst.Attr = append(dst.Attr, t) -			attr[t.Key] = t.Val -		} -	} -} - -// Section 12.2.6.4.7. -func inBodyIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		d := p.tok.Data -		switch n := p.oe.top(); n.DataAtom { -		case a.Pre, a.Listing: -			if n.FirstChild == nil { -				// Ignore a newline at the start of a <pre> block. -				if d != "" && d[0] == '\r' { -					d = d[1:] -				} -				if d != "" && d[0] == '\n' { -					d = d[1:] -				} -			} -		} -		d = strings.Replace(d, "\x00", "", -1) -		if d == "" { -			return true -		} -		p.reconstructActiveFormattingElements() -		p.addText(d) -		if p.framesetOK && strings.TrimLeft(d, whitespace) != "" { -			// There were non-whitespace characters inserted. -			p.framesetOK = false -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			if p.oe.contains(a.Template) { -				return true -			} -			copyAttributes(p.oe[0], p.tok) -		case a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title: -			return inHeadIM(p) -		case a.Body: -			if p.oe.contains(a.Template) { -				return true -			} -			if len(p.oe) >= 2 { -				body := p.oe[1] -				if body.Type == ElementNode && body.DataAtom == a.Body { -					p.framesetOK = false -					copyAttributes(body, p.tok) -				} -			} -		case a.Frameset: -			if !p.framesetOK || len(p.oe) < 2 || p.oe[1].DataAtom != a.Body { -				// Ignore the token. -				return true -			} -			body := p.oe[1] -			if body.Parent != nil { -				body.Parent.RemoveChild(body) -			} -			p.oe = p.oe[:1] -			p.addElement() -			p.im = inFramesetIM -			return true -		case a.Address, a.Article, a.Aside, a.Blockquote, a.Center, a.Details, a.Dialog, a.Dir, a.Div, a.Dl, a.Fieldset, a.Figcaption, a.Figure, a.Footer, a.Header, a.Hgroup, a.Main, a.Menu, a.Nav, a.Ol, a.P, a.Section, a.Summary, a.Ul: -			p.popUntil(buttonScope, a.P) -			p.addElement() -		case a.H1, a.H2, a.H3, a.H4, a.H5, a.H6: -			p.popUntil(buttonScope, a.P) -			switch n := p.top(); n.DataAtom { -			case a.H1, a.H2, a.H3, a.H4, a.H5, a.H6: -				p.oe.pop() -			} -			p.addElement() -		case a.Pre, a.Listing: -			p.popUntil(buttonScope, a.P) -			p.addElement() -			// The newline, if any, will be dealt with by the TextToken case. -			p.framesetOK = false -		case a.Form: -			if p.form != nil && !p.oe.contains(a.Template) { -				// Ignore the token -				return true -			} -			p.popUntil(buttonScope, a.P) -			p.addElement() -			if !p.oe.contains(a.Template) { -				p.form = p.top() -			} -		case a.Li: -			p.framesetOK = false -			for i := len(p.oe) - 1; i >= 0; i-- { -				node := p.oe[i] -				switch node.DataAtom { -				case a.Li: -					p.oe = p.oe[:i] -				case a.Address, a.Div, a.P: -					continue -				default: -					if !isSpecialElement(node) { -						continue -					} -				} -				break -			} -			p.popUntil(buttonScope, a.P) -			p.addElement() -		case a.Dd, a.Dt: -			p.framesetOK = false -			for i := len(p.oe) - 1; i >= 0; i-- { -				node := p.oe[i] -				switch node.DataAtom { -				case a.Dd, a.Dt: -					p.oe = p.oe[:i] -				case a.Address, a.Div, a.P: -					continue -				default: -					if !isSpecialElement(node) { -						continue -					} -				} -				break -			} -			p.popUntil(buttonScope, a.P) -			p.addElement() -		case a.Plaintext: -			p.popUntil(buttonScope, a.P) -			p.addElement() -		case a.Button: -			p.popUntil(defaultScope, a.Button) -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.framesetOK = false -		case a.A: -			for i := len(p.afe) - 1; i >= 0 && p.afe[i].Type != scopeMarkerNode; i-- { -				if n := p.afe[i]; n.Type == ElementNode && n.DataAtom == a.A { -					p.inBodyEndTagFormatting(a.A, "a") -					p.oe.remove(n) -					p.afe.remove(n) -					break -				} -			} -			p.reconstructActiveFormattingElements() -			p.addFormattingElement() -		case a.B, a.Big, a.Code, a.Em, a.Font, a.I, a.S, a.Small, a.Strike, a.Strong, a.Tt, a.U: -			p.reconstructActiveFormattingElements() -			p.addFormattingElement() -		case a.Nobr: -			p.reconstructActiveFormattingElements() -			if p.elementInScope(defaultScope, a.Nobr) { -				p.inBodyEndTagFormatting(a.Nobr, "nobr") -				p.reconstructActiveFormattingElements() -			} -			p.addFormattingElement() -		case a.Applet, a.Marquee, a.Object: -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.afe = append(p.afe, &scopeMarker) -			p.framesetOK = false -		case a.Table: -			if !p.quirks { -				p.popUntil(buttonScope, a.P) -			} -			p.addElement() -			p.framesetOK = false -			p.im = inTableIM -			return true -		case a.Area, a.Br, a.Embed, a.Img, a.Input, a.Keygen, a.Wbr: -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -			if p.tok.DataAtom == a.Input { -				for _, t := range p.tok.Attr { -					if t.Key == "type" { -						if strings.EqualFold(t.Val, "hidden") { -							// Skip setting framesetOK = false -							return true -						} -					} -				} -			} -			p.framesetOK = false -		case a.Param, a.Source, a.Track: -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -		case a.Hr: -			p.popUntil(buttonScope, a.P) -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -			p.framesetOK = false -		case a.Image: -			p.tok.DataAtom = a.Img -			p.tok.Data = a.Img.String() -			return false -		case a.Textarea: -			p.addElement() -			p.setOriginalIM() -			p.framesetOK = false -			p.im = textIM -		case a.Xmp: -			p.popUntil(buttonScope, a.P) -			p.reconstructActiveFormattingElements() -			p.framesetOK = false -			p.parseGenericRawTextElement() -		case a.Iframe: -			p.framesetOK = false -			p.parseGenericRawTextElement() -		case a.Noembed: -			p.parseGenericRawTextElement() -		case a.Noscript: -			if p.scripting { -				p.parseGenericRawTextElement() -				return true -			} -			p.reconstructActiveFormattingElements() -			p.addElement() -			// Don't let the tokenizer go into raw text mode when scripting is disabled. -			p.tokenizer.NextIsNotRawText() -		case a.Select: -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.framesetOK = false -			p.im = inSelectIM -			return true -		case a.Optgroup, a.Option: -			if p.top().DataAtom == a.Option { -				p.oe.pop() -			} -			p.reconstructActiveFormattingElements() -			p.addElement() -		case a.Rb, a.Rtc: -			if p.elementInScope(defaultScope, a.Ruby) { -				p.generateImpliedEndTags() -			} -			p.addElement() -		case a.Rp, a.Rt: -			if p.elementInScope(defaultScope, a.Ruby) { -				p.generateImpliedEndTags("rtc") -			} -			p.addElement() -		case a.Math, a.Svg: -			p.reconstructActiveFormattingElements() -			if p.tok.DataAtom == a.Math { -				adjustAttributeNames(p.tok.Attr, mathMLAttributeAdjustments) -			} else { -				adjustAttributeNames(p.tok.Attr, svgAttributeAdjustments) -			} -			adjustForeignAttributes(p.tok.Attr) -			p.addElement() -			p.top().Namespace = p.tok.Data -			if p.hasSelfClosingToken { -				p.oe.pop() -				p.acknowledgeSelfClosingTag() -			} -			return true -		case a.Caption, a.Col, a.Colgroup, a.Frame, a.Head, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr: -			// Ignore the token. -		default: -			p.reconstructActiveFormattingElements() -			p.addElement() -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Body: -			if p.elementInScope(defaultScope, a.Body) { -				p.im = afterBodyIM -			} -		case a.Html: -			if p.elementInScope(defaultScope, a.Body) { -				p.parseImpliedToken(EndTagToken, a.Body, a.Body.String()) -				return false -			} -			return true -		case a.Address, a.Article, a.Aside, a.Blockquote, a.Button, a.Center, a.Details, a.Dialog, a.Dir, a.Div, a.Dl, a.Fieldset, a.Figcaption, a.Figure, a.Footer, a.Header, a.Hgroup, a.Listing, a.Main, a.Menu, a.Nav, a.Ol, a.Pre, a.Section, a.Summary, a.Ul: -			p.popUntil(defaultScope, p.tok.DataAtom) -		case a.Form: -			if p.oe.contains(a.Template) { -				i := p.indexOfElementInScope(defaultScope, a.Form) -				if i == -1 { -					// Ignore the token. -					return true -				} -				p.generateImpliedEndTags() -				if p.oe[i].DataAtom != a.Form { -					// Ignore the token. -					return true -				} -				p.popUntil(defaultScope, a.Form) -			} else { -				node := p.form -				p.form = nil -				i := p.indexOfElementInScope(defaultScope, a.Form) -				if node == nil || i == -1 || p.oe[i] != node { -					// Ignore the token. -					return true -				} -				p.generateImpliedEndTags() -				p.oe.remove(node) -			} -		case a.P: -			if !p.elementInScope(buttonScope, a.P) { -				p.parseImpliedToken(StartTagToken, a.P, a.P.String()) -			} -			p.popUntil(buttonScope, a.P) -		case a.Li: -			p.popUntil(listItemScope, a.Li) -		case a.Dd, a.Dt: -			p.popUntil(defaultScope, p.tok.DataAtom) -		case a.H1, a.H2, a.H3, a.H4, a.H5, a.H6: -			p.popUntil(defaultScope, a.H1, a.H2, a.H3, a.H4, a.H5, a.H6) -		case a.A, a.B, a.Big, a.Code, a.Em, a.Font, a.I, a.Nobr, a.S, a.Small, a.Strike, a.Strong, a.Tt, a.U: -			p.inBodyEndTagFormatting(p.tok.DataAtom, p.tok.Data) -		case a.Applet, a.Marquee, a.Object: -			if p.popUntil(defaultScope, p.tok.DataAtom) { -				p.clearActiveFormattingElements() -			} -		case a.Br: -			p.tok.Type = StartTagToken -			return false -		case a.Template: -			return inHeadIM(p) -		default: -			p.inBodyEndTagOther(p.tok.DataAtom, p.tok.Data) -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case ErrorToken: -		// TODO: remove this divergence from the HTML5 spec. -		if len(p.templateStack) > 0 { -			p.im = inTemplateIM -			return false -		} -		for _, e := range p.oe { -			switch e.DataAtom { -			case a.Dd, a.Dt, a.Li, a.Optgroup, a.Option, a.P, a.Rb, a.Rp, a.Rt, a.Rtc, a.Tbody, a.Td, a.Tfoot, a.Th, -				a.Thead, a.Tr, a.Body, a.Html: -			default: -				return true -			} -		} -	} - -	return true -} - -func (p *parser) inBodyEndTagFormatting(tagAtom a.Atom, tagName string) { -	// This is the "adoption agency" algorithm, described at -	// https://html.spec.whatwg.org/multipage/syntax.html#adoptionAgency - -	// TODO: this is a fairly literal line-by-line translation of that algorithm. -	// Once the code successfully parses the comprehensive test suite, we should -	// refactor this code to be more idiomatic. - -	// Steps 1-2 -	if current := p.oe.top(); current.Data == tagName && p.afe.index(current) == -1 { -		p.oe.pop() -		return -	} - -	// Steps 3-5. The outer loop. -	for i := 0; i < 8; i++ { -		// Step 6. Find the formatting element. -		var formattingElement *Node -		for j := len(p.afe) - 1; j >= 0; j-- { -			if p.afe[j].Type == scopeMarkerNode { -				break -			} -			if p.afe[j].DataAtom == tagAtom { -				formattingElement = p.afe[j] -				break -			} -		} -		if formattingElement == nil { -			p.inBodyEndTagOther(tagAtom, tagName) -			return -		} - -		// Step 7. Ignore the tag if formatting element is not in the stack of open elements. -		feIndex := p.oe.index(formattingElement) -		if feIndex == -1 { -			p.afe.remove(formattingElement) -			return -		} -		// Step 8. Ignore the tag if formatting element is not in the scope. -		if !p.elementInScope(defaultScope, tagAtom) { -			// Ignore the tag. -			return -		} - -		// Step 9. This step is omitted because it's just a parse error but no need to return. - -		// Steps 10-11. Find the furthest block. -		var furthestBlock *Node -		for _, e := range p.oe[feIndex:] { -			if isSpecialElement(e) { -				furthestBlock = e -				break -			} -		} -		if furthestBlock == nil { -			e := p.oe.pop() -			for e != formattingElement { -				e = p.oe.pop() -			} -			p.afe.remove(e) -			return -		} - -		// Steps 12-13. Find the common ancestor and bookmark node. -		commonAncestor := p.oe[feIndex-1] -		bookmark := p.afe.index(formattingElement) - -		// Step 14. The inner loop. Find the lastNode to reparent. -		lastNode := furthestBlock -		node := furthestBlock -		x := p.oe.index(node) -		// Step 14.1. -		j := 0 -		for { -			// Step 14.2. -			j++ -			// Step. 14.3. -			x-- -			node = p.oe[x] -			// Step 14.4. Go to the next step if node is formatting element. -			if node == formattingElement { -				break -			} -			// Step 14.5. Remove node from the list of active formatting elements if -			// inner loop counter is greater than three and node is in the list of -			// active formatting elements. -			if ni := p.afe.index(node); j > 3 && ni > -1 { -				p.afe.remove(node) -				// If any element of the list of active formatting elements is removed, -				// we need to take care whether bookmark should be decremented or not. -				// This is because the value of bookmark may exceed the size of the -				// list by removing elements from the list. -				if ni <= bookmark { -					bookmark-- -				} -				continue -			} -			// Step 14.6. Continue the next inner loop if node is not in the list of -			// active formatting elements. -			if p.afe.index(node) == -1 { -				p.oe.remove(node) -				continue -			} -			// Step 14.7. -			clone := node.clone() -			p.afe[p.afe.index(node)] = clone -			p.oe[p.oe.index(node)] = clone -			node = clone -			// Step 14.8. -			if lastNode == furthestBlock { -				bookmark = p.afe.index(node) + 1 -			} -			// Step 14.9. -			if lastNode.Parent != nil { -				lastNode.Parent.RemoveChild(lastNode) -			} -			node.AppendChild(lastNode) -			// Step 14.10. -			lastNode = node -		} - -		// Step 15. Reparent lastNode to the common ancestor, -		// or for misnested table nodes, to the foster parent. -		if lastNode.Parent != nil { -			lastNode.Parent.RemoveChild(lastNode) -		} -		switch commonAncestor.DataAtom { -		case a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr: -			p.fosterParent(lastNode) -		default: -			commonAncestor.AppendChild(lastNode) -		} - -		// Steps 16-18. Reparent nodes from the furthest block's children -		// to a clone of the formatting element. -		clone := formattingElement.clone() -		reparentChildren(clone, furthestBlock) -		furthestBlock.AppendChild(clone) - -		// Step 19. Fix up the list of active formatting elements. -		if oldLoc := p.afe.index(formattingElement); oldLoc != -1 && oldLoc < bookmark { -			// Move the bookmark with the rest of the list. -			bookmark-- -		} -		p.afe.remove(formattingElement) -		p.afe.insert(bookmark, clone) - -		// Step 20. Fix up the stack of open elements. -		p.oe.remove(formattingElement) -		p.oe.insert(p.oe.index(furthestBlock)+1, clone) -	} -} - -// inBodyEndTagOther performs the "any other end tag" algorithm for inBodyIM. -// "Any other end tag" handling from 12.2.6.5 The rules for parsing tokens in foreign content -// https://html.spec.whatwg.org/multipage/syntax.html#parsing-main-inforeign -func (p *parser) inBodyEndTagOther(tagAtom a.Atom, tagName string) { -	for i := len(p.oe) - 1; i >= 0; i-- { -		// Two element nodes have the same tag if they have the same Data (a -		// string-typed field). As an optimization, for common HTML tags, each -		// Data string is assigned a unique, non-zero DataAtom (a uint32-typed -		// field), since integer comparison is faster than string comparison. -		// Uncommon (custom) tags get a zero DataAtom. -		// -		// The if condition here is equivalent to (p.oe[i].Data == tagName). -		if (p.oe[i].DataAtom == tagAtom) && -			((tagAtom != 0) || (p.oe[i].Data == tagName)) { -			p.oe = p.oe[:i] -			break -		} -		if isSpecialElement(p.oe[i]) { -			break -		} -	} -} - -// Section 12.2.6.4.8. -func textIM(p *parser) bool { -	switch p.tok.Type { -	case ErrorToken: -		p.oe.pop() -	case TextToken: -		d := p.tok.Data -		if n := p.oe.top(); n.DataAtom == a.Textarea && n.FirstChild == nil { -			// Ignore a newline at the start of a <textarea> block. -			if d != "" && d[0] == '\r' { -				d = d[1:] -			} -			if d != "" && d[0] == '\n' { -				d = d[1:] -			} -		} -		if d == "" { -			return true -		} -		p.addText(d) -		return true -	case EndTagToken: -		p.oe.pop() -	} -	p.im = p.originalIM -	p.originalIM = nil -	return p.tok.Type == EndTagToken -} - -// Section 12.2.6.4.9. -func inTableIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		p.tok.Data = strings.Replace(p.tok.Data, "\x00", "", -1) -		switch p.oe.top().DataAtom { -		case a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr: -			if strings.Trim(p.tok.Data, whitespace) == "" { -				p.addText(p.tok.Data) -				return true -			} -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Caption: -			p.clearStackToContext(tableScope) -			p.afe = append(p.afe, &scopeMarker) -			p.addElement() -			p.im = inCaptionIM -			return true -		case a.Colgroup: -			p.clearStackToContext(tableScope) -			p.addElement() -			p.im = inColumnGroupIM -			return true -		case a.Col: -			p.parseImpliedToken(StartTagToken, a.Colgroup, a.Colgroup.String()) -			return false -		case a.Tbody, a.Tfoot, a.Thead: -			p.clearStackToContext(tableScope) -			p.addElement() -			p.im = inTableBodyIM -			return true -		case a.Td, a.Th, a.Tr: -			p.parseImpliedToken(StartTagToken, a.Tbody, a.Tbody.String()) -			return false -		case a.Table: -			if p.popUntil(tableScope, a.Table) { -				p.resetInsertionMode() -				return false -			} -			// Ignore the token. -			return true -		case a.Style, a.Script, a.Template: -			return inHeadIM(p) -		case a.Input: -			for _, t := range p.tok.Attr { -				if t.Key == "type" && strings.EqualFold(t.Val, "hidden") { -					p.addElement() -					p.oe.pop() -					return true -				} -			} -			// Otherwise drop down to the default action. -		case a.Form: -			if p.oe.contains(a.Template) || p.form != nil { -				// Ignore the token. -				return true -			} -			p.addElement() -			p.form = p.oe.pop() -		case a.Select: -			p.reconstructActiveFormattingElements() -			switch p.top().DataAtom { -			case a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr: -				p.fosterParenting = true -			} -			p.addElement() -			p.fosterParenting = false -			p.framesetOK = false -			p.im = inSelectInTableIM -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Table: -			if p.popUntil(tableScope, a.Table) { -				p.resetInsertionMode() -				return true -			} -			// Ignore the token. -			return true -		case a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr: -			// Ignore the token. -			return true -		case a.Template: -			return inHeadIM(p) -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		// Ignore the token. -		return true -	case ErrorToken: -		return inBodyIM(p) -	} - -	p.fosterParenting = true -	defer func() { p.fosterParenting = false }() - -	return inBodyIM(p) -} - -// Section 12.2.6.4.11. -func inCaptionIM(p *parser) bool { -	switch p.tok.Type { -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Caption, a.Col, a.Colgroup, a.Tbody, a.Td, a.Tfoot, a.Thead, a.Tr: -			if !p.popUntil(tableScope, a.Caption) { -				// Ignore the token. -				return true -			} -			p.clearActiveFormattingElements() -			p.im = inTableIM -			return false -		case a.Select: -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.framesetOK = false -			p.im = inSelectInTableIM -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Caption: -			if p.popUntil(tableScope, a.Caption) { -				p.clearActiveFormattingElements() -				p.im = inTableIM -			} -			return true -		case a.Table: -			if !p.popUntil(tableScope, a.Caption) { -				// Ignore the token. -				return true -			} -			p.clearActiveFormattingElements() -			p.im = inTableIM -			return false -		case a.Body, a.Col, a.Colgroup, a.Html, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr: -			// Ignore the token. -			return true -		} -	} -	return inBodyIM(p) -} - -// Section 12.2.6.4.12. -func inColumnGroupIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) < len(p.tok.Data) { -			// Add the initial whitespace to the current node. -			p.addText(p.tok.Data[:len(p.tok.Data)-len(s)]) -			if s == "" { -				return true -			} -			p.tok.Data = s -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		// Ignore the token. -		return true -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Col: -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -			return true -		case a.Template: -			return inHeadIM(p) -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Colgroup: -			if p.oe.top().DataAtom == a.Colgroup { -				p.oe.pop() -				p.im = inTableIM -			} -			return true -		case a.Col: -			// Ignore the token. -			return true -		case a.Template: -			return inHeadIM(p) -		} -	case ErrorToken: -		return inBodyIM(p) -	} -	if p.oe.top().DataAtom != a.Colgroup { -		return true -	} -	p.oe.pop() -	p.im = inTableIM -	return false -} - -// Section 12.2.6.4.13. -func inTableBodyIM(p *parser) bool { -	switch p.tok.Type { -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Tr: -			p.clearStackToContext(tableBodyScope) -			p.addElement() -			p.im = inRowIM -			return true -		case a.Td, a.Th: -			p.parseImpliedToken(StartTagToken, a.Tr, a.Tr.String()) -			return false -		case a.Caption, a.Col, a.Colgroup, a.Tbody, a.Tfoot, a.Thead: -			if p.popUntil(tableScope, a.Tbody, a.Thead, a.Tfoot) { -				p.im = inTableIM -				return false -			} -			// Ignore the token. -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Tbody, a.Tfoot, a.Thead: -			if p.elementInScope(tableScope, p.tok.DataAtom) { -				p.clearStackToContext(tableBodyScope) -				p.oe.pop() -				p.im = inTableIM -			} -			return true -		case a.Table: -			if p.popUntil(tableScope, a.Tbody, a.Thead, a.Tfoot) { -				p.im = inTableIM -				return false -			} -			// Ignore the token. -			return true -		case a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Td, a.Th, a.Tr: -			// Ignore the token. -			return true -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	} - -	return inTableIM(p) -} - -// Section 12.2.6.4.14. -func inRowIM(p *parser) bool { -	switch p.tok.Type { -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Td, a.Th: -			p.clearStackToContext(tableRowScope) -			p.addElement() -			p.afe = append(p.afe, &scopeMarker) -			p.im = inCellIM -			return true -		case a.Caption, a.Col, a.Colgroup, a.Tbody, a.Tfoot, a.Thead, a.Tr: -			if p.popUntil(tableScope, a.Tr) { -				p.im = inTableBodyIM -				return false -			} -			// Ignore the token. -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Tr: -			if p.popUntil(tableScope, a.Tr) { -				p.im = inTableBodyIM -				return true -			} -			// Ignore the token. -			return true -		case a.Table: -			if p.popUntil(tableScope, a.Tr) { -				p.im = inTableBodyIM -				return false -			} -			// Ignore the token. -			return true -		case a.Tbody, a.Tfoot, a.Thead: -			if p.elementInScope(tableScope, p.tok.DataAtom) { -				p.parseImpliedToken(EndTagToken, a.Tr, a.Tr.String()) -				return false -			} -			// Ignore the token. -			return true -		case a.Body, a.Caption, a.Col, a.Colgroup, a.Html, a.Td, a.Th: -			// Ignore the token. -			return true -		} -	} - -	return inTableIM(p) -} - -// Section 12.2.6.4.15. -func inCellIM(p *parser) bool { -	switch p.tok.Type { -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Caption, a.Col, a.Colgroup, a.Tbody, a.Td, a.Tfoot, a.Th, a.Thead, a.Tr: -			if p.popUntil(tableScope, a.Td, a.Th) { -				// Close the cell and reprocess. -				p.clearActiveFormattingElements() -				p.im = inRowIM -				return false -			} -			// Ignore the token. -			return true -		case a.Select: -			p.reconstructActiveFormattingElements() -			p.addElement() -			p.framesetOK = false -			p.im = inSelectInTableIM -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Td, a.Th: -			if !p.popUntil(tableScope, p.tok.DataAtom) { -				// Ignore the token. -				return true -			} -			p.clearActiveFormattingElements() -			p.im = inRowIM -			return true -		case a.Body, a.Caption, a.Col, a.Colgroup, a.Html: -			// Ignore the token. -			return true -		case a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr: -			if !p.elementInScope(tableScope, p.tok.DataAtom) { -				// Ignore the token. -				return true -			} -			// Close the cell and reprocess. -			if p.popUntil(tableScope, a.Td, a.Th) { -				p.clearActiveFormattingElements() -			} -			p.im = inRowIM -			return false -		} -	} -	return inBodyIM(p) -} - -// Section 12.2.6.4.16. -func inSelectIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		p.addText(strings.Replace(p.tok.Data, "\x00", "", -1)) -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Option: -			if p.top().DataAtom == a.Option { -				p.oe.pop() -			} -			p.addElement() -		case a.Optgroup: -			if p.top().DataAtom == a.Option { -				p.oe.pop() -			} -			if p.top().DataAtom == a.Optgroup { -				p.oe.pop() -			} -			p.addElement() -		case a.Select: -			if !p.popUntil(selectScope, a.Select) { -				// Ignore the token. -				return true -			} -			p.resetInsertionMode() -		case a.Input, a.Keygen, a.Textarea: -			if p.elementInScope(selectScope, a.Select) { -				p.parseImpliedToken(EndTagToken, a.Select, a.Select.String()) -				return false -			} -			// In order to properly ignore <textarea>, we need to change the tokenizer mode. -			p.tokenizer.NextIsNotRawText() -			// Ignore the token. -			return true -		case a.Script, a.Template: -			return inHeadIM(p) -		case a.Iframe, a.Noembed, a.Noframes, a.Noscript, a.Plaintext, a.Style, a.Title, a.Xmp: -			// Don't let the tokenizer go into raw text mode when there are raw tags -			// to be ignored. These tags should be ignored from the tokenizer -			// properly. -			p.tokenizer.NextIsNotRawText() -			// Ignore the token. -			return true -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Option: -			if p.top().DataAtom == a.Option { -				p.oe.pop() -			} -		case a.Optgroup: -			i := len(p.oe) - 1 -			if p.oe[i].DataAtom == a.Option { -				i-- -			} -			if p.oe[i].DataAtom == a.Optgroup { -				p.oe = p.oe[:i] -			} -		case a.Select: -			if !p.popUntil(selectScope, a.Select) { -				// Ignore the token. -				return true -			} -			p.resetInsertionMode() -		case a.Template: -			return inHeadIM(p) -		} -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case DoctypeToken: -		// Ignore the token. -		return true -	case ErrorToken: -		return inBodyIM(p) -	} - -	return true -} - -// Section 12.2.6.4.17. -func inSelectInTableIM(p *parser) bool { -	switch p.tok.Type { -	case StartTagToken, EndTagToken: -		switch p.tok.DataAtom { -		case a.Caption, a.Table, a.Tbody, a.Tfoot, a.Thead, a.Tr, a.Td, a.Th: -			if p.tok.Type == EndTagToken && !p.elementInScope(tableScope, p.tok.DataAtom) { -				// Ignore the token. -				return true -			} -			// This is like p.popUntil(selectScope, a.Select), but it also -			// matches <math select>, not just <select>. Matching the MathML -			// tag is arguably incorrect (conceptually), but it mimics what -			// Chromium does. -			for i := len(p.oe) - 1; i >= 0; i-- { -				if n := p.oe[i]; n.DataAtom == a.Select { -					p.oe = p.oe[:i] -					break -				} -			} -			p.resetInsertionMode() -			return false -		} -	} -	return inSelectIM(p) -} - -// Section 12.2.6.4.18. -func inTemplateIM(p *parser) bool { -	switch p.tok.Type { -	case TextToken, CommentToken, DoctypeToken: -		return inBodyIM(p) -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Base, a.Basefont, a.Bgsound, a.Link, a.Meta, a.Noframes, a.Script, a.Style, a.Template, a.Title: -			return inHeadIM(p) -		case a.Caption, a.Colgroup, a.Tbody, a.Tfoot, a.Thead: -			p.templateStack.pop() -			p.templateStack = append(p.templateStack, inTableIM) -			p.im = inTableIM -			return false -		case a.Col: -			p.templateStack.pop() -			p.templateStack = append(p.templateStack, inColumnGroupIM) -			p.im = inColumnGroupIM -			return false -		case a.Tr: -			p.templateStack.pop() -			p.templateStack = append(p.templateStack, inTableBodyIM) -			p.im = inTableBodyIM -			return false -		case a.Td, a.Th: -			p.templateStack.pop() -			p.templateStack = append(p.templateStack, inRowIM) -			p.im = inRowIM -			return false -		default: -			p.templateStack.pop() -			p.templateStack = append(p.templateStack, inBodyIM) -			p.im = inBodyIM -			return false -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Template: -			return inHeadIM(p) -		default: -			// Ignore the token. -			return true -		} -	case ErrorToken: -		if !p.oe.contains(a.Template) { -			// Ignore the token. -			return true -		} -		// TODO: remove this divergence from the HTML5 spec. -		// -		// See https://bugs.chromium.org/p/chromium/issues/detail?id=829668 -		p.generateImpliedEndTags() -		for i := len(p.oe) - 1; i >= 0; i-- { -			if n := p.oe[i]; n.Namespace == "" && n.DataAtom == a.Template { -				p.oe = p.oe[:i] -				break -			} -		} -		p.clearActiveFormattingElements() -		p.templateStack.pop() -		p.resetInsertionMode() -		return false -	} -	return false -} - -// Section 12.2.6.4.19. -func afterBodyIM(p *parser) bool { -	switch p.tok.Type { -	case ErrorToken: -		// Stop parsing. -		return true -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) == 0 { -			// It was all whitespace. -			return inBodyIM(p) -		} -	case StartTagToken: -		if p.tok.DataAtom == a.Html { -			return inBodyIM(p) -		} -	case EndTagToken: -		if p.tok.DataAtom == a.Html { -			if !p.fragment { -				p.im = afterAfterBodyIM -			} -			return true -		} -	case CommentToken: -		// The comment is attached to the <html> element. -		if len(p.oe) < 1 || p.oe[0].DataAtom != a.Html { -			panic("html: bad parser state: <html> element not found, in the after-body insertion mode") -		} -		p.oe[0].AppendChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	} -	p.im = inBodyIM -	return false -} - -// Section 12.2.6.4.20. -func inFramesetIM(p *parser) bool { -	switch p.tok.Type { -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case TextToken: -		// Ignore all text but whitespace. -		s := strings.Map(func(c rune) rune { -			switch c { -			case ' ', '\t', '\n', '\f', '\r': -				return c -			} -			return -1 -		}, p.tok.Data) -		if s != "" { -			p.addText(s) -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Frameset: -			p.addElement() -		case a.Frame: -			p.addElement() -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -		case a.Noframes: -			return inHeadIM(p) -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Frameset: -			if p.oe.top().DataAtom != a.Html { -				p.oe.pop() -				if p.oe.top().DataAtom != a.Frameset { -					p.im = afterFramesetIM -					return true -				} -			} -		} -	default: -		// Ignore the token. -	} -	return true -} - -// Section 12.2.6.4.21. -func afterFramesetIM(p *parser) bool { -	switch p.tok.Type { -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case TextToken: -		// Ignore all text but whitespace. -		s := strings.Map(func(c rune) rune { -			switch c { -			case ' ', '\t', '\n', '\f', '\r': -				return c -			} -			return -1 -		}, p.tok.Data) -		if s != "" { -			p.addText(s) -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Noframes: -			return inHeadIM(p) -		} -	case EndTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			p.im = afterAfterFramesetIM -			return true -		} -	default: -		// Ignore the token. -	} -	return true -} - -// Section 12.2.6.4.22. -func afterAfterBodyIM(p *parser) bool { -	switch p.tok.Type { -	case ErrorToken: -		// Stop parsing. -		return true -	case TextToken: -		s := strings.TrimLeft(p.tok.Data, whitespace) -		if len(s) == 0 { -			// It was all whitespace. -			return inBodyIM(p) -		} -	case StartTagToken: -		if p.tok.DataAtom == a.Html { -			return inBodyIM(p) -		} -	case CommentToken: -		p.doc.AppendChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -		return true -	case DoctypeToken: -		return inBodyIM(p) -	} -	p.im = inBodyIM -	return false -} - -// Section 12.2.6.4.23. -func afterAfterFramesetIM(p *parser) bool { -	switch p.tok.Type { -	case CommentToken: -		p.doc.AppendChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case TextToken: -		// Ignore all text but whitespace. -		s := strings.Map(func(c rune) rune { -			switch c { -			case ' ', '\t', '\n', '\f', '\r': -				return c -			} -			return -1 -		}, p.tok.Data) -		if s != "" { -			p.tok.Data = s -			return inBodyIM(p) -		} -	case StartTagToken: -		switch p.tok.DataAtom { -		case a.Html: -			return inBodyIM(p) -		case a.Noframes: -			return inHeadIM(p) -		} -	case DoctypeToken: -		return inBodyIM(p) -	default: -		// Ignore the token. -	} -	return true -} - -func ignoreTheRemainingTokens(p *parser) bool { -	return true -} - -const whitespaceOrNUL = whitespace + "\x00" - -// Section 12.2.6.5 -func parseForeignContent(p *parser) bool { -	switch p.tok.Type { -	case TextToken: -		if p.framesetOK { -			p.framesetOK = strings.TrimLeft(p.tok.Data, whitespaceOrNUL) == "" -		} -		p.tok.Data = strings.Replace(p.tok.Data, "\x00", "\ufffd", -1) -		p.addText(p.tok.Data) -	case CommentToken: -		p.addChild(&Node{ -			Type: CommentNode, -			Data: p.tok.Data, -		}) -	case StartTagToken: -		if !p.fragment { -			b := breakout[p.tok.Data] -			if p.tok.DataAtom == a.Font { -			loop: -				for _, attr := range p.tok.Attr { -					switch attr.Key { -					case "color", "face", "size": -						b = true -						break loop -					} -				} -			} -			if b { -				for i := len(p.oe) - 1; i >= 0; i-- { -					n := p.oe[i] -					if n.Namespace == "" || htmlIntegrationPoint(n) || mathMLTextIntegrationPoint(n) { -						p.oe = p.oe[:i+1] -						break -					} -				} -				return false -			} -		} -		current := p.adjustedCurrentNode() -		switch current.Namespace { -		case "math": -			adjustAttributeNames(p.tok.Attr, mathMLAttributeAdjustments) -		case "svg": -			// Adjust SVG tag names. The tokenizer lower-cases tag names, but -			// SVG wants e.g. "foreignObject" with a capital second "O". -			if x := svgTagNameAdjustments[p.tok.Data]; x != "" { -				p.tok.DataAtom = a.Lookup([]byte(x)) -				p.tok.Data = x -			} -			adjustAttributeNames(p.tok.Attr, svgAttributeAdjustments) -		default: -			panic("html: bad parser state: unexpected namespace") -		} -		adjustForeignAttributes(p.tok.Attr) -		namespace := current.Namespace -		p.addElement() -		p.top().Namespace = namespace -		if namespace != "" { -			// Don't let the tokenizer go into raw text mode in foreign content -			// (e.g. in an SVG <title> tag). -			p.tokenizer.NextIsNotRawText() -		} -		if p.hasSelfClosingToken { -			p.oe.pop() -			p.acknowledgeSelfClosingTag() -		} -	case EndTagToken: -		for i := len(p.oe) - 1; i >= 0; i-- { -			if p.oe[i].Namespace == "" { -				return p.im(p) -			} -			if strings.EqualFold(p.oe[i].Data, p.tok.Data) { -				p.oe = p.oe[:i] -				break -			} -		} -		return true -	default: -		// Ignore the token. -	} -	return true -} - -// Section 12.2.4.2. -func (p *parser) adjustedCurrentNode() *Node { -	if len(p.oe) == 1 && p.fragment && p.context != nil { -		return p.context -	} -	return p.oe.top() -} - -// Section 12.2.6. -func (p *parser) inForeignContent() bool { -	if len(p.oe) == 0 { -		return false -	} -	n := p.adjustedCurrentNode() -	if n.Namespace == "" { -		return false -	} -	if mathMLTextIntegrationPoint(n) { -		if p.tok.Type == StartTagToken && p.tok.DataAtom != a.Mglyph && p.tok.DataAtom != a.Malignmark { -			return false -		} -		if p.tok.Type == TextToken { -			return false -		} -	} -	if n.Namespace == "math" && n.DataAtom == a.AnnotationXml && p.tok.Type == StartTagToken && p.tok.DataAtom == a.Svg { -		return false -	} -	if htmlIntegrationPoint(n) && (p.tok.Type == StartTagToken || p.tok.Type == TextToken) { -		return false -	} -	if p.tok.Type == ErrorToken { -		return false -	} -	return true -} - -// parseImpliedToken parses a token as though it had appeared in the parser's -// input. -func (p *parser) parseImpliedToken(t TokenType, dataAtom a.Atom, data string) { -	realToken, selfClosing := p.tok, p.hasSelfClosingToken -	p.tok = Token{ -		Type:     t, -		DataAtom: dataAtom, -		Data:     data, -	} -	p.hasSelfClosingToken = false -	p.parseCurrentToken() -	p.tok, p.hasSelfClosingToken = realToken, selfClosing -} - -// parseCurrentToken runs the current token through the parsing routines -// until it is consumed. -func (p *parser) parseCurrentToken() { -	if p.tok.Type == SelfClosingTagToken { -		p.hasSelfClosingToken = true -		p.tok.Type = StartTagToken -	} - -	consumed := false -	for !consumed { -		if p.inForeignContent() { -			consumed = parseForeignContent(p) -		} else { -			consumed = p.im(p) -		} -	} - -	if p.hasSelfClosingToken { -		// This is a parse error, but ignore it. -		p.hasSelfClosingToken = false -	} -} - -func (p *parser) parse() error { -	// Iterate until EOF. Any other error will cause an early return. -	var err error -	for err != io.EOF { -		// CDATA sections are allowed only in foreign content. -		n := p.oe.top() -		p.tokenizer.AllowCDATA(n != nil && n.Namespace != "") -		// Read and parse the next token. -		p.tokenizer.Next() -		p.tok = p.tokenizer.Token() -		if p.tok.Type == ErrorToken { -			err = p.tokenizer.Err() -			if err != nil && err != io.EOF { -				return err -			} -		} -		p.parseCurrentToken() -	} -	return nil -} - -// Parse returns the parse tree for the HTML from the given Reader. -// -// It implements the HTML5 parsing algorithm -// (https://html.spec.whatwg.org/multipage/syntax.html#tree-construction), -// which is very complicated. The resultant tree can contain implicitly created -// nodes that have no explicit <tag> listed in r's data, and nodes' parents can -// differ from the nesting implied by a naive processing of start and end -// <tag>s. Conversely, explicit <tag>s in r's data can be silently dropped, -// with no corresponding node in the resulting tree. -// -// The input is assumed to be UTF-8 encoded. -func Parse(r io.Reader) (*Node, error) { -	return ParseWithOptions(r) -} - -// ParseFragment parses a fragment of HTML and returns the nodes that were -// found. If the fragment is the InnerHTML for an existing element, pass that -// element in context. -// -// It has the same intricacies as Parse. -func ParseFragment(r io.Reader, context *Node) ([]*Node, error) { -	return ParseFragmentWithOptions(r, context) -} - -// ParseOption configures a parser. -type ParseOption func(p *parser) - -// ParseOptionEnableScripting configures the scripting flag. -// https://html.spec.whatwg.org/multipage/webappapis.html#enabling-and-disabling-scripting -// -// By default, scripting is enabled. -func ParseOptionEnableScripting(enable bool) ParseOption { -	return func(p *parser) { -		p.scripting = enable -	} -} - -// ParseWithOptions is like Parse, with options. -func ParseWithOptions(r io.Reader, opts ...ParseOption) (*Node, error) { -	p := &parser{ -		tokenizer: NewTokenizer(r), -		doc: &Node{ -			Type: DocumentNode, -		}, -		scripting:  true, -		framesetOK: true, -		im:         initialIM, -	} - -	for _, f := range opts { -		f(p) -	} - -	if err := p.parse(); err != nil { -		return nil, err -	} -	return p.doc, nil -} - -// ParseFragmentWithOptions is like ParseFragment, with options. -func ParseFragmentWithOptions(r io.Reader, context *Node, opts ...ParseOption) ([]*Node, error) { -	contextTag := "" -	if context != nil { -		if context.Type != ElementNode { -			return nil, errors.New("html: ParseFragment of non-element Node") -		} -		// The next check isn't just context.DataAtom.String() == context.Data because -		// it is valid to pass an element whose tag isn't a known atom. For example, -		// DataAtom == 0 and Data = "tagfromthefuture" is perfectly consistent. -		if context.DataAtom != a.Lookup([]byte(context.Data)) { -			return nil, fmt.Errorf("html: inconsistent Node: DataAtom=%q, Data=%q", context.DataAtom, context.Data) -		} -		contextTag = context.DataAtom.String() -	} -	p := &parser{ -		doc: &Node{ -			Type: DocumentNode, -		}, -		scripting: true, -		fragment:  true, -		context:   context, -	} -	if context != nil && context.Namespace != "" { -		p.tokenizer = NewTokenizer(r) -	} else { -		p.tokenizer = NewTokenizerFragment(r, contextTag) -	} - -	for _, f := range opts { -		f(p) -	} - -	root := &Node{ -		Type:     ElementNode, -		DataAtom: a.Html, -		Data:     a.Html.String(), -	} -	p.doc.AppendChild(root) -	p.oe = nodeStack{root} -	if context != nil && context.DataAtom == a.Template { -		p.templateStack = append(p.templateStack, inTemplateIM) -	} -	p.resetInsertionMode() - -	for n := context; n != nil; n = n.Parent { -		if n.Type == ElementNode && n.DataAtom == a.Form { -			p.form = n -			break -		} -	} - -	if err := p.parse(); err != nil { -		return nil, err -	} - -	parent := p.doc -	if context != nil { -		parent = root -	} - -	var result []*Node -	for c := parent.FirstChild; c != nil; { -		next := c.NextSibling -		parent.RemoveChild(c) -		result = append(result, c) -		c = next -	} -	return result, nil -} diff --git a/vendor/golang.org/x/net/html/render.go b/vendor/golang.org/x/net/html/render.go deleted file mode 100644 index e8c123345..000000000 --- a/vendor/golang.org/x/net/html/render.go +++ /dev/null @@ -1,293 +0,0 @@ -// Copyright 2011 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. - -package html - -import ( -	"bufio" -	"errors" -	"fmt" -	"io" -	"strings" -) - -type writer interface { -	io.Writer -	io.ByteWriter -	WriteString(string) (int, error) -} - -// Render renders the parse tree n to the given writer. -// -// Rendering is done on a 'best effort' basis: calling Parse on the output of -// Render will always result in something similar to the original tree, but it -// is not necessarily an exact clone unless the original tree was 'well-formed'. -// 'Well-formed' is not easily specified; the HTML5 specification is -// complicated. -// -// Calling Parse on arbitrary input typically results in a 'well-formed' parse -// tree. However, it is possible for Parse to yield a 'badly-formed' parse tree. -// For example, in a 'well-formed' parse tree, no <a> element is a child of -// another <a> element: parsing "<a><a>" results in two sibling elements. -// Similarly, in a 'well-formed' parse tree, no <a> element is a child of a -// <table> element: parsing "<p><table><a>" results in a <p> with two sibling -// children; the <a> is reparented to the <table>'s parent. However, calling -// Parse on "<a><table><a>" does not return an error, but the result has an <a> -// element with an <a> child, and is therefore not 'well-formed'. -// -// Programmatically constructed trees are typically also 'well-formed', but it -// is possible to construct a tree that looks innocuous but, when rendered and -// re-parsed, results in a different tree. A simple example is that a solitary -// text node would become a tree containing <html>, <head> and <body> elements. -// Another example is that the programmatic equivalent of "a<head>b</head>c" -// becomes "<html><head><head/><body>abc</body></html>". -func Render(w io.Writer, n *Node) error { -	if x, ok := w.(writer); ok { -		return render(x, n) -	} -	buf := bufio.NewWriter(w) -	if err := render(buf, n); err != nil { -		return err -	} -	return buf.Flush() -} - -// plaintextAbort is returned from render1 when a <plaintext> element -// has been rendered. No more end tags should be rendered after that. -var plaintextAbort = errors.New("html: internal error (plaintext abort)") - -func render(w writer, n *Node) error { -	err := render1(w, n) -	if err == plaintextAbort { -		err = nil -	} -	return err -} - -func render1(w writer, n *Node) error { -	// Render non-element nodes; these are the easy cases. -	switch n.Type { -	case ErrorNode: -		return errors.New("html: cannot render an ErrorNode node") -	case TextNode: -		return escape(w, n.Data) -	case DocumentNode: -		for c := n.FirstChild; c != nil; c = c.NextSibling { -			if err := render1(w, c); err != nil { -				return err -			} -		} -		return nil -	case ElementNode: -		// No-op. -	case CommentNode: -		if _, err := w.WriteString("<!--"); err != nil { -			return err -		} -		if err := escapeComment(w, n.Data); err != nil { -			return err -		} -		if _, err := w.WriteString("-->"); err != nil { -			return err -		} -		return nil -	case DoctypeNode: -		if _, err := w.WriteString("<!DOCTYPE "); err != nil { -			return err -		} -		if err := escape(w, n.Data); err != nil { -			return err -		} -		if n.Attr != nil { -			var p, s string -			for _, a := range n.Attr { -				switch a.Key { -				case "public": -					p = a.Val -				case "system": -					s = a.Val -				} -			} -			if p != "" { -				if _, err := w.WriteString(" PUBLIC "); err != nil { -					return err -				} -				if err := writeQuoted(w, p); err != nil { -					return err -				} -				if s != "" { -					if err := w.WriteByte(' '); err != nil { -						return err -					} -					if err := writeQuoted(w, s); err != nil { -						return err -					} -				} -			} else if s != "" { -				if _, err := w.WriteString(" SYSTEM "); err != nil { -					return err -				} -				if err := writeQuoted(w, s); err != nil { -					return err -				} -			} -		} -		return w.WriteByte('>') -	case RawNode: -		_, err := w.WriteString(n.Data) -		return err -	default: -		return errors.New("html: unknown node type") -	} - -	// Render the <xxx> opening tag. -	if err := w.WriteByte('<'); err != nil { -		return err -	} -	if _, err := w.WriteString(n.Data); err != nil { -		return err -	} -	for _, a := range n.Attr { -		if err := w.WriteByte(' '); err != nil { -			return err -		} -		if a.Namespace != "" { -			if _, err := w.WriteString(a.Namespace); err != nil { -				return err -			} -			if err := w.WriteByte(':'); err != nil { -				return err -			} -		} -		if _, err := w.WriteString(a.Key); err != nil { -			return err -		} -		if _, err := w.WriteString(`="`); err != nil { -			return err -		} -		if err := escape(w, a.Val); err != nil { -			return err -		} -		if err := w.WriteByte('"'); err != nil { -			return err -		} -	} -	if voidElements[n.Data] { -		if n.FirstChild != nil { -			return fmt.Errorf("html: void element <%s> has child nodes", n.Data) -		} -		_, err := w.WriteString("/>") -		return err -	} -	if err := w.WriteByte('>'); err != nil { -		return err -	} - -	// Add initial newline where there is danger of a newline beging ignored. -	if c := n.FirstChild; c != nil && c.Type == TextNode && strings.HasPrefix(c.Data, "\n") { -		switch n.Data { -		case "pre", "listing", "textarea": -			if err := w.WriteByte('\n'); err != nil { -				return err -			} -		} -	} - -	// Render any child nodes -	if childTextNodesAreLiteral(n) { -		for c := n.FirstChild; c != nil; c = c.NextSibling { -			if c.Type == TextNode { -				if _, err := w.WriteString(c.Data); err != nil { -					return err -				} -			} else { -				if err := render1(w, c); err != nil { -					return err -				} -			} -		} -		if n.Data == "plaintext" { -			// Don't render anything else. <plaintext> must be the -			// last element in the file, with no closing tag. -			return plaintextAbort -		} -	} else { -		for c := n.FirstChild; c != nil; c = c.NextSibling { -			if err := render1(w, c); err != nil { -				return err -			} -		} -	} - -	// Render the </xxx> closing tag. -	if _, err := w.WriteString("</"); err != nil { -		return err -	} -	if _, err := w.WriteString(n.Data); err != nil { -		return err -	} -	return w.WriteByte('>') -} - -func childTextNodesAreLiteral(n *Node) bool { -	// Per WHATWG HTML 13.3, if the parent of the current node is a style, -	// script, xmp, iframe, noembed, noframes, or plaintext element, and the -	// current node is a text node, append the value of the node's data -	// literally. The specification is not explicit about it, but we only -	// enforce this if we are in the HTML namespace (i.e. when the namespace is -	// ""). -	// NOTE: we also always include noscript elements, although the -	// specification states that they should only be rendered as such if -	// scripting is enabled for the node (which is not something we track). -	if n.Namespace != "" { -		return false -	} -	switch n.Data { -	case "iframe", "noembed", "noframes", "noscript", "plaintext", "script", "style", "xmp": -		return true -	default: -		return false -	} -} - -// writeQuoted writes s to w surrounded by quotes. Normally it will use double -// quotes, but if s contains a double quote, it will use single quotes. -// It is used for writing the identifiers in a doctype declaration. -// In valid HTML, they can't contain both types of quotes. -func writeQuoted(w writer, s string) error { -	var q byte = '"' -	if strings.Contains(s, `"`) { -		q = '\'' -	} -	if err := w.WriteByte(q); err != nil { -		return err -	} -	if _, err := w.WriteString(s); err != nil { -		return err -	} -	if err := w.WriteByte(q); err != nil { -		return err -	} -	return nil -} - -// Section 12.1.2, "Elements", gives this list of void elements. Void elements -// are those that can't have any contents. -var voidElements = map[string]bool{ -	"area":   true, -	"base":   true, -	"br":     true, -	"col":    true, -	"embed":  true, -	"hr":     true, -	"img":    true, -	"input":  true, -	"keygen": true, // "keygen" has been removed from the spec, but are kept here for backwards compatibility. -	"link":   true, -	"meta":   true, -	"param":  true, -	"source": true, -	"track":  true, -	"wbr":    true, -} diff --git a/vendor/golang.org/x/net/html/token.go b/vendor/golang.org/x/net/html/token.go deleted file mode 100644 index 3c57880d6..000000000 --- a/vendor/golang.org/x/net/html/token.go +++ /dev/null @@ -1,1272 +0,0 @@ -// Copyright 2010 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. - -package html - -import ( -	"bytes" -	"errors" -	"io" -	"strconv" -	"strings" - -	"golang.org/x/net/html/atom" -) - -// A TokenType is the type of a Token. -type TokenType uint32 - -const ( -	// ErrorToken means that an error occurred during tokenization. -	ErrorToken TokenType = iota -	// TextToken means a text node. -	TextToken -	// A StartTagToken looks like <a>. -	StartTagToken -	// An EndTagToken looks like </a>. -	EndTagToken -	// A SelfClosingTagToken tag looks like <br/>. -	SelfClosingTagToken -	// A CommentToken looks like <!--x-->. -	CommentToken -	// A DoctypeToken looks like <!DOCTYPE x> -	DoctypeToken -) - -// ErrBufferExceeded means that the buffering limit was exceeded. -var ErrBufferExceeded = errors.New("max buffer exceeded") - -// String returns a string representation of the TokenType. -func (t TokenType) String() string { -	switch t { -	case ErrorToken: -		return "Error" -	case TextToken: -		return "Text" -	case StartTagToken: -		return "StartTag" -	case EndTagToken: -		return "EndTag" -	case SelfClosingTagToken: -		return "SelfClosingTag" -	case CommentToken: -		return "Comment" -	case DoctypeToken: -		return "Doctype" -	} -	return "Invalid(" + strconv.Itoa(int(t)) + ")" -} - -// An Attribute is an attribute namespace-key-value triple. Namespace is -// non-empty for foreign attributes like xlink, Key is alphabetic (and hence -// does not contain escapable characters like '&', '<' or '>'), and Val is -// unescaped (it looks like "a<b" rather than "a<b"). -// -// Namespace is only used by the parser, not the tokenizer. -type Attribute struct { -	Namespace, Key, Val string -} - -// A Token consists of a TokenType and some Data (tag name for start and end -// tags, content for text, comments and doctypes). A tag Token may also contain -// a slice of Attributes. Data is unescaped for all Tokens (it looks like "a<b" -// rather than "a<b"). For tag Tokens, DataAtom is the atom for Data, or -// zero if Data is not a known tag name. -type Token struct { -	Type     TokenType -	DataAtom atom.Atom -	Data     string -	Attr     []Attribute -} - -// tagString returns a string representation of a tag Token's Data and Attr. -func (t Token) tagString() string { -	if len(t.Attr) == 0 { -		return t.Data -	} -	buf := bytes.NewBufferString(t.Data) -	for _, a := range t.Attr { -		buf.WriteByte(' ') -		buf.WriteString(a.Key) -		buf.WriteString(`="`) -		escape(buf, a.Val) -		buf.WriteByte('"') -	} -	return buf.String() -} - -// String returns a string representation of the Token. -func (t Token) String() string { -	switch t.Type { -	case ErrorToken: -		return "" -	case TextToken: -		return EscapeString(t.Data) -	case StartTagToken: -		return "<" + t.tagString() + ">" -	case EndTagToken: -		return "</" + t.tagString() + ">" -	case SelfClosingTagToken: -		return "<" + t.tagString() + "/>" -	case CommentToken: -		return "<!--" + escapeCommentString(t.Data) + "-->" -	case DoctypeToken: -		return "<!DOCTYPE " + EscapeString(t.Data) + ">" -	} -	return "Invalid(" + strconv.Itoa(int(t.Type)) + ")" -} - -// span is a range of bytes in a Tokenizer's buffer. The start is inclusive, -// the end is exclusive. -type span struct { -	start, end int -} - -// A Tokenizer returns a stream of HTML Tokens. -type Tokenizer struct { -	// r is the source of the HTML text. -	r io.Reader -	// tt is the TokenType of the current token. -	tt TokenType -	// err is the first error encountered during tokenization. It is possible -	// for tt != Error && err != nil to hold: this means that Next returned a -	// valid token but the subsequent Next call will return an error token. -	// For example, if the HTML text input was just "plain", then the first -	// Next call would set z.err to io.EOF but return a TextToken, and all -	// subsequent Next calls would return an ErrorToken. -	// err is never reset. Once it becomes non-nil, it stays non-nil. -	err error -	// readErr is the error returned by the io.Reader r. It is separate from -	// err because it is valid for an io.Reader to return (n int, err1 error) -	// such that n > 0 && err1 != nil, and callers should always process the -	// n > 0 bytes before considering the error err1. -	readErr error -	// buf[raw.start:raw.end] holds the raw bytes of the current token. -	// buf[raw.end:] is buffered input that will yield future tokens. -	raw span -	buf []byte -	// maxBuf limits the data buffered in buf. A value of 0 means unlimited. -	maxBuf int -	// buf[data.start:data.end] holds the raw bytes of the current token's data: -	// a text token's text, a tag token's tag name, etc. -	data span -	// pendingAttr is the attribute key and value currently being tokenized. -	// When complete, pendingAttr is pushed onto attr. nAttrReturned is -	// incremented on each call to TagAttr. -	pendingAttr   [2]span -	attr          [][2]span -	nAttrReturned int -	// rawTag is the "script" in "</script>" that closes the next token. If -	// non-empty, the subsequent call to Next will return a raw or RCDATA text -	// token: one that treats "<p>" as text instead of an element. -	// rawTag's contents are lower-cased. -	rawTag string -	// textIsRaw is whether the current text token's data is not escaped. -	textIsRaw bool -	// convertNUL is whether NUL bytes in the current token's data should -	// be converted into \ufffd replacement characters. -	convertNUL bool -	// allowCDATA is whether CDATA sections are allowed in the current context. -	allowCDATA bool -} - -// AllowCDATA sets whether or not the tokenizer recognizes <![CDATA[foo]]> as -// the text "foo". The default value is false, which means to recognize it as -// a bogus comment "<!-- [CDATA[foo]] -->" instead. -// -// Strictly speaking, an HTML5 compliant tokenizer should allow CDATA if and -// only if tokenizing foreign content, such as MathML and SVG. However, -// tracking foreign-contentness is difficult to do purely in the tokenizer, -// as opposed to the parser, due to HTML integration points: an <svg> element -// can contain a <foreignObject> that is foreign-to-SVG but not foreign-to- -// HTML. For strict compliance with the HTML5 tokenization algorithm, it is the -// responsibility of the user of a tokenizer to call AllowCDATA as appropriate. -// In practice, if using the tokenizer without caring whether MathML or SVG -// CDATA is text or comments, such as tokenizing HTML to find all the anchor -// text, it is acceptable to ignore this responsibility. -func (z *Tokenizer) AllowCDATA(allowCDATA bool) { -	z.allowCDATA = allowCDATA -} - -// NextIsNotRawText instructs the tokenizer that the next token should not be -// considered as 'raw text'. Some elements, such as script and title elements, -// normally require the next token after the opening tag to be 'raw text' that -// has no child elements. For example, tokenizing "<title>a<b>c</b>d</title>" -// yields a start tag token for "<title>", a text token for "a<b>c</b>d", and -// an end tag token for "</title>". There are no distinct start tag or end tag -// tokens for the "<b>" and "</b>". -// -// This tokenizer implementation will generally look for raw text at the right -// times. Strictly speaking, an HTML5 compliant tokenizer should not look for -// raw text if in foreign content: <title> generally needs raw text, but a -// <title> inside an <svg> does not. Another example is that a <textarea> -// generally needs raw text, but a <textarea> is not allowed as an immediate -// child of a <select>; in normal parsing, a <textarea> implies </select>, but -// one cannot close the implicit element when parsing a <select>'s InnerHTML. -// Similarly to AllowCDATA, tracking the correct moment to override raw-text- -// ness is difficult to do purely in the tokenizer, as opposed to the parser. -// For strict compliance with the HTML5 tokenization algorithm, it is the -// responsibility of the user of a tokenizer to call NextIsNotRawText as -// appropriate. In practice, like AllowCDATA, it is acceptable to ignore this -// responsibility for basic usage. -// -// Note that this 'raw text' concept is different from the one offered by the -// Tokenizer.Raw method. -func (z *Tokenizer) NextIsNotRawText() { -	z.rawTag = "" -} - -// Err returns the error associated with the most recent ErrorToken token. -// This is typically io.EOF, meaning the end of tokenization. -func (z *Tokenizer) Err() error { -	if z.tt != ErrorToken { -		return nil -	} -	return z.err -} - -// readByte returns the next byte from the input stream, doing a buffered read -// from z.r into z.buf if necessary. z.buf[z.raw.start:z.raw.end] remains a contiguous byte -// slice that holds all the bytes read so far for the current token. -// It sets z.err if the underlying reader returns an error. -// Pre-condition: z.err == nil. -func (z *Tokenizer) readByte() byte { -	if z.raw.end >= len(z.buf) { -		// Our buffer is exhausted and we have to read from z.r. Check if the -		// previous read resulted in an error. -		if z.readErr != nil { -			z.err = z.readErr -			return 0 -		} -		// We copy z.buf[z.raw.start:z.raw.end] to the beginning of z.buf. If the length -		// z.raw.end - z.raw.start is more than half the capacity of z.buf, then we -		// allocate a new buffer before the copy. -		c := cap(z.buf) -		d := z.raw.end - z.raw.start -		var buf1 []byte -		if 2*d > c { -			buf1 = make([]byte, d, 2*c) -		} else { -			buf1 = z.buf[:d] -		} -		copy(buf1, z.buf[z.raw.start:z.raw.end]) -		if x := z.raw.start; x != 0 { -			// Adjust the data/attr spans to refer to the same contents after the copy. -			z.data.start -= x -			z.data.end -= x -			z.pendingAttr[0].start -= x -			z.pendingAttr[0].end -= x -			z.pendingAttr[1].start -= x -			z.pendingAttr[1].end -= x -			for i := range z.attr { -				z.attr[i][0].start -= x -				z.attr[i][0].end -= x -				z.attr[i][1].start -= x -				z.attr[i][1].end -= x -			} -		} -		z.raw.start, z.raw.end, z.buf = 0, d, buf1[:d] -		// Now that we have copied the live bytes to the start of the buffer, -		// we read from z.r into the remainder. -		var n int -		n, z.readErr = readAtLeastOneByte(z.r, buf1[d:cap(buf1)]) -		if n == 0 { -			z.err = z.readErr -			return 0 -		} -		z.buf = buf1[:d+n] -	} -	x := z.buf[z.raw.end] -	z.raw.end++ -	if z.maxBuf > 0 && z.raw.end-z.raw.start >= z.maxBuf { -		z.err = ErrBufferExceeded -		return 0 -	} -	return x -} - -// Buffered returns a slice containing data buffered but not yet tokenized. -func (z *Tokenizer) Buffered() []byte { -	return z.buf[z.raw.end:] -} - -// readAtLeastOneByte wraps an io.Reader so that reading cannot return (0, nil). -// It returns io.ErrNoProgress if the underlying r.Read method returns (0, nil) -// too many times in succession. -func readAtLeastOneByte(r io.Reader, b []byte) (int, error) { -	for i := 0; i < 100; i++ { -		if n, err := r.Read(b); n != 0 || err != nil { -			return n, err -		} -	} -	return 0, io.ErrNoProgress -} - -// skipWhiteSpace skips past any white space. -func (z *Tokenizer) skipWhiteSpace() { -	if z.err != nil { -		return -	} -	for { -		c := z.readByte() -		if z.err != nil { -			return -		} -		switch c { -		case ' ', '\n', '\r', '\t', '\f': -			// No-op. -		default: -			z.raw.end-- -			return -		} -	} -} - -// readRawOrRCDATA reads until the next "</foo>", where "foo" is z.rawTag and -// is typically something like "script" or "textarea". -func (z *Tokenizer) readRawOrRCDATA() { -	if z.rawTag == "script" { -		z.readScript() -		z.textIsRaw = true -		z.rawTag = "" -		return -	} -loop: -	for { -		c := z.readByte() -		if z.err != nil { -			break loop -		} -		if c != '<' { -			continue loop -		} -		c = z.readByte() -		if z.err != nil { -			break loop -		} -		if c != '/' { -			z.raw.end-- -			continue loop -		} -		if z.readRawEndTag() || z.err != nil { -			break loop -		} -	} -	z.data.end = z.raw.end -	// A textarea's or title's RCDATA can contain escaped entities. -	z.textIsRaw = z.rawTag != "textarea" && z.rawTag != "title" -	z.rawTag = "" -} - -// readRawEndTag attempts to read a tag like "</foo>", where "foo" is z.rawTag. -// If it succeeds, it backs up the input position to reconsume the tag and -// returns true. Otherwise it returns false. The opening "</" has already been -// consumed. -func (z *Tokenizer) readRawEndTag() bool { -	for i := 0; i < len(z.rawTag); i++ { -		c := z.readByte() -		if z.err != nil { -			return false -		} -		if c != z.rawTag[i] && c != z.rawTag[i]-('a'-'A') { -			z.raw.end-- -			return false -		} -	} -	c := z.readByte() -	if z.err != nil { -		return false -	} -	switch c { -	case ' ', '\n', '\r', '\t', '\f', '/', '>': -		// The 3 is 2 for the leading "</" plus 1 for the trailing character c. -		z.raw.end -= 3 + len(z.rawTag) -		return true -	} -	z.raw.end-- -	return false -} - -// readScript reads until the next </script> tag, following the byzantine -// rules for escaping/hiding the closing tag. -func (z *Tokenizer) readScript() { -	defer func() { -		z.data.end = z.raw.end -	}() -	var c byte - -scriptData: -	c = z.readByte() -	if z.err != nil { -		return -	} -	if c == '<' { -		goto scriptDataLessThanSign -	} -	goto scriptData - -scriptDataLessThanSign: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '/': -		goto scriptDataEndTagOpen -	case '!': -		goto scriptDataEscapeStart -	} -	z.raw.end-- -	goto scriptData - -scriptDataEndTagOpen: -	if z.readRawEndTag() || z.err != nil { -		return -	} -	goto scriptData - -scriptDataEscapeStart: -	c = z.readByte() -	if z.err != nil { -		return -	} -	if c == '-' { -		goto scriptDataEscapeStartDash -	} -	z.raw.end-- -	goto scriptData - -scriptDataEscapeStartDash: -	c = z.readByte() -	if z.err != nil { -		return -	} -	if c == '-' { -		goto scriptDataEscapedDashDash -	} -	z.raw.end-- -	goto scriptData - -scriptDataEscaped: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataEscapedDash -	case '<': -		goto scriptDataEscapedLessThanSign -	} -	goto scriptDataEscaped - -scriptDataEscapedDash: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataEscapedDashDash -	case '<': -		goto scriptDataEscapedLessThanSign -	} -	goto scriptDataEscaped - -scriptDataEscapedDashDash: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataEscapedDashDash -	case '<': -		goto scriptDataEscapedLessThanSign -	case '>': -		goto scriptData -	} -	goto scriptDataEscaped - -scriptDataEscapedLessThanSign: -	c = z.readByte() -	if z.err != nil { -		return -	} -	if c == '/' { -		goto scriptDataEscapedEndTagOpen -	} -	if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' { -		goto scriptDataDoubleEscapeStart -	} -	z.raw.end-- -	goto scriptData - -scriptDataEscapedEndTagOpen: -	if z.readRawEndTag() || z.err != nil { -		return -	} -	goto scriptDataEscaped - -scriptDataDoubleEscapeStart: -	z.raw.end-- -	for i := 0; i < len("script"); i++ { -		c = z.readByte() -		if z.err != nil { -			return -		} -		if c != "script"[i] && c != "SCRIPT"[i] { -			z.raw.end-- -			goto scriptDataEscaped -		} -	} -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case ' ', '\n', '\r', '\t', '\f', '/', '>': -		goto scriptDataDoubleEscaped -	} -	z.raw.end-- -	goto scriptDataEscaped - -scriptDataDoubleEscaped: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataDoubleEscapedDash -	case '<': -		goto scriptDataDoubleEscapedLessThanSign -	} -	goto scriptDataDoubleEscaped - -scriptDataDoubleEscapedDash: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataDoubleEscapedDashDash -	case '<': -		goto scriptDataDoubleEscapedLessThanSign -	} -	goto scriptDataDoubleEscaped - -scriptDataDoubleEscapedDashDash: -	c = z.readByte() -	if z.err != nil { -		return -	} -	switch c { -	case '-': -		goto scriptDataDoubleEscapedDashDash -	case '<': -		goto scriptDataDoubleEscapedLessThanSign -	case '>': -		goto scriptData -	} -	goto scriptDataDoubleEscaped - -scriptDataDoubleEscapedLessThanSign: -	c = z.readByte() -	if z.err != nil { -		return -	} -	if c == '/' { -		goto scriptDataDoubleEscapeEnd -	} -	z.raw.end-- -	goto scriptDataDoubleEscaped - -scriptDataDoubleEscapeEnd: -	if z.readRawEndTag() { -		z.raw.end += len("</script>") -		goto scriptDataEscaped -	} -	if z.err != nil { -		return -	} -	goto scriptDataDoubleEscaped -} - -// readComment reads the next comment token starting with "<!--". The opening -// "<!--" has already been consumed. -func (z *Tokenizer) readComment() { -	// When modifying this function, consider manually increasing the -	// maxSuffixLen constant in func TestComments, from 6 to e.g. 9 or more. -	// That increase should only be temporary, not committed, as it -	// exponentially affects the test running time. - -	z.data.start = z.raw.end -	defer func() { -		if z.data.end < z.data.start { -			// It's a comment with no data, like <!-->. -			z.data.end = z.data.start -		} -	}() - -	var dashCount int -	beginning := true -	for { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.calculateAbruptCommentDataEnd() -			return -		} -		switch c { -		case '-': -			dashCount++ -			continue -		case '>': -			if dashCount >= 2 || beginning { -				z.data.end = z.raw.end - len("-->") -				return -			} -		case '!': -			if dashCount >= 2 { -				c = z.readByte() -				if z.err != nil { -					z.data.end = z.calculateAbruptCommentDataEnd() -					return -				} else if c == '>' { -					z.data.end = z.raw.end - len("--!>") -					return -				} else if c == '-' { -					dashCount = 1 -					beginning = false -					continue -				} -			} -		} -		dashCount = 0 -		beginning = false -	} -} - -func (z *Tokenizer) calculateAbruptCommentDataEnd() int { -	raw := z.Raw() -	const prefixLen = len("<!--") -	if len(raw) >= prefixLen { -		raw = raw[prefixLen:] -		if hasSuffix(raw, "--!") { -			return z.raw.end - 3 -		} else if hasSuffix(raw, "--") { -			return z.raw.end - 2 -		} else if hasSuffix(raw, "-") { -			return z.raw.end - 1 -		} -	} -	return z.raw.end -} - -func hasSuffix(b []byte, suffix string) bool { -	if len(b) < len(suffix) { -		return false -	} -	b = b[len(b)-len(suffix):] -	for i := range b { -		if b[i] != suffix[i] { -			return false -		} -	} -	return true -} - -// readUntilCloseAngle reads until the next ">". -func (z *Tokenizer) readUntilCloseAngle() { -	z.data.start = z.raw.end -	for { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return -		} -		if c == '>' { -			z.data.end = z.raw.end - len(">") -			return -		} -	} -} - -// readMarkupDeclaration reads the next token starting with "<!". It might be -// a "<!--comment-->", a "<!DOCTYPE foo>", a "<![CDATA[section]]>" or -// "<!a bogus comment". The opening "<!" has already been consumed. -func (z *Tokenizer) readMarkupDeclaration() TokenType { -	z.data.start = z.raw.end -	var c [2]byte -	for i := 0; i < 2; i++ { -		c[i] = z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return CommentToken -		} -	} -	if c[0] == '-' && c[1] == '-' { -		z.readComment() -		return CommentToken -	} -	z.raw.end -= 2 -	if z.readDoctype() { -		return DoctypeToken -	} -	if z.allowCDATA && z.readCDATA() { -		z.convertNUL = true -		return TextToken -	} -	// It's a bogus comment. -	z.readUntilCloseAngle() -	return CommentToken -} - -// readDoctype attempts to read a doctype declaration and returns true if -// successful. The opening "<!" has already been consumed. -func (z *Tokenizer) readDoctype() bool { -	const s = "DOCTYPE" -	for i := 0; i < len(s); i++ { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return false -		} -		if c != s[i] && c != s[i]+('a'-'A') { -			// Back up to read the fragment of "DOCTYPE" again. -			z.raw.end = z.data.start -			return false -		} -	} -	if z.skipWhiteSpace(); z.err != nil { -		z.data.start = z.raw.end -		z.data.end = z.raw.end -		return true -	} -	z.readUntilCloseAngle() -	return true -} - -// readCDATA attempts to read a CDATA section and returns true if -// successful. The opening "<!" has already been consumed. -func (z *Tokenizer) readCDATA() bool { -	const s = "[CDATA[" -	for i := 0; i < len(s); i++ { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return false -		} -		if c != s[i] { -			// Back up to read the fragment of "[CDATA[" again. -			z.raw.end = z.data.start -			return false -		} -	} -	z.data.start = z.raw.end -	brackets := 0 -	for { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return true -		} -		switch c { -		case ']': -			brackets++ -		case '>': -			if brackets >= 2 { -				z.data.end = z.raw.end - len("]]>") -				return true -			} -			brackets = 0 -		default: -			brackets = 0 -		} -	} -} - -// startTagIn returns whether the start tag in z.buf[z.data.start:z.data.end] -// case-insensitively matches any element of ss. -func (z *Tokenizer) startTagIn(ss ...string) bool { -loop: -	for _, s := range ss { -		if z.data.end-z.data.start != len(s) { -			continue loop -		} -		for i := 0; i < len(s); i++ { -			c := z.buf[z.data.start+i] -			if 'A' <= c && c <= 'Z' { -				c += 'a' - 'A' -			} -			if c != s[i] { -				continue loop -			} -		} -		return true -	} -	return false -} - -// readStartTag reads the next start tag token. The opening "<a" has already -// been consumed, where 'a' means anything in [A-Za-z]. -func (z *Tokenizer) readStartTag() TokenType { -	z.readTag(true) -	if z.err != nil { -		return ErrorToken -	} -	// Several tags flag the tokenizer's next token as raw. -	c, raw := z.buf[z.data.start], false -	if 'A' <= c && c <= 'Z' { -		c += 'a' - 'A' -	} -	switch c { -	case 'i': -		raw = z.startTagIn("iframe") -	case 'n': -		raw = z.startTagIn("noembed", "noframes", "noscript") -	case 'p': -		raw = z.startTagIn("plaintext") -	case 's': -		raw = z.startTagIn("script", "style") -	case 't': -		raw = z.startTagIn("textarea", "title") -	case 'x': -		raw = z.startTagIn("xmp") -	} -	if raw { -		z.rawTag = strings.ToLower(string(z.buf[z.data.start:z.data.end])) -	} -	// Look for a self-closing token like "<br/>". -	if z.err == nil && z.buf[z.raw.end-2] == '/' { -		return SelfClosingTagToken -	} -	return StartTagToken -} - -// readTag reads the next tag token and its attributes. If saveAttr, those -// attributes are saved in z.attr, otherwise z.attr is set to an empty slice. -// The opening "<a" or "</a" has already been consumed, where 'a' means anything -// in [A-Za-z]. -func (z *Tokenizer) readTag(saveAttr bool) { -	z.attr = z.attr[:0] -	z.nAttrReturned = 0 -	// Read the tag name and attribute key/value pairs. -	z.readTagName() -	if z.skipWhiteSpace(); z.err != nil { -		return -	} -	for { -		c := z.readByte() -		if z.err != nil || c == '>' { -			break -		} -		z.raw.end-- -		z.readTagAttrKey() -		z.readTagAttrVal() -		// Save pendingAttr if saveAttr and that attribute has a non-empty key. -		if saveAttr && z.pendingAttr[0].start != z.pendingAttr[0].end { -			z.attr = append(z.attr, z.pendingAttr) -		} -		if z.skipWhiteSpace(); z.err != nil { -			break -		} -	} -} - -// readTagName sets z.data to the "div" in "<div k=v>". The reader (z.raw.end) -// is positioned such that the first byte of the tag name (the "d" in "<div") -// has already been consumed. -func (z *Tokenizer) readTagName() { -	z.data.start = z.raw.end - 1 -	for { -		c := z.readByte() -		if z.err != nil { -			z.data.end = z.raw.end -			return -		} -		switch c { -		case ' ', '\n', '\r', '\t', '\f': -			z.data.end = z.raw.end - 1 -			return -		case '/', '>': -			z.raw.end-- -			z.data.end = z.raw.end -			return -		} -	} -} - -// readTagAttrKey sets z.pendingAttr[0] to the "k" in "<div k=v>". -// Precondition: z.err == nil. -func (z *Tokenizer) readTagAttrKey() { -	z.pendingAttr[0].start = z.raw.end -	for { -		c := z.readByte() -		if z.err != nil { -			z.pendingAttr[0].end = z.raw.end -			return -		} -		switch c { -		case '=': -			if z.pendingAttr[0].start+1 == z.raw.end { -				// WHATWG 13.2.5.32, if we see an equals sign before the attribute name -				// begins, we treat it as a character in the attribute name and continue. -				continue -			} -			fallthrough -		case ' ', '\n', '\r', '\t', '\f', '/', '>': -			// WHATWG 13.2.5.33 Attribute name state -			// We need to reconsume the char in the after attribute name state to support the / character -			z.raw.end-- -			z.pendingAttr[0].end = z.raw.end -			return -		} -	} -} - -// readTagAttrVal sets z.pendingAttr[1] to the "v" in "<div k=v>". -func (z *Tokenizer) readTagAttrVal() { -	z.pendingAttr[1].start = z.raw.end -	z.pendingAttr[1].end = z.raw.end -	if z.skipWhiteSpace(); z.err != nil { -		return -	} -	c := z.readByte() -	if z.err != nil { -		return -	} -	if c == '/' { -		// WHATWG 13.2.5.34 After attribute name state -		// U+002F SOLIDUS (/) - Switch to the self-closing start tag state. -		return -	} -	if c != '=' { -		z.raw.end-- -		return -	} -	if z.skipWhiteSpace(); z.err != nil { -		return -	} -	quote := z.readByte() -	if z.err != nil { -		return -	} -	switch quote { -	case '>': -		z.raw.end-- -		return - -	case '\'', '"': -		z.pendingAttr[1].start = z.raw.end -		for { -			c := z.readByte() -			if z.err != nil { -				z.pendingAttr[1].end = z.raw.end -				return -			} -			if c == quote { -				z.pendingAttr[1].end = z.raw.end - 1 -				return -			} -		} - -	default: -		z.pendingAttr[1].start = z.raw.end - 1 -		for { -			c := z.readByte() -			if z.err != nil { -				z.pendingAttr[1].end = z.raw.end -				return -			} -			switch c { -			case ' ', '\n', '\r', '\t', '\f': -				z.pendingAttr[1].end = z.raw.end - 1 -				return -			case '>': -				z.raw.end-- -				z.pendingAttr[1].end = z.raw.end -				return -			} -		} -	} -} - -// Next scans the next token and returns its type. -func (z *Tokenizer) Next() TokenType { -	z.raw.start = z.raw.end -	z.data.start = z.raw.end -	z.data.end = z.raw.end -	if z.err != nil { -		z.tt = ErrorToken -		return z.tt -	} -	if z.rawTag != "" { -		if z.rawTag == "plaintext" { -			// Read everything up to EOF. -			for z.err == nil { -				z.readByte() -			} -			z.data.end = z.raw.end -			z.textIsRaw = true -		} else { -			z.readRawOrRCDATA() -		} -		if z.data.end > z.data.start { -			z.tt = TextToken -			z.convertNUL = true -			return z.tt -		} -	} -	z.textIsRaw = false -	z.convertNUL = false - -loop: -	for { -		c := z.readByte() -		if z.err != nil { -			break loop -		} -		if c != '<' { -			continue loop -		} - -		// Check if the '<' we have just read is part of a tag, comment -		// or doctype. If not, it's part of the accumulated text token. -		c = z.readByte() -		if z.err != nil { -			break loop -		} -		var tokenType TokenType -		switch { -		case 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z': -			tokenType = StartTagToken -		case c == '/': -			tokenType = EndTagToken -		case c == '!' || c == '?': -			// We use CommentToken to mean any of "<!--actual comments-->", -			// "<!DOCTYPE declarations>" and "<?xml processing instructions?>". -			tokenType = CommentToken -		default: -			// Reconsume the current character. -			z.raw.end-- -			continue -		} - -		// We have a non-text token, but we might have accumulated some text -		// before that. If so, we return the text first, and return the non- -		// text token on the subsequent call to Next. -		if x := z.raw.end - len("<a"); z.raw.start < x { -			z.raw.end = x -			z.data.end = x -			z.tt = TextToken -			return z.tt -		} -		switch tokenType { -		case StartTagToken: -			z.tt = z.readStartTag() -			return z.tt -		case EndTagToken: -			c = z.readByte() -			if z.err != nil { -				break loop -			} -			if c == '>' { -				// "</>" does not generate a token at all. Generate an empty comment -				// to allow passthrough clients to pick up the data using Raw. -				// Reset the tokenizer state and start again. -				z.tt = CommentToken -				return z.tt -			} -			if 'a' <= c && c <= 'z' || 'A' <= c && c <= 'Z' { -				z.readTag(false) -				if z.err != nil { -					z.tt = ErrorToken -				} else { -					z.tt = EndTagToken -				} -				return z.tt -			} -			z.raw.end-- -			z.readUntilCloseAngle() -			z.tt = CommentToken -			return z.tt -		case CommentToken: -			if c == '!' { -				z.tt = z.readMarkupDeclaration() -				return z.tt -			} -			z.raw.end-- -			z.readUntilCloseAngle() -			z.tt = CommentToken -			return z.tt -		} -	} -	if z.raw.start < z.raw.end { -		z.data.end = z.raw.end -		z.tt = TextToken -		return z.tt -	} -	z.tt = ErrorToken -	return z.tt -} - -// Raw returns the unmodified text of the current token. Calling Next, Token, -// Text, TagName or TagAttr may change the contents of the returned slice. -// -// The token stream's raw bytes partition the byte stream (up until an -// ErrorToken). There are no overlaps or gaps between two consecutive token's -// raw bytes. One implication is that the byte offset of the current token is -// the sum of the lengths of all previous tokens' raw bytes. -func (z *Tokenizer) Raw() []byte { -	return z.buf[z.raw.start:z.raw.end] -} - -// convertNewlines converts "\r" and "\r\n" in s to "\n". -// The conversion happens in place, but the resulting slice may be shorter. -func convertNewlines(s []byte) []byte { -	for i, c := range s { -		if c != '\r' { -			continue -		} - -		src := i + 1 -		if src >= len(s) || s[src] != '\n' { -			s[i] = '\n' -			continue -		} - -		dst := i -		for src < len(s) { -			if s[src] == '\r' { -				if src+1 < len(s) && s[src+1] == '\n' { -					src++ -				} -				s[dst] = '\n' -			} else { -				s[dst] = s[src] -			} -			src++ -			dst++ -		} -		return s[:dst] -	} -	return s -} - -var ( -	nul         = []byte("\x00") -	replacement = []byte("\ufffd") -) - -// Text returns the unescaped text of a text, comment or doctype token. The -// contents of the returned slice may change on the next call to Next. -func (z *Tokenizer) Text() []byte { -	switch z.tt { -	case TextToken, CommentToken, DoctypeToken: -		s := z.buf[z.data.start:z.data.end] -		z.data.start = z.raw.end -		z.data.end = z.raw.end -		s = convertNewlines(s) -		if (z.convertNUL || z.tt == CommentToken) && bytes.Contains(s, nul) { -			s = bytes.Replace(s, nul, replacement, -1) -		} -		if !z.textIsRaw { -			s = unescape(s, false) -		} -		return s -	} -	return nil -} - -// TagName returns the lower-cased name of a tag token (the `img` out of -// `<IMG SRC="foo">`) and whether the tag has attributes. -// The contents of the returned slice may change on the next call to Next. -func (z *Tokenizer) TagName() (name []byte, hasAttr bool) { -	if z.data.start < z.data.end { -		switch z.tt { -		case StartTagToken, EndTagToken, SelfClosingTagToken: -			s := z.buf[z.data.start:z.data.end] -			z.data.start = z.raw.end -			z.data.end = z.raw.end -			return lower(s), z.nAttrReturned < len(z.attr) -		} -	} -	return nil, false -} - -// TagAttr returns the lower-cased key and unescaped value of the next unparsed -// attribute for the current tag token and whether there are more attributes. -// The contents of the returned slices may change on the next call to Next. -func (z *Tokenizer) TagAttr() (key, val []byte, moreAttr bool) { -	if z.nAttrReturned < len(z.attr) { -		switch z.tt { -		case StartTagToken, SelfClosingTagToken: -			x := z.attr[z.nAttrReturned] -			z.nAttrReturned++ -			key = z.buf[x[0].start:x[0].end] -			val = z.buf[x[1].start:x[1].end] -			return lower(key), unescape(convertNewlines(val), true), z.nAttrReturned < len(z.attr) -		} -	} -	return nil, nil, false -} - -// Token returns the current Token. The result's Data and Attr values remain -// valid after subsequent Next calls. -func (z *Tokenizer) Token() Token { -	t := Token{Type: z.tt} -	switch z.tt { -	case TextToken, CommentToken, DoctypeToken: -		t.Data = string(z.Text()) -	case StartTagToken, SelfClosingTagToken, EndTagToken: -		name, moreAttr := z.TagName() -		for moreAttr { -			var key, val []byte -			key, val, moreAttr = z.TagAttr() -			t.Attr = append(t.Attr, Attribute{"", atom.String(key), string(val)}) -		} -		if a := atom.Lookup(name); a != 0 { -			t.DataAtom, t.Data = a, a.String() -		} else { -			t.DataAtom, t.Data = 0, string(name) -		} -	} -	return t -} - -// SetMaxBuf sets a limit on the amount of data buffered during tokenization. -// A value of 0 means unlimited. -func (z *Tokenizer) SetMaxBuf(n int) { -	z.maxBuf = n -} - -// NewTokenizer returns a new HTML Tokenizer for the given Reader. -// The input is assumed to be UTF-8 encoded. -func NewTokenizer(r io.Reader) *Tokenizer { -	return NewTokenizerFragment(r, "") -} - -// NewTokenizerFragment returns a new HTML Tokenizer for the given Reader, for -// tokenizing an existing element's InnerHTML fragment. contextTag is that -// element's tag, such as "div" or "iframe". -// -// For example, how the InnerHTML "a<b" is tokenized depends on whether it is -// for a <p> tag or a <script> tag. -// -// The input is assumed to be UTF-8 encoded. -func NewTokenizerFragment(r io.Reader, contextTag string) *Tokenizer { -	z := &Tokenizer{ -		r:   r, -		buf: make([]byte, 0, 4096), -	} -	if contextTag != "" { -		switch s := strings.ToLower(contextTag); s { -		case "iframe", "noembed", "noframes", "noscript", "plaintext", "script", "style", "title", "textarea", "xmp": -			z.rawTag = s -		} -	} -	return z -} diff --git a/vendor/golang.org/x/net/http/httpguts/guts.go b/vendor/golang.org/x/net/http/httpguts/guts.go deleted file mode 100644 index e6cd0ced3..000000000 --- a/vendor/golang.org/x/net/http/httpguts/guts.go +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright 2018 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. - -// Package httpguts provides functions implementing various details -// of the HTTP specification. -// -// This package is shared by the standard library (which vendors it) -// and x/net/http2. It comes with no API stability promise. -package httpguts - -import ( -	"net/textproto" -	"strings" -) - -// ValidTrailerHeader reports whether name is a valid header field name to appear -// in trailers. -// See RFC 7230, Section 4.1.2 -func ValidTrailerHeader(name string) bool { -	name = textproto.CanonicalMIMEHeaderKey(name) -	if strings.HasPrefix(name, "If-") || badTrailer[name] { -		return false -	} -	return true -} - -var badTrailer = map[string]bool{ -	"Authorization":       true, -	"Cache-Control":       true, -	"Connection":          true, -	"Content-Encoding":    true, -	"Content-Length":      true, -	"Content-Range":       true, -	"Content-Type":        true, -	"Expect":              true, -	"Host":                true, -	"Keep-Alive":          true, -	"Max-Forwards":        true, -	"Pragma":              true, -	"Proxy-Authenticate":  true, -	"Proxy-Authorization": true, -	"Proxy-Connection":    true, -	"Range":               true, -	"Realm":               true, -	"Te":                  true, -	"Trailer":             true, -	"Transfer-Encoding":   true, -	"Www-Authenticate":    true, -} diff --git a/vendor/golang.org/x/net/http/httpguts/httplex.go b/vendor/golang.org/x/net/http/httpguts/httplex.go deleted file mode 100644 index 9b4de9401..000000000 --- a/vendor/golang.org/x/net/http/httpguts/httplex.go +++ /dev/null @@ -1,347 +0,0 @@ -// Copyright 2016 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. - -package httpguts - -import ( -	"net" -	"strings" -	"unicode/utf8" - -	"golang.org/x/net/idna" -) - -var isTokenTable = [256]bool{ -	'!':  true, -	'#':  true, -	'$':  true, -	'%':  true, -	'&':  true, -	'\'': true, -	'*':  true, -	'+':  true, -	'-':  true, -	'.':  true, -	'0':  true, -	'1':  true, -	'2':  true, -	'3':  true, -	'4':  true, -	'5':  true, -	'6':  true, -	'7':  true, -	'8':  true, -	'9':  true, -	'A':  true, -	'B':  true, -	'C':  true, -	'D':  true, -	'E':  true, -	'F':  true, -	'G':  true, -	'H':  true, -	'I':  true, -	'J':  true, -	'K':  true, -	'L':  true, -	'M':  true, -	'N':  true, -	'O':  true, -	'P':  true, -	'Q':  true, -	'R':  true, -	'S':  true, -	'T':  true, -	'U':  true, -	'W':  true, -	'V':  true, -	'X':  true, -	'Y':  true, -	'Z':  true, -	'^':  true, -	'_':  true, -	'`':  true, -	'a':  true, -	'b':  true, -	'c':  true, -	'd':  true, -	'e':  true, -	'f':  true, -	'g':  true, -	'h':  true, -	'i':  true, -	'j':  true, -	'k':  true, -	'l':  true, -	'm':  true, -	'n':  true, -	'o':  true, -	'p':  true, -	'q':  true, -	'r':  true, -	's':  true, -	't':  true, -	'u':  true, -	'v':  true, -	'w':  true, -	'x':  true, -	'y':  true, -	'z':  true, -	'|':  true, -	'~':  true, -} - -func IsTokenRune(r rune) bool { -	return r < utf8.RuneSelf && isTokenTable[byte(r)] -} - -// HeaderValuesContainsToken reports whether any string in values -// contains the provided token, ASCII case-insensitively. -func HeaderValuesContainsToken(values []string, token string) bool { -	for _, v := range values { -		if headerValueContainsToken(v, token) { -			return true -		} -	} -	return false -} - -// isOWS reports whether b is an optional whitespace byte, as defined -// by RFC 7230 section 3.2.3. -func isOWS(b byte) bool { return b == ' ' || b == '\t' } - -// trimOWS returns x with all optional whitespace removes from the -// beginning and end. -func trimOWS(x string) string { -	// TODO: consider using strings.Trim(x, " \t") instead, -	// if and when it's fast enough. See issue 10292. -	// But this ASCII-only code will probably always beat UTF-8 -	// aware code. -	for len(x) > 0 && isOWS(x[0]) { -		x = x[1:] -	} -	for len(x) > 0 && isOWS(x[len(x)-1]) { -		x = x[:len(x)-1] -	} -	return x -} - -// headerValueContainsToken reports whether v (assumed to be a -// 0#element, in the ABNF extension described in RFC 7230 section 7) -// contains token amongst its comma-separated tokens, ASCII -// case-insensitively. -func headerValueContainsToken(v string, token string) bool { -	for comma := strings.IndexByte(v, ','); comma != -1; comma = strings.IndexByte(v, ',') { -		if tokenEqual(trimOWS(v[:comma]), token) { -			return true -		} -		v = v[comma+1:] -	} -	return tokenEqual(trimOWS(v), token) -} - -// lowerASCII returns the ASCII lowercase version of b. -func lowerASCII(b byte) byte { -	if 'A' <= b && b <= 'Z' { -		return b + ('a' - 'A') -	} -	return b -} - -// tokenEqual reports whether t1 and t2 are equal, ASCII case-insensitively. -func tokenEqual(t1, t2 string) bool { -	if len(t1) != len(t2) { -		return false -	} -	for i, b := range t1 { -		if b >= utf8.RuneSelf { -			// No UTF-8 or non-ASCII allowed in tokens. -			return false -		} -		if lowerASCII(byte(b)) != lowerASCII(t2[i]) { -			return false -		} -	} -	return true -} - -// isLWS reports whether b is linear white space, according -// to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 -// -//	LWS            = [CRLF] 1*( SP | HT ) -func isLWS(b byte) bool { return b == ' ' || b == '\t' } - -// isCTL reports whether b is a control byte, according -// to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 -// -//	CTL            = <any US-ASCII control character -//	                 (octets 0 - 31) and DEL (127)> -func isCTL(b byte) bool { -	const del = 0x7f // a CTL -	return b < ' ' || b == del -} - -// ValidHeaderFieldName reports whether v is a valid HTTP/1.x header name. -// HTTP/2 imposes the additional restriction that uppercase ASCII -// letters are not allowed. -// -// RFC 7230 says: -// -//	header-field   = field-name ":" OWS field-value OWS -//	field-name     = token -//	token          = 1*tchar -//	tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." / -//	        "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA -func ValidHeaderFieldName(v string) bool { -	if len(v) == 0 { -		return false -	} -	for i := 0; i < len(v); i++ { -		if !isTokenTable[v[i]] { -			return false -		} -	} -	return true -} - -// ValidHostHeader reports whether h is a valid host header. -func ValidHostHeader(h string) bool { -	// The latest spec is actually this: -	// -	// http://tools.ietf.org/html/rfc7230#section-5.4 -	//     Host = uri-host [ ":" port ] -	// -	// Where uri-host is: -	//     http://tools.ietf.org/html/rfc3986#section-3.2.2 -	// -	// But we're going to be much more lenient for now and just -	// search for any byte that's not a valid byte in any of those -	// expressions. -	for i := 0; i < len(h); i++ { -		if !validHostByte[h[i]] { -			return false -		} -	} -	return true -} - -// See the validHostHeader comment. -var validHostByte = [256]bool{ -	'0': true, '1': true, '2': true, '3': true, '4': true, '5': true, '6': true, '7': true, -	'8': true, '9': true, - -	'a': true, 'b': true, 'c': true, 'd': true, 'e': true, 'f': true, 'g': true, 'h': true, -	'i': true, 'j': true, 'k': true, 'l': true, 'm': true, 'n': true, 'o': true, 'p': true, -	'q': true, 'r': true, 's': true, 't': true, 'u': true, 'v': true, 'w': true, 'x': true, -	'y': true, 'z': true, - -	'A': true, 'B': true, 'C': true, 'D': true, 'E': true, 'F': true, 'G': true, 'H': true, -	'I': true, 'J': true, 'K': true, 'L': true, 'M': true, 'N': true, 'O': true, 'P': true, -	'Q': true, 'R': true, 'S': true, 'T': true, 'U': true, 'V': true, 'W': true, 'X': true, -	'Y': true, 'Z': true, - -	'!':  true, // sub-delims -	'$':  true, // sub-delims -	'%':  true, // pct-encoded (and used in IPv6 zones) -	'&':  true, // sub-delims -	'(':  true, // sub-delims -	')':  true, // sub-delims -	'*':  true, // sub-delims -	'+':  true, // sub-delims -	',':  true, // sub-delims -	'-':  true, // unreserved -	'.':  true, // unreserved -	':':  true, // IPv6address + Host expression's optional port -	';':  true, // sub-delims -	'=':  true, // sub-delims -	'[':  true, -	'\'': true, // sub-delims -	']':  true, -	'_':  true, // unreserved -	'~':  true, // unreserved -} - -// ValidHeaderFieldValue reports whether v is a valid "field-value" according to -// http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2 : -// -//	message-header = field-name ":" [ field-value ] -//	field-value    = *( field-content | LWS ) -//	field-content  = <the OCTETs making up the field-value -//	                 and consisting of either *TEXT or combinations -//	                 of token, separators, and quoted-string> -// -// http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 : -// -//	TEXT           = <any OCTET except CTLs, -//	                  but including LWS> -//	LWS            = [CRLF] 1*( SP | HT ) -//	CTL            = <any US-ASCII control character -//	                 (octets 0 - 31) and DEL (127)> -// -// RFC 7230 says: -// -//	field-value    = *( field-content / obs-fold ) -//	obj-fold       =  N/A to http2, and deprecated -//	field-content  = field-vchar [ 1*( SP / HTAB ) field-vchar ] -//	field-vchar    = VCHAR / obs-text -//	obs-text       = %x80-FF -//	VCHAR          = "any visible [USASCII] character" -// -// http2 further says: "Similarly, HTTP/2 allows header field values -// that are not valid. While most of the values that can be encoded -// will not alter header field parsing, carriage return (CR, ASCII -// 0xd), line feed (LF, ASCII 0xa), and the zero character (NUL, ASCII -// 0x0) might be exploited by an attacker if they are translated -// verbatim. Any request or response that contains a character not -// permitted in a header field value MUST be treated as malformed -// (Section 8.1.2.6). Valid characters are defined by the -// field-content ABNF rule in Section 3.2 of [RFC7230]." -// -// This function does not (yet?) properly handle the rejection of -// strings that begin or end with SP or HTAB. -func ValidHeaderFieldValue(v string) bool { -	for i := 0; i < len(v); i++ { -		b := v[i] -		if isCTL(b) && !isLWS(b) { -			return false -		} -	} -	return true -} - -func isASCII(s string) bool { -	for i := 0; i < len(s); i++ { -		if s[i] >= utf8.RuneSelf { -			return false -		} -	} -	return true -} - -// PunycodeHostPort returns the IDNA Punycode version -// of the provided "host" or "host:port" string. -func PunycodeHostPort(v string) (string, error) { -	if isASCII(v) { -		return v, nil -	} - -	host, port, err := net.SplitHostPort(v) -	if err != nil { -		// The input 'v' argument was just a "host" argument, -		// without a port. This error should not be returned -		// to the caller. -		host = v -		port = "" -	} -	host, err = idna.ToASCII(host) -	if err != nil { -		// Non-UTF-8? Not representable in Punycode, in any -		// case. -		return "", err -	} -	if port == "" { -		return host, nil -	} -	return net.JoinHostPort(host, port), nil -} diff --git a/vendor/golang.org/x/net/http2/.gitignore b/vendor/golang.org/x/net/http2/.gitignore deleted file mode 100644 index 190f12234..000000000 --- a/vendor/golang.org/x/net/http2/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*~ -h2i/h2i diff --git a/vendor/golang.org/x/net/http2/ascii.go b/vendor/golang.org/x/net/http2/ascii.go deleted file mode 100644 index 17caa2058..000000000 --- a/vendor/golang.org/x/net/http2/ascii.go +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2021 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. - -package http2 - -import "strings" - -// The HTTP protocols are defined in terms of ASCII, not Unicode. This file -// contains helper functions which may use Unicode-aware functions which would -// otherwise be unsafe and could introduce vulnerabilities if used improperly. - -// asciiEqualFold is strings.EqualFold, ASCII only. It reports whether s and t -// are equal, ASCII-case-insensitively. -func asciiEqualFold(s, t string) bool { -	if len(s) != len(t) { -		return false -	} -	for i := 0; i < len(s); i++ { -		if lower(s[i]) != lower(t[i]) { -			return false -		} -	} -	return true -} - -// lower returns the ASCII lowercase version of b. -func lower(b byte) byte { -	if 'A' <= b && b <= 'Z' { -		return b + ('a' - 'A') -	} -	return b -} - -// isASCIIPrint returns whether s is ASCII and printable according to -// https://tools.ietf.org/html/rfc20#section-4.2. -func isASCIIPrint(s string) bool { -	for i := 0; i < len(s); i++ { -		if s[i] < ' ' || s[i] > '~' { -			return false -		} -	} -	return true -} - -// asciiToLower returns the lowercase version of s if s is ASCII and printable, -// and whether or not it was. -func asciiToLower(s string) (lower string, ok bool) { -	if !isASCIIPrint(s) { -		return "", false -	} -	return strings.ToLower(s), true -} diff --git a/vendor/golang.org/x/net/http2/ciphers.go b/vendor/golang.org/x/net/http2/ciphers.go deleted file mode 100644 index c9a0cf3b4..000000000 --- a/vendor/golang.org/x/net/http2/ciphers.go +++ /dev/null @@ -1,641 +0,0 @@ -// Copyright 2017 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. - -package http2 - -// A list of the possible cipher suite ids. Taken from -// https://www.iana.org/assignments/tls-parameters/tls-parameters.txt - -const ( -	cipher_TLS_NULL_WITH_NULL_NULL               uint16 = 0x0000 -	cipher_TLS_RSA_WITH_NULL_MD5                 uint16 = 0x0001 -	cipher_TLS_RSA_WITH_NULL_SHA                 uint16 = 0x0002 -	cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5        uint16 = 0x0003 -	cipher_TLS_RSA_WITH_RC4_128_MD5              uint16 = 0x0004 -	cipher_TLS_RSA_WITH_RC4_128_SHA              uint16 = 0x0005 -	cipher_TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5    uint16 = 0x0006 -	cipher_TLS_RSA_WITH_IDEA_CBC_SHA             uint16 = 0x0007 -	cipher_TLS_RSA_EXPORT_WITH_DES40_CBC_SHA     uint16 = 0x0008 -	cipher_TLS_RSA_WITH_DES_CBC_SHA              uint16 = 0x0009 -	cipher_TLS_RSA_WITH_3DES_EDE_CBC_SHA         uint16 = 0x000A -	cipher_TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA  uint16 = 0x000B -	cipher_TLS_DH_DSS_WITH_DES_CBC_SHA           uint16 = 0x000C -	cipher_TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA      uint16 = 0x000D -	cipher_TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA  uint16 = 0x000E -	cipher_TLS_DH_RSA_WITH_DES_CBC_SHA           uint16 = 0x000F -	cipher_TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA      uint16 = 0x0010 -	cipher_TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0011 -	cipher_TLS_DHE_DSS_WITH_DES_CBC_SHA          uint16 = 0x0012 -	cipher_TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA     uint16 = 0x0013 -	cipher_TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0014 -	cipher_TLS_DHE_RSA_WITH_DES_CBC_SHA          uint16 = 0x0015 -	cipher_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA     uint16 = 0x0016 -	cipher_TLS_DH_anon_EXPORT_WITH_RC4_40_MD5    uint16 = 0x0017 -	cipher_TLS_DH_anon_WITH_RC4_128_MD5          uint16 = 0x0018 -	cipher_TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA uint16 = 0x0019 -	cipher_TLS_DH_anon_WITH_DES_CBC_SHA          uint16 = 0x001A -	cipher_TLS_DH_anon_WITH_3DES_EDE_CBC_SHA     uint16 = 0x001B -	// Reserved uint16 =  0x001C-1D -	cipher_TLS_KRB5_WITH_DES_CBC_SHA             uint16 = 0x001E -	cipher_TLS_KRB5_WITH_3DES_EDE_CBC_SHA        uint16 = 0x001F -	cipher_TLS_KRB5_WITH_RC4_128_SHA             uint16 = 0x0020 -	cipher_TLS_KRB5_WITH_IDEA_CBC_SHA            uint16 = 0x0021 -	cipher_TLS_KRB5_WITH_DES_CBC_MD5             uint16 = 0x0022 -	cipher_TLS_KRB5_WITH_3DES_EDE_CBC_MD5        uint16 = 0x0023 -	cipher_TLS_KRB5_WITH_RC4_128_MD5             uint16 = 0x0024 -	cipher_TLS_KRB5_WITH_IDEA_CBC_MD5            uint16 = 0x0025 -	cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA   uint16 = 0x0026 -	cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA   uint16 = 0x0027 -	cipher_TLS_KRB5_EXPORT_WITH_RC4_40_SHA       uint16 = 0x0028 -	cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5   uint16 = 0x0029 -	cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5   uint16 = 0x002A -	cipher_TLS_KRB5_EXPORT_WITH_RC4_40_MD5       uint16 = 0x002B -	cipher_TLS_PSK_WITH_NULL_SHA                 uint16 = 0x002C -	cipher_TLS_DHE_PSK_WITH_NULL_SHA             uint16 = 0x002D -	cipher_TLS_RSA_PSK_WITH_NULL_SHA             uint16 = 0x002E -	cipher_TLS_RSA_WITH_AES_128_CBC_SHA          uint16 = 0x002F -	cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA       uint16 = 0x0030 -	cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA       uint16 = 0x0031 -	cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA      uint16 = 0x0032 -	cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA      uint16 = 0x0033 -	cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA      uint16 = 0x0034 -	cipher_TLS_RSA_WITH_AES_256_CBC_SHA          uint16 = 0x0035 -	cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA       uint16 = 0x0036 -	cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA       uint16 = 0x0037 -	cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA      uint16 = 0x0038 -	cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA      uint16 = 0x0039 -	cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA      uint16 = 0x003A -	cipher_TLS_RSA_WITH_NULL_SHA256              uint16 = 0x003B -	cipher_TLS_RSA_WITH_AES_128_CBC_SHA256       uint16 = 0x003C -	cipher_TLS_RSA_WITH_AES_256_CBC_SHA256       uint16 = 0x003D -	cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA256    uint16 = 0x003E -	cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA256    uint16 = 0x003F -	cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA256   uint16 = 0x0040 -	cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA     uint16 = 0x0041 -	cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA  uint16 = 0x0042 -	cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA  uint16 = 0x0043 -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0044 -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0045 -	cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA uint16 = 0x0046 -	// Reserved uint16 =  0x0047-4F -	// Reserved uint16 =  0x0050-58 -	// Reserved uint16 =  0x0059-5C -	// Unassigned uint16 =  0x005D-5F -	// Reserved uint16 =  0x0060-66 -	cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 uint16 = 0x0067 -	cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256  uint16 = 0x0068 -	cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256  uint16 = 0x0069 -	cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 uint16 = 0x006A -	cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 uint16 = 0x006B -	cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA256 uint16 = 0x006C -	cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA256 uint16 = 0x006D -	// Unassigned uint16 =  0x006E-83 -	cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA        uint16 = 0x0084 -	cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA     uint16 = 0x0085 -	cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA     uint16 = 0x0086 -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA    uint16 = 0x0087 -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA    uint16 = 0x0088 -	cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA    uint16 = 0x0089 -	cipher_TLS_PSK_WITH_RC4_128_SHA                 uint16 = 0x008A -	cipher_TLS_PSK_WITH_3DES_EDE_CBC_SHA            uint16 = 0x008B -	cipher_TLS_PSK_WITH_AES_128_CBC_SHA             uint16 = 0x008C -	cipher_TLS_PSK_WITH_AES_256_CBC_SHA             uint16 = 0x008D -	cipher_TLS_DHE_PSK_WITH_RC4_128_SHA             uint16 = 0x008E -	cipher_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA        uint16 = 0x008F -	cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA         uint16 = 0x0090 -	cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA         uint16 = 0x0091 -	cipher_TLS_RSA_PSK_WITH_RC4_128_SHA             uint16 = 0x0092 -	cipher_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA        uint16 = 0x0093 -	cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA         uint16 = 0x0094 -	cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA         uint16 = 0x0095 -	cipher_TLS_RSA_WITH_SEED_CBC_SHA                uint16 = 0x0096 -	cipher_TLS_DH_DSS_WITH_SEED_CBC_SHA             uint16 = 0x0097 -	cipher_TLS_DH_RSA_WITH_SEED_CBC_SHA             uint16 = 0x0098 -	cipher_TLS_DHE_DSS_WITH_SEED_CBC_SHA            uint16 = 0x0099 -	cipher_TLS_DHE_RSA_WITH_SEED_CBC_SHA            uint16 = 0x009A -	cipher_TLS_DH_anon_WITH_SEED_CBC_SHA            uint16 = 0x009B -	cipher_TLS_RSA_WITH_AES_128_GCM_SHA256          uint16 = 0x009C -	cipher_TLS_RSA_WITH_AES_256_GCM_SHA384          uint16 = 0x009D -	cipher_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256      uint16 = 0x009E -	cipher_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384      uint16 = 0x009F -	cipher_TLS_DH_RSA_WITH_AES_128_GCM_SHA256       uint16 = 0x00A0 -	cipher_TLS_DH_RSA_WITH_AES_256_GCM_SHA384       uint16 = 0x00A1 -	cipher_TLS_DHE_DSS_WITH_AES_128_GCM_SHA256      uint16 = 0x00A2 -	cipher_TLS_DHE_DSS_WITH_AES_256_GCM_SHA384      uint16 = 0x00A3 -	cipher_TLS_DH_DSS_WITH_AES_128_GCM_SHA256       uint16 = 0x00A4 -	cipher_TLS_DH_DSS_WITH_AES_256_GCM_SHA384       uint16 = 0x00A5 -	cipher_TLS_DH_anon_WITH_AES_128_GCM_SHA256      uint16 = 0x00A6 -	cipher_TLS_DH_anon_WITH_AES_256_GCM_SHA384      uint16 = 0x00A7 -	cipher_TLS_PSK_WITH_AES_128_GCM_SHA256          uint16 = 0x00A8 -	cipher_TLS_PSK_WITH_AES_256_GCM_SHA384          uint16 = 0x00A9 -	cipher_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256      uint16 = 0x00AA -	cipher_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384      uint16 = 0x00AB -	cipher_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256      uint16 = 0x00AC -	cipher_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384      uint16 = 0x00AD -	cipher_TLS_PSK_WITH_AES_128_CBC_SHA256          uint16 = 0x00AE -	cipher_TLS_PSK_WITH_AES_256_CBC_SHA384          uint16 = 0x00AF -	cipher_TLS_PSK_WITH_NULL_SHA256                 uint16 = 0x00B0 -	cipher_TLS_PSK_WITH_NULL_SHA384                 uint16 = 0x00B1 -	cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256      uint16 = 0x00B2 -	cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384      uint16 = 0x00B3 -	cipher_TLS_DHE_PSK_WITH_NULL_SHA256             uint16 = 0x00B4 -	cipher_TLS_DHE_PSK_WITH_NULL_SHA384             uint16 = 0x00B5 -	cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256      uint16 = 0x00B6 -	cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384      uint16 = 0x00B7 -	cipher_TLS_RSA_PSK_WITH_NULL_SHA256             uint16 = 0x00B8 -	cipher_TLS_RSA_PSK_WITH_NULL_SHA384             uint16 = 0x00B9 -	cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256     uint16 = 0x00BA -	cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256  uint16 = 0x00BB -	cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256  uint16 = 0x00BC -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BD -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BE -	cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0x00BF -	cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256     uint16 = 0x00C0 -	cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256  uint16 = 0x00C1 -	cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256  uint16 = 0x00C2 -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C3 -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C4 -	cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256 uint16 = 0x00C5 -	// Unassigned uint16 =  0x00C6-FE -	cipher_TLS_EMPTY_RENEGOTIATION_INFO_SCSV uint16 = 0x00FF -	// Unassigned uint16 =  0x01-55,* -	cipher_TLS_FALLBACK_SCSV uint16 = 0x5600 -	// Unassigned                                   uint16 = 0x5601 - 0xC000 -	cipher_TLS_ECDH_ECDSA_WITH_NULL_SHA                 uint16 = 0xC001 -	cipher_TLS_ECDH_ECDSA_WITH_RC4_128_SHA              uint16 = 0xC002 -	cipher_TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA         uint16 = 0xC003 -	cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA          uint16 = 0xC004 -	cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA          uint16 = 0xC005 -	cipher_TLS_ECDHE_ECDSA_WITH_NULL_SHA                uint16 = 0xC006 -	cipher_TLS_ECDHE_ECDSA_WITH_RC4_128_SHA             uint16 = 0xC007 -	cipher_TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA        uint16 = 0xC008 -	cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA         uint16 = 0xC009 -	cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA         uint16 = 0xC00A -	cipher_TLS_ECDH_RSA_WITH_NULL_SHA                   uint16 = 0xC00B -	cipher_TLS_ECDH_RSA_WITH_RC4_128_SHA                uint16 = 0xC00C -	cipher_TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA           uint16 = 0xC00D -	cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA            uint16 = 0xC00E -	cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA            uint16 = 0xC00F -	cipher_TLS_ECDHE_RSA_WITH_NULL_SHA                  uint16 = 0xC010 -	cipher_TLS_ECDHE_RSA_WITH_RC4_128_SHA               uint16 = 0xC011 -	cipher_TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA          uint16 = 0xC012 -	cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA           uint16 = 0xC013 -	cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA           uint16 = 0xC014 -	cipher_TLS_ECDH_anon_WITH_NULL_SHA                  uint16 = 0xC015 -	cipher_TLS_ECDH_anon_WITH_RC4_128_SHA               uint16 = 0xC016 -	cipher_TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA          uint16 = 0xC017 -	cipher_TLS_ECDH_anon_WITH_AES_128_CBC_SHA           uint16 = 0xC018 -	cipher_TLS_ECDH_anon_WITH_AES_256_CBC_SHA           uint16 = 0xC019 -	cipher_TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA            uint16 = 0xC01A -	cipher_TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA        uint16 = 0xC01B -	cipher_TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA        uint16 = 0xC01C -	cipher_TLS_SRP_SHA_WITH_AES_128_CBC_SHA             uint16 = 0xC01D -	cipher_TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA         uint16 = 0xC01E -	cipher_TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA         uint16 = 0xC01F -	cipher_TLS_SRP_SHA_WITH_AES_256_CBC_SHA             uint16 = 0xC020 -	cipher_TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA         uint16 = 0xC021 -	cipher_TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA         uint16 = 0xC022 -	cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256      uint16 = 0xC023 -	cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384      uint16 = 0xC024 -	cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256       uint16 = 0xC025 -	cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384       uint16 = 0xC026 -	cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256        uint16 = 0xC027 -	cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384        uint16 = 0xC028 -	cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256         uint16 = 0xC029 -	cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384         uint16 = 0xC02A -	cipher_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256      uint16 = 0xC02B -	cipher_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384      uint16 = 0xC02C -	cipher_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256       uint16 = 0xC02D -	cipher_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384       uint16 = 0xC02E -	cipher_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256        uint16 = 0xC02F -	cipher_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384        uint16 = 0xC030 -	cipher_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256         uint16 = 0xC031 -	cipher_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384         uint16 = 0xC032 -	cipher_TLS_ECDHE_PSK_WITH_RC4_128_SHA               uint16 = 0xC033 -	cipher_TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA          uint16 = 0xC034 -	cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA           uint16 = 0xC035 -	cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA           uint16 = 0xC036 -	cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256        uint16 = 0xC037 -	cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384        uint16 = 0xC038 -	cipher_TLS_ECDHE_PSK_WITH_NULL_SHA                  uint16 = 0xC039 -	cipher_TLS_ECDHE_PSK_WITH_NULL_SHA256               uint16 = 0xC03A -	cipher_TLS_ECDHE_PSK_WITH_NULL_SHA384               uint16 = 0xC03B -	cipher_TLS_RSA_WITH_ARIA_128_CBC_SHA256             uint16 = 0xC03C -	cipher_TLS_RSA_WITH_ARIA_256_CBC_SHA384             uint16 = 0xC03D -	cipher_TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256          uint16 = 0xC03E -	cipher_TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384          uint16 = 0xC03F -	cipher_TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256          uint16 = 0xC040 -	cipher_TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384          uint16 = 0xC041 -	cipher_TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256         uint16 = 0xC042 -	cipher_TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384         uint16 = 0xC043 -	cipher_TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256         uint16 = 0xC044 -	cipher_TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384         uint16 = 0xC045 -	cipher_TLS_DH_anon_WITH_ARIA_128_CBC_SHA256         uint16 = 0xC046 -	cipher_TLS_DH_anon_WITH_ARIA_256_CBC_SHA384         uint16 = 0xC047 -	cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256     uint16 = 0xC048 -	cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384     uint16 = 0xC049 -	cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256      uint16 = 0xC04A -	cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384      uint16 = 0xC04B -	cipher_TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256       uint16 = 0xC04C -	cipher_TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384       uint16 = 0xC04D -	cipher_TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256        uint16 = 0xC04E -	cipher_TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384        uint16 = 0xC04F -	cipher_TLS_RSA_WITH_ARIA_128_GCM_SHA256             uint16 = 0xC050 -	cipher_TLS_RSA_WITH_ARIA_256_GCM_SHA384             uint16 = 0xC051 -	cipher_TLS_DHE_RSA_WITH_ARIA_128_GCM_SHA256         uint16 = 0xC052 -	cipher_TLS_DHE_RSA_WITH_ARIA_256_GCM_SHA384         uint16 = 0xC053 -	cipher_TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256          uint16 = 0xC054 -	cipher_TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384          uint16 = 0xC055 -	cipher_TLS_DHE_DSS_WITH_ARIA_128_GCM_SHA256         uint16 = 0xC056 -	cipher_TLS_DHE_DSS_WITH_ARIA_256_GCM_SHA384         uint16 = 0xC057 -	cipher_TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256          uint16 = 0xC058 -	cipher_TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384          uint16 = 0xC059 -	cipher_TLS_DH_anon_WITH_ARIA_128_GCM_SHA256         uint16 = 0xC05A -	cipher_TLS_DH_anon_WITH_ARIA_256_GCM_SHA384         uint16 = 0xC05B -	cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_GCM_SHA256     uint16 = 0xC05C -	cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_GCM_SHA384     uint16 = 0xC05D -	cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256      uint16 = 0xC05E -	cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384      uint16 = 0xC05F -	cipher_TLS_ECDHE_RSA_WITH_ARIA_128_GCM_SHA256       uint16 = 0xC060 -	cipher_TLS_ECDHE_RSA_WITH_ARIA_256_GCM_SHA384       uint16 = 0xC061 -	cipher_TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256        uint16 = 0xC062 -	cipher_TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384        uint16 = 0xC063 -	cipher_TLS_PSK_WITH_ARIA_128_CBC_SHA256             uint16 = 0xC064 -	cipher_TLS_PSK_WITH_ARIA_256_CBC_SHA384             uint16 = 0xC065 -	cipher_TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256         uint16 = 0xC066 -	cipher_TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384         uint16 = 0xC067 -	cipher_TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256         uint16 = 0xC068 -	cipher_TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384         uint16 = 0xC069 -	cipher_TLS_PSK_WITH_ARIA_128_GCM_SHA256             uint16 = 0xC06A -	cipher_TLS_PSK_WITH_ARIA_256_GCM_SHA384             uint16 = 0xC06B -	cipher_TLS_DHE_PSK_WITH_ARIA_128_GCM_SHA256         uint16 = 0xC06C -	cipher_TLS_DHE_PSK_WITH_ARIA_256_GCM_SHA384         uint16 = 0xC06D -	cipher_TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256         uint16 = 0xC06E -	cipher_TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384         uint16 = 0xC06F -	cipher_TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256       uint16 = 0xC070 -	cipher_TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384       uint16 = 0xC071 -	cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 uint16 = 0xC072 -	cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 uint16 = 0xC073 -	cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256  uint16 = 0xC074 -	cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384  uint16 = 0xC075 -	cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256   uint16 = 0xC076 -	cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384   uint16 = 0xC077 -	cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256    uint16 = 0xC078 -	cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384    uint16 = 0xC079 -	cipher_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256         uint16 = 0xC07A -	cipher_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384         uint16 = 0xC07B -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256     uint16 = 0xC07C -	cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384     uint16 = 0xC07D -	cipher_TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256      uint16 = 0xC07E -	cipher_TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384      uint16 = 0xC07F -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_GCM_SHA256     uint16 = 0xC080 -	cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_GCM_SHA384     uint16 = 0xC081 -	cipher_TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256      uint16 = 0xC082 -	cipher_TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384      uint16 = 0xC083 -	cipher_TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256     uint16 = 0xC084 -	cipher_TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384     uint16 = 0xC085 -	cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 uint16 = 0xC086 -	cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 uint16 = 0xC087 -	cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256  uint16 = 0xC088 -	cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384  uint16 = 0xC089 -	cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256   uint16 = 0xC08A -	cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384   uint16 = 0xC08B -	cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256    uint16 = 0xC08C -	cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384    uint16 = 0xC08D -	cipher_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256         uint16 = 0xC08E -	cipher_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384         uint16 = 0xC08F -	cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256     uint16 = 0xC090 -	cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384     uint16 = 0xC091 -	cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256     uint16 = 0xC092 -	cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384     uint16 = 0xC093 -	cipher_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256         uint16 = 0xC094 -	cipher_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384         uint16 = 0xC095 -	cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256     uint16 = 0xC096 -	cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384     uint16 = 0xC097 -	cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256     uint16 = 0xC098 -	cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384     uint16 = 0xC099 -	cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256   uint16 = 0xC09A -	cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384   uint16 = 0xC09B -	cipher_TLS_RSA_WITH_AES_128_CCM                     uint16 = 0xC09C -	cipher_TLS_RSA_WITH_AES_256_CCM                     uint16 = 0xC09D -	cipher_TLS_DHE_RSA_WITH_AES_128_CCM                 uint16 = 0xC09E -	cipher_TLS_DHE_RSA_WITH_AES_256_CCM                 uint16 = 0xC09F -	cipher_TLS_RSA_WITH_AES_128_CCM_8                   uint16 = 0xC0A0 -	cipher_TLS_RSA_WITH_AES_256_CCM_8                   uint16 = 0xC0A1 -	cipher_TLS_DHE_RSA_WITH_AES_128_CCM_8               uint16 = 0xC0A2 -	cipher_TLS_DHE_RSA_WITH_AES_256_CCM_8               uint16 = 0xC0A3 -	cipher_TLS_PSK_WITH_AES_128_CCM                     uint16 = 0xC0A4 -	cipher_TLS_PSK_WITH_AES_256_CCM                     uint16 = 0xC0A5 -	cipher_TLS_DHE_PSK_WITH_AES_128_CCM                 uint16 = 0xC0A6 -	cipher_TLS_DHE_PSK_WITH_AES_256_CCM                 uint16 = 0xC0A7 -	cipher_TLS_PSK_WITH_AES_128_CCM_8                   uint16 = 0xC0A8 -	cipher_TLS_PSK_WITH_AES_256_CCM_8                   uint16 = 0xC0A9 -	cipher_TLS_PSK_DHE_WITH_AES_128_CCM_8               uint16 = 0xC0AA -	cipher_TLS_PSK_DHE_WITH_AES_256_CCM_8               uint16 = 0xC0AB -	cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM             uint16 = 0xC0AC -	cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM             uint16 = 0xC0AD -	cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8           uint16 = 0xC0AE -	cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8           uint16 = 0xC0AF -	// Unassigned uint16 =  0xC0B0-FF -	// Unassigned uint16 =  0xC1-CB,* -	// Unassigned uint16 =  0xCC00-A7 -	cipher_TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256   uint16 = 0xCCA8 -	cipher_TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 uint16 = 0xCCA9 -	cipher_TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256     uint16 = 0xCCAA -	cipher_TLS_PSK_WITH_CHACHA20_POLY1305_SHA256         uint16 = 0xCCAB -	cipher_TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256   uint16 = 0xCCAC -	cipher_TLS_DHE_PSK_WITH_CHACHA20_POLY1305_SHA256     uint16 = 0xCCAD -	cipher_TLS_RSA_PSK_WITH_CHACHA20_POLY1305_SHA256     uint16 = 0xCCAE -) - -// isBadCipher reports whether the cipher is blacklisted by the HTTP/2 spec. -// References: -// https://tools.ietf.org/html/rfc7540#appendix-A -// Reject cipher suites from Appendix A. -// "This list includes those cipher suites that do not -// offer an ephemeral key exchange and those that are -// based on the TLS null, stream or block cipher type" -func isBadCipher(cipher uint16) bool { -	switch cipher { -	case cipher_TLS_NULL_WITH_NULL_NULL, -		cipher_TLS_RSA_WITH_NULL_MD5, -		cipher_TLS_RSA_WITH_NULL_SHA, -		cipher_TLS_RSA_EXPORT_WITH_RC4_40_MD5, -		cipher_TLS_RSA_WITH_RC4_128_MD5, -		cipher_TLS_RSA_WITH_RC4_128_SHA, -		cipher_TLS_RSA_EXPORT_WITH_RC2_CBC_40_MD5, -		cipher_TLS_RSA_WITH_IDEA_CBC_SHA, -		cipher_TLS_RSA_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_RSA_WITH_DES_CBC_SHA, -		cipher_TLS_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DH_DSS_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_DES_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DH_RSA_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_DES_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_DES_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_DES_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DH_anon_EXPORT_WITH_RC4_40_MD5, -		cipher_TLS_DH_anon_WITH_RC4_128_MD5, -		cipher_TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA, -		cipher_TLS_DH_anon_WITH_DES_CBC_SHA, -		cipher_TLS_DH_anon_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_KRB5_WITH_DES_CBC_SHA, -		cipher_TLS_KRB5_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_KRB5_WITH_RC4_128_SHA, -		cipher_TLS_KRB5_WITH_IDEA_CBC_SHA, -		cipher_TLS_KRB5_WITH_DES_CBC_MD5, -		cipher_TLS_KRB5_WITH_3DES_EDE_CBC_MD5, -		cipher_TLS_KRB5_WITH_RC4_128_MD5, -		cipher_TLS_KRB5_WITH_IDEA_CBC_MD5, -		cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA, -		cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_SHA, -		cipher_TLS_KRB5_EXPORT_WITH_RC4_40_SHA, -		cipher_TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5, -		cipher_TLS_KRB5_EXPORT_WITH_RC2_CBC_40_MD5, -		cipher_TLS_KRB5_EXPORT_WITH_RC4_40_MD5, -		cipher_TLS_PSK_WITH_NULL_SHA, -		cipher_TLS_DHE_PSK_WITH_NULL_SHA, -		cipher_TLS_RSA_PSK_WITH_NULL_SHA, -		cipher_TLS_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA, -		cipher_TLS_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA, -		cipher_TLS_RSA_WITH_NULL_SHA256, -		cipher_TLS_RSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_RSA_WITH_AES_256_CBC_SHA256, -		cipher_TLS_DH_DSS_WITH_AES_128_CBC_SHA256, -		cipher_TLS_DH_RSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, -		cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_DH_DSS_WITH_AES_256_CBC_SHA256, -		cipher_TLS_DH_RSA_WITH_AES_256_CBC_SHA256, -		cipher_TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, -		cipher_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, -		cipher_TLS_DH_anon_WITH_AES_128_CBC_SHA256, -		cipher_TLS_DH_anon_WITH_AES_256_CBC_SHA256, -		cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA, -		cipher_TLS_PSK_WITH_RC4_128_SHA, -		cipher_TLS_PSK_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_PSK_WITH_AES_128_CBC_SHA, -		cipher_TLS_PSK_WITH_AES_256_CBC_SHA, -		cipher_TLS_DHE_PSK_WITH_RC4_128_SHA, -		cipher_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA, -		cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA, -		cipher_TLS_RSA_PSK_WITH_RC4_128_SHA, -		cipher_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA, -		cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA, -		cipher_TLS_RSA_WITH_SEED_CBC_SHA, -		cipher_TLS_DH_DSS_WITH_SEED_CBC_SHA, -		cipher_TLS_DH_RSA_WITH_SEED_CBC_SHA, -		cipher_TLS_DHE_DSS_WITH_SEED_CBC_SHA, -		cipher_TLS_DHE_RSA_WITH_SEED_CBC_SHA, -		cipher_TLS_DH_anon_WITH_SEED_CBC_SHA, -		cipher_TLS_RSA_WITH_AES_128_GCM_SHA256, -		cipher_TLS_RSA_WITH_AES_256_GCM_SHA384, -		cipher_TLS_DH_RSA_WITH_AES_128_GCM_SHA256, -		cipher_TLS_DH_RSA_WITH_AES_256_GCM_SHA384, -		cipher_TLS_DH_DSS_WITH_AES_128_GCM_SHA256, -		cipher_TLS_DH_DSS_WITH_AES_256_GCM_SHA384, -		cipher_TLS_DH_anon_WITH_AES_128_GCM_SHA256, -		cipher_TLS_DH_anon_WITH_AES_256_GCM_SHA384, -		cipher_TLS_PSK_WITH_AES_128_GCM_SHA256, -		cipher_TLS_PSK_WITH_AES_256_GCM_SHA384, -		cipher_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256, -		cipher_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384, -		cipher_TLS_PSK_WITH_AES_128_CBC_SHA256, -		cipher_TLS_PSK_WITH_AES_256_CBC_SHA384, -		cipher_TLS_PSK_WITH_NULL_SHA256, -		cipher_TLS_PSK_WITH_NULL_SHA384, -		cipher_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256, -		cipher_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384, -		cipher_TLS_DHE_PSK_WITH_NULL_SHA256, -		cipher_TLS_DHE_PSK_WITH_NULL_SHA384, -		cipher_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256, -		cipher_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384, -		cipher_TLS_RSA_PSK_WITH_NULL_SHA256, -		cipher_TLS_RSA_PSK_WITH_NULL_SHA384, -		cipher_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DH_anon_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_DH_anon_WITH_CAMELLIA_256_CBC_SHA256, -		cipher_TLS_EMPTY_RENEGOTIATION_INFO_SCSV, -		cipher_TLS_ECDH_ECDSA_WITH_NULL_SHA, -		cipher_TLS_ECDH_ECDSA_WITH_RC4_128_SHA, -		cipher_TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_NULL_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_RC4_128_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDH_RSA_WITH_NULL_SHA, -		cipher_TLS_ECDH_RSA_WITH_RC4_128_SHA, -		cipher_TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDHE_RSA_WITH_NULL_SHA, -		cipher_TLS_ECDHE_RSA_WITH_RC4_128_SHA, -		cipher_TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDH_anon_WITH_NULL_SHA, -		cipher_TLS_ECDH_anon_WITH_RC4_128_SHA, -		cipher_TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDH_anon_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDH_anon_WITH_AES_256_CBC_SHA, -		cipher_TLS_SRP_SHA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_SRP_SHA_RSA_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_SRP_SHA_DSS_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_SRP_SHA_WITH_AES_128_CBC_SHA, -		cipher_TLS_SRP_SHA_RSA_WITH_AES_128_CBC_SHA, -		cipher_TLS_SRP_SHA_DSS_WITH_AES_128_CBC_SHA, -		cipher_TLS_SRP_SHA_WITH_AES_256_CBC_SHA, -		cipher_TLS_SRP_SHA_RSA_WITH_AES_256_CBC_SHA, -		cipher_TLS_SRP_SHA_DSS_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, -		cipher_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, -		cipher_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, -		cipher_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, -		cipher_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, -		cipher_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, -		cipher_TLS_ECDHE_PSK_WITH_RC4_128_SHA, -		cipher_TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA, -		cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA, -		cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA, -		cipher_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256, -		cipher_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384, -		cipher_TLS_ECDHE_PSK_WITH_NULL_SHA, -		cipher_TLS_ECDHE_PSK_WITH_NULL_SHA256, -		cipher_TLS_ECDHE_PSK_WITH_NULL_SHA384, -		cipher_TLS_RSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_RSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DH_DSS_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DH_DSS_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DH_RSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DH_RSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DHE_DSS_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DHE_DSS_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DHE_RSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DHE_RSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DH_anon_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DH_anon_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_ECDHE_ECDSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_ECDSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_ECDHE_RSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_RSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_ECDH_RSA_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_ECDH_RSA_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_RSA_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_RSA_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_DH_RSA_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_DH_RSA_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_DH_DSS_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_DH_DSS_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_DH_anon_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_DH_anon_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_ECDH_RSA_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_ECDH_RSA_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_PSK_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_PSK_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_DHE_PSK_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_DHE_PSK_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_RSA_PSK_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_RSA_PSK_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_PSK_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_PSK_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_RSA_PSK_WITH_ARIA_128_GCM_SHA256, -		cipher_TLS_RSA_PSK_WITH_ARIA_256_GCM_SHA384, -		cipher_TLS_ECDHE_PSK_WITH_ARIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_PSK_WITH_ARIA_256_CBC_SHA384, -		cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_DH_RSA_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_DH_DSS_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_DH_anon_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_DH_anon_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256, -		cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384, -		cipher_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256, -		cipher_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384, -		cipher_TLS_RSA_WITH_AES_128_CCM, -		cipher_TLS_RSA_WITH_AES_256_CCM, -		cipher_TLS_RSA_WITH_AES_128_CCM_8, -		cipher_TLS_RSA_WITH_AES_256_CCM_8, -		cipher_TLS_PSK_WITH_AES_128_CCM, -		cipher_TLS_PSK_WITH_AES_256_CCM, -		cipher_TLS_PSK_WITH_AES_128_CCM_8, -		cipher_TLS_PSK_WITH_AES_256_CCM_8: -		return true -	default: -		return false -	} -} diff --git a/vendor/golang.org/x/net/http2/client_conn_pool.go b/vendor/golang.org/x/net/http2/client_conn_pool.go deleted file mode 100644 index e81b73e6a..000000000 --- a/vendor/golang.org/x/net/http2/client_conn_pool.go +++ /dev/null @@ -1,311 +0,0 @@ -// 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. - -// Transport code's client connection pooling. - -package http2 - -import ( -	"context" -	"errors" -	"net" -	"net/http" -	"sync" -) - -// ClientConnPool manages a pool of HTTP/2 client connections. -type ClientConnPool interface { -	// GetClientConn returns a specific HTTP/2 connection (usually -	// a TLS-TCP connection) to an HTTP/2 server. On success, the -	// returned ClientConn accounts for the upcoming RoundTrip -	// call, so the caller should not omit it. If the caller needs -	// to, ClientConn.RoundTrip can be called with a bogus -	// new(http.Request) to release the stream reservation. -	GetClientConn(req *http.Request, addr string) (*ClientConn, error) -	MarkDead(*ClientConn) -} - -// clientConnPoolIdleCloser is the interface implemented by ClientConnPool -// implementations which can close their idle connections. -type clientConnPoolIdleCloser interface { -	ClientConnPool -	closeIdleConnections() -} - -var ( -	_ clientConnPoolIdleCloser = (*clientConnPool)(nil) -	_ clientConnPoolIdleCloser = noDialClientConnPool{} -) - -// TODO: use singleflight for dialing and addConnCalls? -type clientConnPool struct { -	t *Transport - -	mu sync.Mutex // TODO: maybe switch to RWMutex -	// TODO: add support for sharing conns based on cert names -	// (e.g. share conn for googleapis.com and appspot.com) -	conns        map[string][]*ClientConn // key is host:port -	dialing      map[string]*dialCall     // currently in-flight dials -	keys         map[*ClientConn][]string -	addConnCalls map[string]*addConnCall // in-flight addConnIfNeeded calls -} - -func (p *clientConnPool) GetClientConn(req *http.Request, addr string) (*ClientConn, error) { -	return p.getClientConn(req, addr, dialOnMiss) -} - -const ( -	dialOnMiss   = true -	noDialOnMiss = false -) - -func (p *clientConnPool) getClientConn(req *http.Request, addr string, dialOnMiss bool) (*ClientConn, error) { -	// TODO(dneil): Dial a new connection when t.DisableKeepAlives is set? -	if isConnectionCloseRequest(req) && dialOnMiss { -		// It gets its own connection. -		traceGetConn(req, addr) -		const singleUse = true -		cc, err := p.t.dialClientConn(req.Context(), addr, singleUse) -		if err != nil { -			return nil, err -		} -		return cc, nil -	} -	for { -		p.mu.Lock() -		for _, cc := range p.conns[addr] { -			if cc.ReserveNewRequest() { -				// When a connection is presented to us by the net/http package, -				// the GetConn hook has already been called. -				// Don't call it a second time here. -				if !cc.getConnCalled { -					traceGetConn(req, addr) -				} -				cc.getConnCalled = false -				p.mu.Unlock() -				return cc, nil -			} -		} -		if !dialOnMiss { -			p.mu.Unlock() -			return nil, ErrNoCachedConn -		} -		traceGetConn(req, addr) -		call := p.getStartDialLocked(req.Context(), addr) -		p.mu.Unlock() -		<-call.done -		if shouldRetryDial(call, req) { -			continue -		} -		cc, err := call.res, call.err -		if err != nil { -			return nil, err -		} -		if cc.ReserveNewRequest() { -			return cc, nil -		} -	} -} - -// dialCall is an in-flight Transport dial call to a host. -type dialCall struct { -	_ incomparable -	p *clientConnPool -	// the context associated with the request -	// that created this dialCall -	ctx  context.Context -	done chan struct{} // closed when done -	res  *ClientConn   // valid after done is closed -	err  error         // valid after done is closed -} - -// requires p.mu is held. -func (p *clientConnPool) getStartDialLocked(ctx context.Context, addr string) *dialCall { -	if call, ok := p.dialing[addr]; ok { -		// A dial is already in-flight. Don't start another. -		return call -	} -	call := &dialCall{p: p, done: make(chan struct{}), ctx: ctx} -	if p.dialing == nil { -		p.dialing = make(map[string]*dialCall) -	} -	p.dialing[addr] = call -	go call.dial(call.ctx, addr) -	return call -} - -// run in its own goroutine. -func (c *dialCall) dial(ctx context.Context, addr string) { -	const singleUse = false // shared conn -	c.res, c.err = c.p.t.dialClientConn(ctx, addr, singleUse) - -	c.p.mu.Lock() -	delete(c.p.dialing, addr) -	if c.err == nil { -		c.p.addConnLocked(addr, c.res) -	} -	c.p.mu.Unlock() - -	close(c.done) -} - -// addConnIfNeeded makes a NewClientConn out of c if a connection for key doesn't -// already exist. It coalesces concurrent calls with the same key. -// This is used by the http1 Transport code when it creates a new connection. Because -// the http1 Transport doesn't de-dup TCP dials to outbound hosts (because it doesn't know -// the protocol), it can get into a situation where it has multiple TLS connections. -// This code decides which ones live or die. -// The return value used is whether c was used. -// c is never closed. -func (p *clientConnPool) addConnIfNeeded(key string, t *Transport, c net.Conn) (used bool, err error) { -	p.mu.Lock() -	for _, cc := range p.conns[key] { -		if cc.CanTakeNewRequest() { -			p.mu.Unlock() -			return false, nil -		} -	} -	call, dup := p.addConnCalls[key] -	if !dup { -		if p.addConnCalls == nil { -			p.addConnCalls = make(map[string]*addConnCall) -		} -		call = &addConnCall{ -			p:    p, -			done: make(chan struct{}), -		} -		p.addConnCalls[key] = call -		go call.run(t, key, c) -	} -	p.mu.Unlock() - -	<-call.done -	if call.err != nil { -		return false, call.err -	} -	return !dup, nil -} - -type addConnCall struct { -	_    incomparable -	p    *clientConnPool -	done chan struct{} // closed when done -	err  error -} - -func (c *addConnCall) run(t *Transport, key string, nc net.Conn) { -	cc, err := t.NewClientConn(nc) - -	p := c.p -	p.mu.Lock() -	if err != nil { -		c.err = err -	} else { -		cc.getConnCalled = true // already called by the net/http package -		p.addConnLocked(key, cc) -	} -	delete(p.addConnCalls, key) -	p.mu.Unlock() -	close(c.done) -} - -// p.mu must be held -func (p *clientConnPool) addConnLocked(key string, cc *ClientConn) { -	for _, v := range p.conns[key] { -		if v == cc { -			return -		} -	} -	if p.conns == nil { -		p.conns = make(map[string][]*ClientConn) -	} -	if p.keys == nil { -		p.keys = make(map[*ClientConn][]string) -	} -	p.conns[key] = append(p.conns[key], cc) -	p.keys[cc] = append(p.keys[cc], key) -} - -func (p *clientConnPool) MarkDead(cc *ClientConn) { -	p.mu.Lock() -	defer p.mu.Unlock() -	for _, key := range p.keys[cc] { -		vv, ok := p.conns[key] -		if !ok { -			continue -		} -		newList := filterOutClientConn(vv, cc) -		if len(newList) > 0 { -			p.conns[key] = newList -		} else { -			delete(p.conns, key) -		} -	} -	delete(p.keys, cc) -} - -func (p *clientConnPool) closeIdleConnections() { -	p.mu.Lock() -	defer p.mu.Unlock() -	// TODO: don't close a cc if it was just added to the pool -	// milliseconds ago and has never been used. There's currently -	// a small race window with the HTTP/1 Transport's integration -	// where it can add an idle conn just before using it, and -	// somebody else can concurrently call CloseIdleConns and -	// break some caller's RoundTrip. -	for _, vv := range p.conns { -		for _, cc := range vv { -			cc.closeIfIdle() -		} -	} -} - -func filterOutClientConn(in []*ClientConn, exclude *ClientConn) []*ClientConn { -	out := in[:0] -	for _, v := range in { -		if v != exclude { -			out = append(out, v) -		} -	} -	// If we filtered it out, zero out the last item to prevent -	// the GC from seeing it. -	if len(in) != len(out) { -		in[len(in)-1] = nil -	} -	return out -} - -// noDialClientConnPool is an implementation of http2.ClientConnPool -// which never dials. We let the HTTP/1.1 client dial and use its TLS -// connection instead. -type noDialClientConnPool struct{ *clientConnPool } - -func (p noDialClientConnPool) GetClientConn(req *http.Request, addr string) (*ClientConn, error) { -	return p.getClientConn(req, addr, noDialOnMiss) -} - -// shouldRetryDial reports whether the current request should -// retry dialing after the call finished unsuccessfully, for example -// if the dial was canceled because of a context cancellation or -// deadline expiry. -func shouldRetryDial(call *dialCall, req *http.Request) bool { -	if call.err == nil { -		// No error, no need to retry -		return false -	} -	if call.ctx == req.Context() { -		// If the call has the same context as the request, the dial -		// should not be retried, since any cancellation will have come -		// from this request. -		return false -	} -	if !errors.Is(call.err, context.Canceled) && !errors.Is(call.err, context.DeadlineExceeded) { -		// If the call error is not because of a context cancellation or a deadline expiry, -		// the dial should not be retried. -		return false -	} -	// Only retry if the error is a context cancellation error or deadline expiry -	// and the context associated with the call was canceled or expired. -	return call.ctx.Err() != nil -} diff --git a/vendor/golang.org/x/net/http2/config.go b/vendor/golang.org/x/net/http2/config.go deleted file mode 100644 index ca645d9a1..000000000 --- a/vendor/golang.org/x/net/http2/config.go +++ /dev/null @@ -1,122 +0,0 @@ -// Copyright 2024 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. - -package http2 - -import ( -	"math" -	"net/http" -	"time" -) - -// http2Config is a package-internal version of net/http.HTTP2Config. -// -// http.HTTP2Config was added in Go 1.24. -// When running with a version of net/http that includes HTTP2Config, -// we merge the configuration with the fields in Transport or Server -// to produce an http2Config. -// -// Zero valued fields in http2Config are interpreted as in the -// net/http.HTTPConfig documentation. -// -// Precedence order for reconciling configurations is: -// -//   - Use the net/http.{Server,Transport}.HTTP2Config value, when non-zero. -//   - Otherwise use the http2.{Server.Transport} value. -//   - If the resulting value is zero or out of range, use a default. -type http2Config struct { -	MaxConcurrentStreams         uint32 -	MaxDecoderHeaderTableSize    uint32 -	MaxEncoderHeaderTableSize    uint32 -	MaxReadFrameSize             uint32 -	MaxUploadBufferPerConnection int32 -	MaxUploadBufferPerStream     int32 -	SendPingTimeout              time.Duration -	PingTimeout                  time.Duration -	WriteByteTimeout             time.Duration -	PermitProhibitedCipherSuites bool -	CountError                   func(errType string) -} - -// configFromServer merges configuration settings from -// net/http.Server.HTTP2Config and http2.Server. -func configFromServer(h1 *http.Server, h2 *Server) http2Config { -	conf := http2Config{ -		MaxConcurrentStreams:         h2.MaxConcurrentStreams, -		MaxEncoderHeaderTableSize:    h2.MaxEncoderHeaderTableSize, -		MaxDecoderHeaderTableSize:    h2.MaxDecoderHeaderTableSize, -		MaxReadFrameSize:             h2.MaxReadFrameSize, -		MaxUploadBufferPerConnection: h2.MaxUploadBufferPerConnection, -		MaxUploadBufferPerStream:     h2.MaxUploadBufferPerStream, -		SendPingTimeout:              h2.ReadIdleTimeout, -		PingTimeout:                  h2.PingTimeout, -		WriteByteTimeout:             h2.WriteByteTimeout, -		PermitProhibitedCipherSuites: h2.PermitProhibitedCipherSuites, -		CountError:                   h2.CountError, -	} -	fillNetHTTPServerConfig(&conf, h1) -	setConfigDefaults(&conf, true) -	return conf -} - -// configFromTransport merges configuration settings from h2 and h2.t1.HTTP2 -// (the net/http Transport). -func configFromTransport(h2 *Transport) http2Config { -	conf := http2Config{ -		MaxEncoderHeaderTableSize: h2.MaxEncoderHeaderTableSize, -		MaxDecoderHeaderTableSize: h2.MaxDecoderHeaderTableSize, -		MaxReadFrameSize:          h2.MaxReadFrameSize, -		SendPingTimeout:           h2.ReadIdleTimeout, -		PingTimeout:               h2.PingTimeout, -		WriteByteTimeout:          h2.WriteByteTimeout, -	} - -	// Unlike most config fields, where out-of-range values revert to the default, -	// Transport.MaxReadFrameSize clips. -	if conf.MaxReadFrameSize < minMaxFrameSize { -		conf.MaxReadFrameSize = minMaxFrameSize -	} else if conf.MaxReadFrameSize > maxFrameSize { -		conf.MaxReadFrameSize = maxFrameSize -	} - -	if h2.t1 != nil { -		fillNetHTTPTransportConfig(&conf, h2.t1) -	} -	setConfigDefaults(&conf, false) -	return conf -} - -func setDefault[T ~int | ~int32 | ~uint32 | ~int64](v *T, minval, maxval, defval T) { -	if *v < minval || *v > maxval { -		*v = defval -	} -} - -func setConfigDefaults(conf *http2Config, server bool) { -	setDefault(&conf.MaxConcurrentStreams, 1, math.MaxUint32, defaultMaxStreams) -	setDefault(&conf.MaxEncoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize) -	setDefault(&conf.MaxDecoderHeaderTableSize, 1, math.MaxUint32, initialHeaderTableSize) -	if server { -		setDefault(&conf.MaxUploadBufferPerConnection, initialWindowSize, math.MaxInt32, 1<<20) -	} else { -		setDefault(&conf.MaxUploadBufferPerConnection, initialWindowSize, math.MaxInt32, transportDefaultConnFlow) -	} -	if server { -		setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, 1<<20) -	} else { -		setDefault(&conf.MaxUploadBufferPerStream, 1, math.MaxInt32, transportDefaultStreamFlow) -	} -	setDefault(&conf.MaxReadFrameSize, minMaxFrameSize, maxFrameSize, defaultMaxReadFrameSize) -	setDefault(&conf.PingTimeout, 1, math.MaxInt64, 15*time.Second) -} - -// adjustHTTP1MaxHeaderSize converts a limit in bytes on the size of an HTTP/1 header -// to an HTTP/2 MAX_HEADER_LIST_SIZE value. -func adjustHTTP1MaxHeaderSize(n int64) int64 { -	// http2's count is in a slightly different unit and includes 32 bytes per pair. -	// So, take the net/http.Server value and pad it up a bit, assuming 10 headers. -	const perFieldOverhead = 32 // per http2 spec -	const typicalHeaders = 10   // conservative -	return n + typicalHeaders*perFieldOverhead -} diff --git a/vendor/golang.org/x/net/http2/config_go124.go b/vendor/golang.org/x/net/http2/config_go124.go deleted file mode 100644 index 5b516c55f..000000000 --- a/vendor/golang.org/x/net/http2/config_go124.go +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright 2024 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 go1.24 - -package http2 - -import "net/http" - -// fillNetHTTPServerConfig sets fields in conf from srv.HTTP2. -func fillNetHTTPServerConfig(conf *http2Config, srv *http.Server) { -	fillNetHTTPConfig(conf, srv.HTTP2) -} - -// fillNetHTTPTransportConfig sets fields in conf from tr.HTTP2. -func fillNetHTTPTransportConfig(conf *http2Config, tr *http.Transport) { -	fillNetHTTPConfig(conf, tr.HTTP2) -} - -func fillNetHTTPConfig(conf *http2Config, h2 *http.HTTP2Config) { -	if h2 == nil { -		return -	} -	if h2.MaxConcurrentStreams != 0 { -		conf.MaxConcurrentStreams = uint32(h2.MaxConcurrentStreams) -	} -	if h2.MaxEncoderHeaderTableSize != 0 { -		conf.MaxEncoderHeaderTableSize = uint32(h2.MaxEncoderHeaderTableSize) -	} -	if h2.MaxDecoderHeaderTableSize != 0 { -		conf.MaxDecoderHeaderTableSize = uint32(h2.MaxDecoderHeaderTableSize) -	} -	if h2.MaxConcurrentStreams != 0 { -		conf.MaxConcurrentStreams = uint32(h2.MaxConcurrentStreams) -	} -	if h2.MaxReadFrameSize != 0 { -		conf.MaxReadFrameSize = uint32(h2.MaxReadFrameSize) -	} -	if h2.MaxReceiveBufferPerConnection != 0 { -		conf.MaxUploadBufferPerConnection = int32(h2.MaxReceiveBufferPerConnection) -	} -	if h2.MaxReceiveBufferPerStream != 0 { -		conf.MaxUploadBufferPerStream = int32(h2.MaxReceiveBufferPerStream) -	} -	if h2.SendPingTimeout != 0 { -		conf.SendPingTimeout = h2.SendPingTimeout -	} -	if h2.PingTimeout != 0 { -		conf.PingTimeout = h2.PingTimeout -	} -	if h2.WriteByteTimeout != 0 { -		conf.WriteByteTimeout = h2.WriteByteTimeout -	} -	if h2.PermitProhibitedCipherSuites { -		conf.PermitProhibitedCipherSuites = true -	} -	if h2.CountError != nil { -		conf.CountError = h2.CountError -	} -} diff --git a/vendor/golang.org/x/net/http2/config_pre_go124.go b/vendor/golang.org/x/net/http2/config_pre_go124.go deleted file mode 100644 index 060fd6c64..000000000 --- a/vendor/golang.org/x/net/http2/config_pre_go124.go +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2024 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 !go1.24 - -package http2 - -import "net/http" - -// Pre-Go 1.24 fallback. -// The Server.HTTP2 and Transport.HTTP2 config fields were added in Go 1.24. - -func fillNetHTTPServerConfig(conf *http2Config, srv *http.Server) {} - -func fillNetHTTPTransportConfig(conf *http2Config, tr *http.Transport) {} diff --git a/vendor/golang.org/x/net/http2/databuffer.go b/vendor/golang.org/x/net/http2/databuffer.go deleted file mode 100644 index e6f55cbd1..000000000 --- a/vendor/golang.org/x/net/http2/databuffer.go +++ /dev/null @@ -1,149 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import ( -	"errors" -	"fmt" -	"sync" -) - -// Buffer chunks are allocated from a pool to reduce pressure on GC. -// The maximum wasted space per dataBuffer is 2x the largest size class, -// which happens when the dataBuffer has multiple chunks and there is -// one unread byte in both the first and last chunks. We use a few size -// classes to minimize overheads for servers that typically receive very -// small request bodies. -// -// TODO: Benchmark to determine if the pools are necessary. The GC may have -// improved enough that we can instead allocate chunks like this: -// make([]byte, max(16<<10, expectedBytesRemaining)) -var dataChunkPools = [...]sync.Pool{ -	{New: func() interface{} { return new([1 << 10]byte) }}, -	{New: func() interface{} { return new([2 << 10]byte) }}, -	{New: func() interface{} { return new([4 << 10]byte) }}, -	{New: func() interface{} { return new([8 << 10]byte) }}, -	{New: func() interface{} { return new([16 << 10]byte) }}, -} - -func getDataBufferChunk(size int64) []byte { -	switch { -	case size <= 1<<10: -		return dataChunkPools[0].Get().(*[1 << 10]byte)[:] -	case size <= 2<<10: -		return dataChunkPools[1].Get().(*[2 << 10]byte)[:] -	case size <= 4<<10: -		return dataChunkPools[2].Get().(*[4 << 10]byte)[:] -	case size <= 8<<10: -		return dataChunkPools[3].Get().(*[8 << 10]byte)[:] -	default: -		return dataChunkPools[4].Get().(*[16 << 10]byte)[:] -	} -} - -func putDataBufferChunk(p []byte) { -	switch len(p) { -	case 1 << 10: -		dataChunkPools[0].Put((*[1 << 10]byte)(p)) -	case 2 << 10: -		dataChunkPools[1].Put((*[2 << 10]byte)(p)) -	case 4 << 10: -		dataChunkPools[2].Put((*[4 << 10]byte)(p)) -	case 8 << 10: -		dataChunkPools[3].Put((*[8 << 10]byte)(p)) -	case 16 << 10: -		dataChunkPools[4].Put((*[16 << 10]byte)(p)) -	default: -		panic(fmt.Sprintf("unexpected buffer len=%v", len(p))) -	} -} - -// dataBuffer is an io.ReadWriter backed by a list of data chunks. -// Each dataBuffer is used to read DATA frames on a single stream. -// The buffer is divided into chunks so the server can limit the -// total memory used by a single connection without limiting the -// request body size on any single stream. -type dataBuffer struct { -	chunks   [][]byte -	r        int   // next byte to read is chunks[0][r] -	w        int   // next byte to write is chunks[len(chunks)-1][w] -	size     int   // total buffered bytes -	expected int64 // we expect at least this many bytes in future Write calls (ignored if <= 0) -} - -var errReadEmpty = errors.New("read from empty dataBuffer") - -// Read copies bytes from the buffer into p. -// It is an error to read when no data is available. -func (b *dataBuffer) Read(p []byte) (int, error) { -	if b.size == 0 { -		return 0, errReadEmpty -	} -	var ntotal int -	for len(p) > 0 && b.size > 0 { -		readFrom := b.bytesFromFirstChunk() -		n := copy(p, readFrom) -		p = p[n:] -		ntotal += n -		b.r += n -		b.size -= n -		// If the first chunk has been consumed, advance to the next chunk. -		if b.r == len(b.chunks[0]) { -			putDataBufferChunk(b.chunks[0]) -			end := len(b.chunks) - 1 -			copy(b.chunks[:end], b.chunks[1:]) -			b.chunks[end] = nil -			b.chunks = b.chunks[:end] -			b.r = 0 -		} -	} -	return ntotal, nil -} - -func (b *dataBuffer) bytesFromFirstChunk() []byte { -	if len(b.chunks) == 1 { -		return b.chunks[0][b.r:b.w] -	} -	return b.chunks[0][b.r:] -} - -// Len returns the number of bytes of the unread portion of the buffer. -func (b *dataBuffer) Len() int { -	return b.size -} - -// Write appends p to the buffer. -func (b *dataBuffer) Write(p []byte) (int, error) { -	ntotal := len(p) -	for len(p) > 0 { -		// If the last chunk is empty, allocate a new chunk. Try to allocate -		// enough to fully copy p plus any additional bytes we expect to -		// receive. However, this may allocate less than len(p). -		want := int64(len(p)) -		if b.expected > want { -			want = b.expected -		} -		chunk := b.lastChunkOrAlloc(want) -		n := copy(chunk[b.w:], p) -		p = p[n:] -		b.w += n -		b.size += n -		b.expected -= int64(n) -	} -	return ntotal, nil -} - -func (b *dataBuffer) lastChunkOrAlloc(want int64) []byte { -	if len(b.chunks) != 0 { -		last := b.chunks[len(b.chunks)-1] -		if b.w < len(last) { -			return last -		} -	} -	chunk := getDataBufferChunk(want) -	b.chunks = append(b.chunks, chunk) -	b.w = 0 -	return chunk -} diff --git a/vendor/golang.org/x/net/http2/errors.go b/vendor/golang.org/x/net/http2/errors.go deleted file mode 100644 index f2067dabc..000000000 --- a/vendor/golang.org/x/net/http2/errors.go +++ /dev/null @@ -1,145 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import ( -	"errors" -	"fmt" -) - -// An ErrCode is an unsigned 32-bit error code as defined in the HTTP/2 spec. -type ErrCode uint32 - -const ( -	ErrCodeNo                 ErrCode = 0x0 -	ErrCodeProtocol           ErrCode = 0x1 -	ErrCodeInternal           ErrCode = 0x2 -	ErrCodeFlowControl        ErrCode = 0x3 -	ErrCodeSettingsTimeout    ErrCode = 0x4 -	ErrCodeStreamClosed       ErrCode = 0x5 -	ErrCodeFrameSize          ErrCode = 0x6 -	ErrCodeRefusedStream      ErrCode = 0x7 -	ErrCodeCancel             ErrCode = 0x8 -	ErrCodeCompression        ErrCode = 0x9 -	ErrCodeConnect            ErrCode = 0xa -	ErrCodeEnhanceYourCalm    ErrCode = 0xb -	ErrCodeInadequateSecurity ErrCode = 0xc -	ErrCodeHTTP11Required     ErrCode = 0xd -) - -var errCodeName = map[ErrCode]string{ -	ErrCodeNo:                 "NO_ERROR", -	ErrCodeProtocol:           "PROTOCOL_ERROR", -	ErrCodeInternal:           "INTERNAL_ERROR", -	ErrCodeFlowControl:        "FLOW_CONTROL_ERROR", -	ErrCodeSettingsTimeout:    "SETTINGS_TIMEOUT", -	ErrCodeStreamClosed:       "STREAM_CLOSED", -	ErrCodeFrameSize:          "FRAME_SIZE_ERROR", -	ErrCodeRefusedStream:      "REFUSED_STREAM", -	ErrCodeCancel:             "CANCEL", -	ErrCodeCompression:        "COMPRESSION_ERROR", -	ErrCodeConnect:            "CONNECT_ERROR", -	ErrCodeEnhanceYourCalm:    "ENHANCE_YOUR_CALM", -	ErrCodeInadequateSecurity: "INADEQUATE_SECURITY", -	ErrCodeHTTP11Required:     "HTTP_1_1_REQUIRED", -} - -func (e ErrCode) String() string { -	if s, ok := errCodeName[e]; ok { -		return s -	} -	return fmt.Sprintf("unknown error code 0x%x", uint32(e)) -} - -func (e ErrCode) stringToken() string { -	if s, ok := errCodeName[e]; ok { -		return s -	} -	return fmt.Sprintf("ERR_UNKNOWN_%d", uint32(e)) -} - -// ConnectionError is an error that results in the termination of the -// entire connection. -type ConnectionError ErrCode - -func (e ConnectionError) Error() string { return fmt.Sprintf("connection error: %s", ErrCode(e)) } - -// StreamError is an error that only affects one stream within an -// HTTP/2 connection. -type StreamError struct { -	StreamID uint32 -	Code     ErrCode -	Cause    error // optional additional detail -} - -// errFromPeer is a sentinel error value for StreamError.Cause to -// indicate that the StreamError was sent from the peer over the wire -// and wasn't locally generated in the Transport. -var errFromPeer = errors.New("received from peer") - -func streamError(id uint32, code ErrCode) StreamError { -	return StreamError{StreamID: id, Code: code} -} - -func (e StreamError) Error() string { -	if e.Cause != nil { -		return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause) -	} -	return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code) -} - -// 6.9.1 The Flow Control Window -// "If a sender receives a WINDOW_UPDATE that causes a flow control -// window to exceed this maximum it MUST terminate either the stream -// or the connection, as appropriate. For streams, [...]; for the -// connection, a GOAWAY frame with a FLOW_CONTROL_ERROR code." -type goAwayFlowError struct{} - -func (goAwayFlowError) Error() string { return "connection exceeded flow control window size" } - -// connError represents an HTTP/2 ConnectionError error code, along -// with a string (for debugging) explaining why. -// -// Errors of this type are only returned by the frame parser functions -// and converted into ConnectionError(Code), after stashing away -// the Reason into the Framer's errDetail field, accessible via -// the (*Framer).ErrorDetail method. -type connError struct { -	Code   ErrCode // the ConnectionError error code -	Reason string  // additional reason -} - -func (e connError) Error() string { -	return fmt.Sprintf("http2: connection error: %v: %v", e.Code, e.Reason) -} - -type pseudoHeaderError string - -func (e pseudoHeaderError) Error() string { -	return fmt.Sprintf("invalid pseudo-header %q", string(e)) -} - -type duplicatePseudoHeaderError string - -func (e duplicatePseudoHeaderError) Error() string { -	return fmt.Sprintf("duplicate pseudo-header %q", string(e)) -} - -type headerFieldNameError string - -func (e headerFieldNameError) Error() string { -	return fmt.Sprintf("invalid header field name %q", string(e)) -} - -type headerFieldValueError string - -func (e headerFieldValueError) Error() string { -	return fmt.Sprintf("invalid header field value for %q", string(e)) -} - -var ( -	errMixPseudoHeaderTypes = errors.New("mix of request and response pseudo headers") -	errPseudoAfterRegular   = errors.New("pseudo header field after regular") -) diff --git a/vendor/golang.org/x/net/http2/flow.go b/vendor/golang.org/x/net/http2/flow.go deleted file mode 100644 index b7dbd1869..000000000 --- a/vendor/golang.org/x/net/http2/flow.go +++ /dev/null @@ -1,120 +0,0 @@ -// Copyright 2014 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. - -// Flow control - -package http2 - -// inflowMinRefresh is the minimum number of bytes we'll send for a -// flow control window update. -const inflowMinRefresh = 4 << 10 - -// inflow accounts for an inbound flow control window. -// It tracks both the latest window sent to the peer (used for enforcement) -// and the accumulated unsent window. -type inflow struct { -	avail  int32 -	unsent int32 -} - -// init sets the initial window. -func (f *inflow) init(n int32) { -	f.avail = n -} - -// add adds n bytes to the window, with a maximum window size of max, -// indicating that the peer can now send us more data. -// For example, the user read from a {Request,Response} body and consumed -// some of the buffered data, so the peer can now send more. -// It returns the number of bytes to send in a WINDOW_UPDATE frame to the peer. -// Window updates are accumulated and sent when the unsent capacity -// is at least inflowMinRefresh or will at least double the peer's available window. -func (f *inflow) add(n int) (connAdd int32) { -	if n < 0 { -		panic("negative update") -	} -	unsent := int64(f.unsent) + int64(n) -	// "A sender MUST NOT allow a flow-control window to exceed 2^31-1 octets." -	// RFC 7540 Section 6.9.1. -	const maxWindow = 1<<31 - 1 -	if unsent+int64(f.avail) > maxWindow { -		panic("flow control update exceeds maximum window size") -	} -	f.unsent = int32(unsent) -	if f.unsent < inflowMinRefresh && f.unsent < f.avail { -		// If there aren't at least inflowMinRefresh bytes of window to send, -		// and this update won't at least double the window, buffer the update for later. -		return 0 -	} -	f.avail += f.unsent -	f.unsent = 0 -	return int32(unsent) -} - -// take attempts to take n bytes from the peer's flow control window. -// It reports whether the window has available capacity. -func (f *inflow) take(n uint32) bool { -	if n > uint32(f.avail) { -		return false -	} -	f.avail -= int32(n) -	return true -} - -// takeInflows attempts to take n bytes from two inflows, -// typically connection-level and stream-level flows. -// It reports whether both windows have available capacity. -func takeInflows(f1, f2 *inflow, n uint32) bool { -	if n > uint32(f1.avail) || n > uint32(f2.avail) { -		return false -	} -	f1.avail -= int32(n) -	f2.avail -= int32(n) -	return true -} - -// outflow is the outbound flow control window's size. -type outflow struct { -	_ incomparable - -	// n is the number of DATA bytes we're allowed to send. -	// An outflow is kept both on a conn and a per-stream. -	n int32 - -	// conn points to the shared connection-level outflow that is -	// shared by all streams on that conn. It is nil for the outflow -	// that's on the conn directly. -	conn *outflow -} - -func (f *outflow) setConnFlow(cf *outflow) { f.conn = cf } - -func (f *outflow) available() int32 { -	n := f.n -	if f.conn != nil && f.conn.n < n { -		n = f.conn.n -	} -	return n -} - -func (f *outflow) take(n int32) { -	if n > f.available() { -		panic("internal error: took too much") -	} -	f.n -= n -	if f.conn != nil { -		f.conn.n -= n -	} -} - -// add adds n bytes (positive or negative) to the flow control window. -// It returns false if the sum would exceed 2^31-1. -func (f *outflow) add(n int32) bool { -	sum := f.n + n -	if (sum > n) == (f.n > 0) { -		f.n = sum -		return true -	} -	return false -} diff --git a/vendor/golang.org/x/net/http2/frame.go b/vendor/golang.org/x/net/http2/frame.go deleted file mode 100644 index 81faec7e7..000000000 --- a/vendor/golang.org/x/net/http2/frame.go +++ /dev/null @@ -1,1691 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import ( -	"bytes" -	"encoding/binary" -	"errors" -	"fmt" -	"io" -	"log" -	"strings" -	"sync" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2/hpack" -) - -const frameHeaderLen = 9 - -var padZeros = make([]byte, 255) // zeros for padding - -// A FrameType is a registered frame type as defined in -// https://httpwg.org/specs/rfc7540.html#rfc.section.11.2 -type FrameType uint8 - -const ( -	FrameData         FrameType = 0x0 -	FrameHeaders      FrameType = 0x1 -	FramePriority     FrameType = 0x2 -	FrameRSTStream    FrameType = 0x3 -	FrameSettings     FrameType = 0x4 -	FramePushPromise  FrameType = 0x5 -	FramePing         FrameType = 0x6 -	FrameGoAway       FrameType = 0x7 -	FrameWindowUpdate FrameType = 0x8 -	FrameContinuation FrameType = 0x9 -) - -var frameName = map[FrameType]string{ -	FrameData:         "DATA", -	FrameHeaders:      "HEADERS", -	FramePriority:     "PRIORITY", -	FrameRSTStream:    "RST_STREAM", -	FrameSettings:     "SETTINGS", -	FramePushPromise:  "PUSH_PROMISE", -	FramePing:         "PING", -	FrameGoAway:       "GOAWAY", -	FrameWindowUpdate: "WINDOW_UPDATE", -	FrameContinuation: "CONTINUATION", -} - -func (t FrameType) String() string { -	if s, ok := frameName[t]; ok { -		return s -	} -	return fmt.Sprintf("UNKNOWN_FRAME_TYPE_%d", uint8(t)) -} - -// Flags is a bitmask of HTTP/2 flags. -// The meaning of flags varies depending on the frame type. -type Flags uint8 - -// Has reports whether f contains all (0 or more) flags in v. -func (f Flags) Has(v Flags) bool { -	return (f & v) == v -} - -// Frame-specific FrameHeader flag bits. -const ( -	// Data Frame -	FlagDataEndStream Flags = 0x1 -	FlagDataPadded    Flags = 0x8 - -	// Headers Frame -	FlagHeadersEndStream  Flags = 0x1 -	FlagHeadersEndHeaders Flags = 0x4 -	FlagHeadersPadded     Flags = 0x8 -	FlagHeadersPriority   Flags = 0x20 - -	// Settings Frame -	FlagSettingsAck Flags = 0x1 - -	// Ping Frame -	FlagPingAck Flags = 0x1 - -	// Continuation Frame -	FlagContinuationEndHeaders Flags = 0x4 - -	FlagPushPromiseEndHeaders Flags = 0x4 -	FlagPushPromisePadded     Flags = 0x8 -) - -var flagName = map[FrameType]map[Flags]string{ -	FrameData: { -		FlagDataEndStream: "END_STREAM", -		FlagDataPadded:    "PADDED", -	}, -	FrameHeaders: { -		FlagHeadersEndStream:  "END_STREAM", -		FlagHeadersEndHeaders: "END_HEADERS", -		FlagHeadersPadded:     "PADDED", -		FlagHeadersPriority:   "PRIORITY", -	}, -	FrameSettings: { -		FlagSettingsAck: "ACK", -	}, -	FramePing: { -		FlagPingAck: "ACK", -	}, -	FrameContinuation: { -		FlagContinuationEndHeaders: "END_HEADERS", -	}, -	FramePushPromise: { -		FlagPushPromiseEndHeaders: "END_HEADERS", -		FlagPushPromisePadded:     "PADDED", -	}, -} - -// a frameParser parses a frame given its FrameHeader and payload -// bytes. The length of payload will always equal fh.Length (which -// might be 0). -type frameParser func(fc *frameCache, fh FrameHeader, countError func(string), payload []byte) (Frame, error) - -var frameParsers = map[FrameType]frameParser{ -	FrameData:         parseDataFrame, -	FrameHeaders:      parseHeadersFrame, -	FramePriority:     parsePriorityFrame, -	FrameRSTStream:    parseRSTStreamFrame, -	FrameSettings:     parseSettingsFrame, -	FramePushPromise:  parsePushPromise, -	FramePing:         parsePingFrame, -	FrameGoAway:       parseGoAwayFrame, -	FrameWindowUpdate: parseWindowUpdateFrame, -	FrameContinuation: parseContinuationFrame, -} - -func typeFrameParser(t FrameType) frameParser { -	if f := frameParsers[t]; f != nil { -		return f -	} -	return parseUnknownFrame -} - -// A FrameHeader is the 9 byte header of all HTTP/2 frames. -// -// See https://httpwg.org/specs/rfc7540.html#FrameHeader -type FrameHeader struct { -	valid bool // caller can access []byte fields in the Frame - -	// Type is the 1 byte frame type. There are ten standard frame -	// types, but extension frame types may be written by WriteRawFrame -	// and will be returned by ReadFrame (as UnknownFrame). -	Type FrameType - -	// Flags are the 1 byte of 8 potential bit flags per frame. -	// They are specific to the frame type. -	Flags Flags - -	// Length is the length of the frame, not including the 9 byte header. -	// The maximum size is one byte less than 16MB (uint24), but only -	// frames up to 16KB are allowed without peer agreement. -	Length uint32 - -	// StreamID is which stream this frame is for. Certain frames -	// are not stream-specific, in which case this field is 0. -	StreamID uint32 -} - -// Header returns h. It exists so FrameHeaders can be embedded in other -// specific frame types and implement the Frame interface. -func (h FrameHeader) Header() FrameHeader { return h } - -func (h FrameHeader) String() string { -	var buf bytes.Buffer -	buf.WriteString("[FrameHeader ") -	h.writeDebug(&buf) -	buf.WriteByte(']') -	return buf.String() -} - -func (h FrameHeader) writeDebug(buf *bytes.Buffer) { -	buf.WriteString(h.Type.String()) -	if h.Flags != 0 { -		buf.WriteString(" flags=") -		set := 0 -		for i := uint8(0); i < 8; i++ { -			if h.Flags&(1<<i) == 0 { -				continue -			} -			set++ -			if set > 1 { -				buf.WriteByte('|') -			} -			name := flagName[h.Type][Flags(1<<i)] -			if name != "" { -				buf.WriteString(name) -			} else { -				fmt.Fprintf(buf, "0x%x", 1<<i) -			} -		} -	} -	if h.StreamID != 0 { -		fmt.Fprintf(buf, " stream=%d", h.StreamID) -	} -	fmt.Fprintf(buf, " len=%d", h.Length) -} - -func (h *FrameHeader) checkValid() { -	if !h.valid { -		panic("Frame accessor called on non-owned Frame") -	} -} - -func (h *FrameHeader) invalidate() { h.valid = false } - -// frame header bytes. -// Used only by ReadFrameHeader. -var fhBytes = sync.Pool{ -	New: func() interface{} { -		buf := make([]byte, frameHeaderLen) -		return &buf -	}, -} - -// ReadFrameHeader reads 9 bytes from r and returns a FrameHeader. -// Most users should use Framer.ReadFrame instead. -func ReadFrameHeader(r io.Reader) (FrameHeader, error) { -	bufp := fhBytes.Get().(*[]byte) -	defer fhBytes.Put(bufp) -	return readFrameHeader(*bufp, r) -} - -func readFrameHeader(buf []byte, r io.Reader) (FrameHeader, error) { -	_, err := io.ReadFull(r, buf[:frameHeaderLen]) -	if err != nil { -		return FrameHeader{}, err -	} -	return FrameHeader{ -		Length:   (uint32(buf[0])<<16 | uint32(buf[1])<<8 | uint32(buf[2])), -		Type:     FrameType(buf[3]), -		Flags:    Flags(buf[4]), -		StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1), -		valid:    true, -	}, nil -} - -// A Frame is the base interface implemented by all frame types. -// Callers will generally type-assert the specific frame type: -// *HeadersFrame, *SettingsFrame, *WindowUpdateFrame, etc. -// -// Frames are only valid until the next call to Framer.ReadFrame. -type Frame interface { -	Header() FrameHeader - -	// invalidate is called by Framer.ReadFrame to make this -	// frame's buffers as being invalid, since the subsequent -	// frame will reuse them. -	invalidate() -} - -// A Framer reads and writes Frames. -type Framer struct { -	r         io.Reader -	lastFrame Frame -	errDetail error - -	// countError is a non-nil func that's called on a frame parse -	// error with some unique error path token. It's initialized -	// from Transport.CountError or Server.CountError. -	countError func(errToken string) - -	// lastHeaderStream is non-zero if the last frame was an -	// unfinished HEADERS/CONTINUATION. -	lastHeaderStream uint32 - -	maxReadSize uint32 -	headerBuf   [frameHeaderLen]byte - -	// TODO: let getReadBuf be configurable, and use a less memory-pinning -	// allocator in server.go to minimize memory pinned for many idle conns. -	// Will probably also need to make frame invalidation have a hook too. -	getReadBuf func(size uint32) []byte -	readBuf    []byte // cache for default getReadBuf - -	maxWriteSize uint32 // zero means unlimited; TODO: implement - -	w    io.Writer -	wbuf []byte - -	// AllowIllegalWrites permits the Framer's Write methods to -	// write frames that do not conform to the HTTP/2 spec. This -	// permits using the Framer to test other HTTP/2 -	// implementations' conformance to the spec. -	// If false, the Write methods will prefer to return an error -	// rather than comply. -	AllowIllegalWrites bool - -	// AllowIllegalReads permits the Framer's ReadFrame method -	// to return non-compliant frames or frame orders. -	// This is for testing and permits using the Framer to test -	// other HTTP/2 implementations' conformance to the spec. -	// It is not compatible with ReadMetaHeaders. -	AllowIllegalReads bool - -	// ReadMetaHeaders if non-nil causes ReadFrame to merge -	// HEADERS and CONTINUATION frames together and return -	// MetaHeadersFrame instead. -	ReadMetaHeaders *hpack.Decoder - -	// MaxHeaderListSize is the http2 MAX_HEADER_LIST_SIZE. -	// It's used only if ReadMetaHeaders is set; 0 means a sane default -	// (currently 16MB) -	// If the limit is hit, MetaHeadersFrame.Truncated is set true. -	MaxHeaderListSize uint32 - -	// TODO: track which type of frame & with which flags was sent -	// last. Then return an error (unless AllowIllegalWrites) if -	// we're in the middle of a header block and a -	// non-Continuation or Continuation on a different stream is -	// attempted to be written. - -	logReads, logWrites bool - -	debugFramer       *Framer // only use for logging written writes -	debugFramerBuf    *bytes.Buffer -	debugReadLoggerf  func(string, ...interface{}) -	debugWriteLoggerf func(string, ...interface{}) - -	frameCache *frameCache // nil if frames aren't reused (default) -} - -func (fr *Framer) maxHeaderListSize() uint32 { -	if fr.MaxHeaderListSize == 0 { -		return 16 << 20 // sane default, per docs -	} -	return fr.MaxHeaderListSize -} - -func (f *Framer) startWrite(ftype FrameType, flags Flags, streamID uint32) { -	// Write the FrameHeader. -	f.wbuf = append(f.wbuf[:0], -		0, // 3 bytes of length, filled in in endWrite -		0, -		0, -		byte(ftype), -		byte(flags), -		byte(streamID>>24), -		byte(streamID>>16), -		byte(streamID>>8), -		byte(streamID)) -} - -func (f *Framer) endWrite() error { -	// Now that we know the final size, fill in the FrameHeader in -	// the space previously reserved for it. Abuse append. -	length := len(f.wbuf) - frameHeaderLen -	if length >= (1 << 24) { -		return ErrFrameTooLarge -	} -	_ = append(f.wbuf[:0], -		byte(length>>16), -		byte(length>>8), -		byte(length)) -	if f.logWrites { -		f.logWrite() -	} - -	n, err := f.w.Write(f.wbuf) -	if err == nil && n != len(f.wbuf) { -		err = io.ErrShortWrite -	} -	return err -} - -func (f *Framer) logWrite() { -	if f.debugFramer == nil { -		f.debugFramerBuf = new(bytes.Buffer) -		f.debugFramer = NewFramer(nil, f.debugFramerBuf) -		f.debugFramer.logReads = false // we log it ourselves, saying "wrote" below -		// Let us read anything, even if we accidentally wrote it -		// in the wrong order: -		f.debugFramer.AllowIllegalReads = true -	} -	f.debugFramerBuf.Write(f.wbuf) -	fr, err := f.debugFramer.ReadFrame() -	if err != nil { -		f.debugWriteLoggerf("http2: Framer %p: failed to decode just-written frame", f) -		return -	} -	f.debugWriteLoggerf("http2: Framer %p: wrote %v", f, summarizeFrame(fr)) -} - -func (f *Framer) writeByte(v byte)     { f.wbuf = append(f.wbuf, v) } -func (f *Framer) writeBytes(v []byte)  { f.wbuf = append(f.wbuf, v...) } -func (f *Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) } -func (f *Framer) writeUint32(v uint32) { -	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v)) -} - -const ( -	minMaxFrameSize = 1 << 14 -	maxFrameSize    = 1<<24 - 1 -) - -// SetReuseFrames allows the Framer to reuse Frames. -// If called on a Framer, Frames returned by calls to ReadFrame are only -// valid until the next call to ReadFrame. -func (fr *Framer) SetReuseFrames() { -	if fr.frameCache != nil { -		return -	} -	fr.frameCache = &frameCache{} -} - -type frameCache struct { -	dataFrame DataFrame -} - -func (fc *frameCache) getDataFrame() *DataFrame { -	if fc == nil { -		return &DataFrame{} -	} -	return &fc.dataFrame -} - -// NewFramer returns a Framer that writes frames to w and reads them from r. -func NewFramer(w io.Writer, r io.Reader) *Framer { -	fr := &Framer{ -		w:                 w, -		r:                 r, -		countError:        func(string) {}, -		logReads:          logFrameReads, -		logWrites:         logFrameWrites, -		debugReadLoggerf:  log.Printf, -		debugWriteLoggerf: log.Printf, -	} -	fr.getReadBuf = func(size uint32) []byte { -		if cap(fr.readBuf) >= int(size) { -			return fr.readBuf[:size] -		} -		fr.readBuf = make([]byte, size) -		return fr.readBuf -	} -	fr.SetMaxReadFrameSize(maxFrameSize) -	return fr -} - -// SetMaxReadFrameSize sets the maximum size of a frame -// that will be read by a subsequent call to ReadFrame. -// It is the caller's responsibility to advertise this -// limit with a SETTINGS frame. -func (fr *Framer) SetMaxReadFrameSize(v uint32) { -	if v > maxFrameSize { -		v = maxFrameSize -	} -	fr.maxReadSize = v -} - -// ErrorDetail returns a more detailed error of the last error -// returned by Framer.ReadFrame. For instance, if ReadFrame -// returns a StreamError with code PROTOCOL_ERROR, ErrorDetail -// will say exactly what was invalid. ErrorDetail is not guaranteed -// to return a non-nil value and like the rest of the http2 package, -// its return value is not protected by an API compatibility promise. -// ErrorDetail is reset after the next call to ReadFrame. -func (fr *Framer) ErrorDetail() error { -	return fr.errDetail -} - -// ErrFrameTooLarge is returned from Framer.ReadFrame when the peer -// sends a frame that is larger than declared with SetMaxReadFrameSize. -var ErrFrameTooLarge = errors.New("http2: frame too large") - -// terminalReadFrameError reports whether err is an unrecoverable -// error from ReadFrame and no other frames should be read. -func terminalReadFrameError(err error) bool { -	if _, ok := err.(StreamError); ok { -		return false -	} -	return err != nil -} - -// ReadFrame reads a single frame. The returned Frame is only valid -// until the next call to ReadFrame. -// -// If the frame is larger than previously set with SetMaxReadFrameSize, the -// returned error is ErrFrameTooLarge. Other errors may be of type -// ConnectionError, StreamError, or anything else from the underlying -// reader. -// -// If ReadFrame returns an error and a non-nil Frame, the Frame's StreamID -// indicates the stream responsible for the error. -func (fr *Framer) ReadFrame() (Frame, error) { -	fr.errDetail = nil -	if fr.lastFrame != nil { -		fr.lastFrame.invalidate() -	} -	fh, err := readFrameHeader(fr.headerBuf[:], fr.r) -	if err != nil { -		return nil, err -	} -	if fh.Length > fr.maxReadSize { -		return nil, ErrFrameTooLarge -	} -	payload := fr.getReadBuf(fh.Length) -	if _, err := io.ReadFull(fr.r, payload); err != nil { -		return nil, err -	} -	f, err := typeFrameParser(fh.Type)(fr.frameCache, fh, fr.countError, payload) -	if err != nil { -		if ce, ok := err.(connError); ok { -			return nil, fr.connError(ce.Code, ce.Reason) -		} -		return nil, err -	} -	if err := fr.checkFrameOrder(f); err != nil { -		return nil, err -	} -	if fr.logReads { -		fr.debugReadLoggerf("http2: Framer %p: read %v", fr, summarizeFrame(f)) -	} -	if fh.Type == FrameHeaders && fr.ReadMetaHeaders != nil { -		return fr.readMetaFrame(f.(*HeadersFrame)) -	} -	return f, nil -} - -// connError returns ConnectionError(code) but first -// stashes away a public reason to the caller can optionally relay it -// to the peer before hanging up on them. This might help others debug -// their implementations. -func (fr *Framer) connError(code ErrCode, reason string) error { -	fr.errDetail = errors.New(reason) -	return ConnectionError(code) -} - -// checkFrameOrder reports an error if f is an invalid frame to return -// next from ReadFrame. Mostly it checks whether HEADERS and -// CONTINUATION frames are contiguous. -func (fr *Framer) checkFrameOrder(f Frame) error { -	last := fr.lastFrame -	fr.lastFrame = f -	if fr.AllowIllegalReads { -		return nil -	} - -	fh := f.Header() -	if fr.lastHeaderStream != 0 { -		if fh.Type != FrameContinuation { -			return fr.connError(ErrCodeProtocol, -				fmt.Sprintf("got %s for stream %d; expected CONTINUATION following %s for stream %d", -					fh.Type, fh.StreamID, -					last.Header().Type, fr.lastHeaderStream)) -		} -		if fh.StreamID != fr.lastHeaderStream { -			return fr.connError(ErrCodeProtocol, -				fmt.Sprintf("got CONTINUATION for stream %d; expected stream %d", -					fh.StreamID, fr.lastHeaderStream)) -		} -	} else if fh.Type == FrameContinuation { -		return fr.connError(ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID)) -	} - -	switch fh.Type { -	case FrameHeaders, FrameContinuation: -		if fh.Flags.Has(FlagHeadersEndHeaders) { -			fr.lastHeaderStream = 0 -		} else { -			fr.lastHeaderStream = fh.StreamID -		} -	} - -	return nil -} - -// A DataFrame conveys arbitrary, variable-length sequences of octets -// associated with a stream. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.1 -type DataFrame struct { -	FrameHeader -	data []byte -} - -func (f *DataFrame) StreamEnded() bool { -	return f.FrameHeader.Flags.Has(FlagDataEndStream) -} - -// Data returns the frame's data octets, not including any padding -// size byte or padding suffix bytes. -// The caller must not retain the returned memory past the next -// call to ReadFrame. -func (f *DataFrame) Data() []byte { -	f.checkValid() -	return f.data -} - -func parseDataFrame(fc *frameCache, fh FrameHeader, countError func(string), payload []byte) (Frame, error) { -	if fh.StreamID == 0 { -		// DATA frames MUST be associated with a stream. If a -		// DATA frame is received whose stream identifier -		// field is 0x0, the recipient MUST respond with a -		// connection error (Section 5.4.1) of type -		// PROTOCOL_ERROR. -		countError("frame_data_stream_0") -		return nil, connError{ErrCodeProtocol, "DATA frame with stream ID 0"} -	} -	f := fc.getDataFrame() -	f.FrameHeader = fh - -	var padSize byte -	if fh.Flags.Has(FlagDataPadded) { -		var err error -		payload, padSize, err = readByte(payload) -		if err != nil { -			countError("frame_data_pad_byte_short") -			return nil, err -		} -	} -	if int(padSize) > len(payload) { -		// If the length of the padding is greater than the -		// length of the frame payload, the recipient MUST -		// treat this as a connection error. -		// Filed: https://github.com/http2/http2-spec/issues/610 -		countError("frame_data_pad_too_big") -		return nil, connError{ErrCodeProtocol, "pad size larger than data payload"} -	} -	f.data = payload[:len(payload)-int(padSize)] -	return f, nil -} - -var ( -	errStreamID    = errors.New("invalid stream ID") -	errDepStreamID = errors.New("invalid dependent stream ID") -	errPadLength   = errors.New("pad length too large") -	errPadBytes    = errors.New("padding bytes must all be zeros unless AllowIllegalWrites is enabled") -) - -func validStreamIDOrZero(streamID uint32) bool { -	return streamID&(1<<31) == 0 -} - -func validStreamID(streamID uint32) bool { -	return streamID != 0 && streamID&(1<<31) == 0 -} - -// WriteData writes a DATA frame. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility not to violate the maximum frame size -// and to not call other Write methods concurrently. -func (f *Framer) WriteData(streamID uint32, endStream bool, data []byte) error { -	return f.WriteDataPadded(streamID, endStream, data, nil) -} - -// WriteDataPadded writes a DATA frame with optional padding. -// -// If pad is nil, the padding bit is not sent. -// The length of pad must not exceed 255 bytes. -// The bytes of pad must all be zero, unless f.AllowIllegalWrites is set. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility not to violate the maximum frame size -// and to not call other Write methods concurrently. -func (f *Framer) WriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error { -	if err := f.startWriteDataPadded(streamID, endStream, data, pad); err != nil { -		return err -	} -	return f.endWrite() -} - -// startWriteDataPadded is WriteDataPadded, but only writes the frame to the Framer's internal buffer. -// The caller should call endWrite to flush the frame to the underlying writer. -func (f *Framer) startWriteDataPadded(streamID uint32, endStream bool, data, pad []byte) error { -	if !validStreamID(streamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	if len(pad) > 0 { -		if len(pad) > 255 { -			return errPadLength -		} -		if !f.AllowIllegalWrites { -			for _, b := range pad { -				if b != 0 { -					// "Padding octets MUST be set to zero when sending." -					return errPadBytes -				} -			} -		} -	} -	var flags Flags -	if endStream { -		flags |= FlagDataEndStream -	} -	if pad != nil { -		flags |= FlagDataPadded -	} -	f.startWrite(FrameData, flags, streamID) -	if pad != nil { -		f.wbuf = append(f.wbuf, byte(len(pad))) -	} -	f.wbuf = append(f.wbuf, data...) -	f.wbuf = append(f.wbuf, pad...) -	return nil -} - -// A SettingsFrame conveys configuration parameters that affect how -// endpoints communicate, such as preferences and constraints on peer -// behavior. -// -// See https://httpwg.org/specs/rfc7540.html#SETTINGS -type SettingsFrame struct { -	FrameHeader -	p []byte -} - -func parseSettingsFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	if fh.Flags.Has(FlagSettingsAck) && fh.Length > 0 { -		// When this (ACK 0x1) bit is set, the payload of the -		// SETTINGS frame MUST be empty. Receipt of a -		// SETTINGS frame with the ACK flag set and a length -		// field value other than 0 MUST be treated as a -		// connection error (Section 5.4.1) of type -		// FRAME_SIZE_ERROR. -		countError("frame_settings_ack_with_length") -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	if fh.StreamID != 0 { -		// SETTINGS frames always apply to a connection, -		// never a single stream. The stream identifier for a -		// SETTINGS frame MUST be zero (0x0).  If an endpoint -		// receives a SETTINGS frame whose stream identifier -		// field is anything other than 0x0, the endpoint MUST -		// respond with a connection error (Section 5.4.1) of -		// type PROTOCOL_ERROR. -		countError("frame_settings_has_stream") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	if len(p)%6 != 0 { -		countError("frame_settings_mod_6") -		// Expecting even number of 6 byte settings. -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	f := &SettingsFrame{FrameHeader: fh, p: p} -	if v, ok := f.Value(SettingInitialWindowSize); ok && v > (1<<31)-1 { -		countError("frame_settings_window_size_too_big") -		// Values above the maximum flow control window size of 2^31 - 1 MUST -		// be treated as a connection error (Section 5.4.1) of type -		// FLOW_CONTROL_ERROR. -		return nil, ConnectionError(ErrCodeFlowControl) -	} -	return f, nil -} - -func (f *SettingsFrame) IsAck() bool { -	return f.FrameHeader.Flags.Has(FlagSettingsAck) -} - -func (f *SettingsFrame) Value(id SettingID) (v uint32, ok bool) { -	f.checkValid() -	for i := 0; i < f.NumSettings(); i++ { -		if s := f.Setting(i); s.ID == id { -			return s.Val, true -		} -	} -	return 0, false -} - -// Setting returns the setting from the frame at the given 0-based index. -// The index must be >= 0 and less than f.NumSettings(). -func (f *SettingsFrame) Setting(i int) Setting { -	buf := f.p -	return Setting{ -		ID:  SettingID(binary.BigEndian.Uint16(buf[i*6 : i*6+2])), -		Val: binary.BigEndian.Uint32(buf[i*6+2 : i*6+6]), -	} -} - -func (f *SettingsFrame) NumSettings() int { return len(f.p) / 6 } - -// HasDuplicates reports whether f contains any duplicate setting IDs. -func (f *SettingsFrame) HasDuplicates() bool { -	num := f.NumSettings() -	if num == 0 { -		return false -	} -	// If it's small enough (the common case), just do the n^2 -	// thing and avoid a map allocation. -	if num < 10 { -		for i := 0; i < num; i++ { -			idi := f.Setting(i).ID -			for j := i + 1; j < num; j++ { -				idj := f.Setting(j).ID -				if idi == idj { -					return true -				} -			} -		} -		return false -	} -	seen := map[SettingID]bool{} -	for i := 0; i < num; i++ { -		id := f.Setting(i).ID -		if seen[id] { -			return true -		} -		seen[id] = true -	} -	return false -} - -// ForeachSetting runs fn for each setting. -// It stops and returns the first error. -func (f *SettingsFrame) ForeachSetting(fn func(Setting) error) error { -	f.checkValid() -	for i := 0; i < f.NumSettings(); i++ { -		if err := fn(f.Setting(i)); err != nil { -			return err -		} -	} -	return nil -} - -// WriteSettings writes a SETTINGS frame with zero or more settings -// specified and the ACK bit not set. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WriteSettings(settings ...Setting) error { -	f.startWrite(FrameSettings, 0, 0) -	for _, s := range settings { -		f.writeUint16(uint16(s.ID)) -		f.writeUint32(s.Val) -	} -	return f.endWrite() -} - -// WriteSettingsAck writes an empty SETTINGS frame with the ACK bit set. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WriteSettingsAck() error { -	f.startWrite(FrameSettings, FlagSettingsAck, 0) -	return f.endWrite() -} - -// A PingFrame is a mechanism for measuring a minimal round trip time -// from the sender, as well as determining whether an idle connection -// is still functional. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.7 -type PingFrame struct { -	FrameHeader -	Data [8]byte -} - -func (f *PingFrame) IsAck() bool { return f.Flags.Has(FlagPingAck) } - -func parsePingFrame(_ *frameCache, fh FrameHeader, countError func(string), payload []byte) (Frame, error) { -	if len(payload) != 8 { -		countError("frame_ping_length") -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	if fh.StreamID != 0 { -		countError("frame_ping_has_stream") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	f := &PingFrame{FrameHeader: fh} -	copy(f.Data[:], payload) -	return f, nil -} - -func (f *Framer) WritePing(ack bool, data [8]byte) error { -	var flags Flags -	if ack { -		flags = FlagPingAck -	} -	f.startWrite(FramePing, flags, 0) -	f.writeBytes(data[:]) -	return f.endWrite() -} - -// A GoAwayFrame informs the remote peer to stop creating streams on this connection. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.8 -type GoAwayFrame struct { -	FrameHeader -	LastStreamID uint32 -	ErrCode      ErrCode -	debugData    []byte -} - -// DebugData returns any debug data in the GOAWAY frame. Its contents -// are not defined. -// The caller must not retain the returned memory past the next -// call to ReadFrame. -func (f *GoAwayFrame) DebugData() []byte { -	f.checkValid() -	return f.debugData -} - -func parseGoAwayFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	if fh.StreamID != 0 { -		countError("frame_goaway_has_stream") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	if len(p) < 8 { -		countError("frame_goaway_short") -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	return &GoAwayFrame{ -		FrameHeader:  fh, -		LastStreamID: binary.BigEndian.Uint32(p[:4]) & (1<<31 - 1), -		ErrCode:      ErrCode(binary.BigEndian.Uint32(p[4:8])), -		debugData:    p[8:], -	}, nil -} - -func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugData []byte) error { -	f.startWrite(FrameGoAway, 0, 0) -	f.writeUint32(maxStreamID & (1<<31 - 1)) -	f.writeUint32(uint32(code)) -	f.writeBytes(debugData) -	return f.endWrite() -} - -// An UnknownFrame is the frame type returned when the frame type is unknown -// or no specific frame type parser exists. -type UnknownFrame struct { -	FrameHeader -	p []byte -} - -// Payload returns the frame's payload (after the header).  It is not -// valid to call this method after a subsequent call to -// Framer.ReadFrame, nor is it valid to retain the returned slice. -// The memory is owned by the Framer and is invalidated when the next -// frame is read. -func (f *UnknownFrame) Payload() []byte { -	f.checkValid() -	return f.p -} - -func parseUnknownFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	return &UnknownFrame{fh, p}, nil -} - -// A WindowUpdateFrame is used to implement flow control. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.9 -type WindowUpdateFrame struct { -	FrameHeader -	Increment uint32 // never read with high bit set -} - -func parseWindowUpdateFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	if len(p) != 4 { -		countError("frame_windowupdate_bad_len") -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit -	if inc == 0 { -		// A receiver MUST treat the receipt of a -		// WINDOW_UPDATE frame with an flow control window -		// increment of 0 as a stream error (Section 5.4.2) of -		// type PROTOCOL_ERROR; errors on the connection flow -		// control window MUST be treated as a connection -		// error (Section 5.4.1). -		if fh.StreamID == 0 { -			countError("frame_windowupdate_zero_inc_conn") -			return nil, ConnectionError(ErrCodeProtocol) -		} -		countError("frame_windowupdate_zero_inc_stream") -		return nil, streamError(fh.StreamID, ErrCodeProtocol) -	} -	return &WindowUpdateFrame{ -		FrameHeader: fh, -		Increment:   inc, -	}, nil -} - -// WriteWindowUpdate writes a WINDOW_UPDATE frame. -// The increment value must be between 1 and 2,147,483,647, inclusive. -// If the Stream ID is zero, the window update applies to the -// connection as a whole. -func (f *Framer) WriteWindowUpdate(streamID, incr uint32) error { -	// "The legal range for the increment to the flow control window is 1 to 2^31-1 (2,147,483,647) octets." -	if (incr < 1 || incr > 2147483647) && !f.AllowIllegalWrites { -		return errors.New("illegal window increment value") -	} -	f.startWrite(FrameWindowUpdate, 0, streamID) -	f.writeUint32(incr) -	return f.endWrite() -} - -// A HeadersFrame is used to open a stream and additionally carries a -// header block fragment. -type HeadersFrame struct { -	FrameHeader - -	// Priority is set if FlagHeadersPriority is set in the FrameHeader. -	Priority PriorityParam - -	headerFragBuf []byte // not owned -} - -func (f *HeadersFrame) HeaderBlockFragment() []byte { -	f.checkValid() -	return f.headerFragBuf -} - -func (f *HeadersFrame) HeadersEnded() bool { -	return f.FrameHeader.Flags.Has(FlagHeadersEndHeaders) -} - -func (f *HeadersFrame) StreamEnded() bool { -	return f.FrameHeader.Flags.Has(FlagHeadersEndStream) -} - -func (f *HeadersFrame) HasPriority() bool { -	return f.FrameHeader.Flags.Has(FlagHeadersPriority) -} - -func parseHeadersFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (_ Frame, err error) { -	hf := &HeadersFrame{ -		FrameHeader: fh, -	} -	if fh.StreamID == 0 { -		// HEADERS frames MUST be associated with a stream. If a HEADERS frame -		// is received whose stream identifier field is 0x0, the recipient MUST -		// respond with a connection error (Section 5.4.1) of type -		// PROTOCOL_ERROR. -		countError("frame_headers_zero_stream") -		return nil, connError{ErrCodeProtocol, "HEADERS frame with stream ID 0"} -	} -	var padLength uint8 -	if fh.Flags.Has(FlagHeadersPadded) { -		if p, padLength, err = readByte(p); err != nil { -			countError("frame_headers_pad_short") -			return -		} -	} -	if fh.Flags.Has(FlagHeadersPriority) { -		var v uint32 -		p, v, err = readUint32(p) -		if err != nil { -			countError("frame_headers_prio_short") -			return nil, err -		} -		hf.Priority.StreamDep = v & 0x7fffffff -		hf.Priority.Exclusive = (v != hf.Priority.StreamDep) // high bit was set -		p, hf.Priority.Weight, err = readByte(p) -		if err != nil { -			countError("frame_headers_prio_weight_short") -			return nil, err -		} -	} -	if len(p)-int(padLength) < 0 { -		countError("frame_headers_pad_too_big") -		return nil, streamError(fh.StreamID, ErrCodeProtocol) -	} -	hf.headerFragBuf = p[:len(p)-int(padLength)] -	return hf, nil -} - -// HeadersFrameParam are the parameters for writing a HEADERS frame. -type HeadersFrameParam struct { -	// StreamID is the required Stream ID to initiate. -	StreamID uint32 -	// BlockFragment is part (or all) of a Header Block. -	BlockFragment []byte - -	// EndStream indicates that the header block is the last that -	// the endpoint will send for the identified stream. Setting -	// this flag causes the stream to enter one of "half closed" -	// states. -	EndStream bool - -	// EndHeaders indicates that this frame contains an entire -	// header block and is not followed by any -	// CONTINUATION frames. -	EndHeaders bool - -	// PadLength is the optional number of bytes of zeros to add -	// to this frame. -	PadLength uint8 - -	// Priority, if non-zero, includes stream priority information -	// in the HEADER frame. -	Priority PriorityParam -} - -// WriteHeaders writes a single HEADERS frame. -// -// This is a low-level header writing method. Encoding headers and -// splitting them into any necessary CONTINUATION frames is handled -// elsewhere. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WriteHeaders(p HeadersFrameParam) error { -	if !validStreamID(p.StreamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	var flags Flags -	if p.PadLength != 0 { -		flags |= FlagHeadersPadded -	} -	if p.EndStream { -		flags |= FlagHeadersEndStream -	} -	if p.EndHeaders { -		flags |= FlagHeadersEndHeaders -	} -	if !p.Priority.IsZero() { -		flags |= FlagHeadersPriority -	} -	f.startWrite(FrameHeaders, flags, p.StreamID) -	if p.PadLength != 0 { -		f.writeByte(p.PadLength) -	} -	if !p.Priority.IsZero() { -		v := p.Priority.StreamDep -		if !validStreamIDOrZero(v) && !f.AllowIllegalWrites { -			return errDepStreamID -		} -		if p.Priority.Exclusive { -			v |= 1 << 31 -		} -		f.writeUint32(v) -		f.writeByte(p.Priority.Weight) -	} -	f.wbuf = append(f.wbuf, p.BlockFragment...) -	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...) -	return f.endWrite() -} - -// A PriorityFrame specifies the sender-advised priority of a stream. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.3 -type PriorityFrame struct { -	FrameHeader -	PriorityParam -} - -// PriorityParam are the stream prioritzation parameters. -type PriorityParam struct { -	// StreamDep is a 31-bit stream identifier for the -	// stream that this stream depends on. Zero means no -	// dependency. -	StreamDep uint32 - -	// Exclusive is whether the dependency is exclusive. -	Exclusive bool - -	// Weight is the stream's zero-indexed weight. It should be -	// set together with StreamDep, or neither should be set. Per -	// the spec, "Add one to the value to obtain a weight between -	// 1 and 256." -	Weight uint8 -} - -func (p PriorityParam) IsZero() bool { -	return p == PriorityParam{} -} - -func parsePriorityFrame(_ *frameCache, fh FrameHeader, countError func(string), payload []byte) (Frame, error) { -	if fh.StreamID == 0 { -		countError("frame_priority_zero_stream") -		return nil, connError{ErrCodeProtocol, "PRIORITY frame with stream ID 0"} -	} -	if len(payload) != 5 { -		countError("frame_priority_bad_length") -		return nil, connError{ErrCodeFrameSize, fmt.Sprintf("PRIORITY frame payload size was %d; want 5", len(payload))} -	} -	v := binary.BigEndian.Uint32(payload[:4]) -	streamID := v & 0x7fffffff // mask off high bit -	return &PriorityFrame{ -		FrameHeader: fh, -		PriorityParam: PriorityParam{ -			Weight:    payload[4], -			StreamDep: streamID, -			Exclusive: streamID != v, // was high bit set? -		}, -	}, nil -} - -// WritePriority writes a PRIORITY frame. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WritePriority(streamID uint32, p PriorityParam) error { -	if !validStreamID(streamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	if !validStreamIDOrZero(p.StreamDep) { -		return errDepStreamID -	} -	f.startWrite(FramePriority, 0, streamID) -	v := p.StreamDep -	if p.Exclusive { -		v |= 1 << 31 -	} -	f.writeUint32(v) -	f.writeByte(p.Weight) -	return f.endWrite() -} - -// A RSTStreamFrame allows for abnormal termination of a stream. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.4 -type RSTStreamFrame struct { -	FrameHeader -	ErrCode ErrCode -} - -func parseRSTStreamFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	if len(p) != 4 { -		countError("frame_rststream_bad_len") -		return nil, ConnectionError(ErrCodeFrameSize) -	} -	if fh.StreamID == 0 { -		countError("frame_rststream_zero_stream") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	return &RSTStreamFrame{fh, ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil -} - -// WriteRSTStream writes a RST_STREAM frame. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WriteRSTStream(streamID uint32, code ErrCode) error { -	if !validStreamID(streamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	f.startWrite(FrameRSTStream, 0, streamID) -	f.writeUint32(uint32(code)) -	return f.endWrite() -} - -// A ContinuationFrame is used to continue a sequence of header block fragments. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.10 -type ContinuationFrame struct { -	FrameHeader -	headerFragBuf []byte -} - -func parseContinuationFrame(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (Frame, error) { -	if fh.StreamID == 0 { -		countError("frame_continuation_zero_stream") -		return nil, connError{ErrCodeProtocol, "CONTINUATION frame with stream ID 0"} -	} -	return &ContinuationFrame{fh, p}, nil -} - -func (f *ContinuationFrame) HeaderBlockFragment() []byte { -	f.checkValid() -	return f.headerFragBuf -} - -func (f *ContinuationFrame) HeadersEnded() bool { -	return f.FrameHeader.Flags.Has(FlagContinuationEndHeaders) -} - -// WriteContinuation writes a CONTINUATION frame. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WriteContinuation(streamID uint32, endHeaders bool, headerBlockFragment []byte) error { -	if !validStreamID(streamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	var flags Flags -	if endHeaders { -		flags |= FlagContinuationEndHeaders -	} -	f.startWrite(FrameContinuation, flags, streamID) -	f.wbuf = append(f.wbuf, headerBlockFragment...) -	return f.endWrite() -} - -// A PushPromiseFrame is used to initiate a server stream. -// See https://httpwg.org/specs/rfc7540.html#rfc.section.6.6 -type PushPromiseFrame struct { -	FrameHeader -	PromiseID     uint32 -	headerFragBuf []byte // not owned -} - -func (f *PushPromiseFrame) HeaderBlockFragment() []byte { -	f.checkValid() -	return f.headerFragBuf -} - -func (f *PushPromiseFrame) HeadersEnded() bool { -	return f.FrameHeader.Flags.Has(FlagPushPromiseEndHeaders) -} - -func parsePushPromise(_ *frameCache, fh FrameHeader, countError func(string), p []byte) (_ Frame, err error) { -	pp := &PushPromiseFrame{ -		FrameHeader: fh, -	} -	if pp.StreamID == 0 { -		// PUSH_PROMISE frames MUST be associated with an existing, -		// peer-initiated stream. The stream identifier of a -		// PUSH_PROMISE frame indicates the stream it is associated -		// with. If the stream identifier field specifies the value -		// 0x0, a recipient MUST respond with a connection error -		// (Section 5.4.1) of type PROTOCOL_ERROR. -		countError("frame_pushpromise_zero_stream") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	// The PUSH_PROMISE frame includes optional padding. -	// Padding fields and flags are identical to those defined for DATA frames -	var padLength uint8 -	if fh.Flags.Has(FlagPushPromisePadded) { -		if p, padLength, err = readByte(p); err != nil { -			countError("frame_pushpromise_pad_short") -			return -		} -	} - -	p, pp.PromiseID, err = readUint32(p) -	if err != nil { -		countError("frame_pushpromise_promiseid_short") -		return -	} -	pp.PromiseID = pp.PromiseID & (1<<31 - 1) - -	if int(padLength) > len(p) { -		// like the DATA frame, error out if padding is longer than the body. -		countError("frame_pushpromise_pad_too_big") -		return nil, ConnectionError(ErrCodeProtocol) -	} -	pp.headerFragBuf = p[:len(p)-int(padLength)] -	return pp, nil -} - -// PushPromiseParam are the parameters for writing a PUSH_PROMISE frame. -type PushPromiseParam struct { -	// StreamID is the required Stream ID to initiate. -	StreamID uint32 - -	// PromiseID is the required Stream ID which this -	// Push Promises -	PromiseID uint32 - -	// BlockFragment is part (or all) of a Header Block. -	BlockFragment []byte - -	// EndHeaders indicates that this frame contains an entire -	// header block and is not followed by any -	// CONTINUATION frames. -	EndHeaders bool - -	// PadLength is the optional number of bytes of zeros to add -	// to this frame. -	PadLength uint8 -} - -// WritePushPromise writes a single PushPromise Frame. -// -// As with Header Frames, This is the low level call for writing -// individual frames. Continuation frames are handled elsewhere. -// -// It will perform exactly one Write to the underlying Writer. -// It is the caller's responsibility to not call other Write methods concurrently. -func (f *Framer) WritePushPromise(p PushPromiseParam) error { -	if !validStreamID(p.StreamID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	var flags Flags -	if p.PadLength != 0 { -		flags |= FlagPushPromisePadded -	} -	if p.EndHeaders { -		flags |= FlagPushPromiseEndHeaders -	} -	f.startWrite(FramePushPromise, flags, p.StreamID) -	if p.PadLength != 0 { -		f.writeByte(p.PadLength) -	} -	if !validStreamID(p.PromiseID) && !f.AllowIllegalWrites { -		return errStreamID -	} -	f.writeUint32(p.PromiseID) -	f.wbuf = append(f.wbuf, p.BlockFragment...) -	f.wbuf = append(f.wbuf, padZeros[:p.PadLength]...) -	return f.endWrite() -} - -// WriteRawFrame writes a raw frame. This can be used to write -// extension frames unknown to this package. -func (f *Framer) WriteRawFrame(t FrameType, flags Flags, streamID uint32, payload []byte) error { -	f.startWrite(t, flags, streamID) -	f.writeBytes(payload) -	return f.endWrite() -} - -func readByte(p []byte) (remain []byte, b byte, err error) { -	if len(p) == 0 { -		return nil, 0, io.ErrUnexpectedEOF -	} -	return p[1:], p[0], nil -} - -func readUint32(p []byte) (remain []byte, v uint32, err error) { -	if len(p) < 4 { -		return nil, 0, io.ErrUnexpectedEOF -	} -	return p[4:], binary.BigEndian.Uint32(p[:4]), nil -} - -type streamEnder interface { -	StreamEnded() bool -} - -type headersEnder interface { -	HeadersEnded() bool -} - -type headersOrContinuation interface { -	headersEnder -	HeaderBlockFragment() []byte -} - -// A MetaHeadersFrame is the representation of one HEADERS frame and -// zero or more contiguous CONTINUATION frames and the decoding of -// their HPACK-encoded contents. -// -// This type of frame does not appear on the wire and is only returned -// by the Framer when Framer.ReadMetaHeaders is set. -type MetaHeadersFrame struct { -	*HeadersFrame - -	// Fields are the fields contained in the HEADERS and -	// CONTINUATION frames. The underlying slice is owned by the -	// Framer and must not be retained after the next call to -	// ReadFrame. -	// -	// Fields are guaranteed to be in the correct http2 order and -	// not have unknown pseudo header fields or invalid header -	// field names or values. Required pseudo header fields may be -	// missing, however. Use the MetaHeadersFrame.Pseudo accessor -	// method access pseudo headers. -	Fields []hpack.HeaderField - -	// Truncated is whether the max header list size limit was hit -	// and Fields is incomplete. The hpack decoder state is still -	// valid, however. -	Truncated bool -} - -// PseudoValue returns the given pseudo header field's value. -// The provided pseudo field should not contain the leading colon. -func (mh *MetaHeadersFrame) PseudoValue(pseudo string) string { -	for _, hf := range mh.Fields { -		if !hf.IsPseudo() { -			return "" -		} -		if hf.Name[1:] == pseudo { -			return hf.Value -		} -	} -	return "" -} - -// RegularFields returns the regular (non-pseudo) header fields of mh. -// The caller does not own the returned slice. -func (mh *MetaHeadersFrame) RegularFields() []hpack.HeaderField { -	for i, hf := range mh.Fields { -		if !hf.IsPseudo() { -			return mh.Fields[i:] -		} -	} -	return nil -} - -// PseudoFields returns the pseudo header fields of mh. -// The caller does not own the returned slice. -func (mh *MetaHeadersFrame) PseudoFields() []hpack.HeaderField { -	for i, hf := range mh.Fields { -		if !hf.IsPseudo() { -			return mh.Fields[:i] -		} -	} -	return mh.Fields -} - -func (mh *MetaHeadersFrame) checkPseudos() error { -	var isRequest, isResponse bool -	pf := mh.PseudoFields() -	for i, hf := range pf { -		switch hf.Name { -		case ":method", ":path", ":scheme", ":authority", ":protocol": -			isRequest = true -		case ":status": -			isResponse = true -		default: -			return pseudoHeaderError(hf.Name) -		} -		// Check for duplicates. -		// This would be a bad algorithm, but N is 5. -		// And this doesn't allocate. -		for _, hf2 := range pf[:i] { -			if hf.Name == hf2.Name { -				return duplicatePseudoHeaderError(hf.Name) -			} -		} -	} -	if isRequest && isResponse { -		return errMixPseudoHeaderTypes -	} -	return nil -} - -func (fr *Framer) maxHeaderStringLen() int { -	v := int(fr.maxHeaderListSize()) -	if v < 0 { -		// If maxHeaderListSize overflows an int, use no limit (0). -		return 0 -	} -	return v -} - -// readMetaFrame returns 0 or more CONTINUATION frames from fr and -// merge them into the provided hf and returns a MetaHeadersFrame -// with the decoded hpack values. -func (fr *Framer) readMetaFrame(hf *HeadersFrame) (Frame, error) { -	if fr.AllowIllegalReads { -		return nil, errors.New("illegal use of AllowIllegalReads with ReadMetaHeaders") -	} -	mh := &MetaHeadersFrame{ -		HeadersFrame: hf, -	} -	var remainSize = fr.maxHeaderListSize() -	var sawRegular bool - -	var invalid error // pseudo header field errors -	hdec := fr.ReadMetaHeaders -	hdec.SetEmitEnabled(true) -	hdec.SetMaxStringLength(fr.maxHeaderStringLen()) -	hdec.SetEmitFunc(func(hf hpack.HeaderField) { -		if VerboseLogs && fr.logReads { -			fr.debugReadLoggerf("http2: decoded hpack field %+v", hf) -		} -		if !httpguts.ValidHeaderFieldValue(hf.Value) { -			// Don't include the value in the error, because it may be sensitive. -			invalid = headerFieldValueError(hf.Name) -		} -		isPseudo := strings.HasPrefix(hf.Name, ":") -		if isPseudo { -			if sawRegular { -				invalid = errPseudoAfterRegular -			} -		} else { -			sawRegular = true -			if !validWireHeaderFieldName(hf.Name) { -				invalid = headerFieldNameError(hf.Name) -			} -		} - -		if invalid != nil { -			hdec.SetEmitEnabled(false) -			return -		} - -		size := hf.Size() -		if size > remainSize { -			hdec.SetEmitEnabled(false) -			mh.Truncated = true -			remainSize = 0 -			return -		} -		remainSize -= size - -		mh.Fields = append(mh.Fields, hf) -	}) -	// Lose reference to MetaHeadersFrame: -	defer hdec.SetEmitFunc(func(hf hpack.HeaderField) {}) - -	var hc headersOrContinuation = hf -	for { -		frag := hc.HeaderBlockFragment() - -		// Avoid parsing large amounts of headers that we will then discard. -		// If the sender exceeds the max header list size by too much, -		// skip parsing the fragment and close the connection. -		// -		// "Too much" is either any CONTINUATION frame after we've already -		// exceeded the max header list size (in which case remainSize is 0), -		// or a frame whose encoded size is more than twice the remaining -		// header list bytes we're willing to accept. -		if int64(len(frag)) > int64(2*remainSize) { -			if VerboseLogs { -				log.Printf("http2: header list too large") -			} -			// It would be nice to send a RST_STREAM before sending the GOAWAY, -			// but the structure of the server's frame writer makes this difficult. -			return mh, ConnectionError(ErrCodeProtocol) -		} - -		// Also close the connection after any CONTINUATION frame following an -		// invalid header, since we stop tracking the size of the headers after -		// an invalid one. -		if invalid != nil { -			if VerboseLogs { -				log.Printf("http2: invalid header: %v", invalid) -			} -			// It would be nice to send a RST_STREAM before sending the GOAWAY, -			// but the structure of the server's frame writer makes this difficult. -			return mh, ConnectionError(ErrCodeProtocol) -		} - -		if _, err := hdec.Write(frag); err != nil { -			return mh, ConnectionError(ErrCodeCompression) -		} - -		if hc.HeadersEnded() { -			break -		} -		if f, err := fr.ReadFrame(); err != nil { -			return nil, err -		} else { -			hc = f.(*ContinuationFrame) // guaranteed by checkFrameOrder -		} -	} - -	mh.HeadersFrame.headerFragBuf = nil -	mh.HeadersFrame.invalidate() - -	if err := hdec.Close(); err != nil { -		return mh, ConnectionError(ErrCodeCompression) -	} -	if invalid != nil { -		fr.errDetail = invalid -		if VerboseLogs { -			log.Printf("http2: invalid header: %v", invalid) -		} -		return nil, StreamError{mh.StreamID, ErrCodeProtocol, invalid} -	} -	if err := mh.checkPseudos(); err != nil { -		fr.errDetail = err -		if VerboseLogs { -			log.Printf("http2: invalid pseudo headers: %v", err) -		} -		return nil, StreamError{mh.StreamID, ErrCodeProtocol, err} -	} -	return mh, nil -} - -func summarizeFrame(f Frame) string { -	var buf bytes.Buffer -	f.Header().writeDebug(&buf) -	switch f := f.(type) { -	case *SettingsFrame: -		n := 0 -		f.ForeachSetting(func(s Setting) error { -			n++ -			if n == 1 { -				buf.WriteString(", settings:") -			} -			fmt.Fprintf(&buf, " %v=%v,", s.ID, s.Val) -			return nil -		}) -		if n > 0 { -			buf.Truncate(buf.Len() - 1) // remove trailing comma -		} -	case *DataFrame: -		data := f.Data() -		const max = 256 -		if len(data) > max { -			data = data[:max] -		} -		fmt.Fprintf(&buf, " data=%q", data) -		if len(f.Data()) > max { -			fmt.Fprintf(&buf, " (%d bytes omitted)", len(f.Data())-max) -		} -	case *WindowUpdateFrame: -		if f.StreamID == 0 { -			buf.WriteString(" (conn)") -		} -		fmt.Fprintf(&buf, " incr=%v", f.Increment) -	case *PingFrame: -		fmt.Fprintf(&buf, " ping=%q", f.Data[:]) -	case *GoAwayFrame: -		fmt.Fprintf(&buf, " LastStreamID=%v ErrCode=%v Debug=%q", -			f.LastStreamID, f.ErrCode, f.debugData) -	case *RSTStreamFrame: -		fmt.Fprintf(&buf, " ErrCode=%v", f.ErrCode) -	} -	return buf.String() -} diff --git a/vendor/golang.org/x/net/http2/gotrack.go b/vendor/golang.org/x/net/http2/gotrack.go deleted file mode 100644 index 9933c9f8c..000000000 --- a/vendor/golang.org/x/net/http2/gotrack.go +++ /dev/null @@ -1,170 +0,0 @@ -// Copyright 2014 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. - -// Defensive debug-only utility to track that functions run on the -// goroutine that they're supposed to. - -package http2 - -import ( -	"bytes" -	"errors" -	"fmt" -	"os" -	"runtime" -	"strconv" -	"sync" -) - -var DebugGoroutines = os.Getenv("DEBUG_HTTP2_GOROUTINES") == "1" - -type goroutineLock uint64 - -func newGoroutineLock() goroutineLock { -	if !DebugGoroutines { -		return 0 -	} -	return goroutineLock(curGoroutineID()) -} - -func (g goroutineLock) check() { -	if !DebugGoroutines { -		return -	} -	if curGoroutineID() != uint64(g) { -		panic("running on the wrong goroutine") -	} -} - -func (g goroutineLock) checkNotOn() { -	if !DebugGoroutines { -		return -	} -	if curGoroutineID() == uint64(g) { -		panic("running on the wrong goroutine") -	} -} - -var goroutineSpace = []byte("goroutine ") - -func curGoroutineID() uint64 { -	bp := littleBuf.Get().(*[]byte) -	defer littleBuf.Put(bp) -	b := *bp -	b = b[:runtime.Stack(b, false)] -	// Parse the 4707 out of "goroutine 4707 [" -	b = bytes.TrimPrefix(b, goroutineSpace) -	i := bytes.IndexByte(b, ' ') -	if i < 0 { -		panic(fmt.Sprintf("No space found in %q", b)) -	} -	b = b[:i] -	n, err := parseUintBytes(b, 10, 64) -	if err != nil { -		panic(fmt.Sprintf("Failed to parse goroutine ID out of %q: %v", b, err)) -	} -	return n -} - -var littleBuf = sync.Pool{ -	New: func() interface{} { -		buf := make([]byte, 64) -		return &buf -	}, -} - -// parseUintBytes is like strconv.ParseUint, but using a []byte. -func parseUintBytes(s []byte, base int, bitSize int) (n uint64, err error) { -	var cutoff, maxVal uint64 - -	if bitSize == 0 { -		bitSize = int(strconv.IntSize) -	} - -	s0 := s -	switch { -	case len(s) < 1: -		err = strconv.ErrSyntax -		goto Error - -	case 2 <= base && base <= 36: -		// valid base; nothing to do - -	case base == 0: -		// Look for octal, hex prefix. -		switch { -		case s[0] == '0' && len(s) > 1 && (s[1] == 'x' || s[1] == 'X'): -			base = 16 -			s = s[2:] -			if len(s) < 1 { -				err = strconv.ErrSyntax -				goto Error -			} -		case s[0] == '0': -			base = 8 -		default: -			base = 10 -		} - -	default: -		err = errors.New("invalid base " + strconv.Itoa(base)) -		goto Error -	} - -	n = 0 -	cutoff = cutoff64(base) -	maxVal = 1<<uint(bitSize) - 1 - -	for i := 0; i < len(s); i++ { -		var v byte -		d := s[i] -		switch { -		case '0' <= d && d <= '9': -			v = d - '0' -		case 'a' <= d && d <= 'z': -			v = d - 'a' + 10 -		case 'A' <= d && d <= 'Z': -			v = d - 'A' + 10 -		default: -			n = 0 -			err = strconv.ErrSyntax -			goto Error -		} -		if int(v) >= base { -			n = 0 -			err = strconv.ErrSyntax -			goto Error -		} - -		if n >= cutoff { -			// n*base overflows -			n = 1<<64 - 1 -			err = strconv.ErrRange -			goto Error -		} -		n *= uint64(base) - -		n1 := n + uint64(v) -		if n1 < n || n1 > maxVal { -			// n+v overflows -			n = 1<<64 - 1 -			err = strconv.ErrRange -			goto Error -		} -		n = n1 -	} - -	return n, nil - -Error: -	return n, &strconv.NumError{Func: "ParseUint", Num: string(s0), Err: err} -} - -// Return the first number n such that n*base >= 1<<64. -func cutoff64(base int) uint64 { -	if base < 2 { -		return 0 -	} -	return (1<<64-1)/uint64(base) + 1 -} diff --git a/vendor/golang.org/x/net/http2/h2c/h2c.go b/vendor/golang.org/x/net/http2/h2c/h2c.go deleted file mode 100644 index 2d6bf861b..000000000 --- a/vendor/golang.org/x/net/http2/h2c/h2c.go +++ /dev/null @@ -1,240 +0,0 @@ -// Copyright 2018 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. - -// Package h2c implements the unencrypted "h2c" form of HTTP/2. -// -// The h2c protocol is the non-TLS version of HTTP/2 which is not available from -// net/http or golang.org/x/net/http2. -package h2c - -import ( -	"bufio" -	"bytes" -	"encoding/base64" -	"errors" -	"fmt" -	"io" -	"log" -	"net" -	"net/http" -	"net/textproto" -	"os" -	"strings" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2" -) - -var ( -	http2VerboseLogs bool -) - -func init() { -	e := os.Getenv("GODEBUG") -	if strings.Contains(e, "http2debug=1") || strings.Contains(e, "http2debug=2") { -		http2VerboseLogs = true -	} -} - -// h2cHandler is a Handler which implements h2c by hijacking the HTTP/1 traffic -// that should be h2c traffic. There are two ways to begin a h2c connection -// (RFC 7540 Section 3.2 and 3.4): (1) Starting with Prior Knowledge - this -// works by starting an h2c connection with a string of bytes that is valid -// HTTP/1, but unlikely to occur in practice and (2) Upgrading from HTTP/1 to -// h2c - this works by using the HTTP/1 Upgrade header to request an upgrade to -// h2c. When either of those situations occur we hijack the HTTP/1 connection, -// convert it to an HTTP/2 connection and pass the net.Conn to http2.ServeConn. -type h2cHandler struct { -	Handler http.Handler -	s       *http2.Server -} - -// NewHandler returns an http.Handler that wraps h, intercepting any h2c -// traffic. If a request is an h2c connection, it's hijacked and redirected to -// s.ServeConn. Otherwise the returned Handler just forwards requests to h. This -// works because h2c is designed to be parseable as valid HTTP/1, but ignored by -// any HTTP server that does not handle h2c. Therefore we leverage the HTTP/1 -// compatible parts of the Go http library to parse and recognize h2c requests. -// Once a request is recognized as h2c, we hijack the connection and convert it -// to an HTTP/2 connection which is understandable to s.ServeConn. (s.ServeConn -// understands HTTP/2 except for the h2c part of it.) -// -// The first request on an h2c connection is read entirely into memory before -// the Handler is called. To limit the memory consumed by this request, wrap -// the result of NewHandler in an http.MaxBytesHandler. -func NewHandler(h http.Handler, s *http2.Server) http.Handler { -	return &h2cHandler{ -		Handler: h, -		s:       s, -	} -} - -// extractServer extracts existing http.Server instance from http.Request or create an empty http.Server -func extractServer(r *http.Request) *http.Server { -	server, ok := r.Context().Value(http.ServerContextKey).(*http.Server) -	if ok { -		return server -	} -	return new(http.Server) -} - -// ServeHTTP implement the h2c support that is enabled by h2c.GetH2CHandler. -func (s h2cHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { -	// Handle h2c with prior knowledge (RFC 7540 Section 3.4) -	if r.Method == "PRI" && len(r.Header) == 0 && r.URL.Path == "*" && r.Proto == "HTTP/2.0" { -		if http2VerboseLogs { -			log.Print("h2c: attempting h2c with prior knowledge.") -		} -		conn, err := initH2CWithPriorKnowledge(w) -		if err != nil { -			if http2VerboseLogs { -				log.Printf("h2c: error h2c with prior knowledge: %v", err) -			} -			return -		} -		defer conn.Close() -		s.s.ServeConn(conn, &http2.ServeConnOpts{ -			Context:          r.Context(), -			BaseConfig:       extractServer(r), -			Handler:          s.Handler, -			SawClientPreface: true, -		}) -		return -	} -	// Handle Upgrade to h2c (RFC 7540 Section 3.2) -	if isH2CUpgrade(r.Header) { -		conn, settings, err := h2cUpgrade(w, r) -		if err != nil { -			if http2VerboseLogs { -				log.Printf("h2c: error h2c upgrade: %v", err) -			} -			w.WriteHeader(http.StatusInternalServerError) -			return -		} -		defer conn.Close() -		s.s.ServeConn(conn, &http2.ServeConnOpts{ -			Context:        r.Context(), -			BaseConfig:     extractServer(r), -			Handler:        s.Handler, -			UpgradeRequest: r, -			Settings:       settings, -		}) -		return -	} -	s.Handler.ServeHTTP(w, r) -	return -} - -// initH2CWithPriorKnowledge implements creating a h2c connection with prior -// knowledge (Section 3.4) and creates a net.Conn suitable for http2.ServeConn. -// All we have to do is look for the client preface that is suppose to be part -// of the body, and reforward the client preface on the net.Conn this function -// creates. -func initH2CWithPriorKnowledge(w http.ResponseWriter) (net.Conn, error) { -	hijacker, ok := w.(http.Hijacker) -	if !ok { -		return nil, errors.New("h2c: connection does not support Hijack") -	} -	conn, rw, err := hijacker.Hijack() -	if err != nil { -		return nil, err -	} - -	const expectedBody = "SM\r\n\r\n" - -	buf := make([]byte, len(expectedBody)) -	n, err := io.ReadFull(rw, buf) -	if err != nil { -		return nil, fmt.Errorf("h2c: error reading client preface: %s", err) -	} - -	if string(buf[:n]) == expectedBody { -		return newBufConn(conn, rw), nil -	} - -	conn.Close() -	return nil, errors.New("h2c: invalid client preface") -} - -// h2cUpgrade establishes a h2c connection using the HTTP/1 upgrade (Section 3.2). -func h2cUpgrade(w http.ResponseWriter, r *http.Request) (_ net.Conn, settings []byte, err error) { -	settings, err = getH2Settings(r.Header) -	if err != nil { -		return nil, nil, err -	} -	hijacker, ok := w.(http.Hijacker) -	if !ok { -		return nil, nil, errors.New("h2c: connection does not support Hijack") -	} - -	body, err := io.ReadAll(r.Body) -	if err != nil { -		return nil, nil, err -	} -	r.Body = io.NopCloser(bytes.NewBuffer(body)) - -	conn, rw, err := hijacker.Hijack() -	if err != nil { -		return nil, nil, err -	} - -	rw.Write([]byte("HTTP/1.1 101 Switching Protocols\r\n" + -		"Connection: Upgrade\r\n" + -		"Upgrade: h2c\r\n\r\n")) -	return newBufConn(conn, rw), settings, nil -} - -// isH2CUpgrade returns true if the header properly request an upgrade to h2c -// as specified by Section 3.2. -func isH2CUpgrade(h http.Header) bool { -	return httpguts.HeaderValuesContainsToken(h[textproto.CanonicalMIMEHeaderKey("Upgrade")], "h2c") && -		httpguts.HeaderValuesContainsToken(h[textproto.CanonicalMIMEHeaderKey("Connection")], "HTTP2-Settings") -} - -// getH2Settings returns the settings in the HTTP2-Settings header. -func getH2Settings(h http.Header) ([]byte, error) { -	vals, ok := h[textproto.CanonicalMIMEHeaderKey("HTTP2-Settings")] -	if !ok { -		return nil, errors.New("missing HTTP2-Settings header") -	} -	if len(vals) != 1 { -		return nil, fmt.Errorf("expected 1 HTTP2-Settings. Got: %v", vals) -	} -	settings, err := base64.RawURLEncoding.DecodeString(vals[0]) -	if err != nil { -		return nil, err -	} -	return settings, nil -} - -func newBufConn(conn net.Conn, rw *bufio.ReadWriter) net.Conn { -	rw.Flush() -	if rw.Reader.Buffered() == 0 { -		// If there's no buffered data to be read, -		// we can just discard the bufio.ReadWriter. -		return conn -	} -	return &bufConn{conn, rw.Reader} -} - -// bufConn wraps a net.Conn, but reads drain the bufio.Reader first. -type bufConn struct { -	net.Conn -	*bufio.Reader -} - -func (c *bufConn) Read(p []byte) (int, error) { -	if c.Reader == nil { -		return c.Conn.Read(p) -	} -	n := c.Reader.Buffered() -	if n == 0 { -		c.Reader = nil -		return c.Conn.Read(p) -	} -	if n < len(p) { -		p = p[:n] -	} -	return c.Reader.Read(p) -} diff --git a/vendor/golang.org/x/net/http2/hpack/encode.go b/vendor/golang.org/x/net/http2/hpack/encode.go deleted file mode 100644 index 46219da2b..000000000 --- a/vendor/golang.org/x/net/http2/hpack/encode.go +++ /dev/null @@ -1,245 +0,0 @@ -// Copyright 2014 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. - -package hpack - -import ( -	"io" -) - -const ( -	uint32Max              = ^uint32(0) -	initialHeaderTableSize = 4096 -) - -type Encoder struct { -	dynTab dynamicTable -	// minSize is the minimum table size set by -	// SetMaxDynamicTableSize after the previous Header Table Size -	// Update. -	minSize uint32 -	// maxSizeLimit is the maximum table size this encoder -	// supports. This will protect the encoder from too large -	// size. -	maxSizeLimit uint32 -	// tableSizeUpdate indicates whether "Header Table Size -	// Update" is required. -	tableSizeUpdate bool -	w               io.Writer -	buf             []byte -} - -// NewEncoder returns a new Encoder which performs HPACK encoding. An -// encoded data is written to w. -func NewEncoder(w io.Writer) *Encoder { -	e := &Encoder{ -		minSize:         uint32Max, -		maxSizeLimit:    initialHeaderTableSize, -		tableSizeUpdate: false, -		w:               w, -	} -	e.dynTab.table.init() -	e.dynTab.setMaxSize(initialHeaderTableSize) -	return e -} - -// WriteField encodes f into a single Write to e's underlying Writer. -// This function may also produce bytes for "Header Table Size Update" -// if necessary. If produced, it is done before encoding f. -func (e *Encoder) WriteField(f HeaderField) error { -	e.buf = e.buf[:0] - -	if e.tableSizeUpdate { -		e.tableSizeUpdate = false -		if e.minSize < e.dynTab.maxSize { -			e.buf = appendTableSize(e.buf, e.minSize) -		} -		e.minSize = uint32Max -		e.buf = appendTableSize(e.buf, e.dynTab.maxSize) -	} - -	idx, nameValueMatch := e.searchTable(f) -	if nameValueMatch { -		e.buf = appendIndexed(e.buf, idx) -	} else { -		indexing := e.shouldIndex(f) -		if indexing { -			e.dynTab.add(f) -		} - -		if idx == 0 { -			e.buf = appendNewName(e.buf, f, indexing) -		} else { -			e.buf = appendIndexedName(e.buf, f, idx, indexing) -		} -	} -	n, err := e.w.Write(e.buf) -	if err == nil && n != len(e.buf) { -		err = io.ErrShortWrite -	} -	return err -} - -// searchTable searches f in both stable and dynamic header tables. -// The static header table is searched first. Only when there is no -// exact match for both name and value, the dynamic header table is -// then searched. If there is no match, i is 0. If both name and value -// match, i is the matched index and nameValueMatch becomes true. If -// only name matches, i points to that index and nameValueMatch -// becomes false. -func (e *Encoder) searchTable(f HeaderField) (i uint64, nameValueMatch bool) { -	i, nameValueMatch = staticTable.search(f) -	if nameValueMatch { -		return i, true -	} - -	j, nameValueMatch := e.dynTab.table.search(f) -	if nameValueMatch || (i == 0 && j != 0) { -		return j + uint64(staticTable.len()), nameValueMatch -	} - -	return i, false -} - -// SetMaxDynamicTableSize changes the dynamic header table size to v. -// The actual size is bounded by the value passed to -// SetMaxDynamicTableSizeLimit. -func (e *Encoder) SetMaxDynamicTableSize(v uint32) { -	if v > e.maxSizeLimit { -		v = e.maxSizeLimit -	} -	if v < e.minSize { -		e.minSize = v -	} -	e.tableSizeUpdate = true -	e.dynTab.setMaxSize(v) -} - -// MaxDynamicTableSize returns the current dynamic header table size. -func (e *Encoder) MaxDynamicTableSize() (v uint32) { -	return e.dynTab.maxSize -} - -// SetMaxDynamicTableSizeLimit changes the maximum value that can be -// specified in SetMaxDynamicTableSize to v. By default, it is set to -// 4096, which is the same size of the default dynamic header table -// size described in HPACK specification. If the current maximum -// dynamic header table size is strictly greater than v, "Header Table -// Size Update" will be done in the next WriteField call and the -// maximum dynamic header table size is truncated to v. -func (e *Encoder) SetMaxDynamicTableSizeLimit(v uint32) { -	e.maxSizeLimit = v -	if e.dynTab.maxSize > v { -		e.tableSizeUpdate = true -		e.dynTab.setMaxSize(v) -	} -} - -// shouldIndex reports whether f should be indexed. -func (e *Encoder) shouldIndex(f HeaderField) bool { -	return !f.Sensitive && f.Size() <= e.dynTab.maxSize -} - -// appendIndexed appends index i, as encoded in "Indexed Header Field" -// representation, to dst and returns the extended buffer. -func appendIndexed(dst []byte, i uint64) []byte { -	first := len(dst) -	dst = appendVarInt(dst, 7, i) -	dst[first] |= 0x80 -	return dst -} - -// appendNewName appends f, as encoded in one of "Literal Header field -// - New Name" representation variants, to dst and returns the -// extended buffer. -// -// If f.Sensitive is true, "Never Indexed" representation is used. If -// f.Sensitive is false and indexing is true, "Incremental Indexing" -// representation is used. -func appendNewName(dst []byte, f HeaderField, indexing bool) []byte { -	dst = append(dst, encodeTypeByte(indexing, f.Sensitive)) -	dst = appendHpackString(dst, f.Name) -	return appendHpackString(dst, f.Value) -} - -// appendIndexedName appends f and index i referring indexed name -// entry, as encoded in one of "Literal Header field - Indexed Name" -// representation variants, to dst and returns the extended buffer. -// -// If f.Sensitive is true, "Never Indexed" representation is used. If -// f.Sensitive is false and indexing is true, "Incremental Indexing" -// representation is used. -func appendIndexedName(dst []byte, f HeaderField, i uint64, indexing bool) []byte { -	first := len(dst) -	var n byte -	if indexing { -		n = 6 -	} else { -		n = 4 -	} -	dst = appendVarInt(dst, n, i) -	dst[first] |= encodeTypeByte(indexing, f.Sensitive) -	return appendHpackString(dst, f.Value) -} - -// appendTableSize appends v, as encoded in "Header Table Size Update" -// representation, to dst and returns the extended buffer. -func appendTableSize(dst []byte, v uint32) []byte { -	first := len(dst) -	dst = appendVarInt(dst, 5, uint64(v)) -	dst[first] |= 0x20 -	return dst -} - -// appendVarInt appends i, as encoded in variable integer form using n -// bit prefix, to dst and returns the extended buffer. -// -// See -// https://httpwg.org/specs/rfc7541.html#integer.representation -func appendVarInt(dst []byte, n byte, i uint64) []byte { -	k := uint64((1 << n) - 1) -	if i < k { -		return append(dst, byte(i)) -	} -	dst = append(dst, byte(k)) -	i -= k -	for ; i >= 128; i >>= 7 { -		dst = append(dst, byte(0x80|(i&0x7f))) -	} -	return append(dst, byte(i)) -} - -// appendHpackString appends s, as encoded in "String Literal" -// representation, to dst and returns the extended buffer. -// -// s will be encoded in Huffman codes only when it produces strictly -// shorter byte string. -func appendHpackString(dst []byte, s string) []byte { -	huffmanLength := HuffmanEncodeLength(s) -	if huffmanLength < uint64(len(s)) { -		first := len(dst) -		dst = appendVarInt(dst, 7, huffmanLength) -		dst = AppendHuffmanString(dst, s) -		dst[first] |= 0x80 -	} else { -		dst = appendVarInt(dst, 7, uint64(len(s))) -		dst = append(dst, s...) -	} -	return dst -} - -// encodeTypeByte returns type byte. If sensitive is true, type byte -// for "Never Indexed" representation is returned. If sensitive is -// false and indexing is true, type byte for "Incremental Indexing" -// representation is returned. Otherwise, type byte for "Without -// Indexing" is returned. -func encodeTypeByte(indexing, sensitive bool) byte { -	if sensitive { -		return 0x10 -	} -	if indexing { -		return 0x40 -	} -	return 0 -} diff --git a/vendor/golang.org/x/net/http2/hpack/hpack.go b/vendor/golang.org/x/net/http2/hpack/hpack.go deleted file mode 100644 index 7a1d97669..000000000 --- a/vendor/golang.org/x/net/http2/hpack/hpack.go +++ /dev/null @@ -1,523 +0,0 @@ -// Copyright 2014 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. - -// Package hpack implements HPACK, a compression format for -// efficiently representing HTTP header fields in the context of HTTP/2. -// -// See http://tools.ietf.org/html/draft-ietf-httpbis-header-compression-09 -package hpack - -import ( -	"bytes" -	"errors" -	"fmt" -) - -// A DecodingError is something the spec defines as a decoding error. -type DecodingError struct { -	Err error -} - -func (de DecodingError) Error() string { -	return fmt.Sprintf("decoding error: %v", de.Err) -} - -// An InvalidIndexError is returned when an encoder references a table -// entry before the static table or after the end of the dynamic table. -type InvalidIndexError int - -func (e InvalidIndexError) Error() string { -	return fmt.Sprintf("invalid indexed representation index %d", int(e)) -} - -// A HeaderField is a name-value pair. Both the name and value are -// treated as opaque sequences of octets. -type HeaderField struct { -	Name, Value string - -	// Sensitive means that this header field should never be -	// indexed. -	Sensitive bool -} - -// IsPseudo reports whether the header field is an http2 pseudo header. -// That is, it reports whether it starts with a colon. -// It is not otherwise guaranteed to be a valid pseudo header field, -// though. -func (hf HeaderField) IsPseudo() bool { -	return len(hf.Name) != 0 && hf.Name[0] == ':' -} - -func (hf HeaderField) String() string { -	var suffix string -	if hf.Sensitive { -		suffix = " (sensitive)" -	} -	return fmt.Sprintf("header field %q = %q%s", hf.Name, hf.Value, suffix) -} - -// Size returns the size of an entry per RFC 7541 section 4.1. -func (hf HeaderField) Size() uint32 { -	// https://httpwg.org/specs/rfc7541.html#rfc.section.4.1 -	// "The size of the dynamic table is the sum of the size of -	// its entries. The size of an entry is the sum of its name's -	// length in octets (as defined in Section 5.2), its value's -	// length in octets (see Section 5.2), plus 32.  The size of -	// an entry is calculated using the length of the name and -	// value without any Huffman encoding applied." - -	// This can overflow if somebody makes a large HeaderField -	// Name and/or Value by hand, but we don't care, because that -	// won't happen on the wire because the encoding doesn't allow -	// it. -	return uint32(len(hf.Name) + len(hf.Value) + 32) -} - -// A Decoder is the decoding context for incremental processing of -// header blocks. -type Decoder struct { -	dynTab dynamicTable -	emit   func(f HeaderField) - -	emitEnabled bool // whether calls to emit are enabled -	maxStrLen   int  // 0 means unlimited - -	// buf is the unparsed buffer. It's only written to -	// saveBuf if it was truncated in the middle of a header -	// block. Because it's usually not owned, we can only -	// process it under Write. -	buf []byte // not owned; only valid during Write - -	// saveBuf is previous data passed to Write which we weren't able -	// to fully parse before. Unlike buf, we own this data. -	saveBuf bytes.Buffer - -	firstField bool // processing the first field of the header block -} - -// NewDecoder returns a new decoder with the provided maximum dynamic -// table size. The emitFunc will be called for each valid field -// parsed, in the same goroutine as calls to Write, before Write returns. -func NewDecoder(maxDynamicTableSize uint32, emitFunc func(f HeaderField)) *Decoder { -	d := &Decoder{ -		emit:        emitFunc, -		emitEnabled: true, -		firstField:  true, -	} -	d.dynTab.table.init() -	d.dynTab.allowedMaxSize = maxDynamicTableSize -	d.dynTab.setMaxSize(maxDynamicTableSize) -	return d -} - -// ErrStringLength is returned by Decoder.Write when the max string length -// (as configured by Decoder.SetMaxStringLength) would be violated. -var ErrStringLength = errors.New("hpack: string too long") - -// SetMaxStringLength sets the maximum size of a HeaderField name or -// value string. If a string exceeds this length (even after any -// decompression), Write will return ErrStringLength. -// A value of 0 means unlimited and is the default from NewDecoder. -func (d *Decoder) SetMaxStringLength(n int) { -	d.maxStrLen = n -} - -// SetEmitFunc changes the callback used when new header fields -// are decoded. -// It must be non-nil. It does not affect EmitEnabled. -func (d *Decoder) SetEmitFunc(emitFunc func(f HeaderField)) { -	d.emit = emitFunc -} - -// SetEmitEnabled controls whether the emitFunc provided to NewDecoder -// should be called. The default is true. -// -// This facility exists to let servers enforce MAX_HEADER_LIST_SIZE -// while still decoding and keeping in-sync with decoder state, but -// without doing unnecessary decompression or generating unnecessary -// garbage for header fields past the limit. -func (d *Decoder) SetEmitEnabled(v bool) { d.emitEnabled = v } - -// EmitEnabled reports whether calls to the emitFunc provided to NewDecoder -// are currently enabled. The default is true. -func (d *Decoder) EmitEnabled() bool { return d.emitEnabled } - -// TODO: add method *Decoder.Reset(maxSize, emitFunc) to let callers re-use Decoders and their -// underlying buffers for garbage reasons. - -func (d *Decoder) SetMaxDynamicTableSize(v uint32) { -	d.dynTab.setMaxSize(v) -} - -// SetAllowedMaxDynamicTableSize sets the upper bound that the encoded -// stream (via dynamic table size updates) may set the maximum size -// to. -func (d *Decoder) SetAllowedMaxDynamicTableSize(v uint32) { -	d.dynTab.allowedMaxSize = v -} - -type dynamicTable struct { -	// https://httpwg.org/specs/rfc7541.html#rfc.section.2.3.2 -	table          headerFieldTable -	size           uint32 // in bytes -	maxSize        uint32 // current maxSize -	allowedMaxSize uint32 // maxSize may go up to this, inclusive -} - -func (dt *dynamicTable) setMaxSize(v uint32) { -	dt.maxSize = v -	dt.evict() -} - -func (dt *dynamicTable) add(f HeaderField) { -	dt.table.addEntry(f) -	dt.size += f.Size() -	dt.evict() -} - -// If we're too big, evict old stuff. -func (dt *dynamicTable) evict() { -	var n int -	for dt.size > dt.maxSize && n < dt.table.len() { -		dt.size -= dt.table.ents[n].Size() -		n++ -	} -	dt.table.evictOldest(n) -} - -func (d *Decoder) maxTableIndex() int { -	// This should never overflow. RFC 7540 Section 6.5.2 limits the size of -	// the dynamic table to 2^32 bytes, where each entry will occupy more than -	// one byte. Further, the staticTable has a fixed, small length. -	return d.dynTab.table.len() + staticTable.len() -} - -func (d *Decoder) at(i uint64) (hf HeaderField, ok bool) { -	// See Section 2.3.3. -	if i == 0 { -		return -	} -	if i <= uint64(staticTable.len()) { -		return staticTable.ents[i-1], true -	} -	if i > uint64(d.maxTableIndex()) { -		return -	} -	// In the dynamic table, newer entries have lower indices. -	// However, dt.ents[0] is the oldest entry. Hence, dt.ents is -	// the reversed dynamic table. -	dt := d.dynTab.table -	return dt.ents[dt.len()-(int(i)-staticTable.len())], true -} - -// DecodeFull decodes an entire block. -// -// TODO: remove this method and make it incremental later? This is -// easier for debugging now. -func (d *Decoder) DecodeFull(p []byte) ([]HeaderField, error) { -	var hf []HeaderField -	saveFunc := d.emit -	defer func() { d.emit = saveFunc }() -	d.emit = func(f HeaderField) { hf = append(hf, f) } -	if _, err := d.Write(p); err != nil { -		return nil, err -	} -	if err := d.Close(); err != nil { -		return nil, err -	} -	return hf, nil -} - -// Close declares that the decoding is complete and resets the Decoder -// to be reused again for a new header block. If there is any remaining -// data in the decoder's buffer, Close returns an error. -func (d *Decoder) Close() error { -	if d.saveBuf.Len() > 0 { -		d.saveBuf.Reset() -		return DecodingError{errors.New("truncated headers")} -	} -	d.firstField = true -	return nil -} - -func (d *Decoder) Write(p []byte) (n int, err error) { -	if len(p) == 0 { -		// Prevent state machine CPU attacks (making us redo -		// work up to the point of finding out we don't have -		// enough data) -		return -	} -	// Only copy the data if we have to. Optimistically assume -	// that p will contain a complete header block. -	if d.saveBuf.Len() == 0 { -		d.buf = p -	} else { -		d.saveBuf.Write(p) -		d.buf = d.saveBuf.Bytes() -		d.saveBuf.Reset() -	} - -	for len(d.buf) > 0 { -		err = d.parseHeaderFieldRepr() -		if err == errNeedMore { -			// Extra paranoia, making sure saveBuf won't -			// get too large. All the varint and string -			// reading code earlier should already catch -			// overlong things and return ErrStringLength, -			// but keep this as a last resort. -			const varIntOverhead = 8 // conservative -			if d.maxStrLen != 0 && int64(len(d.buf)) > 2*(int64(d.maxStrLen)+varIntOverhead) { -				return 0, ErrStringLength -			} -			d.saveBuf.Write(d.buf) -			return len(p), nil -		} -		d.firstField = false -		if err != nil { -			break -		} -	} -	return len(p), err -} - -// errNeedMore is an internal sentinel error value that means the -// buffer is truncated and we need to read more data before we can -// continue parsing. -var errNeedMore = errors.New("need more data") - -type indexType int - -const ( -	indexedTrue indexType = iota -	indexedFalse -	indexedNever -) - -func (v indexType) indexed() bool   { return v == indexedTrue } -func (v indexType) sensitive() bool { return v == indexedNever } - -// returns errNeedMore if there isn't enough data available. -// any other error is fatal. -// consumes d.buf iff it returns nil. -// precondition: must be called with len(d.buf) > 0 -func (d *Decoder) parseHeaderFieldRepr() error { -	b := d.buf[0] -	switch { -	case b&128 != 0: -		// Indexed representation. -		// High bit set? -		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.1 -		return d.parseFieldIndexed() -	case b&192 == 64: -		// 6.2.1 Literal Header Field with Incremental Indexing -		// 0b10xxxxxx: top two bits are 10 -		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.2.1 -		return d.parseFieldLiteral(6, indexedTrue) -	case b&240 == 0: -		// 6.2.2 Literal Header Field without Indexing -		// 0b0000xxxx: top four bits are 0000 -		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.2.2 -		return d.parseFieldLiteral(4, indexedFalse) -	case b&240 == 16: -		// 6.2.3 Literal Header Field never Indexed -		// 0b0001xxxx: top four bits are 0001 -		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.2.3 -		return d.parseFieldLiteral(4, indexedNever) -	case b&224 == 32: -		// 6.3 Dynamic Table Size Update -		// Top three bits are '001'. -		// https://httpwg.org/specs/rfc7541.html#rfc.section.6.3 -		return d.parseDynamicTableSizeUpdate() -	} - -	return DecodingError{errors.New("invalid encoding")} -} - -// (same invariants and behavior as parseHeaderFieldRepr) -func (d *Decoder) parseFieldIndexed() error { -	buf := d.buf -	idx, buf, err := readVarInt(7, buf) -	if err != nil { -		return err -	} -	hf, ok := d.at(idx) -	if !ok { -		return DecodingError{InvalidIndexError(idx)} -	} -	d.buf = buf -	return d.callEmit(HeaderField{Name: hf.Name, Value: hf.Value}) -} - -// (same invariants and behavior as parseHeaderFieldRepr) -func (d *Decoder) parseFieldLiteral(n uint8, it indexType) error { -	buf := d.buf -	nameIdx, buf, err := readVarInt(n, buf) -	if err != nil { -		return err -	} - -	var hf HeaderField -	wantStr := d.emitEnabled || it.indexed() -	var undecodedName undecodedString -	if nameIdx > 0 { -		ihf, ok := d.at(nameIdx) -		if !ok { -			return DecodingError{InvalidIndexError(nameIdx)} -		} -		hf.Name = ihf.Name -	} else { -		undecodedName, buf, err = d.readString(buf) -		if err != nil { -			return err -		} -	} -	undecodedValue, buf, err := d.readString(buf) -	if err != nil { -		return err -	} -	if wantStr { -		if nameIdx <= 0 { -			hf.Name, err = d.decodeString(undecodedName) -			if err != nil { -				return err -			} -		} -		hf.Value, err = d.decodeString(undecodedValue) -		if err != nil { -			return err -		} -	} -	d.buf = buf -	if it.indexed() { -		d.dynTab.add(hf) -	} -	hf.Sensitive = it.sensitive() -	return d.callEmit(hf) -} - -func (d *Decoder) callEmit(hf HeaderField) error { -	if d.maxStrLen != 0 { -		if len(hf.Name) > d.maxStrLen || len(hf.Value) > d.maxStrLen { -			return ErrStringLength -		} -	} -	if d.emitEnabled { -		d.emit(hf) -	} -	return nil -} - -// (same invariants and behavior as parseHeaderFieldRepr) -func (d *Decoder) parseDynamicTableSizeUpdate() error { -	// RFC 7541, sec 4.2: This dynamic table size update MUST occur at the -	// beginning of the first header block following the change to the dynamic table size. -	if !d.firstField && d.dynTab.size > 0 { -		return DecodingError{errors.New("dynamic table size update MUST occur at the beginning of a header block")} -	} - -	buf := d.buf -	size, buf, err := readVarInt(5, buf) -	if err != nil { -		return err -	} -	if size > uint64(d.dynTab.allowedMaxSize) { -		return DecodingError{errors.New("dynamic table size update too large")} -	} -	d.dynTab.setMaxSize(uint32(size)) -	d.buf = buf -	return nil -} - -var errVarintOverflow = DecodingError{errors.New("varint integer overflow")} - -// readVarInt reads an unsigned variable length integer off the -// beginning of p. n is the parameter as described in -// https://httpwg.org/specs/rfc7541.html#rfc.section.5.1. -// -// n must always be between 1 and 8. -// -// The returned remain buffer is either a smaller suffix of p, or err != nil. -// The error is errNeedMore if p doesn't contain a complete integer. -func readVarInt(n byte, p []byte) (i uint64, remain []byte, err error) { -	if n < 1 || n > 8 { -		panic("bad n") -	} -	if len(p) == 0 { -		return 0, p, errNeedMore -	} -	i = uint64(p[0]) -	if n < 8 { -		i &= (1 << uint64(n)) - 1 -	} -	if i < (1<<uint64(n))-1 { -		return i, p[1:], nil -	} - -	origP := p -	p = p[1:] -	var m uint64 -	for len(p) > 0 { -		b := p[0] -		p = p[1:] -		i += uint64(b&127) << m -		if b&128 == 0 { -			return i, p, nil -		} -		m += 7 -		if m >= 63 { // TODO: proper overflow check. making this up. -			return 0, origP, errVarintOverflow -		} -	} -	return 0, origP, errNeedMore -} - -// readString reads an hpack string from p. -// -// It returns a reference to the encoded string data to permit deferring decode costs -// until after the caller verifies all data is present. -func (d *Decoder) readString(p []byte) (u undecodedString, remain []byte, err error) { -	if len(p) == 0 { -		return u, p, errNeedMore -	} -	isHuff := p[0]&128 != 0 -	strLen, p, err := readVarInt(7, p) -	if err != nil { -		return u, p, err -	} -	if d.maxStrLen != 0 && strLen > uint64(d.maxStrLen) { -		// Returning an error here means Huffman decoding errors -		// for non-indexed strings past the maximum string length -		// are ignored, but the server is returning an error anyway -		// and because the string is not indexed the error will not -		// affect the decoding state. -		return u, nil, ErrStringLength -	} -	if uint64(len(p)) < strLen { -		return u, p, errNeedMore -	} -	u.isHuff = isHuff -	u.b = p[:strLen] -	return u, p[strLen:], nil -} - -type undecodedString struct { -	isHuff bool -	b      []byte -} - -func (d *Decoder) decodeString(u undecodedString) (string, error) { -	if !u.isHuff { -		return string(u.b), nil -	} -	buf := bufPool.Get().(*bytes.Buffer) -	buf.Reset() // don't trust others -	var s string -	err := huffmanDecode(buf, d.maxStrLen, u.b) -	if err == nil { -		s = buf.String() -	} -	buf.Reset() // be nice to GC -	bufPool.Put(buf) -	return s, err -} diff --git a/vendor/golang.org/x/net/http2/hpack/huffman.go b/vendor/golang.org/x/net/http2/hpack/huffman.go deleted file mode 100644 index 20d083a71..000000000 --- a/vendor/golang.org/x/net/http2/hpack/huffman.go +++ /dev/null @@ -1,226 +0,0 @@ -// Copyright 2014 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. - -package hpack - -import ( -	"bytes" -	"errors" -	"io" -	"sync" -) - -var bufPool = sync.Pool{ -	New: func() interface{} { return new(bytes.Buffer) }, -} - -// HuffmanDecode decodes the string in v and writes the expanded -// result to w, returning the number of bytes written to w and the -// Write call's return value. At most one Write call is made. -func HuffmanDecode(w io.Writer, v []byte) (int, error) { -	buf := bufPool.Get().(*bytes.Buffer) -	buf.Reset() -	defer bufPool.Put(buf) -	if err := huffmanDecode(buf, 0, v); err != nil { -		return 0, err -	} -	return w.Write(buf.Bytes()) -} - -// HuffmanDecodeToString decodes the string in v. -func HuffmanDecodeToString(v []byte) (string, error) { -	buf := bufPool.Get().(*bytes.Buffer) -	buf.Reset() -	defer bufPool.Put(buf) -	if err := huffmanDecode(buf, 0, v); err != nil { -		return "", err -	} -	return buf.String(), nil -} - -// ErrInvalidHuffman is returned for errors found decoding -// Huffman-encoded strings. -var ErrInvalidHuffman = errors.New("hpack: invalid Huffman-encoded data") - -// huffmanDecode decodes v to buf. -// If maxLen is greater than 0, attempts to write more to buf than -// maxLen bytes will return ErrStringLength. -func huffmanDecode(buf *bytes.Buffer, maxLen int, v []byte) error { -	rootHuffmanNode := getRootHuffmanNode() -	n := rootHuffmanNode -	// cur is the bit buffer that has not been fed into n. -	// cbits is the number of low order bits in cur that are valid. -	// sbits is the number of bits of the symbol prefix being decoded. -	cur, cbits, sbits := uint(0), uint8(0), uint8(0) -	for _, b := range v { -		cur = cur<<8 | uint(b) -		cbits += 8 -		sbits += 8 -		for cbits >= 8 { -			idx := byte(cur >> (cbits - 8)) -			n = n.children[idx] -			if n == nil { -				return ErrInvalidHuffman -			} -			if n.children == nil { -				if maxLen != 0 && buf.Len() == maxLen { -					return ErrStringLength -				} -				buf.WriteByte(n.sym) -				cbits -= n.codeLen -				n = rootHuffmanNode -				sbits = cbits -			} else { -				cbits -= 8 -			} -		} -	} -	for cbits > 0 { -		n = n.children[byte(cur<<(8-cbits))] -		if n == nil { -			return ErrInvalidHuffman -		} -		if n.children != nil || n.codeLen > cbits { -			break -		} -		if maxLen != 0 && buf.Len() == maxLen { -			return ErrStringLength -		} -		buf.WriteByte(n.sym) -		cbits -= n.codeLen -		n = rootHuffmanNode -		sbits = cbits -	} -	if sbits > 7 { -		// Either there was an incomplete symbol, or overlong padding. -		// Both are decoding errors per RFC 7541 section 5.2. -		return ErrInvalidHuffman -	} -	if mask := uint(1<<cbits - 1); cur&mask != mask { -		// Trailing bits must be a prefix of EOS per RFC 7541 section 5.2. -		return ErrInvalidHuffman -	} - -	return nil -} - -// incomparable is a zero-width, non-comparable type. Adding it to a struct -// makes that struct also non-comparable, and generally doesn't add -// any size (as long as it's first). -type incomparable [0]func() - -type node struct { -	_ incomparable - -	// children is non-nil for internal nodes -	children *[256]*node - -	// The following are only valid if children is nil: -	codeLen uint8 // number of bits that led to the output of sym -	sym     byte  // output symbol -} - -func newInternalNode() *node { -	return &node{children: new([256]*node)} -} - -var ( -	buildRootOnce       sync.Once -	lazyRootHuffmanNode *node -) - -func getRootHuffmanNode() *node { -	buildRootOnce.Do(buildRootHuffmanNode) -	return lazyRootHuffmanNode -} - -func buildRootHuffmanNode() { -	if len(huffmanCodes) != 256 { -		panic("unexpected size") -	} -	lazyRootHuffmanNode = newInternalNode() -	// allocate a leaf node for each of the 256 symbols -	leaves := new([256]node) - -	for sym, code := range huffmanCodes { -		codeLen := huffmanCodeLen[sym] - -		cur := lazyRootHuffmanNode -		for codeLen > 8 { -			codeLen -= 8 -			i := uint8(code >> codeLen) -			if cur.children[i] == nil { -				cur.children[i] = newInternalNode() -			} -			cur = cur.children[i] -		} -		shift := 8 - codeLen -		start, end := int(uint8(code<<shift)), int(1<<shift) - -		leaves[sym].sym = byte(sym) -		leaves[sym].codeLen = codeLen -		for i := start; i < start+end; i++ { -			cur.children[i] = &leaves[sym] -		} -	} -} - -// AppendHuffmanString appends s, as encoded in Huffman codes, to dst -// and returns the extended buffer. -func AppendHuffmanString(dst []byte, s string) []byte { -	// This relies on the maximum huffman code length being 30 (See tables.go huffmanCodeLen array) -	// So if a uint64 buffer has less than 32 valid bits can always accommodate another huffmanCode. -	var ( -		x uint64 // buffer -		n uint   // number valid of bits present in x -	) -	for i := 0; i < len(s); i++ { -		c := s[i] -		n += uint(huffmanCodeLen[c]) -		x <<= huffmanCodeLen[c] % 64 -		x |= uint64(huffmanCodes[c]) -		if n >= 32 { -			n %= 32             // Normally would be -= 32 but %= 32 informs compiler 0 <= n <= 31 for upcoming shift -			y := uint32(x >> n) // Compiler doesn't combine memory writes if y isn't uint32 -			dst = append(dst, byte(y>>24), byte(y>>16), byte(y>>8), byte(y)) -		} -	} -	// Add padding bits if necessary -	if over := n % 8; over > 0 { -		const ( -			eosCode    = 0x3fffffff -			eosNBits   = 30 -			eosPadByte = eosCode >> (eosNBits - 8) -		) -		pad := 8 - over -		x = (x << pad) | (eosPadByte >> over) -		n += pad // 8 now divides into n exactly -	} -	// n in (0, 8, 16, 24, 32) -	switch n / 8 { -	case 0: -		return dst -	case 1: -		return append(dst, byte(x)) -	case 2: -		y := uint16(x) -		return append(dst, byte(y>>8), byte(y)) -	case 3: -		y := uint16(x >> 8) -		return append(dst, byte(y>>8), byte(y), byte(x)) -	} -	//	case 4: -	y := uint32(x) -	return append(dst, byte(y>>24), byte(y>>16), byte(y>>8), byte(y)) -} - -// HuffmanEncodeLength returns the number of bytes required to encode -// s in Huffman codes. The result is round up to byte boundary. -func HuffmanEncodeLength(s string) uint64 { -	n := uint64(0) -	for i := 0; i < len(s); i++ { -		n += uint64(huffmanCodeLen[s[i]]) -	} -	return (n + 7) / 8 -} diff --git a/vendor/golang.org/x/net/http2/hpack/static_table.go b/vendor/golang.org/x/net/http2/hpack/static_table.go deleted file mode 100644 index 754a1eb91..000000000 --- a/vendor/golang.org/x/net/http2/hpack/static_table.go +++ /dev/null @@ -1,188 +0,0 @@ -// go generate gen.go -// Code generated by the command above; DO NOT EDIT. - -package hpack - -var staticTable = &headerFieldTable{ -	evictCount: 0, -	byName: map[string]uint64{ -		":authority":                  1, -		":method":                     3, -		":path":                       5, -		":scheme":                     7, -		":status":                     14, -		"accept-charset":              15, -		"accept-encoding":             16, -		"accept-language":             17, -		"accept-ranges":               18, -		"accept":                      19, -		"access-control-allow-origin": 20, -		"age":                         21, -		"allow":                       22, -		"authorization":               23, -		"cache-control":               24, -		"content-disposition":         25, -		"content-encoding":            26, -		"content-language":            27, -		"content-length":              28, -		"content-location":            29, -		"content-range":               30, -		"content-type":                31, -		"cookie":                      32, -		"date":                        33, -		"etag":                        34, -		"expect":                      35, -		"expires":                     36, -		"from":                        37, -		"host":                        38, -		"if-match":                    39, -		"if-modified-since":           40, -		"if-none-match":               41, -		"if-range":                    42, -		"if-unmodified-since":         43, -		"last-modified":               44, -		"link":                        45, -		"location":                    46, -		"max-forwards":                47, -		"proxy-authenticate":          48, -		"proxy-authorization":         49, -		"range":                       50, -		"referer":                     51, -		"refresh":                     52, -		"retry-after":                 53, -		"server":                      54, -		"set-cookie":                  55, -		"strict-transport-security":   56, -		"transfer-encoding":           57, -		"user-agent":                  58, -		"vary":                        59, -		"via":                         60, -		"www-authenticate":            61, -	}, -	byNameValue: map[pairNameValue]uint64{ -		{name: ":authority", value: ""}:                   1, -		{name: ":method", value: "GET"}:                   2, -		{name: ":method", value: "POST"}:                  3, -		{name: ":path", value: "/"}:                       4, -		{name: ":path", value: "/index.html"}:             5, -		{name: ":scheme", value: "http"}:                  6, -		{name: ":scheme", value: "https"}:                 7, -		{name: ":status", value: "200"}:                   8, -		{name: ":status", value: "204"}:                   9, -		{name: ":status", value: "206"}:                   10, -		{name: ":status", value: "304"}:                   11, -		{name: ":status", value: "400"}:                   12, -		{name: ":status", value: "404"}:                   13, -		{name: ":status", value: "500"}:                   14, -		{name: "accept-charset", value: ""}:               15, -		{name: "accept-encoding", value: "gzip, deflate"}: 16, -		{name: "accept-language", value: ""}:              17, -		{name: "accept-ranges", value: ""}:                18, -		{name: "accept", value: ""}:                       19, -		{name: "access-control-allow-origin", value: ""}:  20, -		{name: "age", value: ""}:                          21, -		{name: "allow", value: ""}:                        22, -		{name: "authorization", value: ""}:                23, -		{name: "cache-control", value: ""}:                24, -		{name: "content-disposition", value: ""}:          25, -		{name: "content-encoding", value: ""}:             26, -		{name: "content-language", value: ""}:             27, -		{name: "content-length", value: ""}:               28, -		{name: "content-location", value: ""}:             29, -		{name: "content-range", value: ""}:                30, -		{name: "content-type", value: ""}:                 31, -		{name: "cookie", value: ""}:                       32, -		{name: "date", value: ""}:                         33, -		{name: "etag", value: ""}:                         34, -		{name: "expect", value: ""}:                       35, -		{name: "expires", value: ""}:                      36, -		{name: "from", value: ""}:                         37, -		{name: "host", value: ""}:                         38, -		{name: "if-match", value: ""}:                     39, -		{name: "if-modified-since", value: ""}:            40, -		{name: "if-none-match", value: ""}:                41, -		{name: "if-range", value: ""}:                     42, -		{name: "if-unmodified-since", value: ""}:          43, -		{name: "last-modified", value: ""}:                44, -		{name: "link", value: ""}:                         45, -		{name: "location", value: ""}:                     46, -		{name: "max-forwards", value: ""}:                 47, -		{name: "proxy-authenticate", value: ""}:           48, -		{name: "proxy-authorization", value: ""}:          49, -		{name: "range", value: ""}:                        50, -		{name: "referer", value: ""}:                      51, -		{name: "refresh", value: ""}:                      52, -		{name: "retry-after", value: ""}:                  53, -		{name: "server", value: ""}:                       54, -		{name: "set-cookie", value: ""}:                   55, -		{name: "strict-transport-security", value: ""}:    56, -		{name: "transfer-encoding", value: ""}:            57, -		{name: "user-agent", value: ""}:                   58, -		{name: "vary", value: ""}:                         59, -		{name: "via", value: ""}:                          60, -		{name: "www-authenticate", value: ""}:             61, -	}, -	ents: []HeaderField{ -		{Name: ":authority", Value: "", Sensitive: false}, -		{Name: ":method", Value: "GET", Sensitive: false}, -		{Name: ":method", Value: "POST", Sensitive: false}, -		{Name: ":path", Value: "/", Sensitive: false}, -		{Name: ":path", Value: "/index.html", Sensitive: false}, -		{Name: ":scheme", Value: "http", Sensitive: false}, -		{Name: ":scheme", Value: "https", Sensitive: false}, -		{Name: ":status", Value: "200", Sensitive: false}, -		{Name: ":status", Value: "204", Sensitive: false}, -		{Name: ":status", Value: "206", Sensitive: false}, -		{Name: ":status", Value: "304", Sensitive: false}, -		{Name: ":status", Value: "400", Sensitive: false}, -		{Name: ":status", Value: "404", Sensitive: false}, -		{Name: ":status", Value: "500", Sensitive: false}, -		{Name: "accept-charset", Value: "", Sensitive: false}, -		{Name: "accept-encoding", Value: "gzip, deflate", Sensitive: false}, -		{Name: "accept-language", Value: "", Sensitive: false}, -		{Name: "accept-ranges", Value: "", Sensitive: false}, -		{Name: "accept", Value: "", Sensitive: false}, -		{Name: "access-control-allow-origin", Value: "", Sensitive: false}, -		{Name: "age", Value: "", Sensitive: false}, -		{Name: "allow", Value: "", Sensitive: false}, -		{Name: "authorization", Value: "", Sensitive: false}, -		{Name: "cache-control", Value: "", Sensitive: false}, -		{Name: "content-disposition", Value: "", Sensitive: false}, -		{Name: "content-encoding", Value: "", Sensitive: false}, -		{Name: "content-language", Value: "", Sensitive: false}, -		{Name: "content-length", Value: "", Sensitive: false}, -		{Name: "content-location", Value: "", Sensitive: false}, -		{Name: "content-range", Value: "", Sensitive: false}, -		{Name: "content-type", Value: "", Sensitive: false}, -		{Name: "cookie", Value: "", Sensitive: false}, -		{Name: "date", Value: "", Sensitive: false}, -		{Name: "etag", Value: "", Sensitive: false}, -		{Name: "expect", Value: "", Sensitive: false}, -		{Name: "expires", Value: "", Sensitive: false}, -		{Name: "from", Value: "", Sensitive: false}, -		{Name: "host", Value: "", Sensitive: false}, -		{Name: "if-match", Value: "", Sensitive: false}, -		{Name: "if-modified-since", Value: "", Sensitive: false}, -		{Name: "if-none-match", Value: "", Sensitive: false}, -		{Name: "if-range", Value: "", Sensitive: false}, -		{Name: "if-unmodified-since", Value: "", Sensitive: false}, -		{Name: "last-modified", Value: "", Sensitive: false}, -		{Name: "link", Value: "", Sensitive: false}, -		{Name: "location", Value: "", Sensitive: false}, -		{Name: "max-forwards", Value: "", Sensitive: false}, -		{Name: "proxy-authenticate", Value: "", Sensitive: false}, -		{Name: "proxy-authorization", Value: "", Sensitive: false}, -		{Name: "range", Value: "", Sensitive: false}, -		{Name: "referer", Value: "", Sensitive: false}, -		{Name: "refresh", Value: "", Sensitive: false}, -		{Name: "retry-after", Value: "", Sensitive: false}, -		{Name: "server", Value: "", Sensitive: false}, -		{Name: "set-cookie", Value: "", Sensitive: false}, -		{Name: "strict-transport-security", Value: "", Sensitive: false}, -		{Name: "transfer-encoding", Value: "", Sensitive: false}, -		{Name: "user-agent", Value: "", Sensitive: false}, -		{Name: "vary", Value: "", Sensitive: false}, -		{Name: "via", Value: "", Sensitive: false}, -		{Name: "www-authenticate", Value: "", Sensitive: false}, -	}, -} diff --git a/vendor/golang.org/x/net/http2/hpack/tables.go b/vendor/golang.org/x/net/http2/hpack/tables.go deleted file mode 100644 index 8cbdf3f01..000000000 --- a/vendor/golang.org/x/net/http2/hpack/tables.go +++ /dev/null @@ -1,403 +0,0 @@ -// Copyright 2014 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. - -package hpack - -import ( -	"fmt" -) - -// headerFieldTable implements a list of HeaderFields. -// This is used to implement the static and dynamic tables. -type headerFieldTable struct { -	// For static tables, entries are never evicted. -	// -	// For dynamic tables, entries are evicted from ents[0] and added to the end. -	// Each entry has a unique id that starts at one and increments for each -	// entry that is added. This unique id is stable across evictions, meaning -	// it can be used as a pointer to a specific entry. As in hpack, unique ids -	// are 1-based. The unique id for ents[k] is k + evictCount + 1. -	// -	// Zero is not a valid unique id. -	// -	// evictCount should not overflow in any remotely practical situation. In -	// practice, we will have one dynamic table per HTTP/2 connection. If we -	// assume a very powerful server that handles 1M QPS per connection and each -	// request adds (then evicts) 100 entries from the table, it would still take -	// 2M years for evictCount to overflow. -	ents       []HeaderField -	evictCount uint64 - -	// byName maps a HeaderField name to the unique id of the newest entry with -	// the same name. See above for a definition of "unique id". -	byName map[string]uint64 - -	// byNameValue maps a HeaderField name/value pair to the unique id of the newest -	// entry with the same name and value. See above for a definition of "unique id". -	byNameValue map[pairNameValue]uint64 -} - -type pairNameValue struct { -	name, value string -} - -func (t *headerFieldTable) init() { -	t.byName = make(map[string]uint64) -	t.byNameValue = make(map[pairNameValue]uint64) -} - -// len reports the number of entries in the table. -func (t *headerFieldTable) len() int { -	return len(t.ents) -} - -// addEntry adds a new entry. -func (t *headerFieldTable) addEntry(f HeaderField) { -	id := uint64(t.len()) + t.evictCount + 1 -	t.byName[f.Name] = id -	t.byNameValue[pairNameValue{f.Name, f.Value}] = id -	t.ents = append(t.ents, f) -} - -// evictOldest evicts the n oldest entries in the table. -func (t *headerFieldTable) evictOldest(n int) { -	if n > t.len() { -		panic(fmt.Sprintf("evictOldest(%v) on table with %v entries", n, t.len())) -	} -	for k := 0; k < n; k++ { -		f := t.ents[k] -		id := t.evictCount + uint64(k) + 1 -		if t.byName[f.Name] == id { -			delete(t.byName, f.Name) -		} -		if p := (pairNameValue{f.Name, f.Value}); t.byNameValue[p] == id { -			delete(t.byNameValue, p) -		} -	} -	copy(t.ents, t.ents[n:]) -	for k := t.len() - n; k < t.len(); k++ { -		t.ents[k] = HeaderField{} // so strings can be garbage collected -	} -	t.ents = t.ents[:t.len()-n] -	if t.evictCount+uint64(n) < t.evictCount { -		panic("evictCount overflow") -	} -	t.evictCount += uint64(n) -} - -// search finds f in the table. If there is no match, i is 0. -// If both name and value match, i is the matched index and nameValueMatch -// becomes true. If only name matches, i points to that index and -// nameValueMatch becomes false. -// -// The returned index is a 1-based HPACK index. For dynamic tables, HPACK says -// that index 1 should be the newest entry, but t.ents[0] is the oldest entry, -// meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic -// table, the return value i actually refers to the entry t.ents[t.len()-i]. -// -// All tables are assumed to be a dynamic tables except for the global staticTable. -// -// See Section 2.3.3. -func (t *headerFieldTable) search(f HeaderField) (i uint64, nameValueMatch bool) { -	if !f.Sensitive { -		if id := t.byNameValue[pairNameValue{f.Name, f.Value}]; id != 0 { -			return t.idToIndex(id), true -		} -	} -	if id := t.byName[f.Name]; id != 0 { -		return t.idToIndex(id), false -	} -	return 0, false -} - -// idToIndex converts a unique id to an HPACK index. -// See Section 2.3.3. -func (t *headerFieldTable) idToIndex(id uint64) uint64 { -	if id <= t.evictCount { -		panic(fmt.Sprintf("id (%v) <= evictCount (%v)", id, t.evictCount)) -	} -	k := id - t.evictCount - 1 // convert id to an index t.ents[k] -	if t != staticTable { -		return uint64(t.len()) - k // dynamic table -	} -	return k + 1 -} - -var huffmanCodes = [256]uint32{ -	0x1ff8, -	0x7fffd8, -	0xfffffe2, -	0xfffffe3, -	0xfffffe4, -	0xfffffe5, -	0xfffffe6, -	0xfffffe7, -	0xfffffe8, -	0xffffea, -	0x3ffffffc, -	0xfffffe9, -	0xfffffea, -	0x3ffffffd, -	0xfffffeb, -	0xfffffec, -	0xfffffed, -	0xfffffee, -	0xfffffef, -	0xffffff0, -	0xffffff1, -	0xffffff2, -	0x3ffffffe, -	0xffffff3, -	0xffffff4, -	0xffffff5, -	0xffffff6, -	0xffffff7, -	0xffffff8, -	0xffffff9, -	0xffffffa, -	0xffffffb, -	0x14, -	0x3f8, -	0x3f9, -	0xffa, -	0x1ff9, -	0x15, -	0xf8, -	0x7fa, -	0x3fa, -	0x3fb, -	0xf9, -	0x7fb, -	0xfa, -	0x16, -	0x17, -	0x18, -	0x0, -	0x1, -	0x2, -	0x19, -	0x1a, -	0x1b, -	0x1c, -	0x1d, -	0x1e, -	0x1f, -	0x5c, -	0xfb, -	0x7ffc, -	0x20, -	0xffb, -	0x3fc, -	0x1ffa, -	0x21, -	0x5d, -	0x5e, -	0x5f, -	0x60, -	0x61, -	0x62, -	0x63, -	0x64, -	0x65, -	0x66, -	0x67, -	0x68, -	0x69, -	0x6a, -	0x6b, -	0x6c, -	0x6d, -	0x6e, -	0x6f, -	0x70, -	0x71, -	0x72, -	0xfc, -	0x73, -	0xfd, -	0x1ffb, -	0x7fff0, -	0x1ffc, -	0x3ffc, -	0x22, -	0x7ffd, -	0x3, -	0x23, -	0x4, -	0x24, -	0x5, -	0x25, -	0x26, -	0x27, -	0x6, -	0x74, -	0x75, -	0x28, -	0x29, -	0x2a, -	0x7, -	0x2b, -	0x76, -	0x2c, -	0x8, -	0x9, -	0x2d, -	0x77, -	0x78, -	0x79, -	0x7a, -	0x7b, -	0x7ffe, -	0x7fc, -	0x3ffd, -	0x1ffd, -	0xffffffc, -	0xfffe6, -	0x3fffd2, -	0xfffe7, -	0xfffe8, -	0x3fffd3, -	0x3fffd4, -	0x3fffd5, -	0x7fffd9, -	0x3fffd6, -	0x7fffda, -	0x7fffdb, -	0x7fffdc, -	0x7fffdd, -	0x7fffde, -	0xffffeb, -	0x7fffdf, -	0xffffec, -	0xffffed, -	0x3fffd7, -	0x7fffe0, -	0xffffee, -	0x7fffe1, -	0x7fffe2, -	0x7fffe3, -	0x7fffe4, -	0x1fffdc, -	0x3fffd8, -	0x7fffe5, -	0x3fffd9, -	0x7fffe6, -	0x7fffe7, -	0xffffef, -	0x3fffda, -	0x1fffdd, -	0xfffe9, -	0x3fffdb, -	0x3fffdc, -	0x7fffe8, -	0x7fffe9, -	0x1fffde, -	0x7fffea, -	0x3fffdd, -	0x3fffde, -	0xfffff0, -	0x1fffdf, -	0x3fffdf, -	0x7fffeb, -	0x7fffec, -	0x1fffe0, -	0x1fffe1, -	0x3fffe0, -	0x1fffe2, -	0x7fffed, -	0x3fffe1, -	0x7fffee, -	0x7fffef, -	0xfffea, -	0x3fffe2, -	0x3fffe3, -	0x3fffe4, -	0x7ffff0, -	0x3fffe5, -	0x3fffe6, -	0x7ffff1, -	0x3ffffe0, -	0x3ffffe1, -	0xfffeb, -	0x7fff1, -	0x3fffe7, -	0x7ffff2, -	0x3fffe8, -	0x1ffffec, -	0x3ffffe2, -	0x3ffffe3, -	0x3ffffe4, -	0x7ffffde, -	0x7ffffdf, -	0x3ffffe5, -	0xfffff1, -	0x1ffffed, -	0x7fff2, -	0x1fffe3, -	0x3ffffe6, -	0x7ffffe0, -	0x7ffffe1, -	0x3ffffe7, -	0x7ffffe2, -	0xfffff2, -	0x1fffe4, -	0x1fffe5, -	0x3ffffe8, -	0x3ffffe9, -	0xffffffd, -	0x7ffffe3, -	0x7ffffe4, -	0x7ffffe5, -	0xfffec, -	0xfffff3, -	0xfffed, -	0x1fffe6, -	0x3fffe9, -	0x1fffe7, -	0x1fffe8, -	0x7ffff3, -	0x3fffea, -	0x3fffeb, -	0x1ffffee, -	0x1ffffef, -	0xfffff4, -	0xfffff5, -	0x3ffffea, -	0x7ffff4, -	0x3ffffeb, -	0x7ffffe6, -	0x3ffffec, -	0x3ffffed, -	0x7ffffe7, -	0x7ffffe8, -	0x7ffffe9, -	0x7ffffea, -	0x7ffffeb, -	0xffffffe, -	0x7ffffec, -	0x7ffffed, -	0x7ffffee, -	0x7ffffef, -	0x7fffff0, -	0x3ffffee, -} - -var huffmanCodeLen = [256]uint8{ -	13, 23, 28, 28, 28, 28, 28, 28, 28, 24, 30, 28, 28, 30, 28, 28, -	28, 28, 28, 28, 28, 28, 30, 28, 28, 28, 28, 28, 28, 28, 28, 28, -	6, 10, 10, 12, 13, 6, 8, 11, 10, 10, 8, 11, 8, 6, 6, 6, -	5, 5, 5, 6, 6, 6, 6, 6, 6, 6, 7, 8, 15, 6, 12, 10, -	13, 6, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, -	7, 7, 7, 7, 7, 7, 7, 7, 8, 7, 8, 13, 19, 13, 14, 6, -	15, 5, 6, 5, 6, 5, 6, 6, 6, 5, 7, 7, 6, 6, 6, 5, -	6, 7, 6, 5, 5, 6, 7, 7, 7, 7, 7, 15, 11, 14, 13, 28, -	20, 22, 20, 20, 22, 22, 22, 23, 22, 23, 23, 23, 23, 23, 24, 23, -	24, 24, 22, 23, 24, 23, 23, 23, 23, 21, 22, 23, 22, 23, 23, 24, -	22, 21, 20, 22, 22, 23, 23, 21, 23, 22, 22, 24, 21, 22, 23, 23, -	21, 21, 22, 21, 23, 22, 23, 23, 20, 22, 22, 22, 23, 22, 22, 23, -	26, 26, 20, 19, 22, 23, 22, 25, 26, 26, 26, 27, 27, 26, 24, 25, -	19, 21, 26, 27, 27, 26, 27, 24, 21, 21, 26, 26, 28, 27, 27, 27, -	20, 24, 20, 21, 22, 21, 21, 23, 22, 22, 25, 25, 24, 24, 26, 23, -	26, 27, 26, 26, 27, 27, 27, 27, 27, 28, 27, 27, 27, 27, 27, 26, -} diff --git a/vendor/golang.org/x/net/http2/http2.go b/vendor/golang.org/x/net/http2/http2.go deleted file mode 100644 index 6c18ea230..000000000 --- a/vendor/golang.org/x/net/http2/http2.go +++ /dev/null @@ -1,432 +0,0 @@ -// Copyright 2014 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. - -// Package http2 implements the HTTP/2 protocol. -// -// This package is low-level and intended to be used directly by very -// few people. Most users will use it indirectly through the automatic -// use by the net/http package (from Go 1.6 and later). -// For use in earlier Go versions see ConfigureServer. (Transport support -// requires Go 1.6 or later) -// -// See https://http2.github.io/ for more information on HTTP/2. -// -// See https://http2.golang.org/ for a test server running this code. -package http2 // import "golang.org/x/net/http2" - -import ( -	"bufio" -	"context" -	"crypto/tls" -	"errors" -	"fmt" -	"net" -	"net/http" -	"os" -	"sort" -	"strconv" -	"strings" -	"sync" -	"time" - -	"golang.org/x/net/http/httpguts" -) - -var ( -	VerboseLogs    bool -	logFrameWrites bool -	logFrameReads  bool -	inTests        bool - -	// Enabling extended CONNECT by causes browsers to attempt to use -	// WebSockets-over-HTTP/2. This results in problems when the server's websocket -	// package doesn't support extended CONNECT. -	// -	// Disable extended CONNECT by default for now. -	// -	// Issue #71128. -	disableExtendedConnectProtocol = true -) - -func init() { -	e := os.Getenv("GODEBUG") -	if strings.Contains(e, "http2debug=1") { -		VerboseLogs = true -	} -	if strings.Contains(e, "http2debug=2") { -		VerboseLogs = true -		logFrameWrites = true -		logFrameReads = true -	} -	if strings.Contains(e, "http2xconnect=1") { -		disableExtendedConnectProtocol = false -	} -} - -const ( -	// ClientPreface is the string that must be sent by new -	// connections from clients. -	ClientPreface = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n" - -	// SETTINGS_MAX_FRAME_SIZE default -	// https://httpwg.org/specs/rfc7540.html#rfc.section.6.5.2 -	initialMaxFrameSize = 16384 - -	// NextProtoTLS is the NPN/ALPN protocol negotiated during -	// HTTP/2's TLS setup. -	NextProtoTLS = "h2" - -	// https://httpwg.org/specs/rfc7540.html#SettingValues -	initialHeaderTableSize = 4096 - -	initialWindowSize = 65535 // 6.9.2 Initial Flow Control Window Size - -	defaultMaxReadFrameSize = 1 << 20 -) - -var ( -	clientPreface = []byte(ClientPreface) -) - -type streamState int - -// HTTP/2 stream states. -// -// See http://tools.ietf.org/html/rfc7540#section-5.1. -// -// For simplicity, the server code merges "reserved (local)" into -// "half-closed (remote)". This is one less state transition to track. -// The only downside is that we send PUSH_PROMISEs slightly less -// liberally than allowable. More discussion here: -// https://lists.w3.org/Archives/Public/ietf-http-wg/2016JulSep/0599.html -// -// "reserved (remote)" is omitted since the client code does not -// support server push. -const ( -	stateIdle streamState = iota -	stateOpen -	stateHalfClosedLocal -	stateHalfClosedRemote -	stateClosed -) - -var stateName = [...]string{ -	stateIdle:             "Idle", -	stateOpen:             "Open", -	stateHalfClosedLocal:  "HalfClosedLocal", -	stateHalfClosedRemote: "HalfClosedRemote", -	stateClosed:           "Closed", -} - -func (st streamState) String() string { -	return stateName[st] -} - -// Setting is a setting parameter: which setting it is, and its value. -type Setting struct { -	// ID is which setting is being set. -	// See https://httpwg.org/specs/rfc7540.html#SettingFormat -	ID SettingID - -	// Val is the value. -	Val uint32 -} - -func (s Setting) String() string { -	return fmt.Sprintf("[%v = %d]", s.ID, s.Val) -} - -// Valid reports whether the setting is valid. -func (s Setting) Valid() error { -	// Limits and error codes from 6.5.2 Defined SETTINGS Parameters -	switch s.ID { -	case SettingEnablePush: -		if s.Val != 1 && s.Val != 0 { -			return ConnectionError(ErrCodeProtocol) -		} -	case SettingInitialWindowSize: -		if s.Val > 1<<31-1 { -			return ConnectionError(ErrCodeFlowControl) -		} -	case SettingMaxFrameSize: -		if s.Val < 16384 || s.Val > 1<<24-1 { -			return ConnectionError(ErrCodeProtocol) -		} -	case SettingEnableConnectProtocol: -		if s.Val != 1 && s.Val != 0 { -			return ConnectionError(ErrCodeProtocol) -		} -	} -	return nil -} - -// A SettingID is an HTTP/2 setting as defined in -// https://httpwg.org/specs/rfc7540.html#iana-settings -type SettingID uint16 - -const ( -	SettingHeaderTableSize       SettingID = 0x1 -	SettingEnablePush            SettingID = 0x2 -	SettingMaxConcurrentStreams  SettingID = 0x3 -	SettingInitialWindowSize     SettingID = 0x4 -	SettingMaxFrameSize          SettingID = 0x5 -	SettingMaxHeaderListSize     SettingID = 0x6 -	SettingEnableConnectProtocol SettingID = 0x8 -) - -var settingName = map[SettingID]string{ -	SettingHeaderTableSize:       "HEADER_TABLE_SIZE", -	SettingEnablePush:            "ENABLE_PUSH", -	SettingMaxConcurrentStreams:  "MAX_CONCURRENT_STREAMS", -	SettingInitialWindowSize:     "INITIAL_WINDOW_SIZE", -	SettingMaxFrameSize:          "MAX_FRAME_SIZE", -	SettingMaxHeaderListSize:     "MAX_HEADER_LIST_SIZE", -	SettingEnableConnectProtocol: "ENABLE_CONNECT_PROTOCOL", -} - -func (s SettingID) String() string { -	if v, ok := settingName[s]; ok { -		return v -	} -	return fmt.Sprintf("UNKNOWN_SETTING_%d", uint16(s)) -} - -// validWireHeaderFieldName reports whether v is a valid header field -// name (key). See httpguts.ValidHeaderName for the base rules. -// -// Further, http2 says: -// -//	"Just as in HTTP/1.x, header field names are strings of ASCII -//	characters that are compared in a case-insensitive -//	fashion. However, header field names MUST be converted to -//	lowercase prior to their encoding in HTTP/2. " -func validWireHeaderFieldName(v string) bool { -	if len(v) == 0 { -		return false -	} -	for _, r := range v { -		if !httpguts.IsTokenRune(r) { -			return false -		} -		if 'A' <= r && r <= 'Z' { -			return false -		} -	} -	return true -} - -func httpCodeString(code int) string { -	switch code { -	case 200: -		return "200" -	case 404: -		return "404" -	} -	return strconv.Itoa(code) -} - -// from pkg io -type stringWriter interface { -	WriteString(s string) (n int, err error) -} - -// A closeWaiter is like a sync.WaitGroup but only goes 1 to 0 (open to closed). -type closeWaiter chan struct{} - -// Init makes a closeWaiter usable. -// It exists because so a closeWaiter value can be placed inside a -// larger struct and have the Mutex and Cond's memory in the same -// allocation. -func (cw *closeWaiter) Init() { -	*cw = make(chan struct{}) -} - -// Close marks the closeWaiter as closed and unblocks any waiters. -func (cw closeWaiter) Close() { -	close(cw) -} - -// Wait waits for the closeWaiter to become closed. -func (cw closeWaiter) Wait() { -	<-cw -} - -// bufferedWriter is a buffered writer that writes to w. -// Its buffered writer is lazily allocated as needed, to minimize -// idle memory usage with many connections. -type bufferedWriter struct { -	_           incomparable -	group       synctestGroupInterface // immutable -	conn        net.Conn               // immutable -	bw          *bufio.Writer          // non-nil when data is buffered -	byteTimeout time.Duration          // immutable, WriteByteTimeout -} - -func newBufferedWriter(group synctestGroupInterface, conn net.Conn, timeout time.Duration) *bufferedWriter { -	return &bufferedWriter{ -		group:       group, -		conn:        conn, -		byteTimeout: timeout, -	} -} - -// bufWriterPoolBufferSize is the size of bufio.Writer's -// buffers created using bufWriterPool. -// -// TODO: pick a less arbitrary value? this is a bit under -// (3 x typical 1500 byte MTU) at least. Other than that, -// not much thought went into it. -const bufWriterPoolBufferSize = 4 << 10 - -var bufWriterPool = sync.Pool{ -	New: func() interface{} { -		return bufio.NewWriterSize(nil, bufWriterPoolBufferSize) -	}, -} - -func (w *bufferedWriter) Available() int { -	if w.bw == nil { -		return bufWriterPoolBufferSize -	} -	return w.bw.Available() -} - -func (w *bufferedWriter) Write(p []byte) (n int, err error) { -	if w.bw == nil { -		bw := bufWriterPool.Get().(*bufio.Writer) -		bw.Reset((*bufferedWriterTimeoutWriter)(w)) -		w.bw = bw -	} -	return w.bw.Write(p) -} - -func (w *bufferedWriter) Flush() error { -	bw := w.bw -	if bw == nil { -		return nil -	} -	err := bw.Flush() -	bw.Reset(nil) -	bufWriterPool.Put(bw) -	w.bw = nil -	return err -} - -type bufferedWriterTimeoutWriter bufferedWriter - -func (w *bufferedWriterTimeoutWriter) Write(p []byte) (n int, err error) { -	return writeWithByteTimeout(w.group, w.conn, w.byteTimeout, p) -} - -// writeWithByteTimeout writes to conn. -// If more than timeout passes without any bytes being written to the connection, -// the write fails. -func writeWithByteTimeout(group synctestGroupInterface, conn net.Conn, timeout time.Duration, p []byte) (n int, err error) { -	if timeout <= 0 { -		return conn.Write(p) -	} -	for { -		var now time.Time -		if group == nil { -			now = time.Now() -		} else { -			now = group.Now() -		} -		conn.SetWriteDeadline(now.Add(timeout)) -		nn, err := conn.Write(p[n:]) -		n += nn -		if n == len(p) || nn == 0 || !errors.Is(err, os.ErrDeadlineExceeded) { -			// Either we finished the write, made no progress, or hit the deadline. -			// Whichever it is, we're done now. -			conn.SetWriteDeadline(time.Time{}) -			return n, err -		} -	} -} - -func mustUint31(v int32) uint32 { -	if v < 0 || v > 2147483647 { -		panic("out of range") -	} -	return uint32(v) -} - -// bodyAllowedForStatus reports whether a given response status code -// permits a body. See RFC 7230, section 3.3. -func bodyAllowedForStatus(status int) bool { -	switch { -	case status >= 100 && status <= 199: -		return false -	case status == 204: -		return false -	case status == 304: -		return false -	} -	return true -} - -type httpError struct { -	_       incomparable -	msg     string -	timeout bool -} - -func (e *httpError) Error() string   { return e.msg } -func (e *httpError) Timeout() bool   { return e.timeout } -func (e *httpError) Temporary() bool { return true } - -var errTimeout error = &httpError{msg: "http2: timeout awaiting response headers", timeout: true} - -type connectionStater interface { -	ConnectionState() tls.ConnectionState -} - -var sorterPool = sync.Pool{New: func() interface{} { return new(sorter) }} - -type sorter struct { -	v []string // owned by sorter -} - -func (s *sorter) Len() int           { return len(s.v) } -func (s *sorter) Swap(i, j int)      { s.v[i], s.v[j] = s.v[j], s.v[i] } -func (s *sorter) Less(i, j int) bool { return s.v[i] < s.v[j] } - -// Keys returns the sorted keys of h. -// -// The returned slice is only valid until s used again or returned to -// its pool. -func (s *sorter) Keys(h http.Header) []string { -	keys := s.v[:0] -	for k := range h { -		keys = append(keys, k) -	} -	s.v = keys -	sort.Sort(s) -	return keys -} - -func (s *sorter) SortStrings(ss []string) { -	// Our sorter works on s.v, which sorter owns, so -	// stash it away while we sort the user's buffer. -	save := s.v -	s.v = ss -	sort.Sort(s) -	s.v = save -} - -// incomparable is a zero-width, non-comparable type. Adding it to a struct -// makes that struct also non-comparable, and generally doesn't add -// any size (as long as it's first). -type incomparable [0]func() - -// synctestGroupInterface is the methods of synctestGroup used by Server and Transport. -// It's defined as an interface here to let us keep synctestGroup entirely test-only -// and not a part of non-test builds. -type synctestGroupInterface interface { -	Join() -	Now() time.Time -	NewTimer(d time.Duration) timer -	AfterFunc(d time.Duration, f func()) timer -	ContextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) -} diff --git a/vendor/golang.org/x/net/http2/pipe.go b/vendor/golang.org/x/net/http2/pipe.go deleted file mode 100644 index 3b9f06b96..000000000 --- a/vendor/golang.org/x/net/http2/pipe.go +++ /dev/null @@ -1,184 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import ( -	"errors" -	"io" -	"sync" -) - -// pipe is a goroutine-safe io.Reader/io.Writer pair. It's like -// io.Pipe except there are no PipeReader/PipeWriter halves, and the -// underlying buffer is an interface. (io.Pipe is always unbuffered) -type pipe struct { -	mu       sync.Mutex -	c        sync.Cond     // c.L lazily initialized to &p.mu -	b        pipeBuffer    // nil when done reading -	unread   int           // bytes unread when done -	err      error         // read error once empty. non-nil means closed. -	breakErr error         // immediate read error (caller doesn't see rest of b) -	donec    chan struct{} // closed on error -	readFn   func()        // optional code to run in Read before error -} - -type pipeBuffer interface { -	Len() int -	io.Writer -	io.Reader -} - -// setBuffer initializes the pipe buffer. -// It has no effect if the pipe is already closed. -func (p *pipe) setBuffer(b pipeBuffer) { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.err != nil || p.breakErr != nil { -		return -	} -	p.b = b -} - -func (p *pipe) Len() int { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.b == nil { -		return p.unread -	} -	return p.b.Len() -} - -// Read waits until data is available and copies bytes -// from the buffer into p. -func (p *pipe) Read(d []byte) (n int, err error) { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.c.L == nil { -		p.c.L = &p.mu -	} -	for { -		if p.breakErr != nil { -			return 0, p.breakErr -		} -		if p.b != nil && p.b.Len() > 0 { -			return p.b.Read(d) -		} -		if p.err != nil { -			if p.readFn != nil { -				p.readFn()     // e.g. copy trailers -				p.readFn = nil // not sticky like p.err -			} -			p.b = nil -			return 0, p.err -		} -		p.c.Wait() -	} -} - -var ( -	errClosedPipeWrite        = errors.New("write on closed buffer") -	errUninitializedPipeWrite = errors.New("write on uninitialized buffer") -) - -// Write copies bytes from p into the buffer and wakes a reader. -// It is an error to write more data than the buffer can hold. -func (p *pipe) Write(d []byte) (n int, err error) { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.c.L == nil { -		p.c.L = &p.mu -	} -	defer p.c.Signal() -	if p.err != nil || p.breakErr != nil { -		return 0, errClosedPipeWrite -	} -	// pipe.setBuffer is never invoked, leaving the buffer uninitialized. -	// We shouldn't try to write to an uninitialized pipe, -	// but returning an error is better than panicking. -	if p.b == nil { -		return 0, errUninitializedPipeWrite -	} -	return p.b.Write(d) -} - -// CloseWithError causes the next Read (waking up a current blocked -// Read if needed) to return the provided err after all data has been -// read. -// -// The error must be non-nil. -func (p *pipe) CloseWithError(err error) { p.closeWithError(&p.err, err, nil) } - -// BreakWithError causes the next Read (waking up a current blocked -// Read if needed) to return the provided err immediately, without -// waiting for unread data. -func (p *pipe) BreakWithError(err error) { p.closeWithError(&p.breakErr, err, nil) } - -// closeWithErrorAndCode is like CloseWithError but also sets some code to run -// in the caller's goroutine before returning the error. -func (p *pipe) closeWithErrorAndCode(err error, fn func()) { p.closeWithError(&p.err, err, fn) } - -func (p *pipe) closeWithError(dst *error, err error, fn func()) { -	if err == nil { -		panic("err must be non-nil") -	} -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.c.L == nil { -		p.c.L = &p.mu -	} -	defer p.c.Signal() -	if *dst != nil { -		// Already been done. -		return -	} -	p.readFn = fn -	if dst == &p.breakErr { -		if p.b != nil { -			p.unread += p.b.Len() -		} -		p.b = nil -	} -	*dst = err -	p.closeDoneLocked() -} - -// requires p.mu be held. -func (p *pipe) closeDoneLocked() { -	if p.donec == nil { -		return -	} -	// Close if unclosed. This isn't racy since we always -	// hold p.mu while closing. -	select { -	case <-p.donec: -	default: -		close(p.donec) -	} -} - -// Err returns the error (if any) first set by BreakWithError or CloseWithError. -func (p *pipe) Err() error { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.breakErr != nil { -		return p.breakErr -	} -	return p.err -} - -// Done returns a channel which is closed if and when this pipe is closed -// with CloseWithError. -func (p *pipe) Done() <-chan struct{} { -	p.mu.Lock() -	defer p.mu.Unlock() -	if p.donec == nil { -		p.donec = make(chan struct{}) -		if p.err != nil || p.breakErr != nil { -			// Already hit an error. -			p.closeDoneLocked() -		} -	} -	return p.donec -} diff --git a/vendor/golang.org/x/net/http2/server.go b/vendor/golang.org/x/net/http2/server.go deleted file mode 100644 index 7434b8784..000000000 --- a/vendor/golang.org/x/net/http2/server.go +++ /dev/null @@ -1,3392 +0,0 @@ -// Copyright 2014 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. - -// TODO: turn off the serve goroutine when idle, so -// an idle conn only has the readFrames goroutine active. (which could -// also be optimized probably to pin less memory in crypto/tls). This -// would involve tracking when the serve goroutine is active (atomic -// int32 read/CAS probably?) and starting it up when frames arrive, -// and shutting it down when all handlers exit. the occasional PING -// packets could use time.AfterFunc to call sc.wakeStartServeLoop() -// (which is a no-op if already running) and then queue the PING write -// as normal. The serve loop would then exit in most cases (if no -// Handlers running) and not be woken up again until the PING packet -// returns. - -// TODO (maybe): add a mechanism for Handlers to going into -// half-closed-local mode (rw.(io.Closer) test?) but not exit their -// handler, and continue to be able to read from the -// Request.Body. This would be a somewhat semantic change from HTTP/1 -// (or at least what we expose in net/http), so I'd probably want to -// add it there too. For now, this package says that returning from -// the Handler ServeHTTP function means you're both done reading and -// done writing, without a way to stop just one or the other. - -package http2 - -import ( -	"bufio" -	"bytes" -	"context" -	"crypto/rand" -	"crypto/tls" -	"errors" -	"fmt" -	"io" -	"log" -	"math" -	"net" -	"net/http" -	"net/textproto" -	"net/url" -	"os" -	"reflect" -	"runtime" -	"strconv" -	"strings" -	"sync" -	"time" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2/hpack" -	"golang.org/x/net/internal/httpcommon" -) - -const ( -	prefaceTimeout        = 10 * time.Second -	firstSettingsTimeout  = 2 * time.Second // should be in-flight with preface anyway -	handlerChunkWriteSize = 4 << 10 -	defaultMaxStreams     = 250 // TODO: make this 100 as the GFE seems to? - -	// maxQueuedControlFrames is the maximum number of control frames like -	// SETTINGS, PING and RST_STREAM that will be queued for writing before -	// the connection is closed to prevent memory exhaustion attacks. -	maxQueuedControlFrames = 10000 -) - -var ( -	errClientDisconnected = errors.New("client disconnected") -	errClosedBody         = errors.New("body closed by handler") -	errHandlerComplete    = errors.New("http2: request body closed due to handler exiting") -	errStreamClosed       = errors.New("http2: stream closed") -) - -var responseWriterStatePool = sync.Pool{ -	New: func() interface{} { -		rws := &responseWriterState{} -		rws.bw = bufio.NewWriterSize(chunkWriter{rws}, handlerChunkWriteSize) -		return rws -	}, -} - -// Test hooks. -var ( -	testHookOnConn        func() -	testHookGetServerConn func(*serverConn) -	testHookOnPanicMu     *sync.Mutex // nil except in tests -	testHookOnPanic       func(sc *serverConn, panicVal interface{}) (rePanic bool) -) - -// Server is an HTTP/2 server. -type Server struct { -	// MaxHandlers limits the number of http.Handler ServeHTTP goroutines -	// which may run at a time over all connections. -	// Negative or zero no limit. -	// TODO: implement -	MaxHandlers int - -	// MaxConcurrentStreams optionally specifies the number of -	// concurrent streams that each client may have open at a -	// time. This is unrelated to the number of http.Handler goroutines -	// which may be active globally, which is MaxHandlers. -	// If zero, MaxConcurrentStreams defaults to at least 100, per -	// the HTTP/2 spec's recommendations. -	MaxConcurrentStreams uint32 - -	// MaxDecoderHeaderTableSize optionally specifies the http2 -	// SETTINGS_HEADER_TABLE_SIZE to send in the initial settings frame. It -	// informs the remote endpoint of the maximum size of the header compression -	// table used to decode header blocks, in octets. If zero, the default value -	// of 4096 is used. -	MaxDecoderHeaderTableSize uint32 - -	// MaxEncoderHeaderTableSize optionally specifies an upper limit for the -	// header compression table used for encoding request headers. Received -	// SETTINGS_HEADER_TABLE_SIZE settings are capped at this limit. If zero, -	// the default value of 4096 is used. -	MaxEncoderHeaderTableSize uint32 - -	// MaxReadFrameSize optionally specifies the largest frame -	// this server is willing to read. A valid value is between -	// 16k and 16M, inclusive. If zero or otherwise invalid, a -	// default value is used. -	MaxReadFrameSize uint32 - -	// PermitProhibitedCipherSuites, if true, permits the use of -	// cipher suites prohibited by the HTTP/2 spec. -	PermitProhibitedCipherSuites bool - -	// IdleTimeout specifies how long until idle clients should be -	// closed with a GOAWAY frame. PING frames are not considered -	// activity for the purposes of IdleTimeout. -	// If zero or negative, there is no timeout. -	IdleTimeout time.Duration - -	// ReadIdleTimeout is the timeout after which a health check using a ping -	// frame will be carried out if no frame is received on the connection. -	// If zero, no health check is performed. -	ReadIdleTimeout time.Duration - -	// PingTimeout is the timeout after which the connection will be closed -	// if a response to a ping is not received. -	// If zero, a default of 15 seconds is used. -	PingTimeout time.Duration - -	// WriteByteTimeout is the timeout after which a connection will be -	// closed if no data can be written to it. The timeout begins when data is -	// available to write, and is extended whenever any bytes are written. -	// If zero or negative, there is no timeout. -	WriteByteTimeout time.Duration - -	// MaxUploadBufferPerConnection is the size of the initial flow -	// control window for each connections. The HTTP/2 spec does not -	// allow this to be smaller than 65535 or larger than 2^32-1. -	// If the value is outside this range, a default value will be -	// used instead. -	MaxUploadBufferPerConnection int32 - -	// MaxUploadBufferPerStream is the size of the initial flow control -	// window for each stream. The HTTP/2 spec does not allow this to -	// be larger than 2^32-1. If the value is zero or larger than the -	// maximum, a default value will be used instead. -	MaxUploadBufferPerStream int32 - -	// NewWriteScheduler constructs a write scheduler for a connection. -	// If nil, a default scheduler is chosen. -	NewWriteScheduler func() WriteScheduler - -	// CountError, if non-nil, is called on HTTP/2 server errors. -	// It's intended to increment a metric for monitoring, such -	// as an expvar or Prometheus metric. -	// The errType consists of only ASCII word characters. -	CountError func(errType string) - -	// Internal state. This is a pointer (rather than embedded directly) -	// so that we don't embed a Mutex in this struct, which will make the -	// struct non-copyable, which might break some callers. -	state *serverInternalState - -	// Synchronization group used for testing. -	// Outside of tests, this is nil. -	group synctestGroupInterface -} - -func (s *Server) markNewGoroutine() { -	if s.group != nil { -		s.group.Join() -	} -} - -func (s *Server) now() time.Time { -	if s.group != nil { -		return s.group.Now() -	} -	return time.Now() -} - -// newTimer creates a new time.Timer, or a synthetic timer in tests. -func (s *Server) newTimer(d time.Duration) timer { -	if s.group != nil { -		return s.group.NewTimer(d) -	} -	return timeTimer{time.NewTimer(d)} -} - -// afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests. -func (s *Server) afterFunc(d time.Duration, f func()) timer { -	if s.group != nil { -		return s.group.AfterFunc(d, f) -	} -	return timeTimer{time.AfterFunc(d, f)} -} - -type serverInternalState struct { -	mu          sync.Mutex -	activeConns map[*serverConn]struct{} -} - -func (s *serverInternalState) registerConn(sc *serverConn) { -	if s == nil { -		return // if the Server was used without calling ConfigureServer -	} -	s.mu.Lock() -	s.activeConns[sc] = struct{}{} -	s.mu.Unlock() -} - -func (s *serverInternalState) unregisterConn(sc *serverConn) { -	if s == nil { -		return // if the Server was used without calling ConfigureServer -	} -	s.mu.Lock() -	delete(s.activeConns, sc) -	s.mu.Unlock() -} - -func (s *serverInternalState) startGracefulShutdown() { -	if s == nil { -		return // if the Server was used without calling ConfigureServer -	} -	s.mu.Lock() -	for sc := range s.activeConns { -		sc.startGracefulShutdown() -	} -	s.mu.Unlock() -} - -// ConfigureServer adds HTTP/2 support to a net/http Server. -// -// The configuration conf may be nil. -// -// ConfigureServer must be called before s begins serving. -func ConfigureServer(s *http.Server, conf *Server) error { -	if s == nil { -		panic("nil *http.Server") -	} -	if conf == nil { -		conf = new(Server) -	} -	conf.state = &serverInternalState{activeConns: make(map[*serverConn]struct{})} -	if h1, h2 := s, conf; h2.IdleTimeout == 0 { -		if h1.IdleTimeout != 0 { -			h2.IdleTimeout = h1.IdleTimeout -		} else { -			h2.IdleTimeout = h1.ReadTimeout -		} -	} -	s.RegisterOnShutdown(conf.state.startGracefulShutdown) - -	if s.TLSConfig == nil { -		s.TLSConfig = new(tls.Config) -	} else if s.TLSConfig.CipherSuites != nil && s.TLSConfig.MinVersion < tls.VersionTLS13 { -		// If they already provided a TLS 1.0–1.2 CipherSuite list, return an -		// error if it is missing ECDHE_RSA_WITH_AES_128_GCM_SHA256 or -		// ECDHE_ECDSA_WITH_AES_128_GCM_SHA256. -		haveRequired := false -		for _, cs := range s.TLSConfig.CipherSuites { -			switch cs { -			case tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, -				// Alternative MTI cipher to not discourage ECDSA-only servers. -				// See http://golang.org/cl/30721 for further information. -				tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256: -				haveRequired = true -			} -		} -		if !haveRequired { -			return fmt.Errorf("http2: TLSConfig.CipherSuites is missing an HTTP/2-required AES_128_GCM_SHA256 cipher (need at least one of TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 or TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)") -		} -	} - -	// Note: not setting MinVersion to tls.VersionTLS12, -	// as we don't want to interfere with HTTP/1.1 traffic -	// on the user's server. We enforce TLS 1.2 later once -	// we accept a connection. Ideally this should be done -	// during next-proto selection, but using TLS <1.2 with -	// HTTP/2 is still the client's bug. - -	s.TLSConfig.PreferServerCipherSuites = true - -	if !strSliceContains(s.TLSConfig.NextProtos, NextProtoTLS) { -		s.TLSConfig.NextProtos = append(s.TLSConfig.NextProtos, NextProtoTLS) -	} -	if !strSliceContains(s.TLSConfig.NextProtos, "http/1.1") { -		s.TLSConfig.NextProtos = append(s.TLSConfig.NextProtos, "http/1.1") -	} - -	if s.TLSNextProto == nil { -		s.TLSNextProto = map[string]func(*http.Server, *tls.Conn, http.Handler){} -	} -	protoHandler := func(hs *http.Server, c net.Conn, h http.Handler, sawClientPreface bool) { -		if testHookOnConn != nil { -			testHookOnConn() -		} -		// The TLSNextProto interface predates contexts, so -		// the net/http package passes down its per-connection -		// base context via an exported but unadvertised -		// method on the Handler. This is for internal -		// net/http<=>http2 use only. -		var ctx context.Context -		type baseContexter interface { -			BaseContext() context.Context -		} -		if bc, ok := h.(baseContexter); ok { -			ctx = bc.BaseContext() -		} -		conf.ServeConn(c, &ServeConnOpts{ -			Context:          ctx, -			Handler:          h, -			BaseConfig:       hs, -			SawClientPreface: sawClientPreface, -		}) -	} -	s.TLSNextProto[NextProtoTLS] = func(hs *http.Server, c *tls.Conn, h http.Handler) { -		protoHandler(hs, c, h, false) -	} -	// The "unencrypted_http2" TLSNextProto key is used to pass off non-TLS HTTP/2 conns. -	// -	// A connection passed in this method has already had the HTTP/2 preface read from it. -	s.TLSNextProto[nextProtoUnencryptedHTTP2] = func(hs *http.Server, c *tls.Conn, h http.Handler) { -		nc, err := unencryptedNetConnFromTLSConn(c) -		if err != nil { -			if lg := hs.ErrorLog; lg != nil { -				lg.Print(err) -			} else { -				log.Print(err) -			} -			go c.Close() -			return -		} -		protoHandler(hs, nc, h, true) -	} -	return nil -} - -// ServeConnOpts are options for the Server.ServeConn method. -type ServeConnOpts struct { -	// Context is the base context to use. -	// If nil, context.Background is used. -	Context context.Context - -	// BaseConfig optionally sets the base configuration -	// for values. If nil, defaults are used. -	BaseConfig *http.Server - -	// Handler specifies which handler to use for processing -	// requests. If nil, BaseConfig.Handler is used. If BaseConfig -	// or BaseConfig.Handler is nil, http.DefaultServeMux is used. -	Handler http.Handler - -	// UpgradeRequest is an initial request received on a connection -	// undergoing an h2c upgrade. The request body must have been -	// completely read from the connection before calling ServeConn, -	// and the 101 Switching Protocols response written. -	UpgradeRequest *http.Request - -	// Settings is the decoded contents of the HTTP2-Settings header -	// in an h2c upgrade request. -	Settings []byte - -	// SawClientPreface is set if the HTTP/2 connection preface -	// has already been read from the connection. -	SawClientPreface bool -} - -func (o *ServeConnOpts) context() context.Context { -	if o != nil && o.Context != nil { -		return o.Context -	} -	return context.Background() -} - -func (o *ServeConnOpts) baseConfig() *http.Server { -	if o != nil && o.BaseConfig != nil { -		return o.BaseConfig -	} -	return new(http.Server) -} - -func (o *ServeConnOpts) handler() http.Handler { -	if o != nil { -		if o.Handler != nil { -			return o.Handler -		} -		if o.BaseConfig != nil && o.BaseConfig.Handler != nil { -			return o.BaseConfig.Handler -		} -	} -	return http.DefaultServeMux -} - -// ServeConn serves HTTP/2 requests on the provided connection and -// blocks until the connection is no longer readable. -// -// ServeConn starts speaking HTTP/2 assuming that c has not had any -// reads or writes. It writes its initial settings frame and expects -// to be able to read the preface and settings frame from the -// client. If c has a ConnectionState method like a *tls.Conn, the -// ConnectionState is used to verify the TLS ciphersuite and to set -// the Request.TLS field in Handlers. -// -// ServeConn does not support h2c by itself. Any h2c support must be -// implemented in terms of providing a suitably-behaving net.Conn. -// -// The opts parameter is optional. If nil, default values are used. -func (s *Server) ServeConn(c net.Conn, opts *ServeConnOpts) { -	s.serveConn(c, opts, nil) -} - -func (s *Server) serveConn(c net.Conn, opts *ServeConnOpts, newf func(*serverConn)) { -	baseCtx, cancel := serverConnBaseContext(c, opts) -	defer cancel() - -	http1srv := opts.baseConfig() -	conf := configFromServer(http1srv, s) -	sc := &serverConn{ -		srv:                         s, -		hs:                          http1srv, -		conn:                        c, -		baseCtx:                     baseCtx, -		remoteAddrStr:               c.RemoteAddr().String(), -		bw:                          newBufferedWriter(s.group, c, conf.WriteByteTimeout), -		handler:                     opts.handler(), -		streams:                     make(map[uint32]*stream), -		readFrameCh:                 make(chan readFrameResult), -		wantWriteFrameCh:            make(chan FrameWriteRequest, 8), -		serveMsgCh:                  make(chan interface{}, 8), -		wroteFrameCh:                make(chan frameWriteResult, 1), // buffered; one send in writeFrameAsync -		bodyReadCh:                  make(chan bodyReadMsg),         // buffering doesn't matter either way -		doneServing:                 make(chan struct{}), -		clientMaxStreams:            math.MaxUint32, // Section 6.5.2: "Initially, there is no limit to this value" -		advMaxStreams:               conf.MaxConcurrentStreams, -		initialStreamSendWindowSize: initialWindowSize, -		initialStreamRecvWindowSize: conf.MaxUploadBufferPerStream, -		maxFrameSize:                initialMaxFrameSize, -		pingTimeout:                 conf.PingTimeout, -		countErrorFunc:              conf.CountError, -		serveG:                      newGoroutineLock(), -		pushEnabled:                 true, -		sawClientPreface:            opts.SawClientPreface, -	} -	if newf != nil { -		newf(sc) -	} - -	s.state.registerConn(sc) -	defer s.state.unregisterConn(sc) - -	// The net/http package sets the write deadline from the -	// http.Server.WriteTimeout during the TLS handshake, but then -	// passes the connection off to us with the deadline already set. -	// Write deadlines are set per stream in serverConn.newStream. -	// Disarm the net.Conn write deadline here. -	if sc.hs.WriteTimeout > 0 { -		sc.conn.SetWriteDeadline(time.Time{}) -	} - -	if s.NewWriteScheduler != nil { -		sc.writeSched = s.NewWriteScheduler() -	} else { -		sc.writeSched = newRoundRobinWriteScheduler() -	} - -	// These start at the RFC-specified defaults. If there is a higher -	// configured value for inflow, that will be updated when we send a -	// WINDOW_UPDATE shortly after sending SETTINGS. -	sc.flow.add(initialWindowSize) -	sc.inflow.init(initialWindowSize) -	sc.hpackEncoder = hpack.NewEncoder(&sc.headerWriteBuf) -	sc.hpackEncoder.SetMaxDynamicTableSizeLimit(conf.MaxEncoderHeaderTableSize) - -	fr := NewFramer(sc.bw, c) -	if conf.CountError != nil { -		fr.countError = conf.CountError -	} -	fr.ReadMetaHeaders = hpack.NewDecoder(conf.MaxDecoderHeaderTableSize, nil) -	fr.MaxHeaderListSize = sc.maxHeaderListSize() -	fr.SetMaxReadFrameSize(conf.MaxReadFrameSize) -	sc.framer = fr - -	if tc, ok := c.(connectionStater); ok { -		sc.tlsState = new(tls.ConnectionState) -		*sc.tlsState = tc.ConnectionState() -		// 9.2 Use of TLS Features -		// An implementation of HTTP/2 over TLS MUST use TLS -		// 1.2 or higher with the restrictions on feature set -		// and cipher suite described in this section. Due to -		// implementation limitations, it might not be -		// possible to fail TLS negotiation. An endpoint MUST -		// immediately terminate an HTTP/2 connection that -		// does not meet the TLS requirements described in -		// this section with a connection error (Section -		// 5.4.1) of type INADEQUATE_SECURITY. -		if sc.tlsState.Version < tls.VersionTLS12 { -			sc.rejectConn(ErrCodeInadequateSecurity, "TLS version too low") -			return -		} - -		if sc.tlsState.ServerName == "" { -			// Client must use SNI, but we don't enforce that anymore, -			// since it was causing problems when connecting to bare IP -			// addresses during development. -			// -			// TODO: optionally enforce? Or enforce at the time we receive -			// a new request, and verify the ServerName matches the :authority? -			// But that precludes proxy situations, perhaps. -			// -			// So for now, do nothing here again. -		} - -		if !conf.PermitProhibitedCipherSuites && isBadCipher(sc.tlsState.CipherSuite) { -			// "Endpoints MAY choose to generate a connection error -			// (Section 5.4.1) of type INADEQUATE_SECURITY if one of -			// the prohibited cipher suites are negotiated." -			// -			// We choose that. In my opinion, the spec is weak -			// here. It also says both parties must support at least -			// TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 so there's no -			// excuses here. If we really must, we could allow an -			// "AllowInsecureWeakCiphers" option on the server later. -			// Let's see how it plays out first. -			sc.rejectConn(ErrCodeInadequateSecurity, fmt.Sprintf("Prohibited TLS 1.2 Cipher Suite: %x", sc.tlsState.CipherSuite)) -			return -		} -	} - -	if opts.Settings != nil { -		fr := &SettingsFrame{ -			FrameHeader: FrameHeader{valid: true}, -			p:           opts.Settings, -		} -		if err := fr.ForeachSetting(sc.processSetting); err != nil { -			sc.rejectConn(ErrCodeProtocol, "invalid settings") -			return -		} -		opts.Settings = nil -	} - -	if hook := testHookGetServerConn; hook != nil { -		hook(sc) -	} - -	if opts.UpgradeRequest != nil { -		sc.upgradeRequest(opts.UpgradeRequest) -		opts.UpgradeRequest = nil -	} - -	sc.serve(conf) -} - -func serverConnBaseContext(c net.Conn, opts *ServeConnOpts) (ctx context.Context, cancel func()) { -	ctx, cancel = context.WithCancel(opts.context()) -	ctx = context.WithValue(ctx, http.LocalAddrContextKey, c.LocalAddr()) -	if hs := opts.baseConfig(); hs != nil { -		ctx = context.WithValue(ctx, http.ServerContextKey, hs) -	} -	return -} - -func (sc *serverConn) rejectConn(err ErrCode, debug string) { -	sc.vlogf("http2: server rejecting conn: %v, %s", err, debug) -	// ignoring errors. hanging up anyway. -	sc.framer.WriteGoAway(0, err, []byte(debug)) -	sc.bw.Flush() -	sc.conn.Close() -} - -type serverConn struct { -	// Immutable: -	srv              *Server -	hs               *http.Server -	conn             net.Conn -	bw               *bufferedWriter // writing to conn -	handler          http.Handler -	baseCtx          context.Context -	framer           *Framer -	doneServing      chan struct{}          // closed when serverConn.serve ends -	readFrameCh      chan readFrameResult   // written by serverConn.readFrames -	wantWriteFrameCh chan FrameWriteRequest // from handlers -> serve -	wroteFrameCh     chan frameWriteResult  // from writeFrameAsync -> serve, tickles more frame writes -	bodyReadCh       chan bodyReadMsg       // from handlers -> serve -	serveMsgCh       chan interface{}       // misc messages & code to send to / run on the serve loop -	flow             outflow                // conn-wide (not stream-specific) outbound flow control -	inflow           inflow                 // conn-wide inbound flow control -	tlsState         *tls.ConnectionState   // shared by all handlers, like net/http -	remoteAddrStr    string -	writeSched       WriteScheduler -	countErrorFunc   func(errType string) - -	// Everything following is owned by the serve loop; use serveG.check(): -	serveG                      goroutineLock // used to verify funcs are on serve() -	pushEnabled                 bool -	sawClientPreface            bool // preface has already been read, used in h2c upgrade -	sawFirstSettings            bool // got the initial SETTINGS frame after the preface -	needToSendSettingsAck       bool -	unackedSettings             int    // how many SETTINGS have we sent without ACKs? -	queuedControlFrames         int    // control frames in the writeSched queue -	clientMaxStreams            uint32 // SETTINGS_MAX_CONCURRENT_STREAMS from client (our PUSH_PROMISE limit) -	advMaxStreams               uint32 // our SETTINGS_MAX_CONCURRENT_STREAMS advertised the client -	curClientStreams            uint32 // number of open streams initiated by the client -	curPushedStreams            uint32 // number of open streams initiated by server push -	curHandlers                 uint32 // number of running handler goroutines -	maxClientStreamID           uint32 // max ever seen from client (odd), or 0 if there have been no client requests -	maxPushPromiseID            uint32 // ID of the last push promise (even), or 0 if there have been no pushes -	streams                     map[uint32]*stream -	unstartedHandlers           []unstartedHandler -	initialStreamSendWindowSize int32 -	initialStreamRecvWindowSize int32 -	maxFrameSize                int32 -	peerMaxHeaderListSize       uint32            // zero means unknown (default) -	canonHeader                 map[string]string // http2-lower-case -> Go-Canonical-Case -	canonHeaderKeysSize         int               // canonHeader keys size in bytes -	writingFrame                bool              // started writing a frame (on serve goroutine or separate) -	writingFrameAsync           bool              // started a frame on its own goroutine but haven't heard back on wroteFrameCh -	needsFrameFlush             bool              // last frame write wasn't a flush -	inGoAway                    bool              // we've started to or sent GOAWAY -	inFrameScheduleLoop         bool              // whether we're in the scheduleFrameWrite loop -	needToSendGoAway            bool              // we need to schedule a GOAWAY frame write -	pingSent                    bool -	sentPingData                [8]byte -	goAwayCode                  ErrCode -	shutdownTimer               timer // nil until used -	idleTimer                   timer // nil if unused -	readIdleTimeout             time.Duration -	pingTimeout                 time.Duration -	readIdleTimer               timer // nil if unused - -	// Owned by the writeFrameAsync goroutine: -	headerWriteBuf bytes.Buffer -	hpackEncoder   *hpack.Encoder - -	// Used by startGracefulShutdown. -	shutdownOnce sync.Once -} - -func (sc *serverConn) maxHeaderListSize() uint32 { -	n := sc.hs.MaxHeaderBytes -	if n <= 0 { -		n = http.DefaultMaxHeaderBytes -	} -	return uint32(adjustHTTP1MaxHeaderSize(int64(n))) -} - -func (sc *serverConn) curOpenStreams() uint32 { -	sc.serveG.check() -	return sc.curClientStreams + sc.curPushedStreams -} - -// stream represents a stream. This is the minimal metadata needed by -// the serve goroutine. Most of the actual stream state is owned by -// the http.Handler's goroutine in the responseWriter. Because the -// responseWriter's responseWriterState is recycled at the end of a -// handler, this struct intentionally has no pointer to the -// *responseWriter{,State} itself, as the Handler ending nils out the -// responseWriter's state field. -type stream struct { -	// immutable: -	sc        *serverConn -	id        uint32 -	body      *pipe       // non-nil if expecting DATA frames -	cw        closeWaiter // closed wait stream transitions to closed state -	ctx       context.Context -	cancelCtx func() - -	// owned by serverConn's serve loop: -	bodyBytes        int64   // body bytes seen so far -	declBodyBytes    int64   // or -1 if undeclared -	flow             outflow // limits writing from Handler to client -	inflow           inflow  // what the client is allowed to POST/etc to us -	state            streamState -	resetQueued      bool  // RST_STREAM queued for write; set by sc.resetStream -	gotTrailerHeader bool  // HEADER frame for trailers was seen -	wroteHeaders     bool  // whether we wrote headers (not status 100) -	readDeadline     timer // nil if unused -	writeDeadline    timer // nil if unused -	closeErr         error // set before cw is closed - -	trailer    http.Header // accumulated trailers -	reqTrailer http.Header // handler's Request.Trailer -} - -func (sc *serverConn) Framer() *Framer  { return sc.framer } -func (sc *serverConn) CloseConn() error { return sc.conn.Close() } -func (sc *serverConn) Flush() error     { return sc.bw.Flush() } -func (sc *serverConn) HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) { -	return sc.hpackEncoder, &sc.headerWriteBuf -} - -func (sc *serverConn) state(streamID uint32) (streamState, *stream) { -	sc.serveG.check() -	// http://tools.ietf.org/html/rfc7540#section-5.1 -	if st, ok := sc.streams[streamID]; ok { -		return st.state, st -	} -	// "The first use of a new stream identifier implicitly closes all -	// streams in the "idle" state that might have been initiated by -	// that peer with a lower-valued stream identifier. For example, if -	// a client sends a HEADERS frame on stream 7 without ever sending a -	// frame on stream 5, then stream 5 transitions to the "closed" -	// state when the first frame for stream 7 is sent or received." -	if streamID%2 == 1 { -		if streamID <= sc.maxClientStreamID { -			return stateClosed, nil -		} -	} else { -		if streamID <= sc.maxPushPromiseID { -			return stateClosed, nil -		} -	} -	return stateIdle, nil -} - -// setConnState calls the net/http ConnState hook for this connection, if configured. -// Note that the net/http package does StateNew and StateClosed for us. -// There is currently no plan for StateHijacked or hijacking HTTP/2 connections. -func (sc *serverConn) setConnState(state http.ConnState) { -	if sc.hs.ConnState != nil { -		sc.hs.ConnState(sc.conn, state) -	} -} - -func (sc *serverConn) vlogf(format string, args ...interface{}) { -	if VerboseLogs { -		sc.logf(format, args...) -	} -} - -func (sc *serverConn) logf(format string, args ...interface{}) { -	if lg := sc.hs.ErrorLog; lg != nil { -		lg.Printf(format, args...) -	} else { -		log.Printf(format, args...) -	} -} - -// errno returns v's underlying uintptr, else 0. -// -// TODO: remove this helper function once http2 can use build -// tags. See comment in isClosedConnError. -func errno(v error) uintptr { -	if rv := reflect.ValueOf(v); rv.Kind() == reflect.Uintptr { -		return uintptr(rv.Uint()) -	} -	return 0 -} - -// isClosedConnError reports whether err is an error from use of a closed -// network connection. -func isClosedConnError(err error) bool { -	if err == nil { -		return false -	} - -	if errors.Is(err, net.ErrClosed) { -		return true -	} - -	// TODO(bradfitz): x/tools/cmd/bundle doesn't really support -	// build tags, so I can't make an http2_windows.go file with -	// Windows-specific stuff. Fix that and move this, once we -	// have a way to bundle this into std's net/http somehow. -	if runtime.GOOS == "windows" { -		if oe, ok := err.(*net.OpError); ok && oe.Op == "read" { -			if se, ok := oe.Err.(*os.SyscallError); ok && se.Syscall == "wsarecv" { -				const WSAECONNABORTED = 10053 -				const WSAECONNRESET = 10054 -				if n := errno(se.Err); n == WSAECONNRESET || n == WSAECONNABORTED { -					return true -				} -			} -		} -	} -	return false -} - -func (sc *serverConn) condlogf(err error, format string, args ...interface{}) { -	if err == nil { -		return -	} -	if err == io.EOF || err == io.ErrUnexpectedEOF || isClosedConnError(err) || err == errPrefaceTimeout { -		// Boring, expected errors. -		sc.vlogf(format, args...) -	} else { -		sc.logf(format, args...) -	} -} - -// maxCachedCanonicalHeadersKeysSize is an arbitrarily-chosen limit on the size -// of the entries in the canonHeader cache. -// This should be larger than the size of unique, uncommon header keys likely to -// be sent by the peer, while not so high as to permit unreasonable memory usage -// if the peer sends an unbounded number of unique header keys. -const maxCachedCanonicalHeadersKeysSize = 2048 - -func (sc *serverConn) canonicalHeader(v string) string { -	sc.serveG.check() -	cv, ok := httpcommon.CachedCanonicalHeader(v) -	if ok { -		return cv -	} -	cv, ok = sc.canonHeader[v] -	if ok { -		return cv -	} -	if sc.canonHeader == nil { -		sc.canonHeader = make(map[string]string) -	} -	cv = http.CanonicalHeaderKey(v) -	size := 100 + len(v)*2 // 100 bytes of map overhead + key + value -	if sc.canonHeaderKeysSize+size <= maxCachedCanonicalHeadersKeysSize { -		sc.canonHeader[v] = cv -		sc.canonHeaderKeysSize += size -	} -	return cv -} - -type readFrameResult struct { -	f   Frame // valid until readMore is called -	err error - -	// readMore should be called once the consumer no longer needs or -	// retains f. After readMore, f is invalid and more frames can be -	// read. -	readMore func() -} - -// readFrames is the loop that reads incoming frames. -// It takes care to only read one frame at a time, blocking until the -// consumer is done with the frame. -// It's run on its own goroutine. -func (sc *serverConn) readFrames() { -	sc.srv.markNewGoroutine() -	gate := make(chan struct{}) -	gateDone := func() { gate <- struct{}{} } -	for { -		f, err := sc.framer.ReadFrame() -		select { -		case sc.readFrameCh <- readFrameResult{f, err, gateDone}: -		case <-sc.doneServing: -			return -		} -		select { -		case <-gate: -		case <-sc.doneServing: -			return -		} -		if terminalReadFrameError(err) { -			return -		} -	} -} - -// frameWriteResult is the message passed from writeFrameAsync to the serve goroutine. -type frameWriteResult struct { -	_   incomparable -	wr  FrameWriteRequest // what was written (or attempted) -	err error             // result of the writeFrame call -} - -// writeFrameAsync runs in its own goroutine and writes a single frame -// and then reports when it's done. -// At most one goroutine can be running writeFrameAsync at a time per -// serverConn. -func (sc *serverConn) writeFrameAsync(wr FrameWriteRequest, wd *writeData) { -	sc.srv.markNewGoroutine() -	var err error -	if wd == nil { -		err = wr.write.writeFrame(sc) -	} else { -		err = sc.framer.endWrite() -	} -	sc.wroteFrameCh <- frameWriteResult{wr: wr, err: err} -} - -func (sc *serverConn) closeAllStreamsOnConnClose() { -	sc.serveG.check() -	for _, st := range sc.streams { -		sc.closeStream(st, errClientDisconnected) -	} -} - -func (sc *serverConn) stopShutdownTimer() { -	sc.serveG.check() -	if t := sc.shutdownTimer; t != nil { -		t.Stop() -	} -} - -func (sc *serverConn) notePanic() { -	// Note: this is for serverConn.serve panicking, not http.Handler code. -	if testHookOnPanicMu != nil { -		testHookOnPanicMu.Lock() -		defer testHookOnPanicMu.Unlock() -	} -	if testHookOnPanic != nil { -		if e := recover(); e != nil { -			if testHookOnPanic(sc, e) { -				panic(e) -			} -		} -	} -} - -func (sc *serverConn) serve(conf http2Config) { -	sc.serveG.check() -	defer sc.notePanic() -	defer sc.conn.Close() -	defer sc.closeAllStreamsOnConnClose() -	defer sc.stopShutdownTimer() -	defer close(sc.doneServing) // unblocks handlers trying to send - -	if VerboseLogs { -		sc.vlogf("http2: server connection from %v on %p", sc.conn.RemoteAddr(), sc.hs) -	} - -	settings := writeSettings{ -		{SettingMaxFrameSize, conf.MaxReadFrameSize}, -		{SettingMaxConcurrentStreams, sc.advMaxStreams}, -		{SettingMaxHeaderListSize, sc.maxHeaderListSize()}, -		{SettingHeaderTableSize, conf.MaxDecoderHeaderTableSize}, -		{SettingInitialWindowSize, uint32(sc.initialStreamRecvWindowSize)}, -	} -	if !disableExtendedConnectProtocol { -		settings = append(settings, Setting{SettingEnableConnectProtocol, 1}) -	} -	sc.writeFrame(FrameWriteRequest{ -		write: settings, -	}) -	sc.unackedSettings++ - -	// Each connection starts with initialWindowSize inflow tokens. -	// If a higher value is configured, we add more tokens. -	if diff := conf.MaxUploadBufferPerConnection - initialWindowSize; diff > 0 { -		sc.sendWindowUpdate(nil, int(diff)) -	} - -	if err := sc.readPreface(); err != nil { -		sc.condlogf(err, "http2: server: error reading preface from client %v: %v", sc.conn.RemoteAddr(), err) -		return -	} -	// Now that we've got the preface, get us out of the -	// "StateNew" state. We can't go directly to idle, though. -	// Active means we read some data and anticipate a request. We'll -	// do another Active when we get a HEADERS frame. -	sc.setConnState(http.StateActive) -	sc.setConnState(http.StateIdle) - -	if sc.srv.IdleTimeout > 0 { -		sc.idleTimer = sc.srv.afterFunc(sc.srv.IdleTimeout, sc.onIdleTimer) -		defer sc.idleTimer.Stop() -	} - -	if conf.SendPingTimeout > 0 { -		sc.readIdleTimeout = conf.SendPingTimeout -		sc.readIdleTimer = sc.srv.afterFunc(conf.SendPingTimeout, sc.onReadIdleTimer) -		defer sc.readIdleTimer.Stop() -	} - -	go sc.readFrames() // closed by defer sc.conn.Close above - -	settingsTimer := sc.srv.afterFunc(firstSettingsTimeout, sc.onSettingsTimer) -	defer settingsTimer.Stop() - -	lastFrameTime := sc.srv.now() -	loopNum := 0 -	for { -		loopNum++ -		select { -		case wr := <-sc.wantWriteFrameCh: -			if se, ok := wr.write.(StreamError); ok { -				sc.resetStream(se) -				break -			} -			sc.writeFrame(wr) -		case res := <-sc.wroteFrameCh: -			sc.wroteFrame(res) -		case res := <-sc.readFrameCh: -			lastFrameTime = sc.srv.now() -			// Process any written frames before reading new frames from the client since a -			// written frame could have triggered a new stream to be started. -			if sc.writingFrameAsync { -				select { -				case wroteRes := <-sc.wroteFrameCh: -					sc.wroteFrame(wroteRes) -				default: -				} -			} -			if !sc.processFrameFromReader(res) { -				return -			} -			res.readMore() -			if settingsTimer != nil { -				settingsTimer.Stop() -				settingsTimer = nil -			} -		case m := <-sc.bodyReadCh: -			sc.noteBodyRead(m.st, m.n) -		case msg := <-sc.serveMsgCh: -			switch v := msg.(type) { -			case func(int): -				v(loopNum) // for testing -			case *serverMessage: -				switch v { -				case settingsTimerMsg: -					sc.logf("timeout waiting for SETTINGS frames from %v", sc.conn.RemoteAddr()) -					return -				case idleTimerMsg: -					sc.vlogf("connection is idle") -					sc.goAway(ErrCodeNo) -				case readIdleTimerMsg: -					sc.handlePingTimer(lastFrameTime) -				case shutdownTimerMsg: -					sc.vlogf("GOAWAY close timer fired; closing conn from %v", sc.conn.RemoteAddr()) -					return -				case gracefulShutdownMsg: -					sc.startGracefulShutdownInternal() -				case handlerDoneMsg: -					sc.handlerDone() -				default: -					panic("unknown timer") -				} -			case *startPushRequest: -				sc.startPush(v) -			case func(*serverConn): -				v(sc) -			default: -				panic(fmt.Sprintf("unexpected type %T", v)) -			} -		} - -		// If the peer is causing us to generate a lot of control frames, -		// but not reading them from us, assume they are trying to make us -		// run out of memory. -		if sc.queuedControlFrames > maxQueuedControlFrames { -			sc.vlogf("http2: too many control frames in send queue, closing connection") -			return -		} - -		// Start the shutdown timer after sending a GOAWAY. When sending GOAWAY -		// with no error code (graceful shutdown), don't start the timer until -		// all open streams have been completed. -		sentGoAway := sc.inGoAway && !sc.needToSendGoAway && !sc.writingFrame -		gracefulShutdownComplete := sc.goAwayCode == ErrCodeNo && sc.curOpenStreams() == 0 -		if sentGoAway && sc.shutdownTimer == nil && (sc.goAwayCode != ErrCodeNo || gracefulShutdownComplete) { -			sc.shutDownIn(goAwayTimeout) -		} -	} -} - -func (sc *serverConn) handlePingTimer(lastFrameReadTime time.Time) { -	if sc.pingSent { -		sc.vlogf("timeout waiting for PING response") -		sc.conn.Close() -		return -	} - -	pingAt := lastFrameReadTime.Add(sc.readIdleTimeout) -	now := sc.srv.now() -	if pingAt.After(now) { -		// We received frames since arming the ping timer. -		// Reset it for the next possible timeout. -		sc.readIdleTimer.Reset(pingAt.Sub(now)) -		return -	} - -	sc.pingSent = true -	// Ignore crypto/rand.Read errors: It generally can't fail, and worse case if it does -	// is we send a PING frame containing 0s. -	_, _ = rand.Read(sc.sentPingData[:]) -	sc.writeFrame(FrameWriteRequest{ -		write: &writePing{data: sc.sentPingData}, -	}) -	sc.readIdleTimer.Reset(sc.pingTimeout) -} - -type serverMessage int - -// Message values sent to serveMsgCh. -var ( -	settingsTimerMsg    = new(serverMessage) -	idleTimerMsg        = new(serverMessage) -	readIdleTimerMsg    = new(serverMessage) -	shutdownTimerMsg    = new(serverMessage) -	gracefulShutdownMsg = new(serverMessage) -	handlerDoneMsg      = new(serverMessage) -) - -func (sc *serverConn) onSettingsTimer() { sc.sendServeMsg(settingsTimerMsg) } -func (sc *serverConn) onIdleTimer()     { sc.sendServeMsg(idleTimerMsg) } -func (sc *serverConn) onReadIdleTimer() { sc.sendServeMsg(readIdleTimerMsg) } -func (sc *serverConn) onShutdownTimer() { sc.sendServeMsg(shutdownTimerMsg) } - -func (sc *serverConn) sendServeMsg(msg interface{}) { -	sc.serveG.checkNotOn() // NOT -	select { -	case sc.serveMsgCh <- msg: -	case <-sc.doneServing: -	} -} - -var errPrefaceTimeout = errors.New("timeout waiting for client preface") - -// readPreface reads the ClientPreface greeting from the peer or -// returns errPrefaceTimeout on timeout, or an error if the greeting -// is invalid. -func (sc *serverConn) readPreface() error { -	if sc.sawClientPreface { -		return nil -	} -	errc := make(chan error, 1) -	go func() { -		// Read the client preface -		buf := make([]byte, len(ClientPreface)) -		if _, err := io.ReadFull(sc.conn, buf); err != nil { -			errc <- err -		} else if !bytes.Equal(buf, clientPreface) { -			errc <- fmt.Errorf("bogus greeting %q", buf) -		} else { -			errc <- nil -		} -	}() -	timer := sc.srv.newTimer(prefaceTimeout) // TODO: configurable on *Server? -	defer timer.Stop() -	select { -	case <-timer.C(): -		return errPrefaceTimeout -	case err := <-errc: -		if err == nil { -			if VerboseLogs { -				sc.vlogf("http2: server: client %v said hello", sc.conn.RemoteAddr()) -			} -		} -		return err -	} -} - -var errChanPool = sync.Pool{ -	New: func() interface{} { return make(chan error, 1) }, -} - -var writeDataPool = sync.Pool{ -	New: func() interface{} { return new(writeData) }, -} - -// writeDataFromHandler writes DATA response frames from a handler on -// the given stream. -func (sc *serverConn) writeDataFromHandler(stream *stream, data []byte, endStream bool) error { -	ch := errChanPool.Get().(chan error) -	writeArg := writeDataPool.Get().(*writeData) -	*writeArg = writeData{stream.id, data, endStream} -	err := sc.writeFrameFromHandler(FrameWriteRequest{ -		write:  writeArg, -		stream: stream, -		done:   ch, -	}) -	if err != nil { -		return err -	} -	var frameWriteDone bool // the frame write is done (successfully or not) -	select { -	case err = <-ch: -		frameWriteDone = true -	case <-sc.doneServing: -		return errClientDisconnected -	case <-stream.cw: -		// If both ch and stream.cw were ready (as might -		// happen on the final Write after an http.Handler -		// ends), prefer the write result. Otherwise this -		// might just be us successfully closing the stream. -		// The writeFrameAsync and serve goroutines guarantee -		// that the ch send will happen before the stream.cw -		// close. -		select { -		case err = <-ch: -			frameWriteDone = true -		default: -			return errStreamClosed -		} -	} -	errChanPool.Put(ch) -	if frameWriteDone { -		writeDataPool.Put(writeArg) -	} -	return err -} - -// writeFrameFromHandler sends wr to sc.wantWriteFrameCh, but aborts -// if the connection has gone away. -// -// This must not be run from the serve goroutine itself, else it might -// deadlock writing to sc.wantWriteFrameCh (which is only mildly -// buffered and is read by serve itself). If you're on the serve -// goroutine, call writeFrame instead. -func (sc *serverConn) writeFrameFromHandler(wr FrameWriteRequest) error { -	sc.serveG.checkNotOn() // NOT -	select { -	case sc.wantWriteFrameCh <- wr: -		return nil -	case <-sc.doneServing: -		// Serve loop is gone. -		// Client has closed their connection to the server. -		return errClientDisconnected -	} -} - -// writeFrame schedules a frame to write and sends it if there's nothing -// already being written. -// -// There is no pushback here (the serve goroutine never blocks). It's -// the http.Handlers that block, waiting for their previous frames to -// make it onto the wire -// -// If you're not on the serve goroutine, use writeFrameFromHandler instead. -func (sc *serverConn) writeFrame(wr FrameWriteRequest) { -	sc.serveG.check() - -	// If true, wr will not be written and wr.done will not be signaled. -	var ignoreWrite bool - -	// We are not allowed to write frames on closed streams. RFC 7540 Section -	// 5.1.1 says: "An endpoint MUST NOT send frames other than PRIORITY on -	// a closed stream." Our server never sends PRIORITY, so that exception -	// does not apply. -	// -	// The serverConn might close an open stream while the stream's handler -	// is still running. For example, the server might close a stream when it -	// receives bad data from the client. If this happens, the handler might -	// attempt to write a frame after the stream has been closed (since the -	// handler hasn't yet been notified of the close). In this case, we simply -	// ignore the frame. The handler will notice that the stream is closed when -	// it waits for the frame to be written. -	// -	// As an exception to this rule, we allow sending RST_STREAM after close. -	// This allows us to immediately reject new streams without tracking any -	// state for those streams (except for the queued RST_STREAM frame). This -	// may result in duplicate RST_STREAMs in some cases, but the client should -	// ignore those. -	if wr.StreamID() != 0 { -		_, isReset := wr.write.(StreamError) -		if state, _ := sc.state(wr.StreamID()); state == stateClosed && !isReset { -			ignoreWrite = true -		} -	} - -	// Don't send a 100-continue response if we've already sent headers. -	// See golang.org/issue/14030. -	switch wr.write.(type) { -	case *writeResHeaders: -		wr.stream.wroteHeaders = true -	case write100ContinueHeadersFrame: -		if wr.stream.wroteHeaders { -			// We do not need to notify wr.done because this frame is -			// never written with wr.done != nil. -			if wr.done != nil { -				panic("wr.done != nil for write100ContinueHeadersFrame") -			} -			ignoreWrite = true -		} -	} - -	if !ignoreWrite { -		if wr.isControl() { -			sc.queuedControlFrames++ -			// For extra safety, detect wraparounds, which should not happen, -			// and pull the plug. -			if sc.queuedControlFrames < 0 { -				sc.conn.Close() -			} -		} -		sc.writeSched.Push(wr) -	} -	sc.scheduleFrameWrite() -} - -// startFrameWrite starts a goroutine to write wr (in a separate -// goroutine since that might block on the network), and updates the -// serve goroutine's state about the world, updated from info in wr. -func (sc *serverConn) startFrameWrite(wr FrameWriteRequest) { -	sc.serveG.check() -	if sc.writingFrame { -		panic("internal error: can only be writing one frame at a time") -	} - -	st := wr.stream -	if st != nil { -		switch st.state { -		case stateHalfClosedLocal: -			switch wr.write.(type) { -			case StreamError, handlerPanicRST, writeWindowUpdate: -				// RFC 7540 Section 5.1 allows sending RST_STREAM, PRIORITY, and WINDOW_UPDATE -				// in this state. (We never send PRIORITY from the server, so that is not checked.) -			default: -				panic(fmt.Sprintf("internal error: attempt to send frame on a half-closed-local stream: %v", wr)) -			} -		case stateClosed: -			panic(fmt.Sprintf("internal error: attempt to send frame on a closed stream: %v", wr)) -		} -	} -	if wpp, ok := wr.write.(*writePushPromise); ok { -		var err error -		wpp.promisedID, err = wpp.allocatePromisedID() -		if err != nil { -			sc.writingFrameAsync = false -			wr.replyToWriter(err) -			return -		} -	} - -	sc.writingFrame = true -	sc.needsFrameFlush = true -	if wr.write.staysWithinBuffer(sc.bw.Available()) { -		sc.writingFrameAsync = false -		err := wr.write.writeFrame(sc) -		sc.wroteFrame(frameWriteResult{wr: wr, err: err}) -	} else if wd, ok := wr.write.(*writeData); ok { -		// Encode the frame in the serve goroutine, to ensure we don't have -		// any lingering asynchronous references to data passed to Write. -		// See https://go.dev/issue/58446. -		sc.framer.startWriteDataPadded(wd.streamID, wd.endStream, wd.p, nil) -		sc.writingFrameAsync = true -		go sc.writeFrameAsync(wr, wd) -	} else { -		sc.writingFrameAsync = true -		go sc.writeFrameAsync(wr, nil) -	} -} - -// errHandlerPanicked is the error given to any callers blocked in a read from -// Request.Body when the main goroutine panics. Since most handlers read in the -// main ServeHTTP goroutine, this will show up rarely. -var errHandlerPanicked = errors.New("http2: handler panicked") - -// wroteFrame is called on the serve goroutine with the result of -// whatever happened on writeFrameAsync. -func (sc *serverConn) wroteFrame(res frameWriteResult) { -	sc.serveG.check() -	if !sc.writingFrame { -		panic("internal error: expected to be already writing a frame") -	} -	sc.writingFrame = false -	sc.writingFrameAsync = false - -	if res.err != nil { -		sc.conn.Close() -	} - -	wr := res.wr - -	if writeEndsStream(wr.write) { -		st := wr.stream -		if st == nil { -			panic("internal error: expecting non-nil stream") -		} -		switch st.state { -		case stateOpen: -			// Here we would go to stateHalfClosedLocal in -			// theory, but since our handler is done and -			// the net/http package provides no mechanism -			// for closing a ResponseWriter while still -			// reading data (see possible TODO at top of -			// this file), we go into closed state here -			// anyway, after telling the peer we're -			// hanging up on them. We'll transition to -			// stateClosed after the RST_STREAM frame is -			// written. -			st.state = stateHalfClosedLocal -			// Section 8.1: a server MAY request that the client abort -			// transmission of a request without error by sending a -			// RST_STREAM with an error code of NO_ERROR after sending -			// a complete response. -			sc.resetStream(streamError(st.id, ErrCodeNo)) -		case stateHalfClosedRemote: -			sc.closeStream(st, errHandlerComplete) -		} -	} else { -		switch v := wr.write.(type) { -		case StreamError: -			// st may be unknown if the RST_STREAM was generated to reject bad input. -			if st, ok := sc.streams[v.StreamID]; ok { -				sc.closeStream(st, v) -			} -		case handlerPanicRST: -			sc.closeStream(wr.stream, errHandlerPanicked) -		} -	} - -	// Reply (if requested) to unblock the ServeHTTP goroutine. -	wr.replyToWriter(res.err) - -	sc.scheduleFrameWrite() -} - -// scheduleFrameWrite tickles the frame writing scheduler. -// -// If a frame is already being written, nothing happens. This will be called again -// when the frame is done being written. -// -// If a frame isn't being written and we need to send one, the best frame -// to send is selected by writeSched. -// -// If a frame isn't being written and there's nothing else to send, we -// flush the write buffer. -func (sc *serverConn) scheduleFrameWrite() { -	sc.serveG.check() -	if sc.writingFrame || sc.inFrameScheduleLoop { -		return -	} -	sc.inFrameScheduleLoop = true -	for !sc.writingFrameAsync { -		if sc.needToSendGoAway { -			sc.needToSendGoAway = false -			sc.startFrameWrite(FrameWriteRequest{ -				write: &writeGoAway{ -					maxStreamID: sc.maxClientStreamID, -					code:        sc.goAwayCode, -				}, -			}) -			continue -		} -		if sc.needToSendSettingsAck { -			sc.needToSendSettingsAck = false -			sc.startFrameWrite(FrameWriteRequest{write: writeSettingsAck{}}) -			continue -		} -		if !sc.inGoAway || sc.goAwayCode == ErrCodeNo { -			if wr, ok := sc.writeSched.Pop(); ok { -				if wr.isControl() { -					sc.queuedControlFrames-- -				} -				sc.startFrameWrite(wr) -				continue -			} -		} -		if sc.needsFrameFlush { -			sc.startFrameWrite(FrameWriteRequest{write: flushFrameWriter{}}) -			sc.needsFrameFlush = false // after startFrameWrite, since it sets this true -			continue -		} -		break -	} -	sc.inFrameScheduleLoop = false -} - -// startGracefulShutdown gracefully shuts down a connection. This -// sends GOAWAY with ErrCodeNo to tell the client we're gracefully -// shutting down. The connection isn't closed until all current -// streams are done. -// -// startGracefulShutdown returns immediately; it does not wait until -// the connection has shut down. -func (sc *serverConn) startGracefulShutdown() { -	sc.serveG.checkNotOn() // NOT -	sc.shutdownOnce.Do(func() { sc.sendServeMsg(gracefulShutdownMsg) }) -} - -// After sending GOAWAY with an error code (non-graceful shutdown), the -// connection will close after goAwayTimeout. -// -// If we close the connection immediately after sending GOAWAY, there may -// be unsent data in our kernel receive buffer, which will cause the kernel -// to send a TCP RST on close() instead of a FIN. This RST will abort the -// connection immediately, whether or not the client had received the GOAWAY. -// -// Ideally we should delay for at least 1 RTT + epsilon so the client has -// a chance to read the GOAWAY and stop sending messages. Measuring RTT -// is hard, so we approximate with 1 second. See golang.org/issue/18701. -// -// This is a var so it can be shorter in tests, where all requests uses the -// loopback interface making the expected RTT very small. -// -// TODO: configurable? -var goAwayTimeout = 1 * time.Second - -func (sc *serverConn) startGracefulShutdownInternal() { -	sc.goAway(ErrCodeNo) -} - -func (sc *serverConn) goAway(code ErrCode) { -	sc.serveG.check() -	if sc.inGoAway { -		if sc.goAwayCode == ErrCodeNo { -			sc.goAwayCode = code -		} -		return -	} -	sc.inGoAway = true -	sc.needToSendGoAway = true -	sc.goAwayCode = code -	sc.scheduleFrameWrite() -} - -func (sc *serverConn) shutDownIn(d time.Duration) { -	sc.serveG.check() -	sc.shutdownTimer = sc.srv.afterFunc(d, sc.onShutdownTimer) -} - -func (sc *serverConn) resetStream(se StreamError) { -	sc.serveG.check() -	sc.writeFrame(FrameWriteRequest{write: se}) -	if st, ok := sc.streams[se.StreamID]; ok { -		st.resetQueued = true -	} -} - -// processFrameFromReader processes the serve loop's read from readFrameCh from the -// frame-reading goroutine. -// processFrameFromReader returns whether the connection should be kept open. -func (sc *serverConn) processFrameFromReader(res readFrameResult) bool { -	sc.serveG.check() -	err := res.err -	if err != nil { -		if err == ErrFrameTooLarge { -			sc.goAway(ErrCodeFrameSize) -			return true // goAway will close the loop -		} -		clientGone := err == io.EOF || err == io.ErrUnexpectedEOF || isClosedConnError(err) -		if clientGone { -			// TODO: could we also get into this state if -			// the peer does a half close -			// (e.g. CloseWrite) because they're done -			// sending frames but they're still wanting -			// our open replies?  Investigate. -			// TODO: add CloseWrite to crypto/tls.Conn first -			// so we have a way to test this? I suppose -			// just for testing we could have a non-TLS mode. -			return false -		} -	} else { -		f := res.f -		if VerboseLogs { -			sc.vlogf("http2: server read frame %v", summarizeFrame(f)) -		} -		err = sc.processFrame(f) -		if err == nil { -			return true -		} -	} - -	switch ev := err.(type) { -	case StreamError: -		sc.resetStream(ev) -		return true -	case goAwayFlowError: -		sc.goAway(ErrCodeFlowControl) -		return true -	case ConnectionError: -		if res.f != nil { -			if id := res.f.Header().StreamID; id > sc.maxClientStreamID { -				sc.maxClientStreamID = id -			} -		} -		sc.logf("http2: server connection error from %v: %v", sc.conn.RemoteAddr(), ev) -		sc.goAway(ErrCode(ev)) -		return true // goAway will handle shutdown -	default: -		if res.err != nil { -			sc.vlogf("http2: server closing client connection; error reading frame from client %s: %v", sc.conn.RemoteAddr(), err) -		} else { -			sc.logf("http2: server closing client connection: %v", err) -		} -		return false -	} -} - -func (sc *serverConn) processFrame(f Frame) error { -	sc.serveG.check() - -	// First frame received must be SETTINGS. -	if !sc.sawFirstSettings { -		if _, ok := f.(*SettingsFrame); !ok { -			return sc.countError("first_settings", ConnectionError(ErrCodeProtocol)) -		} -		sc.sawFirstSettings = true -	} - -	// Discard frames for streams initiated after the identified last -	// stream sent in a GOAWAY, or all frames after sending an error. -	// We still need to return connection-level flow control for DATA frames. -	// RFC 9113 Section 6.8. -	if sc.inGoAway && (sc.goAwayCode != ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) { - -		if f, ok := f.(*DataFrame); ok { -			if !sc.inflow.take(f.Length) { -				return sc.countError("data_flow", streamError(f.Header().StreamID, ErrCodeFlowControl)) -			} -			sc.sendWindowUpdate(nil, int(f.Length)) // conn-level -		} -		return nil -	} - -	switch f := f.(type) { -	case *SettingsFrame: -		return sc.processSettings(f) -	case *MetaHeadersFrame: -		return sc.processHeaders(f) -	case *WindowUpdateFrame: -		return sc.processWindowUpdate(f) -	case *PingFrame: -		return sc.processPing(f) -	case *DataFrame: -		return sc.processData(f) -	case *RSTStreamFrame: -		return sc.processResetStream(f) -	case *PriorityFrame: -		return sc.processPriority(f) -	case *GoAwayFrame: -		return sc.processGoAway(f) -	case *PushPromiseFrame: -		// A client cannot push. Thus, servers MUST treat the receipt of a PUSH_PROMISE -		// frame as a connection error (Section 5.4.1) of type PROTOCOL_ERROR. -		return sc.countError("push_promise", ConnectionError(ErrCodeProtocol)) -	default: -		sc.vlogf("http2: server ignoring frame: %v", f.Header()) -		return nil -	} -} - -func (sc *serverConn) processPing(f *PingFrame) error { -	sc.serveG.check() -	if f.IsAck() { -		if sc.pingSent && sc.sentPingData == f.Data { -			// This is a response to a PING we sent. -			sc.pingSent = false -			sc.readIdleTimer.Reset(sc.readIdleTimeout) -		} -		// 6.7 PING: " An endpoint MUST NOT respond to PING frames -		// containing this flag." -		return nil -	} -	if f.StreamID != 0 { -		// "PING frames are not associated with any individual -		// stream. If a PING frame is received with a stream -		// identifier field value other than 0x0, the recipient MUST -		// respond with a connection error (Section 5.4.1) of type -		// PROTOCOL_ERROR." -		return sc.countError("ping_on_stream", ConnectionError(ErrCodeProtocol)) -	} -	sc.writeFrame(FrameWriteRequest{write: writePingAck{f}}) -	return nil -} - -func (sc *serverConn) processWindowUpdate(f *WindowUpdateFrame) error { -	sc.serveG.check() -	switch { -	case f.StreamID != 0: // stream-level flow control -		state, st := sc.state(f.StreamID) -		if state == stateIdle { -			// Section 5.1: "Receiving any frame other than HEADERS -			// or PRIORITY on a stream in this state MUST be -			// treated as a connection error (Section 5.4.1) of -			// type PROTOCOL_ERROR." -			return sc.countError("stream_idle", ConnectionError(ErrCodeProtocol)) -		} -		if st == nil { -			// "WINDOW_UPDATE can be sent by a peer that has sent a -			// frame bearing the END_STREAM flag. This means that a -			// receiver could receive a WINDOW_UPDATE frame on a "half -			// closed (remote)" or "closed" stream. A receiver MUST -			// NOT treat this as an error, see Section 5.1." -			return nil -		} -		if !st.flow.add(int32(f.Increment)) { -			return sc.countError("bad_flow", streamError(f.StreamID, ErrCodeFlowControl)) -		} -	default: // connection-level flow control -		if !sc.flow.add(int32(f.Increment)) { -			return goAwayFlowError{} -		} -	} -	sc.scheduleFrameWrite() -	return nil -} - -func (sc *serverConn) processResetStream(f *RSTStreamFrame) error { -	sc.serveG.check() - -	state, st := sc.state(f.StreamID) -	if state == stateIdle { -		// 6.4 "RST_STREAM frames MUST NOT be sent for a -		// stream in the "idle" state. If a RST_STREAM frame -		// identifying an idle stream is received, the -		// recipient MUST treat this as a connection error -		// (Section 5.4.1) of type PROTOCOL_ERROR. -		return sc.countError("reset_idle_stream", ConnectionError(ErrCodeProtocol)) -	} -	if st != nil { -		st.cancelCtx() -		sc.closeStream(st, streamError(f.StreamID, f.ErrCode)) -	} -	return nil -} - -func (sc *serverConn) closeStream(st *stream, err error) { -	sc.serveG.check() -	if st.state == stateIdle || st.state == stateClosed { -		panic(fmt.Sprintf("invariant; can't close stream in state %v", st.state)) -	} -	st.state = stateClosed -	if st.readDeadline != nil { -		st.readDeadline.Stop() -	} -	if st.writeDeadline != nil { -		st.writeDeadline.Stop() -	} -	if st.isPushed() { -		sc.curPushedStreams-- -	} else { -		sc.curClientStreams-- -	} -	delete(sc.streams, st.id) -	if len(sc.streams) == 0 { -		sc.setConnState(http.StateIdle) -		if sc.srv.IdleTimeout > 0 && sc.idleTimer != nil { -			sc.idleTimer.Reset(sc.srv.IdleTimeout) -		} -		if h1ServerKeepAlivesDisabled(sc.hs) { -			sc.startGracefulShutdownInternal() -		} -	} -	if p := st.body; p != nil { -		// Return any buffered unread bytes worth of conn-level flow control. -		// See golang.org/issue/16481 -		sc.sendWindowUpdate(nil, p.Len()) - -		p.CloseWithError(err) -	} -	if e, ok := err.(StreamError); ok { -		if e.Cause != nil { -			err = e.Cause -		} else { -			err = errStreamClosed -		} -	} -	st.closeErr = err -	st.cancelCtx() -	st.cw.Close() // signals Handler's CloseNotifier, unblocks writes, etc -	sc.writeSched.CloseStream(st.id) -} - -func (sc *serverConn) processSettings(f *SettingsFrame) error { -	sc.serveG.check() -	if f.IsAck() { -		sc.unackedSettings-- -		if sc.unackedSettings < 0 { -			// Why is the peer ACKing settings we never sent? -			// The spec doesn't mention this case, but -			// hang up on them anyway. -			return sc.countError("ack_mystery", ConnectionError(ErrCodeProtocol)) -		} -		return nil -	} -	if f.NumSettings() > 100 || f.HasDuplicates() { -		// This isn't actually in the spec, but hang up on -		// suspiciously large settings frames or those with -		// duplicate entries. -		return sc.countError("settings_big_or_dups", ConnectionError(ErrCodeProtocol)) -	} -	if err := f.ForeachSetting(sc.processSetting); err != nil { -		return err -	} -	// TODO: judging by RFC 7540, Section 6.5.3 each SETTINGS frame should be -	// acknowledged individually, even if multiple are received before the ACK. -	sc.needToSendSettingsAck = true -	sc.scheduleFrameWrite() -	return nil -} - -func (sc *serverConn) processSetting(s Setting) error { -	sc.serveG.check() -	if err := s.Valid(); err != nil { -		return err -	} -	if VerboseLogs { -		sc.vlogf("http2: server processing setting %v", s) -	} -	switch s.ID { -	case SettingHeaderTableSize: -		sc.hpackEncoder.SetMaxDynamicTableSize(s.Val) -	case SettingEnablePush: -		sc.pushEnabled = s.Val != 0 -	case SettingMaxConcurrentStreams: -		sc.clientMaxStreams = s.Val -	case SettingInitialWindowSize: -		return sc.processSettingInitialWindowSize(s.Val) -	case SettingMaxFrameSize: -		sc.maxFrameSize = int32(s.Val) // the maximum valid s.Val is < 2^31 -	case SettingMaxHeaderListSize: -		sc.peerMaxHeaderListSize = s.Val -	case SettingEnableConnectProtocol: -		// Receipt of this parameter by a server does not -		// have any impact -	default: -		// Unknown setting: "An endpoint that receives a SETTINGS -		// frame with any unknown or unsupported identifier MUST -		// ignore that setting." -		if VerboseLogs { -			sc.vlogf("http2: server ignoring unknown setting %v", s) -		} -	} -	return nil -} - -func (sc *serverConn) processSettingInitialWindowSize(val uint32) error { -	sc.serveG.check() -	// Note: val already validated to be within range by -	// processSetting's Valid call. - -	// "A SETTINGS frame can alter the initial flow control window -	// size for all current streams. When the value of -	// SETTINGS_INITIAL_WINDOW_SIZE changes, a receiver MUST -	// adjust the size of all stream flow control windows that it -	// maintains by the difference between the new value and the -	// old value." -	old := sc.initialStreamSendWindowSize -	sc.initialStreamSendWindowSize = int32(val) -	growth := int32(val) - old // may be negative -	for _, st := range sc.streams { -		if !st.flow.add(growth) { -			// 6.9.2 Initial Flow Control Window Size -			// "An endpoint MUST treat a change to -			// SETTINGS_INITIAL_WINDOW_SIZE that causes any flow -			// control window to exceed the maximum size as a -			// connection error (Section 5.4.1) of type -			// FLOW_CONTROL_ERROR." -			return sc.countError("setting_win_size", ConnectionError(ErrCodeFlowControl)) -		} -	} -	return nil -} - -func (sc *serverConn) processData(f *DataFrame) error { -	sc.serveG.check() -	id := f.Header().StreamID - -	data := f.Data() -	state, st := sc.state(id) -	if id == 0 || state == stateIdle { -		// Section 6.1: "DATA frames MUST be associated with a -		// stream. If a DATA frame is received whose stream -		// identifier field is 0x0, the recipient MUST respond -		// with a connection error (Section 5.4.1) of type -		// PROTOCOL_ERROR." -		// -		// Section 5.1: "Receiving any frame other than HEADERS -		// or PRIORITY on a stream in this state MUST be -		// treated as a connection error (Section 5.4.1) of -		// type PROTOCOL_ERROR." -		return sc.countError("data_on_idle", ConnectionError(ErrCodeProtocol)) -	} - -	// "If a DATA frame is received whose stream is not in "open" -	// or "half closed (local)" state, the recipient MUST respond -	// with a stream error (Section 5.4.2) of type STREAM_CLOSED." -	if st == nil || state != stateOpen || st.gotTrailerHeader || st.resetQueued { -		// This includes sending a RST_STREAM if the stream is -		// in stateHalfClosedLocal (which currently means that -		// the http.Handler returned, so it's done reading & -		// done writing). Try to stop the client from sending -		// more DATA. - -		// But still enforce their connection-level flow control, -		// and return any flow control bytes since we're not going -		// to consume them. -		if !sc.inflow.take(f.Length) { -			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl)) -		} -		sc.sendWindowUpdate(nil, int(f.Length)) // conn-level - -		if st != nil && st.resetQueued { -			// Already have a stream error in flight. Don't send another. -			return nil -		} -		return sc.countError("closed", streamError(id, ErrCodeStreamClosed)) -	} -	if st.body == nil { -		panic("internal error: should have a body in this state") -	} - -	// Sender sending more than they'd declared? -	if st.declBodyBytes != -1 && st.bodyBytes+int64(len(data)) > st.declBodyBytes { -		if !sc.inflow.take(f.Length) { -			return sc.countError("data_flow", streamError(id, ErrCodeFlowControl)) -		} -		sc.sendWindowUpdate(nil, int(f.Length)) // conn-level - -		st.body.CloseWithError(fmt.Errorf("sender tried to send more than declared Content-Length of %d bytes", st.declBodyBytes)) -		// RFC 7540, sec 8.1.2.6: A request or response is also malformed if the -		// value of a content-length header field does not equal the sum of the -		// DATA frame payload lengths that form the body. -		return sc.countError("send_too_much", streamError(id, ErrCodeProtocol)) -	} -	if f.Length > 0 { -		// Check whether the client has flow control quota. -		if !takeInflows(&sc.inflow, &st.inflow, f.Length) { -			return sc.countError("flow_on_data_length", streamError(id, ErrCodeFlowControl)) -		} - -		if len(data) > 0 { -			st.bodyBytes += int64(len(data)) -			wrote, err := st.body.Write(data) -			if err != nil { -				// The handler has closed the request body. -				// Return the connection-level flow control for the discarded data, -				// but not the stream-level flow control. -				sc.sendWindowUpdate(nil, int(f.Length)-wrote) -				return nil -			} -			if wrote != len(data) { -				panic("internal error: bad Writer") -			} -		} - -		// Return any padded flow control now, since we won't -		// refund it later on body reads. -		// Call sendWindowUpdate even if there is no padding, -		// to return buffered flow control credit if the sent -		// window has shrunk. -		pad := int32(f.Length) - int32(len(data)) -		sc.sendWindowUpdate32(nil, pad) -		sc.sendWindowUpdate32(st, pad) -	} -	if f.StreamEnded() { -		st.endStream() -	} -	return nil -} - -func (sc *serverConn) processGoAway(f *GoAwayFrame) error { -	sc.serveG.check() -	if f.ErrCode != ErrCodeNo { -		sc.logf("http2: received GOAWAY %+v, starting graceful shutdown", f) -	} else { -		sc.vlogf("http2: received GOAWAY %+v, starting graceful shutdown", f) -	} -	sc.startGracefulShutdownInternal() -	// http://tools.ietf.org/html/rfc7540#section-6.8 -	// We should not create any new streams, which means we should disable push. -	sc.pushEnabled = false -	return nil -} - -// isPushed reports whether the stream is server-initiated. -func (st *stream) isPushed() bool { -	return st.id%2 == 0 -} - -// endStream closes a Request.Body's pipe. It is called when a DATA -// frame says a request body is over (or after trailers). -func (st *stream) endStream() { -	sc := st.sc -	sc.serveG.check() - -	if st.declBodyBytes != -1 && st.declBodyBytes != st.bodyBytes { -		st.body.CloseWithError(fmt.Errorf("request declared a Content-Length of %d but only wrote %d bytes", -			st.declBodyBytes, st.bodyBytes)) -	} else { -		st.body.closeWithErrorAndCode(io.EOF, st.copyTrailersToHandlerRequest) -		st.body.CloseWithError(io.EOF) -	} -	st.state = stateHalfClosedRemote -} - -// copyTrailersToHandlerRequest is run in the Handler's goroutine in -// its Request.Body.Read just before it gets io.EOF. -func (st *stream) copyTrailersToHandlerRequest() { -	for k, vv := range st.trailer { -		if _, ok := st.reqTrailer[k]; ok { -			// Only copy it over it was pre-declared. -			st.reqTrailer[k] = vv -		} -	} -} - -// onReadTimeout is run on its own goroutine (from time.AfterFunc) -// when the stream's ReadTimeout has fired. -func (st *stream) onReadTimeout() { -	if st.body != nil { -		// Wrap the ErrDeadlineExceeded to avoid callers depending on us -		// returning the bare error. -		st.body.CloseWithError(fmt.Errorf("%w", os.ErrDeadlineExceeded)) -	} -} - -// onWriteTimeout is run on its own goroutine (from time.AfterFunc) -// when the stream's WriteTimeout has fired. -func (st *stream) onWriteTimeout() { -	st.sc.writeFrameFromHandler(FrameWriteRequest{write: StreamError{ -		StreamID: st.id, -		Code:     ErrCodeInternal, -		Cause:    os.ErrDeadlineExceeded, -	}}) -} - -func (sc *serverConn) processHeaders(f *MetaHeadersFrame) error { -	sc.serveG.check() -	id := f.StreamID -	// http://tools.ietf.org/html/rfc7540#section-5.1.1 -	// Streams initiated by a client MUST use odd-numbered stream -	// identifiers. [...] An endpoint that receives an unexpected -	// stream identifier MUST respond with a connection error -	// (Section 5.4.1) of type PROTOCOL_ERROR. -	if id%2 != 1 { -		return sc.countError("headers_even", ConnectionError(ErrCodeProtocol)) -	} -	// A HEADERS frame can be used to create a new stream or -	// send a trailer for an open one. If we already have a stream -	// open, let it process its own HEADERS frame (trailers at this -	// point, if it's valid). -	if st := sc.streams[f.StreamID]; st != nil { -		if st.resetQueued { -			// We're sending RST_STREAM to close the stream, so don't bother -			// processing this frame. -			return nil -		} -		// RFC 7540, sec 5.1: If an endpoint receives additional frames, other than -		// WINDOW_UPDATE, PRIORITY, or RST_STREAM, for a stream that is in -		// this state, it MUST respond with a stream error (Section 5.4.2) of -		// type STREAM_CLOSED. -		if st.state == stateHalfClosedRemote { -			return sc.countError("headers_half_closed", streamError(id, ErrCodeStreamClosed)) -		} -		return st.processTrailerHeaders(f) -	} - -	// [...] The identifier of a newly established stream MUST be -	// numerically greater than all streams that the initiating -	// endpoint has opened or reserved. [...]  An endpoint that -	// receives an unexpected stream identifier MUST respond with -	// a connection error (Section 5.4.1) of type PROTOCOL_ERROR. -	if id <= sc.maxClientStreamID { -		return sc.countError("stream_went_down", ConnectionError(ErrCodeProtocol)) -	} -	sc.maxClientStreamID = id - -	if sc.idleTimer != nil { -		sc.idleTimer.Stop() -	} - -	// http://tools.ietf.org/html/rfc7540#section-5.1.2 -	// [...] Endpoints MUST NOT exceed the limit set by their peer. An -	// endpoint that receives a HEADERS frame that causes their -	// advertised concurrent stream limit to be exceeded MUST treat -	// this as a stream error (Section 5.4.2) of type PROTOCOL_ERROR -	// or REFUSED_STREAM. -	if sc.curClientStreams+1 > sc.advMaxStreams { -		if sc.unackedSettings == 0 { -			// They should know better. -			return sc.countError("over_max_streams", streamError(id, ErrCodeProtocol)) -		} -		// Assume it's a network race, where they just haven't -		// received our last SETTINGS update. But actually -		// this can't happen yet, because we don't yet provide -		// a way for users to adjust server parameters at -		// runtime. -		return sc.countError("over_max_streams_race", streamError(id, ErrCodeRefusedStream)) -	} - -	initialState := stateOpen -	if f.StreamEnded() { -		initialState = stateHalfClosedRemote -	} -	st := sc.newStream(id, 0, initialState) - -	if f.HasPriority() { -		if err := sc.checkPriority(f.StreamID, f.Priority); err != nil { -			return err -		} -		sc.writeSched.AdjustStream(st.id, f.Priority) -	} - -	rw, req, err := sc.newWriterAndRequest(st, f) -	if err != nil { -		return err -	} -	st.reqTrailer = req.Trailer -	if st.reqTrailer != nil { -		st.trailer = make(http.Header) -	} -	st.body = req.Body.(*requestBody).pipe // may be nil -	st.declBodyBytes = req.ContentLength - -	handler := sc.handler.ServeHTTP -	if f.Truncated { -		// Their header list was too long. Send a 431 error. -		handler = handleHeaderListTooLong -	} else if err := checkValidHTTP2RequestHeaders(req.Header); err != nil { -		handler = new400Handler(err) -	} - -	// The net/http package sets the read deadline from the -	// http.Server.ReadTimeout during the TLS handshake, but then -	// passes the connection off to us with the deadline already -	// set. Disarm it here after the request headers are read, -	// similar to how the http1 server works. Here it's -	// technically more like the http1 Server's ReadHeaderTimeout -	// (in Go 1.8), though. That's a more sane option anyway. -	if sc.hs.ReadTimeout > 0 { -		sc.conn.SetReadDeadline(time.Time{}) -		st.readDeadline = sc.srv.afterFunc(sc.hs.ReadTimeout, st.onReadTimeout) -	} - -	return sc.scheduleHandler(id, rw, req, handler) -} - -func (sc *serverConn) upgradeRequest(req *http.Request) { -	sc.serveG.check() -	id := uint32(1) -	sc.maxClientStreamID = id -	st := sc.newStream(id, 0, stateHalfClosedRemote) -	st.reqTrailer = req.Trailer -	if st.reqTrailer != nil { -		st.trailer = make(http.Header) -	} -	rw := sc.newResponseWriter(st, req) - -	// Disable any read deadline set by the net/http package -	// prior to the upgrade. -	if sc.hs.ReadTimeout > 0 { -		sc.conn.SetReadDeadline(time.Time{}) -	} - -	// This is the first request on the connection, -	// so start the handler directly rather than going -	// through scheduleHandler. -	sc.curHandlers++ -	go sc.runHandler(rw, req, sc.handler.ServeHTTP) -} - -func (st *stream) processTrailerHeaders(f *MetaHeadersFrame) error { -	sc := st.sc -	sc.serveG.check() -	if st.gotTrailerHeader { -		return sc.countError("dup_trailers", ConnectionError(ErrCodeProtocol)) -	} -	st.gotTrailerHeader = true -	if !f.StreamEnded() { -		return sc.countError("trailers_not_ended", streamError(st.id, ErrCodeProtocol)) -	} - -	if len(f.PseudoFields()) > 0 { -		return sc.countError("trailers_pseudo", streamError(st.id, ErrCodeProtocol)) -	} -	if st.trailer != nil { -		for _, hf := range f.RegularFields() { -			key := sc.canonicalHeader(hf.Name) -			if !httpguts.ValidTrailerHeader(key) { -				// TODO: send more details to the peer somehow. But http2 has -				// no way to send debug data at a stream level. Discuss with -				// HTTP folk. -				return sc.countError("trailers_bogus", streamError(st.id, ErrCodeProtocol)) -			} -			st.trailer[key] = append(st.trailer[key], hf.Value) -		} -	} -	st.endStream() -	return nil -} - -func (sc *serverConn) checkPriority(streamID uint32, p PriorityParam) error { -	if streamID == p.StreamDep { -		// Section 5.3.1: "A stream cannot depend on itself. An endpoint MUST treat -		// this as a stream error (Section 5.4.2) of type PROTOCOL_ERROR." -		// Section 5.3.3 says that a stream can depend on one of its dependencies, -		// so it's only self-dependencies that are forbidden. -		return sc.countError("priority", streamError(streamID, ErrCodeProtocol)) -	} -	return nil -} - -func (sc *serverConn) processPriority(f *PriorityFrame) error { -	if err := sc.checkPriority(f.StreamID, f.PriorityParam); err != nil { -		return err -	} -	sc.writeSched.AdjustStream(f.StreamID, f.PriorityParam) -	return nil -} - -func (sc *serverConn) newStream(id, pusherID uint32, state streamState) *stream { -	sc.serveG.check() -	if id == 0 { -		panic("internal error: cannot create stream with id 0") -	} - -	ctx, cancelCtx := context.WithCancel(sc.baseCtx) -	st := &stream{ -		sc:        sc, -		id:        id, -		state:     state, -		ctx:       ctx, -		cancelCtx: cancelCtx, -	} -	st.cw.Init() -	st.flow.conn = &sc.flow // link to conn-level counter -	st.flow.add(sc.initialStreamSendWindowSize) -	st.inflow.init(sc.initialStreamRecvWindowSize) -	if sc.hs.WriteTimeout > 0 { -		st.writeDeadline = sc.srv.afterFunc(sc.hs.WriteTimeout, st.onWriteTimeout) -	} - -	sc.streams[id] = st -	sc.writeSched.OpenStream(st.id, OpenStreamOptions{PusherID: pusherID}) -	if st.isPushed() { -		sc.curPushedStreams++ -	} else { -		sc.curClientStreams++ -	} -	if sc.curOpenStreams() == 1 { -		sc.setConnState(http.StateActive) -	} - -	return st -} - -func (sc *serverConn) newWriterAndRequest(st *stream, f *MetaHeadersFrame) (*responseWriter, *http.Request, error) { -	sc.serveG.check() - -	rp := requestParam{ -		method:    f.PseudoValue("method"), -		scheme:    f.PseudoValue("scheme"), -		authority: f.PseudoValue("authority"), -		path:      f.PseudoValue("path"), -		protocol:  f.PseudoValue("protocol"), -	} - -	// extended connect is disabled, so we should not see :protocol -	if disableExtendedConnectProtocol && rp.protocol != "" { -		return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol)) -	} - -	isConnect := rp.method == "CONNECT" -	if isConnect { -		if rp.protocol == "" && (rp.path != "" || rp.scheme != "" || rp.authority == "") { -			return nil, nil, sc.countError("bad_connect", streamError(f.StreamID, ErrCodeProtocol)) -		} -	} else if rp.method == "" || rp.path == "" || (rp.scheme != "https" && rp.scheme != "http") { -		// See 8.1.2.6 Malformed Requests and Responses: -		// -		// Malformed requests or responses that are detected -		// MUST be treated as a stream error (Section 5.4.2) -		// of type PROTOCOL_ERROR." -		// -		// 8.1.2.3 Request Pseudo-Header Fields -		// "All HTTP/2 requests MUST include exactly one valid -		// value for the :method, :scheme, and :path -		// pseudo-header fields" -		return nil, nil, sc.countError("bad_path_method", streamError(f.StreamID, ErrCodeProtocol)) -	} - -	rp.header = make(http.Header) -	for _, hf := range f.RegularFields() { -		rp.header.Add(sc.canonicalHeader(hf.Name), hf.Value) -	} -	if rp.authority == "" { -		rp.authority = rp.header.Get("Host") -	} -	if rp.protocol != "" { -		rp.header.Set(":protocol", rp.protocol) -	} - -	rw, req, err := sc.newWriterAndRequestNoBody(st, rp) -	if err != nil { -		return nil, nil, err -	} -	bodyOpen := !f.StreamEnded() -	if bodyOpen { -		if vv, ok := rp.header["Content-Length"]; ok { -			if cl, err := strconv.ParseUint(vv[0], 10, 63); err == nil { -				req.ContentLength = int64(cl) -			} else { -				req.ContentLength = 0 -			} -		} else { -			req.ContentLength = -1 -		} -		req.Body.(*requestBody).pipe = &pipe{ -			b: &dataBuffer{expected: req.ContentLength}, -		} -	} -	return rw, req, nil -} - -type requestParam struct { -	method                  string -	scheme, authority, path string -	protocol                string -	header                  http.Header -} - -func (sc *serverConn) newWriterAndRequestNoBody(st *stream, rp requestParam) (*responseWriter, *http.Request, error) { -	sc.serveG.check() - -	var tlsState *tls.ConnectionState // nil if not scheme https -	if rp.scheme == "https" { -		tlsState = sc.tlsState -	} - -	needsContinue := httpguts.HeaderValuesContainsToken(rp.header["Expect"], "100-continue") -	if needsContinue { -		rp.header.Del("Expect") -	} -	// Merge Cookie headers into one "; "-delimited value. -	if cookies := rp.header["Cookie"]; len(cookies) > 1 { -		rp.header.Set("Cookie", strings.Join(cookies, "; ")) -	} - -	// Setup Trailers -	var trailer http.Header -	for _, v := range rp.header["Trailer"] { -		for _, key := range strings.Split(v, ",") { -			key = http.CanonicalHeaderKey(textproto.TrimString(key)) -			switch key { -			case "Transfer-Encoding", "Trailer", "Content-Length": -				// Bogus. (copy of http1 rules) -				// Ignore. -			default: -				if trailer == nil { -					trailer = make(http.Header) -				} -				trailer[key] = nil -			} -		} -	} -	delete(rp.header, "Trailer") - -	var url_ *url.URL -	var requestURI string -	if rp.method == "CONNECT" && rp.protocol == "" { -		url_ = &url.URL{Host: rp.authority} -		requestURI = rp.authority // mimic HTTP/1 server behavior -	} else { -		var err error -		url_, err = url.ParseRequestURI(rp.path) -		if err != nil { -			return nil, nil, sc.countError("bad_path", streamError(st.id, ErrCodeProtocol)) -		} -		requestURI = rp.path -	} - -	body := &requestBody{ -		conn:          sc, -		stream:        st, -		needsContinue: needsContinue, -	} -	req := &http.Request{ -		Method:     rp.method, -		URL:        url_, -		RemoteAddr: sc.remoteAddrStr, -		Header:     rp.header, -		RequestURI: requestURI, -		Proto:      "HTTP/2.0", -		ProtoMajor: 2, -		ProtoMinor: 0, -		TLS:        tlsState, -		Host:       rp.authority, -		Body:       body, -		Trailer:    trailer, -	} -	req = req.WithContext(st.ctx) - -	rw := sc.newResponseWriter(st, req) -	return rw, req, nil -} - -func (sc *serverConn) newResponseWriter(st *stream, req *http.Request) *responseWriter { -	rws := responseWriterStatePool.Get().(*responseWriterState) -	bwSave := rws.bw -	*rws = responseWriterState{} // zero all the fields -	rws.conn = sc -	rws.bw = bwSave -	rws.bw.Reset(chunkWriter{rws}) -	rws.stream = st -	rws.req = req -	return &responseWriter{rws: rws} -} - -type unstartedHandler struct { -	streamID uint32 -	rw       *responseWriter -	req      *http.Request -	handler  func(http.ResponseWriter, *http.Request) -} - -// scheduleHandler starts a handler goroutine, -// or schedules one to start as soon as an existing handler finishes. -func (sc *serverConn) scheduleHandler(streamID uint32, rw *responseWriter, req *http.Request, handler func(http.ResponseWriter, *http.Request)) error { -	sc.serveG.check() -	maxHandlers := sc.advMaxStreams -	if sc.curHandlers < maxHandlers { -		sc.curHandlers++ -		go sc.runHandler(rw, req, handler) -		return nil -	} -	if len(sc.unstartedHandlers) > int(4*sc.advMaxStreams) { -		return sc.countError("too_many_early_resets", ConnectionError(ErrCodeEnhanceYourCalm)) -	} -	sc.unstartedHandlers = append(sc.unstartedHandlers, unstartedHandler{ -		streamID: streamID, -		rw:       rw, -		req:      req, -		handler:  handler, -	}) -	return nil -} - -func (sc *serverConn) handlerDone() { -	sc.serveG.check() -	sc.curHandlers-- -	i := 0 -	maxHandlers := sc.advMaxStreams -	for ; i < len(sc.unstartedHandlers); i++ { -		u := sc.unstartedHandlers[i] -		if sc.streams[u.streamID] == nil { -			// This stream was reset before its goroutine had a chance to start. -			continue -		} -		if sc.curHandlers >= maxHandlers { -			break -		} -		sc.curHandlers++ -		go sc.runHandler(u.rw, u.req, u.handler) -		sc.unstartedHandlers[i] = unstartedHandler{} // don't retain references -	} -	sc.unstartedHandlers = sc.unstartedHandlers[i:] -	if len(sc.unstartedHandlers) == 0 { -		sc.unstartedHandlers = nil -	} -} - -// Run on its own goroutine. -func (sc *serverConn) runHandler(rw *responseWriter, req *http.Request, handler func(http.ResponseWriter, *http.Request)) { -	sc.srv.markNewGoroutine() -	defer sc.sendServeMsg(handlerDoneMsg) -	didPanic := true -	defer func() { -		rw.rws.stream.cancelCtx() -		if req.MultipartForm != nil { -			req.MultipartForm.RemoveAll() -		} -		if didPanic { -			e := recover() -			sc.writeFrameFromHandler(FrameWriteRequest{ -				write:  handlerPanicRST{rw.rws.stream.id}, -				stream: rw.rws.stream, -			}) -			// Same as net/http: -			if e != nil && e != http.ErrAbortHandler { -				const size = 64 << 10 -				buf := make([]byte, size) -				buf = buf[:runtime.Stack(buf, false)] -				sc.logf("http2: panic serving %v: %v\n%s", sc.conn.RemoteAddr(), e, buf) -			} -			return -		} -		rw.handlerDone() -	}() -	handler(rw, req) -	didPanic = false -} - -func handleHeaderListTooLong(w http.ResponseWriter, r *http.Request) { -	// 10.5.1 Limits on Header Block Size: -	// .. "A server that receives a larger header block than it is -	// willing to handle can send an HTTP 431 (Request Header Fields Too -	// Large) status code" -	const statusRequestHeaderFieldsTooLarge = 431 // only in Go 1.6+ -	w.WriteHeader(statusRequestHeaderFieldsTooLarge) -	io.WriteString(w, "<h1>HTTP Error 431</h1><p>Request Header Field(s) Too Large</p>") -} - -// called from handler goroutines. -// h may be nil. -func (sc *serverConn) writeHeaders(st *stream, headerData *writeResHeaders) error { -	sc.serveG.checkNotOn() // NOT on -	var errc chan error -	if headerData.h != nil { -		// If there's a header map (which we don't own), so we have to block on -		// waiting for this frame to be written, so an http.Flush mid-handler -		// writes out the correct value of keys, before a handler later potentially -		// mutates it. -		errc = errChanPool.Get().(chan error) -	} -	if err := sc.writeFrameFromHandler(FrameWriteRequest{ -		write:  headerData, -		stream: st, -		done:   errc, -	}); err != nil { -		return err -	} -	if errc != nil { -		select { -		case err := <-errc: -			errChanPool.Put(errc) -			return err -		case <-sc.doneServing: -			return errClientDisconnected -		case <-st.cw: -			return errStreamClosed -		} -	} -	return nil -} - -// called from handler goroutines. -func (sc *serverConn) write100ContinueHeaders(st *stream) { -	sc.writeFrameFromHandler(FrameWriteRequest{ -		write:  write100ContinueHeadersFrame{st.id}, -		stream: st, -	}) -} - -// A bodyReadMsg tells the server loop that the http.Handler read n -// bytes of the DATA from the client on the given stream. -type bodyReadMsg struct { -	st *stream -	n  int -} - -// called from handler goroutines. -// Notes that the handler for the given stream ID read n bytes of its body -// and schedules flow control tokens to be sent. -func (sc *serverConn) noteBodyReadFromHandler(st *stream, n int, err error) { -	sc.serveG.checkNotOn() // NOT on -	if n > 0 { -		select { -		case sc.bodyReadCh <- bodyReadMsg{st, n}: -		case <-sc.doneServing: -		} -	} -} - -func (sc *serverConn) noteBodyRead(st *stream, n int) { -	sc.serveG.check() -	sc.sendWindowUpdate(nil, n) // conn-level -	if st.state != stateHalfClosedRemote && st.state != stateClosed { -		// Don't send this WINDOW_UPDATE if the stream is closed -		// remotely. -		sc.sendWindowUpdate(st, n) -	} -} - -// st may be nil for conn-level -func (sc *serverConn) sendWindowUpdate32(st *stream, n int32) { -	sc.sendWindowUpdate(st, int(n)) -} - -// st may be nil for conn-level -func (sc *serverConn) sendWindowUpdate(st *stream, n int) { -	sc.serveG.check() -	var streamID uint32 -	var send int32 -	if st == nil { -		send = sc.inflow.add(n) -	} else { -		streamID = st.id -		send = st.inflow.add(n) -	} -	if send == 0 { -		return -	} -	sc.writeFrame(FrameWriteRequest{ -		write:  writeWindowUpdate{streamID: streamID, n: uint32(send)}, -		stream: st, -	}) -} - -// requestBody is the Handler's Request.Body type. -// Read and Close may be called concurrently. -type requestBody struct { -	_             incomparable -	stream        *stream -	conn          *serverConn -	closeOnce     sync.Once // for use by Close only -	sawEOF        bool      // for use by Read only -	pipe          *pipe     // non-nil if we have an HTTP entity message body -	needsContinue bool      // need to send a 100-continue -} - -func (b *requestBody) Close() error { -	b.closeOnce.Do(func() { -		if b.pipe != nil { -			b.pipe.BreakWithError(errClosedBody) -		} -	}) -	return nil -} - -func (b *requestBody) Read(p []byte) (n int, err error) { -	if b.needsContinue { -		b.needsContinue = false -		b.conn.write100ContinueHeaders(b.stream) -	} -	if b.pipe == nil || b.sawEOF { -		return 0, io.EOF -	} -	n, err = b.pipe.Read(p) -	if err == io.EOF { -		b.sawEOF = true -	} -	if b.conn == nil && inTests { -		return -	} -	b.conn.noteBodyReadFromHandler(b.stream, n, err) -	return -} - -// responseWriter is the http.ResponseWriter implementation. It's -// intentionally small (1 pointer wide) to minimize garbage. The -// responseWriterState pointer inside is zeroed at the end of a -// request (in handlerDone) and calls on the responseWriter thereafter -// simply crash (caller's mistake), but the much larger responseWriterState -// and buffers are reused between multiple requests. -type responseWriter struct { -	rws *responseWriterState -} - -// Optional http.ResponseWriter interfaces implemented. -var ( -	_ http.CloseNotifier = (*responseWriter)(nil) -	_ http.Flusher       = (*responseWriter)(nil) -	_ stringWriter       = (*responseWriter)(nil) -) - -type responseWriterState struct { -	// immutable within a request: -	stream *stream -	req    *http.Request -	conn   *serverConn - -	// TODO: adjust buffer writing sizes based on server config, frame size updates from peer, etc -	bw *bufio.Writer // writing to a chunkWriter{this *responseWriterState} - -	// mutated by http.Handler goroutine: -	handlerHeader http.Header // nil until called -	snapHeader    http.Header // snapshot of handlerHeader at WriteHeader time -	trailers      []string    // set in writeChunk -	status        int         // status code passed to WriteHeader -	wroteHeader   bool        // WriteHeader called (explicitly or implicitly). Not necessarily sent to user yet. -	sentHeader    bool        // have we sent the header frame? -	handlerDone   bool        // handler has finished - -	sentContentLen int64 // non-zero if handler set a Content-Length header -	wroteBytes     int64 - -	closeNotifierMu sync.Mutex // guards closeNotifierCh -	closeNotifierCh chan bool  // nil until first used -} - -type chunkWriter struct{ rws *responseWriterState } - -func (cw chunkWriter) Write(p []byte) (n int, err error) { -	n, err = cw.rws.writeChunk(p) -	if err == errStreamClosed { -		// If writing failed because the stream has been closed, -		// return the reason it was closed. -		err = cw.rws.stream.closeErr -	} -	return n, err -} - -func (rws *responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 } - -func (rws *responseWriterState) hasNonemptyTrailers() bool { -	for _, trailer := range rws.trailers { -		if _, ok := rws.handlerHeader[trailer]; ok { -			return true -		} -	} -	return false -} - -// declareTrailer is called for each Trailer header when the -// response header is written. It notes that a header will need to be -// written in the trailers at the end of the response. -func (rws *responseWriterState) declareTrailer(k string) { -	k = http.CanonicalHeaderKey(k) -	if !httpguts.ValidTrailerHeader(k) { -		// Forbidden by RFC 7230, section 4.1.2. -		rws.conn.logf("ignoring invalid trailer %q", k) -		return -	} -	if !strSliceContains(rws.trailers, k) { -		rws.trailers = append(rws.trailers, k) -	} -} - -// writeChunk writes chunks from the bufio.Writer. But because -// bufio.Writer may bypass its chunking, sometimes p may be -// arbitrarily large. -// -// writeChunk is also responsible (on the first chunk) for sending the -// HEADER response. -func (rws *responseWriterState) writeChunk(p []byte) (n int, err error) { -	if !rws.wroteHeader { -		rws.writeHeader(200) -	} - -	if rws.handlerDone { -		rws.promoteUndeclaredTrailers() -	} - -	isHeadResp := rws.req.Method == "HEAD" -	if !rws.sentHeader { -		rws.sentHeader = true -		var ctype, clen string -		if clen = rws.snapHeader.Get("Content-Length"); clen != "" { -			rws.snapHeader.Del("Content-Length") -			if cl, err := strconv.ParseUint(clen, 10, 63); err == nil { -				rws.sentContentLen = int64(cl) -			} else { -				clen = "" -			} -		} -		_, hasContentLength := rws.snapHeader["Content-Length"] -		if !hasContentLength && clen == "" && rws.handlerDone && bodyAllowedForStatus(rws.status) && (len(p) > 0 || !isHeadResp) { -			clen = strconv.Itoa(len(p)) -		} -		_, hasContentType := rws.snapHeader["Content-Type"] -		// If the Content-Encoding is non-blank, we shouldn't -		// sniff the body. See Issue golang.org/issue/31753. -		ce := rws.snapHeader.Get("Content-Encoding") -		hasCE := len(ce) > 0 -		if !hasCE && !hasContentType && bodyAllowedForStatus(rws.status) && len(p) > 0 { -			ctype = http.DetectContentType(p) -		} -		var date string -		if _, ok := rws.snapHeader["Date"]; !ok { -			// TODO(bradfitz): be faster here, like net/http? measure. -			date = rws.conn.srv.now().UTC().Format(http.TimeFormat) -		} - -		for _, v := range rws.snapHeader["Trailer"] { -			foreachHeaderElement(v, rws.declareTrailer) -		} - -		// "Connection" headers aren't allowed in HTTP/2 (RFC 7540, 8.1.2.2), -		// but respect "Connection" == "close" to mean sending a GOAWAY and tearing -		// down the TCP connection when idle, like we do for HTTP/1. -		// TODO: remove more Connection-specific header fields here, in addition -		// to "Connection". -		if _, ok := rws.snapHeader["Connection"]; ok { -			v := rws.snapHeader.Get("Connection") -			delete(rws.snapHeader, "Connection") -			if v == "close" { -				rws.conn.startGracefulShutdown() -			} -		} - -		endStream := (rws.handlerDone && !rws.hasTrailers() && len(p) == 0) || isHeadResp -		err = rws.conn.writeHeaders(rws.stream, &writeResHeaders{ -			streamID:      rws.stream.id, -			httpResCode:   rws.status, -			h:             rws.snapHeader, -			endStream:     endStream, -			contentType:   ctype, -			contentLength: clen, -			date:          date, -		}) -		if err != nil { -			return 0, err -		} -		if endStream { -			return 0, nil -		} -	} -	if isHeadResp { -		return len(p), nil -	} -	if len(p) == 0 && !rws.handlerDone { -		return 0, nil -	} - -	// only send trailers if they have actually been defined by the -	// server handler. -	hasNonemptyTrailers := rws.hasNonemptyTrailers() -	endStream := rws.handlerDone && !hasNonemptyTrailers -	if len(p) > 0 || endStream { -		// only send a 0 byte DATA frame if we're ending the stream. -		if err := rws.conn.writeDataFromHandler(rws.stream, p, endStream); err != nil { -			return 0, err -		} -	} - -	if rws.handlerDone && hasNonemptyTrailers { -		err = rws.conn.writeHeaders(rws.stream, &writeResHeaders{ -			streamID:  rws.stream.id, -			h:         rws.handlerHeader, -			trailers:  rws.trailers, -			endStream: true, -		}) -		return len(p), err -	} -	return len(p), nil -} - -// TrailerPrefix is a magic prefix for ResponseWriter.Header map keys -// that, if present, signals that the map entry is actually for -// the response trailers, and not the response headers. The prefix -// is stripped after the ServeHTTP call finishes and the values are -// sent in the trailers. -// -// This mechanism is intended only for trailers that are not known -// prior to the headers being written. If the set of trailers is fixed -// or known before the header is written, the normal Go trailers mechanism -// is preferred: -// -//	https://golang.org/pkg/net/http/#ResponseWriter -//	https://golang.org/pkg/net/http/#example_ResponseWriter_trailers -const TrailerPrefix = "Trailer:" - -// promoteUndeclaredTrailers permits http.Handlers to set trailers -// after the header has already been flushed. Because the Go -// ResponseWriter interface has no way to set Trailers (only the -// Header), and because we didn't want to expand the ResponseWriter -// interface, and because nobody used trailers, and because RFC 7230 -// says you SHOULD (but not must) predeclare any trailers in the -// header, the official ResponseWriter rules said trailers in Go must -// be predeclared, and then we reuse the same ResponseWriter.Header() -// map to mean both Headers and Trailers. When it's time to write the -// Trailers, we pick out the fields of Headers that were declared as -// trailers. That worked for a while, until we found the first major -// user of Trailers in the wild: gRPC (using them only over http2), -// and gRPC libraries permit setting trailers mid-stream without -// predeclaring them. So: change of plans. We still permit the old -// way, but we also permit this hack: if a Header() key begins with -// "Trailer:", the suffix of that key is a Trailer. Because ':' is an -// invalid token byte anyway, there is no ambiguity. (And it's already -// filtered out) It's mildly hacky, but not terrible. -// -// This method runs after the Handler is done and promotes any Header -// fields to be trailers. -func (rws *responseWriterState) promoteUndeclaredTrailers() { -	for k, vv := range rws.handlerHeader { -		if !strings.HasPrefix(k, TrailerPrefix) { -			continue -		} -		trailerKey := strings.TrimPrefix(k, TrailerPrefix) -		rws.declareTrailer(trailerKey) -		rws.handlerHeader[http.CanonicalHeaderKey(trailerKey)] = vv -	} - -	if len(rws.trailers) > 1 { -		sorter := sorterPool.Get().(*sorter) -		sorter.SortStrings(rws.trailers) -		sorterPool.Put(sorter) -	} -} - -func (w *responseWriter) SetReadDeadline(deadline time.Time) error { -	st := w.rws.stream -	if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) { -		// If we're setting a deadline in the past, reset the stream immediately -		// so writes after SetWriteDeadline returns will fail. -		st.onReadTimeout() -		return nil -	} -	w.rws.conn.sendServeMsg(func(sc *serverConn) { -		if st.readDeadline != nil { -			if !st.readDeadline.Stop() { -				// Deadline already exceeded, or stream has been closed. -				return -			} -		} -		if deadline.IsZero() { -			st.readDeadline = nil -		} else if st.readDeadline == nil { -			st.readDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onReadTimeout) -		} else { -			st.readDeadline.Reset(deadline.Sub(sc.srv.now())) -		} -	}) -	return nil -} - -func (w *responseWriter) SetWriteDeadline(deadline time.Time) error { -	st := w.rws.stream -	if !deadline.IsZero() && deadline.Before(w.rws.conn.srv.now()) { -		// If we're setting a deadline in the past, reset the stream immediately -		// so writes after SetWriteDeadline returns will fail. -		st.onWriteTimeout() -		return nil -	} -	w.rws.conn.sendServeMsg(func(sc *serverConn) { -		if st.writeDeadline != nil { -			if !st.writeDeadline.Stop() { -				// Deadline already exceeded, or stream has been closed. -				return -			} -		} -		if deadline.IsZero() { -			st.writeDeadline = nil -		} else if st.writeDeadline == nil { -			st.writeDeadline = sc.srv.afterFunc(deadline.Sub(sc.srv.now()), st.onWriteTimeout) -		} else { -			st.writeDeadline.Reset(deadline.Sub(sc.srv.now())) -		} -	}) -	return nil -} - -func (w *responseWriter) EnableFullDuplex() error { -	// We always support full duplex responses, so this is a no-op. -	return nil -} - -func (w *responseWriter) Flush() { -	w.FlushError() -} - -func (w *responseWriter) FlushError() error { -	rws := w.rws -	if rws == nil { -		panic("Header called after Handler finished") -	} -	var err error -	if rws.bw.Buffered() > 0 { -		err = rws.bw.Flush() -	} else { -		// The bufio.Writer won't call chunkWriter.Write -		// (writeChunk with zero bytes), so we have to do it -		// ourselves to force the HTTP response header and/or -		// final DATA frame (with END_STREAM) to be sent. -		_, err = chunkWriter{rws}.Write(nil) -		if err == nil { -			select { -			case <-rws.stream.cw: -				err = rws.stream.closeErr -			default: -			} -		} -	} -	return err -} - -func (w *responseWriter) CloseNotify() <-chan bool { -	rws := w.rws -	if rws == nil { -		panic("CloseNotify called after Handler finished") -	} -	rws.closeNotifierMu.Lock() -	ch := rws.closeNotifierCh -	if ch == nil { -		ch = make(chan bool, 1) -		rws.closeNotifierCh = ch -		cw := rws.stream.cw -		go func() { -			cw.Wait() // wait for close -			ch <- true -		}() -	} -	rws.closeNotifierMu.Unlock() -	return ch -} - -func (w *responseWriter) Header() http.Header { -	rws := w.rws -	if rws == nil { -		panic("Header called after Handler finished") -	} -	if rws.handlerHeader == nil { -		rws.handlerHeader = make(http.Header) -	} -	return rws.handlerHeader -} - -// checkWriteHeaderCode is a copy of net/http's checkWriteHeaderCode. -func checkWriteHeaderCode(code int) { -	// Issue 22880: require valid WriteHeader status codes. -	// For now we only enforce that it's three digits. -	// In the future we might block things over 599 (600 and above aren't defined -	// at http://httpwg.org/specs/rfc7231.html#status.codes). -	// But for now any three digits. -	// -	// We used to send "HTTP/1.1 000 0" on the wire in responses but there's -	// no equivalent bogus thing we can realistically send in HTTP/2, -	// so we'll consistently panic instead and help people find their bugs -	// early. (We can't return an error from WriteHeader even if we wanted to.) -	if code < 100 || code > 999 { -		panic(fmt.Sprintf("invalid WriteHeader code %v", code)) -	} -} - -func (w *responseWriter) WriteHeader(code int) { -	rws := w.rws -	if rws == nil { -		panic("WriteHeader called after Handler finished") -	} -	rws.writeHeader(code) -} - -func (rws *responseWriterState) writeHeader(code int) { -	if rws.wroteHeader { -		return -	} - -	checkWriteHeaderCode(code) - -	// Handle informational headers -	if code >= 100 && code <= 199 { -		// Per RFC 8297 we must not clear the current header map -		h := rws.handlerHeader - -		_, cl := h["Content-Length"] -		_, te := h["Transfer-Encoding"] -		if cl || te { -			h = h.Clone() -			h.Del("Content-Length") -			h.Del("Transfer-Encoding") -		} - -		rws.conn.writeHeaders(rws.stream, &writeResHeaders{ -			streamID:    rws.stream.id, -			httpResCode: code, -			h:           h, -			endStream:   rws.handlerDone && !rws.hasTrailers(), -		}) - -		return -	} - -	rws.wroteHeader = true -	rws.status = code -	if len(rws.handlerHeader) > 0 { -		rws.snapHeader = cloneHeader(rws.handlerHeader) -	} -} - -func cloneHeader(h http.Header) http.Header { -	h2 := make(http.Header, len(h)) -	for k, vv := range h { -		vv2 := make([]string, len(vv)) -		copy(vv2, vv) -		h2[k] = vv2 -	} -	return h2 -} - -// The Life Of A Write is like this: -// -// * Handler calls w.Write or w.WriteString -> -// * -> rws.bw (*bufio.Writer) -> -// * (Handler might call Flush) -// * -> chunkWriter{rws} -// * -> responseWriterState.writeChunk(p []byte) -// * -> responseWriterState.writeChunk (most of the magic; see comment there) -func (w *responseWriter) Write(p []byte) (n int, err error) { -	return w.write(len(p), p, "") -} - -func (w *responseWriter) WriteString(s string) (n int, err error) { -	return w.write(len(s), nil, s) -} - -// either dataB or dataS is non-zero. -func (w *responseWriter) write(lenData int, dataB []byte, dataS string) (n int, err error) { -	rws := w.rws -	if rws == nil { -		panic("Write called after Handler finished") -	} -	if !rws.wroteHeader { -		w.WriteHeader(200) -	} -	if !bodyAllowedForStatus(rws.status) { -		return 0, http.ErrBodyNotAllowed -	} -	rws.wroteBytes += int64(len(dataB)) + int64(len(dataS)) // only one can be set -	if rws.sentContentLen != 0 && rws.wroteBytes > rws.sentContentLen { -		// TODO: send a RST_STREAM -		return 0, errors.New("http2: handler wrote more than declared Content-Length") -	} - -	if dataB != nil { -		return rws.bw.Write(dataB) -	} else { -		return rws.bw.WriteString(dataS) -	} -} - -func (w *responseWriter) handlerDone() { -	rws := w.rws -	rws.handlerDone = true -	w.Flush() -	w.rws = nil -	responseWriterStatePool.Put(rws) -} - -// Push errors. -var ( -	ErrRecursivePush    = errors.New("http2: recursive push not allowed") -	ErrPushLimitReached = errors.New("http2: push would exceed peer's SETTINGS_MAX_CONCURRENT_STREAMS") -) - -var _ http.Pusher = (*responseWriter)(nil) - -func (w *responseWriter) Push(target string, opts *http.PushOptions) error { -	st := w.rws.stream -	sc := st.sc -	sc.serveG.checkNotOn() - -	// No recursive pushes: "PUSH_PROMISE frames MUST only be sent on a peer-initiated stream." -	// http://tools.ietf.org/html/rfc7540#section-6.6 -	if st.isPushed() { -		return ErrRecursivePush -	} - -	if opts == nil { -		opts = new(http.PushOptions) -	} - -	// Default options. -	if opts.Method == "" { -		opts.Method = "GET" -	} -	if opts.Header == nil { -		opts.Header = http.Header{} -	} -	wantScheme := "http" -	if w.rws.req.TLS != nil { -		wantScheme = "https" -	} - -	// Validate the request. -	u, err := url.Parse(target) -	if err != nil { -		return err -	} -	if u.Scheme == "" { -		if !strings.HasPrefix(target, "/") { -			return fmt.Errorf("target must be an absolute URL or an absolute path: %q", target) -		} -		u.Scheme = wantScheme -		u.Host = w.rws.req.Host -	} else { -		if u.Scheme != wantScheme { -			return fmt.Errorf("cannot push URL with scheme %q from request with scheme %q", u.Scheme, wantScheme) -		} -		if u.Host == "" { -			return errors.New("URL must have a host") -		} -	} -	for k := range opts.Header { -		if strings.HasPrefix(k, ":") { -			return fmt.Errorf("promised request headers cannot include pseudo header %q", k) -		} -		// These headers are meaningful only if the request has a body, -		// but PUSH_PROMISE requests cannot have a body. -		// http://tools.ietf.org/html/rfc7540#section-8.2 -		// Also disallow Host, since the promised URL must be absolute. -		if asciiEqualFold(k, "content-length") || -			asciiEqualFold(k, "content-encoding") || -			asciiEqualFold(k, "trailer") || -			asciiEqualFold(k, "te") || -			asciiEqualFold(k, "expect") || -			asciiEqualFold(k, "host") { -			return fmt.Errorf("promised request headers cannot include %q", k) -		} -	} -	if err := checkValidHTTP2RequestHeaders(opts.Header); err != nil { -		return err -	} - -	// The RFC effectively limits promised requests to GET and HEAD: -	// "Promised requests MUST be cacheable [GET, HEAD, or POST], and MUST be safe [GET or HEAD]" -	// http://tools.ietf.org/html/rfc7540#section-8.2 -	if opts.Method != "GET" && opts.Method != "HEAD" { -		return fmt.Errorf("method %q must be GET or HEAD", opts.Method) -	} - -	msg := &startPushRequest{ -		parent: st, -		method: opts.Method, -		url:    u, -		header: cloneHeader(opts.Header), -		done:   errChanPool.Get().(chan error), -	} - -	select { -	case <-sc.doneServing: -		return errClientDisconnected -	case <-st.cw: -		return errStreamClosed -	case sc.serveMsgCh <- msg: -	} - -	select { -	case <-sc.doneServing: -		return errClientDisconnected -	case <-st.cw: -		return errStreamClosed -	case err := <-msg.done: -		errChanPool.Put(msg.done) -		return err -	} -} - -type startPushRequest struct { -	parent *stream -	method string -	url    *url.URL -	header http.Header -	done   chan error -} - -func (sc *serverConn) startPush(msg *startPushRequest) { -	sc.serveG.check() - -	// http://tools.ietf.org/html/rfc7540#section-6.6. -	// PUSH_PROMISE frames MUST only be sent on a peer-initiated stream that -	// is in either the "open" or "half-closed (remote)" state. -	if msg.parent.state != stateOpen && msg.parent.state != stateHalfClosedRemote { -		// responseWriter.Push checks that the stream is peer-initiated. -		msg.done <- errStreamClosed -		return -	} - -	// http://tools.ietf.org/html/rfc7540#section-6.6. -	if !sc.pushEnabled { -		msg.done <- http.ErrNotSupported -		return -	} - -	// PUSH_PROMISE frames must be sent in increasing order by stream ID, so -	// we allocate an ID for the promised stream lazily, when the PUSH_PROMISE -	// is written. Once the ID is allocated, we start the request handler. -	allocatePromisedID := func() (uint32, error) { -		sc.serveG.check() - -		// Check this again, just in case. Technically, we might have received -		// an updated SETTINGS by the time we got around to writing this frame. -		if !sc.pushEnabled { -			return 0, http.ErrNotSupported -		} -		// http://tools.ietf.org/html/rfc7540#section-6.5.2. -		if sc.curPushedStreams+1 > sc.clientMaxStreams { -			return 0, ErrPushLimitReached -		} - -		// http://tools.ietf.org/html/rfc7540#section-5.1.1. -		// Streams initiated by the server MUST use even-numbered identifiers. -		// A server that is unable to establish a new stream identifier can send a GOAWAY -		// frame so that the client is forced to open a new connection for new streams. -		if sc.maxPushPromiseID+2 >= 1<<31 { -			sc.startGracefulShutdownInternal() -			return 0, ErrPushLimitReached -		} -		sc.maxPushPromiseID += 2 -		promisedID := sc.maxPushPromiseID - -		// http://tools.ietf.org/html/rfc7540#section-8.2. -		// Strictly speaking, the new stream should start in "reserved (local)", then -		// transition to "half closed (remote)" after sending the initial HEADERS, but -		// we start in "half closed (remote)" for simplicity. -		// See further comments at the definition of stateHalfClosedRemote. -		promised := sc.newStream(promisedID, msg.parent.id, stateHalfClosedRemote) -		rw, req, err := sc.newWriterAndRequestNoBody(promised, requestParam{ -			method:    msg.method, -			scheme:    msg.url.Scheme, -			authority: msg.url.Host, -			path:      msg.url.RequestURI(), -			header:    cloneHeader(msg.header), // clone since handler runs concurrently with writing the PUSH_PROMISE -		}) -		if err != nil { -			// Should not happen, since we've already validated msg.url. -			panic(fmt.Sprintf("newWriterAndRequestNoBody(%+v): %v", msg.url, err)) -		} - -		sc.curHandlers++ -		go sc.runHandler(rw, req, sc.handler.ServeHTTP) -		return promisedID, nil -	} - -	sc.writeFrame(FrameWriteRequest{ -		write: &writePushPromise{ -			streamID:           msg.parent.id, -			method:             msg.method, -			url:                msg.url, -			h:                  msg.header, -			allocatePromisedID: allocatePromisedID, -		}, -		stream: msg.parent, -		done:   msg.done, -	}) -} - -// foreachHeaderElement splits v according to the "#rule" construction -// in RFC 7230 section 7 and calls fn for each non-empty element. -func foreachHeaderElement(v string, fn func(string)) { -	v = textproto.TrimString(v) -	if v == "" { -		return -	} -	if !strings.Contains(v, ",") { -		fn(v) -		return -	} -	for _, f := range strings.Split(v, ",") { -		if f = textproto.TrimString(f); f != "" { -			fn(f) -		} -	} -} - -// From http://httpwg.org/specs/rfc7540.html#rfc.section.8.1.2.2 -var connHeaders = []string{ -	"Connection", -	"Keep-Alive", -	"Proxy-Connection", -	"Transfer-Encoding", -	"Upgrade", -} - -// checkValidHTTP2RequestHeaders checks whether h is a valid HTTP/2 request, -// per RFC 7540 Section 8.1.2.2. -// The returned error is reported to users. -func checkValidHTTP2RequestHeaders(h http.Header) error { -	for _, k := range connHeaders { -		if _, ok := h[k]; ok { -			return fmt.Errorf("request header %q is not valid in HTTP/2", k) -		} -	} -	te := h["Te"] -	if len(te) > 0 && (len(te) > 1 || (te[0] != "trailers" && te[0] != "")) { -		return errors.New(`request header "TE" may only be "trailers" in HTTP/2`) -	} -	return nil -} - -func new400Handler(err error) http.HandlerFunc { -	return func(w http.ResponseWriter, r *http.Request) { -		http.Error(w, err.Error(), http.StatusBadRequest) -	} -} - -// h1ServerKeepAlivesDisabled reports whether hs has its keep-alives -// disabled. See comments on h1ServerShutdownChan above for why -// the code is written this way. -func h1ServerKeepAlivesDisabled(hs *http.Server) bool { -	var x interface{} = hs -	type I interface { -		doKeepAlives() bool -	} -	if hs, ok := x.(I); ok { -		return !hs.doKeepAlives() -	} -	return false -} - -func (sc *serverConn) countError(name string, err error) error { -	if sc == nil || sc.srv == nil { -		return err -	} -	f := sc.countErrorFunc -	if f == nil { -		return err -	} -	var typ string -	var code ErrCode -	switch e := err.(type) { -	case ConnectionError: -		typ = "conn" -		code = ErrCode(e) -	case StreamError: -		typ = "stream" -		code = ErrCode(e.Code) -	default: -		return err -	} -	codeStr := errCodeName[code] -	if codeStr == "" { -		codeStr = strconv.Itoa(int(code)) -	} -	f(fmt.Sprintf("%s_%s_%s", typ, codeStr, name)) -	return err -} diff --git a/vendor/golang.org/x/net/http2/timer.go b/vendor/golang.org/x/net/http2/timer.go deleted file mode 100644 index 0b1c17b81..000000000 --- a/vendor/golang.org/x/net/http2/timer.go +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2024 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. -package http2 - -import "time" - -// A timer is a time.Timer, as an interface which can be replaced in tests. -type timer = interface { -	C() <-chan time.Time -	Reset(d time.Duration) bool -	Stop() bool -} - -// timeTimer adapts a time.Timer to the timer interface. -type timeTimer struct { -	*time.Timer -} - -func (t timeTimer) C() <-chan time.Time { return t.Timer.C } diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go deleted file mode 100644 index f2c166b61..000000000 --- a/vendor/golang.org/x/net/http2/transport.go +++ /dev/null @@ -1,3259 +0,0 @@ -// 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. - -// Transport code. - -package http2 - -import ( -	"bufio" -	"bytes" -	"compress/gzip" -	"context" -	"crypto/rand" -	"crypto/tls" -	"errors" -	"fmt" -	"io" -	"io/fs" -	"log" -	"math" -	"math/bits" -	mathrand "math/rand" -	"net" -	"net/http" -	"net/http/httptrace" -	"net/textproto" -	"strconv" -	"strings" -	"sync" -	"sync/atomic" -	"time" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2/hpack" -	"golang.org/x/net/idna" -	"golang.org/x/net/internal/httpcommon" -) - -const ( -	// transportDefaultConnFlow is how many connection-level flow control -	// tokens we give the server at start-up, past the default 64k. -	transportDefaultConnFlow = 1 << 30 - -	// transportDefaultStreamFlow is how many stream-level flow -	// control tokens we announce to the peer, and how many bytes -	// we buffer per stream. -	transportDefaultStreamFlow = 4 << 20 - -	defaultUserAgent = "Go-http-client/2.0" - -	// initialMaxConcurrentStreams is a connections maxConcurrentStreams until -	// it's received servers initial SETTINGS frame, which corresponds with the -	// spec's minimum recommended value. -	initialMaxConcurrentStreams = 100 - -	// defaultMaxConcurrentStreams is a connections default maxConcurrentStreams -	// if the server doesn't include one in its initial SETTINGS frame. -	defaultMaxConcurrentStreams = 1000 -) - -// Transport is an HTTP/2 Transport. -// -// A Transport internally caches connections to servers. It is safe -// for concurrent use by multiple goroutines. -type Transport struct { -	// DialTLSContext specifies an optional dial function with context for -	// creating TLS connections for requests. -	// -	// If DialTLSContext and DialTLS is nil, tls.Dial is used. -	// -	// If the returned net.Conn has a ConnectionState method like tls.Conn, -	// it will be used to set http.Response.TLS. -	DialTLSContext func(ctx context.Context, network, addr string, cfg *tls.Config) (net.Conn, error) - -	// DialTLS specifies an optional dial function for creating -	// TLS connections for requests. -	// -	// If DialTLSContext and DialTLS is nil, tls.Dial is used. -	// -	// Deprecated: Use DialTLSContext instead, which allows the transport -	// to cancel dials as soon as they are no longer needed. -	// If both are set, DialTLSContext takes priority. -	DialTLS func(network, addr string, cfg *tls.Config) (net.Conn, error) - -	// TLSClientConfig specifies the TLS configuration to use with -	// tls.Client. If nil, the default configuration is used. -	TLSClientConfig *tls.Config - -	// ConnPool optionally specifies an alternate connection pool to use. -	// If nil, the default is used. -	ConnPool ClientConnPool - -	// DisableCompression, if true, prevents the Transport from -	// requesting compression with an "Accept-Encoding: gzip" -	// request header when the Request contains no existing -	// Accept-Encoding value. If the Transport requests gzip on -	// its own and gets a gzipped response, it's transparently -	// decoded in the Response.Body. However, if the user -	// explicitly requested gzip it is not automatically -	// uncompressed. -	DisableCompression bool - -	// AllowHTTP, if true, permits HTTP/2 requests using the insecure, -	// plain-text "http" scheme. Note that this does not enable h2c support. -	AllowHTTP bool - -	// MaxHeaderListSize is the http2 SETTINGS_MAX_HEADER_LIST_SIZE to -	// send in the initial settings frame. It is how many bytes -	// of response headers are allowed. Unlike the http2 spec, zero here -	// means to use a default limit (currently 10MB). If you actually -	// want to advertise an unlimited value to the peer, Transport -	// interprets the highest possible value here (0xffffffff or 1<<32-1) -	// to mean no limit. -	MaxHeaderListSize uint32 - -	// MaxReadFrameSize is the http2 SETTINGS_MAX_FRAME_SIZE to send in the -	// initial settings frame. It is the size in bytes of the largest frame -	// payload that the sender is willing to receive. If 0, no setting is -	// sent, and the value is provided by the peer, which should be 16384 -	// according to the spec: -	// https://datatracker.ietf.org/doc/html/rfc7540#section-6.5.2. -	// Values are bounded in the range 16k to 16M. -	MaxReadFrameSize uint32 - -	// MaxDecoderHeaderTableSize optionally specifies the http2 -	// SETTINGS_HEADER_TABLE_SIZE to send in the initial settings frame. It -	// informs the remote endpoint of the maximum size of the header compression -	// table used to decode header blocks, in octets. If zero, the default value -	// of 4096 is used. -	MaxDecoderHeaderTableSize uint32 - -	// MaxEncoderHeaderTableSize optionally specifies an upper limit for the -	// header compression table used for encoding request headers. Received -	// SETTINGS_HEADER_TABLE_SIZE settings are capped at this limit. If zero, -	// the default value of 4096 is used. -	MaxEncoderHeaderTableSize uint32 - -	// StrictMaxConcurrentStreams controls whether the server's -	// SETTINGS_MAX_CONCURRENT_STREAMS should be respected -	// globally. If false, new TCP connections are created to the -	// server as needed to keep each under the per-connection -	// SETTINGS_MAX_CONCURRENT_STREAMS limit. If true, the -	// server's SETTINGS_MAX_CONCURRENT_STREAMS is interpreted as -	// a global limit and callers of RoundTrip block when needed, -	// waiting for their turn. -	StrictMaxConcurrentStreams bool - -	// IdleConnTimeout is the maximum amount of time an idle -	// (keep-alive) connection will remain idle before closing -	// itself. -	// Zero means no limit. -	IdleConnTimeout time.Duration - -	// ReadIdleTimeout is the timeout after which a health check using ping -	// frame will be carried out if no frame is received on the connection. -	// Note that a ping response will is considered a received frame, so if -	// there is no other traffic on the connection, the health check will -	// be performed every ReadIdleTimeout interval. -	// If zero, no health check is performed. -	ReadIdleTimeout time.Duration - -	// PingTimeout is the timeout after which the connection will be closed -	// if a response to Ping is not received. -	// Defaults to 15s. -	PingTimeout time.Duration - -	// WriteByteTimeout is the timeout after which the connection will be -	// closed no data can be written to it. The timeout begins when data is -	// available to write, and is extended whenever any bytes are written. -	WriteByteTimeout time.Duration - -	// CountError, if non-nil, is called on HTTP/2 transport errors. -	// It's intended to increment a metric for monitoring, such -	// as an expvar or Prometheus metric. -	// The errType consists of only ASCII word characters. -	CountError func(errType string) - -	// t1, if non-nil, is the standard library Transport using -	// this transport. Its settings are used (but not its -	// RoundTrip method, etc). -	t1 *http.Transport - -	connPoolOnce  sync.Once -	connPoolOrDef ClientConnPool // non-nil version of ConnPool - -	*transportTestHooks -} - -// Hook points used for testing. -// Outside of tests, t.transportTestHooks is nil and these all have minimal implementations. -// Inside tests, see the testSyncHooks function docs. - -type transportTestHooks struct { -	newclientconn func(*ClientConn) -	group         synctestGroupInterface -} - -func (t *Transport) markNewGoroutine() { -	if t != nil && t.transportTestHooks != nil { -		t.transportTestHooks.group.Join() -	} -} - -func (t *Transport) now() time.Time { -	if t != nil && t.transportTestHooks != nil { -		return t.transportTestHooks.group.Now() -	} -	return time.Now() -} - -func (t *Transport) timeSince(when time.Time) time.Duration { -	if t != nil && t.transportTestHooks != nil { -		return t.now().Sub(when) -	} -	return time.Since(when) -} - -// newTimer creates a new time.Timer, or a synthetic timer in tests. -func (t *Transport) newTimer(d time.Duration) timer { -	if t.transportTestHooks != nil { -		return t.transportTestHooks.group.NewTimer(d) -	} -	return timeTimer{time.NewTimer(d)} -} - -// afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests. -func (t *Transport) afterFunc(d time.Duration, f func()) timer { -	if t.transportTestHooks != nil { -		return t.transportTestHooks.group.AfterFunc(d, f) -	} -	return timeTimer{time.AfterFunc(d, f)} -} - -func (t *Transport) contextWithTimeout(ctx context.Context, d time.Duration) (context.Context, context.CancelFunc) { -	if t.transportTestHooks != nil { -		return t.transportTestHooks.group.ContextWithTimeout(ctx, d) -	} -	return context.WithTimeout(ctx, d) -} - -func (t *Transport) maxHeaderListSize() uint32 { -	n := int64(t.MaxHeaderListSize) -	if t.t1 != nil && t.t1.MaxResponseHeaderBytes != 0 { -		n = t.t1.MaxResponseHeaderBytes -		if n > 0 { -			n = adjustHTTP1MaxHeaderSize(n) -		} -	} -	if n <= 0 { -		return 10 << 20 -	} -	if n >= 0xffffffff { -		return 0 -	} -	return uint32(n) -} - -func (t *Transport) disableCompression() bool { -	return t.DisableCompression || (t.t1 != nil && t.t1.DisableCompression) -} - -// ConfigureTransport configures a net/http HTTP/1 Transport to use HTTP/2. -// It returns an error if t1 has already been HTTP/2-enabled. -// -// Use ConfigureTransports instead to configure the HTTP/2 Transport. -func ConfigureTransport(t1 *http.Transport) error { -	_, err := ConfigureTransports(t1) -	return err -} - -// ConfigureTransports configures a net/http HTTP/1 Transport to use HTTP/2. -// It returns a new HTTP/2 Transport for further configuration. -// It returns an error if t1 has already been HTTP/2-enabled. -func ConfigureTransports(t1 *http.Transport) (*Transport, error) { -	return configureTransports(t1) -} - -func configureTransports(t1 *http.Transport) (*Transport, error) { -	connPool := new(clientConnPool) -	t2 := &Transport{ -		ConnPool: noDialClientConnPool{connPool}, -		t1:       t1, -	} -	connPool.t = t2 -	if err := registerHTTPSProtocol(t1, noDialH2RoundTripper{t2}); err != nil { -		return nil, err -	} -	if t1.TLSClientConfig == nil { -		t1.TLSClientConfig = new(tls.Config) -	} -	if !strSliceContains(t1.TLSClientConfig.NextProtos, "h2") { -		t1.TLSClientConfig.NextProtos = append([]string{"h2"}, t1.TLSClientConfig.NextProtos...) -	} -	if !strSliceContains(t1.TLSClientConfig.NextProtos, "http/1.1") { -		t1.TLSClientConfig.NextProtos = append(t1.TLSClientConfig.NextProtos, "http/1.1") -	} -	upgradeFn := func(scheme, authority string, c net.Conn) http.RoundTripper { -		addr := authorityAddr(scheme, authority) -		if used, err := connPool.addConnIfNeeded(addr, t2, c); err != nil { -			go c.Close() -			return erringRoundTripper{err} -		} else if !used { -			// Turns out we don't need this c. -			// For example, two goroutines made requests to the same host -			// at the same time, both kicking off TCP dials. (since protocol -			// was unknown) -			go c.Close() -		} -		if scheme == "http" { -			return (*unencryptedTransport)(t2) -		} -		return t2 -	} -	if t1.TLSNextProto == nil { -		t1.TLSNextProto = make(map[string]func(string, *tls.Conn) http.RoundTripper) -	} -	t1.TLSNextProto[NextProtoTLS] = func(authority string, c *tls.Conn) http.RoundTripper { -		return upgradeFn("https", authority, c) -	} -	// The "unencrypted_http2" TLSNextProto key is used to pass off non-TLS HTTP/2 conns. -	t1.TLSNextProto[nextProtoUnencryptedHTTP2] = func(authority string, c *tls.Conn) http.RoundTripper { -		nc, err := unencryptedNetConnFromTLSConn(c) -		if err != nil { -			go c.Close() -			return erringRoundTripper{err} -		} -		return upgradeFn("http", authority, nc) -	} -	return t2, nil -} - -// unencryptedTransport is a Transport with a RoundTrip method that -// always permits http:// URLs. -type unencryptedTransport Transport - -func (t *unencryptedTransport) RoundTrip(req *http.Request) (*http.Response, error) { -	return (*Transport)(t).RoundTripOpt(req, RoundTripOpt{allowHTTP: true}) -} - -func (t *Transport) connPool() ClientConnPool { -	t.connPoolOnce.Do(t.initConnPool) -	return t.connPoolOrDef -} - -func (t *Transport) initConnPool() { -	if t.ConnPool != nil { -		t.connPoolOrDef = t.ConnPool -	} else { -		t.connPoolOrDef = &clientConnPool{t: t} -	} -} - -// ClientConn is the state of a single HTTP/2 client connection to an -// HTTP/2 server. -type ClientConn struct { -	t             *Transport -	tconn         net.Conn             // usually *tls.Conn, except specialized impls -	tlsState      *tls.ConnectionState // nil only for specialized impls -	atomicReused  uint32               // whether conn is being reused; atomic -	singleUse     bool                 // whether being used for a single http.Request -	getConnCalled bool                 // used by clientConnPool - -	// readLoop goroutine fields: -	readerDone chan struct{} // closed on error -	readerErr  error         // set before readerDone is closed - -	idleTimeout time.Duration // or 0 for never -	idleTimer   timer - -	mu               sync.Mutex // guards following -	cond             *sync.Cond // hold mu; broadcast on flow/closed changes -	flow             outflow    // our conn-level flow control quota (cs.outflow is per stream) -	inflow           inflow     // peer's conn-level flow control -	doNotReuse       bool       // whether conn is marked to not be reused for any future requests -	closing          bool -	closed           bool -	closedOnIdle     bool                     // true if conn was closed for idleness -	seenSettings     bool                     // true if we've seen a settings frame, false otherwise -	seenSettingsChan chan struct{}            // closed when seenSettings is true or frame reading fails -	wantSettingsAck  bool                     // we sent a SETTINGS frame and haven't heard back -	goAway           *GoAwayFrame             // if non-nil, the GoAwayFrame we received -	goAwayDebug      string                   // goAway frame's debug data, retained as a string -	streams          map[uint32]*clientStream // client-initiated -	streamsReserved  int                      // incr by ReserveNewRequest; decr on RoundTrip -	nextStreamID     uint32 -	pendingRequests  int                       // requests blocked and waiting to be sent because len(streams) == maxConcurrentStreams -	pings            map[[8]byte]chan struct{} // in flight ping data to notification channel -	br               *bufio.Reader -	lastActive       time.Time -	lastIdle         time.Time // time last idle -	// Settings from peer: (also guarded by wmu) -	maxFrameSize                uint32 -	maxConcurrentStreams        uint32 -	peerMaxHeaderListSize       uint64 -	peerMaxHeaderTableSize      uint32 -	initialWindowSize           uint32 -	initialStreamRecvWindowSize int32 -	readIdleTimeout             time.Duration -	pingTimeout                 time.Duration -	extendedConnectAllowed      bool - -	// rstStreamPingsBlocked works around an unfortunate gRPC behavior. -	// gRPC strictly limits the number of PING frames that it will receive. -	// The default is two pings per two hours, but the limit resets every time -	// the gRPC endpoint sends a HEADERS or DATA frame. See golang/go#70575. -	// -	// rstStreamPingsBlocked is set after receiving a response to a PING frame -	// bundled with an RST_STREAM (see pendingResets below), and cleared after -	// receiving a HEADERS or DATA frame. -	rstStreamPingsBlocked bool - -	// pendingResets is the number of RST_STREAM frames we have sent to the peer, -	// without confirming that the peer has received them. When we send a RST_STREAM, -	// we bundle it with a PING frame, unless a PING is already in flight. We count -	// the reset stream against the connection's concurrency limit until we get -	// a PING response. This limits the number of requests we'll try to send to a -	// completely unresponsive connection. -	pendingResets int - -	// reqHeaderMu is a 1-element semaphore channel controlling access to sending new requests. -	// Write to reqHeaderMu to lock it, read from it to unlock. -	// Lock reqmu BEFORE mu or wmu. -	reqHeaderMu chan struct{} - -	// wmu is held while writing. -	// Acquire BEFORE mu when holding both, to avoid blocking mu on network writes. -	// Only acquire both at the same time when changing peer settings. -	wmu  sync.Mutex -	bw   *bufio.Writer -	fr   *Framer -	werr error        // first write error that has occurred -	hbuf bytes.Buffer // HPACK encoder writes into this -	henc *hpack.Encoder -} - -// clientStream is the state for a single HTTP/2 stream. One of these -// is created for each Transport.RoundTrip call. -type clientStream struct { -	cc *ClientConn - -	// Fields of Request that we may access even after the response body is closed. -	ctx       context.Context -	reqCancel <-chan struct{} - -	trace         *httptrace.ClientTrace // or nil -	ID            uint32 -	bufPipe       pipe // buffered pipe with the flow-controlled response payload -	requestedGzip bool -	isHead        bool - -	abortOnce sync.Once -	abort     chan struct{} // closed to signal stream should end immediately -	abortErr  error         // set if abort is closed - -	peerClosed chan struct{} // closed when the peer sends an END_STREAM flag -	donec      chan struct{} // closed after the stream is in the closed state -	on100      chan struct{} // buffered; written to if a 100 is received - -	respHeaderRecv chan struct{}  // closed when headers are received -	res            *http.Response // set if respHeaderRecv is closed - -	flow        outflow // guarded by cc.mu -	inflow      inflow  // guarded by cc.mu -	bytesRemain int64   // -1 means unknown; owned by transportResponseBody.Read -	readErr     error   // sticky read error; owned by transportResponseBody.Read - -	reqBody              io.ReadCloser -	reqBodyContentLength int64         // -1 means unknown -	reqBodyClosed        chan struct{} // guarded by cc.mu; non-nil on Close, closed when done - -	// owned by writeRequest: -	sentEndStream bool // sent an END_STREAM flag to the peer -	sentHeaders   bool - -	// owned by clientConnReadLoop: -	firstByte       bool  // got the first response byte -	pastHeaders     bool  // got first MetaHeadersFrame (actual headers) -	pastTrailers    bool  // got optional second MetaHeadersFrame (trailers) -	readClosed      bool  // peer sent an END_STREAM flag -	readAborted     bool  // read loop reset the stream -	totalHeaderSize int64 // total size of 1xx headers seen - -	trailer    http.Header  // accumulated trailers -	resTrailer *http.Header // client's Response.Trailer -} - -var got1xxFuncForTests func(int, textproto.MIMEHeader) error - -// get1xxTraceFunc returns the value of request's httptrace.ClientTrace.Got1xxResponse func, -// if any. It returns nil if not set or if the Go version is too old. -func (cs *clientStream) get1xxTraceFunc() func(int, textproto.MIMEHeader) error { -	if fn := got1xxFuncForTests; fn != nil { -		return fn -	} -	return traceGot1xxResponseFunc(cs.trace) -} - -func (cs *clientStream) abortStream(err error) { -	cs.cc.mu.Lock() -	defer cs.cc.mu.Unlock() -	cs.abortStreamLocked(err) -} - -func (cs *clientStream) abortStreamLocked(err error) { -	cs.abortOnce.Do(func() { -		cs.abortErr = err -		close(cs.abort) -	}) -	if cs.reqBody != nil { -		cs.closeReqBodyLocked() -	} -	// TODO(dneil): Clean up tests where cs.cc.cond is nil. -	if cs.cc.cond != nil { -		// Wake up writeRequestBody if it is waiting on flow control. -		cs.cc.cond.Broadcast() -	} -} - -func (cs *clientStream) abortRequestBodyWrite() { -	cc := cs.cc -	cc.mu.Lock() -	defer cc.mu.Unlock() -	if cs.reqBody != nil && cs.reqBodyClosed == nil { -		cs.closeReqBodyLocked() -		cc.cond.Broadcast() -	} -} - -func (cs *clientStream) closeReqBodyLocked() { -	if cs.reqBodyClosed != nil { -		return -	} -	cs.reqBodyClosed = make(chan struct{}) -	reqBodyClosed := cs.reqBodyClosed -	go func() { -		cs.cc.t.markNewGoroutine() -		cs.reqBody.Close() -		close(reqBodyClosed) -	}() -} - -type stickyErrWriter struct { -	group   synctestGroupInterface -	conn    net.Conn -	timeout time.Duration -	err     *error -} - -func (sew stickyErrWriter) Write(p []byte) (n int, err error) { -	if *sew.err != nil { -		return 0, *sew.err -	} -	n, err = writeWithByteTimeout(sew.group, sew.conn, sew.timeout, p) -	*sew.err = err -	return n, err -} - -// noCachedConnError is the concrete type of ErrNoCachedConn, which -// needs to be detected by net/http regardless of whether it's its -// bundled version (in h2_bundle.go with a rewritten type name) or -// from a user's x/net/http2. As such, as it has a unique method name -// (IsHTTP2NoCachedConnError) that net/http sniffs for via func -// isNoCachedConnError. -type noCachedConnError struct{} - -func (noCachedConnError) IsHTTP2NoCachedConnError() {} -func (noCachedConnError) Error() string             { return "http2: no cached connection was available" } - -// isNoCachedConnError reports whether err is of type noCachedConnError -// or its equivalent renamed type in net/http2's h2_bundle.go. Both types -// may coexist in the same running program. -func isNoCachedConnError(err error) bool { -	_, ok := err.(interface{ IsHTTP2NoCachedConnError() }) -	return ok -} - -var ErrNoCachedConn error = noCachedConnError{} - -// RoundTripOpt are options for the Transport.RoundTripOpt method. -type RoundTripOpt struct { -	// OnlyCachedConn controls whether RoundTripOpt may -	// create a new TCP connection. If set true and -	// no cached connection is available, RoundTripOpt -	// will return ErrNoCachedConn. -	OnlyCachedConn bool - -	allowHTTP bool // allow http:// URLs -} - -func (t *Transport) RoundTrip(req *http.Request) (*http.Response, error) { -	return t.RoundTripOpt(req, RoundTripOpt{}) -} - -// authorityAddr returns a given authority (a host/IP, or host:port / ip:port) -// and returns a host:port. The port 443 is added if needed. -func authorityAddr(scheme string, authority string) (addr string) { -	host, port, err := net.SplitHostPort(authority) -	if err != nil { // authority didn't have a port -		host = authority -		port = "" -	} -	if port == "" { // authority's port was empty -		port = "443" -		if scheme == "http" { -			port = "80" -		} -	} -	if a, err := idna.ToASCII(host); err == nil { -		host = a -	} -	// IPv6 address literal, without a port: -	if strings.HasPrefix(host, "[") && strings.HasSuffix(host, "]") { -		return host + ":" + port -	} -	return net.JoinHostPort(host, port) -} - -// RoundTripOpt is like RoundTrip, but takes options. -func (t *Transport) RoundTripOpt(req *http.Request, opt RoundTripOpt) (*http.Response, error) { -	switch req.URL.Scheme { -	case "https": -		// Always okay. -	case "http": -		if !t.AllowHTTP && !opt.allowHTTP { -			return nil, errors.New("http2: unencrypted HTTP/2 not enabled") -		} -	default: -		return nil, errors.New("http2: unsupported scheme") -	} - -	addr := authorityAddr(req.URL.Scheme, req.URL.Host) -	for retry := 0; ; retry++ { -		cc, err := t.connPool().GetClientConn(req, addr) -		if err != nil { -			t.vlogf("http2: Transport failed to get client conn for %s: %v", addr, err) -			return nil, err -		} -		reused := !atomic.CompareAndSwapUint32(&cc.atomicReused, 0, 1) -		traceGotConn(req, cc, reused) -		res, err := cc.RoundTrip(req) -		if err != nil && retry <= 6 { -			roundTripErr := err -			if req, err = shouldRetryRequest(req, err); err == nil { -				// After the first retry, do exponential backoff with 10% jitter. -				if retry == 0 { -					t.vlogf("RoundTrip retrying after failure: %v", roundTripErr) -					continue -				} -				backoff := float64(uint(1) << (uint(retry) - 1)) -				backoff += backoff * (0.1 * mathrand.Float64()) -				d := time.Second * time.Duration(backoff) -				tm := t.newTimer(d) -				select { -				case <-tm.C(): -					t.vlogf("RoundTrip retrying after failure: %v", roundTripErr) -					continue -				case <-req.Context().Done(): -					tm.Stop() -					err = req.Context().Err() -				} -			} -		} -		if err == errClientConnNotEstablished { -			// This ClientConn was created recently, -			// this is the first request to use it, -			// and the connection is closed and not usable. -			// -			// In this state, cc.idleTimer will remove the conn from the pool -			// when it fires. Stop the timer and remove it here so future requests -			// won't try to use this connection. -			// -			// If the timer has already fired and we're racing it, the redundant -			// call to MarkDead is harmless. -			if cc.idleTimer != nil { -				cc.idleTimer.Stop() -			} -			t.connPool().MarkDead(cc) -		} -		if err != nil { -			t.vlogf("RoundTrip failure: %v", err) -			return nil, err -		} -		return res, nil -	} -} - -// CloseIdleConnections closes any connections which were previously -// connected from previous requests but are now sitting idle. -// It does not interrupt any connections currently in use. -func (t *Transport) CloseIdleConnections() { -	if cp, ok := t.connPool().(clientConnPoolIdleCloser); ok { -		cp.closeIdleConnections() -	} -} - -var ( -	errClientConnClosed         = errors.New("http2: client conn is closed") -	errClientConnUnusable       = errors.New("http2: client conn not usable") -	errClientConnNotEstablished = errors.New("http2: client conn could not be established") -	errClientConnGotGoAway      = errors.New("http2: Transport received Server's graceful shutdown GOAWAY") -) - -// shouldRetryRequest is called by RoundTrip when a request fails to get -// response headers. It is always called with a non-nil error. -// It returns either a request to retry (either the same request, or a -// modified clone), or an error if the request can't be replayed. -func shouldRetryRequest(req *http.Request, err error) (*http.Request, error) { -	if !canRetryError(err) { -		return nil, err -	} -	// If the Body is nil (or http.NoBody), it's safe to reuse -	// this request and its Body. -	if req.Body == nil || req.Body == http.NoBody { -		return req, nil -	} - -	// If the request body can be reset back to its original -	// state via the optional req.GetBody, do that. -	if req.GetBody != nil { -		body, err := req.GetBody() -		if err != nil { -			return nil, err -		} -		newReq := *req -		newReq.Body = body -		return &newReq, nil -	} - -	// The Request.Body can't reset back to the beginning, but we -	// don't seem to have started to read from it yet, so reuse -	// the request directly. -	if err == errClientConnUnusable { -		return req, nil -	} - -	return nil, fmt.Errorf("http2: Transport: cannot retry err [%v] after Request.Body was written; define Request.GetBody to avoid this error", err) -} - -func canRetryError(err error) bool { -	if err == errClientConnUnusable || err == errClientConnGotGoAway { -		return true -	} -	if se, ok := err.(StreamError); ok { -		if se.Code == ErrCodeProtocol && se.Cause == errFromPeer { -			// See golang/go#47635, golang/go#42777 -			return true -		} -		return se.Code == ErrCodeRefusedStream -	} -	return false -} - -func (t *Transport) dialClientConn(ctx context.Context, addr string, singleUse bool) (*ClientConn, error) { -	if t.transportTestHooks != nil { -		return t.newClientConn(nil, singleUse) -	} -	host, _, err := net.SplitHostPort(addr) -	if err != nil { -		return nil, err -	} -	tconn, err := t.dialTLS(ctx, "tcp", addr, t.newTLSConfig(host)) -	if err != nil { -		return nil, err -	} -	return t.newClientConn(tconn, singleUse) -} - -func (t *Transport) newTLSConfig(host string) *tls.Config { -	cfg := new(tls.Config) -	if t.TLSClientConfig != nil { -		*cfg = *t.TLSClientConfig.Clone() -	} -	if !strSliceContains(cfg.NextProtos, NextProtoTLS) { -		cfg.NextProtos = append([]string{NextProtoTLS}, cfg.NextProtos...) -	} -	if cfg.ServerName == "" { -		cfg.ServerName = host -	} -	return cfg -} - -func (t *Transport) dialTLS(ctx context.Context, network, addr string, tlsCfg *tls.Config) (net.Conn, error) { -	if t.DialTLSContext != nil { -		return t.DialTLSContext(ctx, network, addr, tlsCfg) -	} else if t.DialTLS != nil { -		return t.DialTLS(network, addr, tlsCfg) -	} - -	tlsCn, err := t.dialTLSWithContext(ctx, network, addr, tlsCfg) -	if err != nil { -		return nil, err -	} -	state := tlsCn.ConnectionState() -	if p := state.NegotiatedProtocol; p != NextProtoTLS { -		return nil, fmt.Errorf("http2: unexpected ALPN protocol %q; want %q", p, NextProtoTLS) -	} -	if !state.NegotiatedProtocolIsMutual { -		return nil, errors.New("http2: could not negotiate protocol mutually") -	} -	return tlsCn, nil -} - -// disableKeepAlives reports whether connections should be closed as -// soon as possible after handling the first request. -func (t *Transport) disableKeepAlives() bool { -	return t.t1 != nil && t.t1.DisableKeepAlives -} - -func (t *Transport) expectContinueTimeout() time.Duration { -	if t.t1 == nil { -		return 0 -	} -	return t.t1.ExpectContinueTimeout -} - -func (t *Transport) NewClientConn(c net.Conn) (*ClientConn, error) { -	return t.newClientConn(c, t.disableKeepAlives()) -} - -func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, error) { -	conf := configFromTransport(t) -	cc := &ClientConn{ -		t:                           t, -		tconn:                       c, -		readerDone:                  make(chan struct{}), -		nextStreamID:                1, -		maxFrameSize:                16 << 10, // spec default -		initialWindowSize:           65535,    // spec default -		initialStreamRecvWindowSize: conf.MaxUploadBufferPerStream, -		maxConcurrentStreams:        initialMaxConcurrentStreams, // "infinite", per spec. Use a smaller value until we have received server settings. -		peerMaxHeaderListSize:       0xffffffffffffffff,          // "infinite", per spec. Use 2^64-1 instead. -		streams:                     make(map[uint32]*clientStream), -		singleUse:                   singleUse, -		seenSettingsChan:            make(chan struct{}), -		wantSettingsAck:             true, -		readIdleTimeout:             conf.SendPingTimeout, -		pingTimeout:                 conf.PingTimeout, -		pings:                       make(map[[8]byte]chan struct{}), -		reqHeaderMu:                 make(chan struct{}, 1), -		lastActive:                  t.now(), -	} -	var group synctestGroupInterface -	if t.transportTestHooks != nil { -		t.markNewGoroutine() -		t.transportTestHooks.newclientconn(cc) -		c = cc.tconn -		group = t.group -	} -	if VerboseLogs { -		t.vlogf("http2: Transport creating client conn %p to %v", cc, c.RemoteAddr()) -	} - -	cc.cond = sync.NewCond(&cc.mu) -	cc.flow.add(int32(initialWindowSize)) - -	// TODO: adjust this writer size to account for frame size + -	// MTU + crypto/tls record padding. -	cc.bw = bufio.NewWriter(stickyErrWriter{ -		group:   group, -		conn:    c, -		timeout: conf.WriteByteTimeout, -		err:     &cc.werr, -	}) -	cc.br = bufio.NewReader(c) -	cc.fr = NewFramer(cc.bw, cc.br) -	cc.fr.SetMaxReadFrameSize(conf.MaxReadFrameSize) -	if t.CountError != nil { -		cc.fr.countError = t.CountError -	} -	maxHeaderTableSize := conf.MaxDecoderHeaderTableSize -	cc.fr.ReadMetaHeaders = hpack.NewDecoder(maxHeaderTableSize, nil) -	cc.fr.MaxHeaderListSize = t.maxHeaderListSize() - -	cc.henc = hpack.NewEncoder(&cc.hbuf) -	cc.henc.SetMaxDynamicTableSizeLimit(conf.MaxEncoderHeaderTableSize) -	cc.peerMaxHeaderTableSize = initialHeaderTableSize - -	if cs, ok := c.(connectionStater); ok { -		state := cs.ConnectionState() -		cc.tlsState = &state -	} - -	initialSettings := []Setting{ -		{ID: SettingEnablePush, Val: 0}, -		{ID: SettingInitialWindowSize, Val: uint32(cc.initialStreamRecvWindowSize)}, -	} -	initialSettings = append(initialSettings, Setting{ID: SettingMaxFrameSize, Val: conf.MaxReadFrameSize}) -	if max := t.maxHeaderListSize(); max != 0 { -		initialSettings = append(initialSettings, Setting{ID: SettingMaxHeaderListSize, Val: max}) -	} -	if maxHeaderTableSize != initialHeaderTableSize { -		initialSettings = append(initialSettings, Setting{ID: SettingHeaderTableSize, Val: maxHeaderTableSize}) -	} - -	cc.bw.Write(clientPreface) -	cc.fr.WriteSettings(initialSettings...) -	cc.fr.WriteWindowUpdate(0, uint32(conf.MaxUploadBufferPerConnection)) -	cc.inflow.init(conf.MaxUploadBufferPerConnection + initialWindowSize) -	cc.bw.Flush() -	if cc.werr != nil { -		cc.Close() -		return nil, cc.werr -	} - -	// Start the idle timer after the connection is fully initialized. -	if d := t.idleConnTimeout(); d != 0 { -		cc.idleTimeout = d -		cc.idleTimer = t.afterFunc(d, cc.onIdleTimeout) -	} - -	go cc.readLoop() -	return cc, nil -} - -func (cc *ClientConn) healthCheck() { -	pingTimeout := cc.pingTimeout -	// We don't need to periodically ping in the health check, because the readLoop of ClientConn will -	// trigger the healthCheck again if there is no frame received. -	ctx, cancel := cc.t.contextWithTimeout(context.Background(), pingTimeout) -	defer cancel() -	cc.vlogf("http2: Transport sending health check") -	err := cc.Ping(ctx) -	if err != nil { -		cc.vlogf("http2: Transport health check failure: %v", err) -		cc.closeForLostPing() -	} else { -		cc.vlogf("http2: Transport health check success") -	} -} - -// SetDoNotReuse marks cc as not reusable for future HTTP requests. -func (cc *ClientConn) SetDoNotReuse() { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	cc.doNotReuse = true -} - -func (cc *ClientConn) setGoAway(f *GoAwayFrame) { -	cc.mu.Lock() -	defer cc.mu.Unlock() - -	old := cc.goAway -	cc.goAway = f - -	// Merge the previous and current GoAway error frames. -	if cc.goAwayDebug == "" { -		cc.goAwayDebug = string(f.DebugData()) -	} -	if old != nil && old.ErrCode != ErrCodeNo { -		cc.goAway.ErrCode = old.ErrCode -	} -	last := f.LastStreamID -	for streamID, cs := range cc.streams { -		if streamID <= last { -			// The server's GOAWAY indicates that it received this stream. -			// It will either finish processing it, or close the connection -			// without doing so. Either way, leave the stream alone for now. -			continue -		} -		if streamID == 1 && cc.goAway.ErrCode != ErrCodeNo { -			// Don't retry the first stream on a connection if we get a non-NO error. -			// If the server is sending an error on a new connection, -			// retrying the request on a new one probably isn't going to work. -			cs.abortStreamLocked(fmt.Errorf("http2: Transport received GOAWAY from server ErrCode:%v", cc.goAway.ErrCode)) -		} else { -			// Aborting the stream with errClentConnGotGoAway indicates that -			// the request should be retried on a new connection. -			cs.abortStreamLocked(errClientConnGotGoAway) -		} -	} -} - -// CanTakeNewRequest reports whether the connection can take a new request, -// meaning it has not been closed or received or sent a GOAWAY. -// -// If the caller is going to immediately make a new request on this -// connection, use ReserveNewRequest instead. -func (cc *ClientConn) CanTakeNewRequest() bool { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	return cc.canTakeNewRequestLocked() -} - -// ReserveNewRequest is like CanTakeNewRequest but also reserves a -// concurrent stream in cc. The reservation is decremented on the -// next call to RoundTrip. -func (cc *ClientConn) ReserveNewRequest() bool { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	if st := cc.idleStateLocked(); !st.canTakeNewRequest { -		return false -	} -	cc.streamsReserved++ -	return true -} - -// ClientConnState describes the state of a ClientConn. -type ClientConnState struct { -	// Closed is whether the connection is closed. -	Closed bool - -	// Closing is whether the connection is in the process of -	// closing. It may be closing due to shutdown, being a -	// single-use connection, being marked as DoNotReuse, or -	// having received a GOAWAY frame. -	Closing bool - -	// StreamsActive is how many streams are active. -	StreamsActive int - -	// StreamsReserved is how many streams have been reserved via -	// ClientConn.ReserveNewRequest. -	StreamsReserved int - -	// StreamsPending is how many requests have been sent in excess -	// of the peer's advertised MaxConcurrentStreams setting and -	// are waiting for other streams to complete. -	StreamsPending int - -	// MaxConcurrentStreams is how many concurrent streams the -	// peer advertised as acceptable. Zero means no SETTINGS -	// frame has been received yet. -	MaxConcurrentStreams uint32 - -	// LastIdle, if non-zero, is when the connection last -	// transitioned to idle state. -	LastIdle time.Time -} - -// State returns a snapshot of cc's state. -func (cc *ClientConn) State() ClientConnState { -	cc.wmu.Lock() -	maxConcurrent := cc.maxConcurrentStreams -	if !cc.seenSettings { -		maxConcurrent = 0 -	} -	cc.wmu.Unlock() - -	cc.mu.Lock() -	defer cc.mu.Unlock() -	return ClientConnState{ -		Closed:               cc.closed, -		Closing:              cc.closing || cc.singleUse || cc.doNotReuse || cc.goAway != nil, -		StreamsActive:        len(cc.streams) + cc.pendingResets, -		StreamsReserved:      cc.streamsReserved, -		StreamsPending:       cc.pendingRequests, -		LastIdle:             cc.lastIdle, -		MaxConcurrentStreams: maxConcurrent, -	} -} - -// clientConnIdleState describes the suitability of a client -// connection to initiate a new RoundTrip request. -type clientConnIdleState struct { -	canTakeNewRequest bool -} - -func (cc *ClientConn) idleState() clientConnIdleState { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	return cc.idleStateLocked() -} - -func (cc *ClientConn) idleStateLocked() (st clientConnIdleState) { -	if cc.singleUse && cc.nextStreamID > 1 { -		return -	} -	var maxConcurrentOkay bool -	if cc.t.StrictMaxConcurrentStreams { -		// We'll tell the caller we can take a new request to -		// prevent the caller from dialing a new TCP -		// connection, but then we'll block later before -		// writing it. -		maxConcurrentOkay = true -	} else { -		// We can take a new request if the total of -		//   - active streams; -		//   - reservation slots for new streams; and -		//   - streams for which we have sent a RST_STREAM and a PING, -		//     but received no subsequent frame -		// is less than the concurrency limit. -		maxConcurrentOkay = cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) -	} - -	st.canTakeNewRequest = cc.goAway == nil && !cc.closed && !cc.closing && maxConcurrentOkay && -		!cc.doNotReuse && -		int64(cc.nextStreamID)+2*int64(cc.pendingRequests) < math.MaxInt32 && -		!cc.tooIdleLocked() - -	// If this connection has never been used for a request and is closed, -	// then let it take a request (which will fail). -	// If the conn was closed for idleness, we're racing the idle timer; -	// don't try to use the conn. (Issue #70515.) -	// -	// This avoids a situation where an error early in a connection's lifetime -	// goes unreported. -	if cc.nextStreamID == 1 && cc.streamsReserved == 0 && cc.closed && !cc.closedOnIdle { -		st.canTakeNewRequest = true -	} - -	return -} - -// currentRequestCountLocked reports the number of concurrency slots currently in use, -// including active streams, reserved slots, and reset streams waiting for acknowledgement. -func (cc *ClientConn) currentRequestCountLocked() int { -	return len(cc.streams) + cc.streamsReserved + cc.pendingResets -} - -func (cc *ClientConn) canTakeNewRequestLocked() bool { -	st := cc.idleStateLocked() -	return st.canTakeNewRequest -} - -// tooIdleLocked reports whether this connection has been been sitting idle -// for too much wall time. -func (cc *ClientConn) tooIdleLocked() bool { -	// The Round(0) strips the monontonic clock reading so the -	// times are compared based on their wall time. We don't want -	// to reuse a connection that's been sitting idle during -	// VM/laptop suspend if monotonic time was also frozen. -	return cc.idleTimeout != 0 && !cc.lastIdle.IsZero() && cc.t.timeSince(cc.lastIdle.Round(0)) > cc.idleTimeout -} - -// onIdleTimeout is called from a time.AfterFunc goroutine. It will -// only be called when we're idle, but because we're coming from a new -// goroutine, there could be a new request coming in at the same time, -// so this simply calls the synchronized closeIfIdle to shut down this -// connection. The timer could just call closeIfIdle, but this is more -// clear. -func (cc *ClientConn) onIdleTimeout() { -	cc.closeIfIdle() -} - -func (cc *ClientConn) closeConn() { -	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn) -	defer t.Stop() -	cc.tconn.Close() -} - -// A tls.Conn.Close can hang for a long time if the peer is unresponsive. -// Try to shut it down more aggressively. -func (cc *ClientConn) forceCloseConn() { -	tc, ok := cc.tconn.(*tls.Conn) -	if !ok { -		return -	} -	if nc := tc.NetConn(); nc != nil { -		nc.Close() -	} -} - -func (cc *ClientConn) closeIfIdle() { -	cc.mu.Lock() -	if len(cc.streams) > 0 || cc.streamsReserved > 0 { -		cc.mu.Unlock() -		return -	} -	cc.closed = true -	cc.closedOnIdle = true -	nextID := cc.nextStreamID -	// TODO: do clients send GOAWAY too? maybe? Just Close: -	cc.mu.Unlock() - -	if VerboseLogs { -		cc.vlogf("http2: Transport closing idle conn %p (forSingleUse=%v, maxStream=%v)", cc, cc.singleUse, nextID-2) -	} -	cc.closeConn() -} - -func (cc *ClientConn) isDoNotReuseAndIdle() bool { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	return cc.doNotReuse && len(cc.streams) == 0 -} - -var shutdownEnterWaitStateHook = func() {} - -// Shutdown gracefully closes the client connection, waiting for running streams to complete. -func (cc *ClientConn) Shutdown(ctx context.Context) error { -	if err := cc.sendGoAway(); err != nil { -		return err -	} -	// Wait for all in-flight streams to complete or connection to close -	done := make(chan struct{}) -	cancelled := false // guarded by cc.mu -	go func() { -		cc.t.markNewGoroutine() -		cc.mu.Lock() -		defer cc.mu.Unlock() -		for { -			if len(cc.streams) == 0 || cc.closed { -				cc.closed = true -				close(done) -				break -			} -			if cancelled { -				break -			} -			cc.cond.Wait() -		} -	}() -	shutdownEnterWaitStateHook() -	select { -	case <-done: -		cc.closeConn() -		return nil -	case <-ctx.Done(): -		cc.mu.Lock() -		// Free the goroutine above -		cancelled = true -		cc.cond.Broadcast() -		cc.mu.Unlock() -		return ctx.Err() -	} -} - -func (cc *ClientConn) sendGoAway() error { -	cc.mu.Lock() -	closing := cc.closing -	cc.closing = true -	maxStreamID := cc.nextStreamID -	cc.mu.Unlock() -	if closing { -		// GOAWAY sent already -		return nil -	} - -	cc.wmu.Lock() -	defer cc.wmu.Unlock() -	// Send a graceful shutdown frame to server -	if err := cc.fr.WriteGoAway(maxStreamID, ErrCodeNo, nil); err != nil { -		return err -	} -	if err := cc.bw.Flush(); err != nil { -		return err -	} -	// Prevent new requests -	return nil -} - -// closes the client connection immediately. In-flight requests are interrupted. -// err is sent to streams. -func (cc *ClientConn) closeForError(err error) { -	cc.mu.Lock() -	cc.closed = true -	for _, cs := range cc.streams { -		cs.abortStreamLocked(err) -	} -	cc.cond.Broadcast() -	cc.mu.Unlock() -	cc.closeConn() -} - -// Close closes the client connection immediately. -// -// In-flight requests are interrupted. For a graceful shutdown, use Shutdown instead. -func (cc *ClientConn) Close() error { -	err := errors.New("http2: client connection force closed via ClientConn.Close") -	cc.closeForError(err) -	return nil -} - -// closes the client connection immediately. In-flight requests are interrupted. -func (cc *ClientConn) closeForLostPing() { -	err := errors.New("http2: client connection lost") -	if f := cc.t.CountError; f != nil { -		f("conn_close_lost_ping") -	} -	cc.closeForError(err) -} - -// errRequestCanceled is a copy of net/http's errRequestCanceled because it's not -// exported. At least they'll be DeepEqual for h1-vs-h2 comparisons tests. -var errRequestCanceled = errors.New("net/http: request canceled") - -func (cc *ClientConn) responseHeaderTimeout() time.Duration { -	if cc.t.t1 != nil { -		return cc.t.t1.ResponseHeaderTimeout -	} -	// No way to do this (yet?) with just an http2.Transport. Probably -	// no need. Request.Cancel this is the new way. We only need to support -	// this for compatibility with the old http.Transport fields when -	// we're doing transparent http2. -	return 0 -} - -func (cc *ClientConn) decrStreamReservations() { -	cc.mu.Lock() -	defer cc.mu.Unlock() -	cc.decrStreamReservationsLocked() -} - -func (cc *ClientConn) decrStreamReservationsLocked() { -	if cc.streamsReserved > 0 { -		cc.streamsReserved-- -	} -} - -func (cc *ClientConn) RoundTrip(req *http.Request) (*http.Response, error) { -	return cc.roundTrip(req, nil) -} - -func (cc *ClientConn) roundTrip(req *http.Request, streamf func(*clientStream)) (*http.Response, error) { -	ctx := req.Context() -	cs := &clientStream{ -		cc:                   cc, -		ctx:                  ctx, -		reqCancel:            req.Cancel, -		isHead:               req.Method == "HEAD", -		reqBody:              req.Body, -		reqBodyContentLength: httpcommon.ActualContentLength(req), -		trace:                httptrace.ContextClientTrace(ctx), -		peerClosed:           make(chan struct{}), -		abort:                make(chan struct{}), -		respHeaderRecv:       make(chan struct{}), -		donec:                make(chan struct{}), -	} - -	cs.requestedGzip = httpcommon.IsRequestGzip(req, cc.t.disableCompression()) - -	go cs.doRequest(req, streamf) - -	waitDone := func() error { -		select { -		case <-cs.donec: -			return nil -		case <-ctx.Done(): -			return ctx.Err() -		case <-cs.reqCancel: -			return errRequestCanceled -		} -	} - -	handleResponseHeaders := func() (*http.Response, error) { -		res := cs.res -		if res.StatusCode > 299 { -			// On error or status code 3xx, 4xx, 5xx, etc abort any -			// ongoing write, assuming that the server doesn't care -			// about our request body. If the server replied with 1xx or -			// 2xx, however, then assume the server DOES potentially -			// want our body (e.g. full-duplex streaming: -			// golang.org/issue/13444). If it turns out the server -			// doesn't, they'll RST_STREAM us soon enough. This is a -			// heuristic to avoid adding knobs to Transport. Hopefully -			// we can keep it. -			cs.abortRequestBodyWrite() -		} -		res.Request = req -		res.TLS = cc.tlsState -		if res.Body == noBody && httpcommon.ActualContentLength(req) == 0 { -			// If there isn't a request or response body still being -			// written, then wait for the stream to be closed before -			// RoundTrip returns. -			if err := waitDone(); err != nil { -				return nil, err -			} -		} -		return res, nil -	} - -	cancelRequest := func(cs *clientStream, err error) error { -		cs.cc.mu.Lock() -		bodyClosed := cs.reqBodyClosed -		cs.cc.mu.Unlock() -		// Wait for the request body to be closed. -		// -		// If nothing closed the body before now, abortStreamLocked -		// will have started a goroutine to close it. -		// -		// Closing the body before returning avoids a race condition -		// with net/http checking its readTrackingBody to see if the -		// body was read from or closed. See golang/go#60041. -		// -		// The body is closed in a separate goroutine without the -		// connection mutex held, but dropping the mutex before waiting -		// will keep us from holding it indefinitely if the body -		// close is slow for some reason. -		if bodyClosed != nil { -			<-bodyClosed -		} -		return err -	} - -	for { -		select { -		case <-cs.respHeaderRecv: -			return handleResponseHeaders() -		case <-cs.abort: -			select { -			case <-cs.respHeaderRecv: -				// If both cs.respHeaderRecv and cs.abort are signaling, -				// pick respHeaderRecv. The server probably wrote the -				// response and immediately reset the stream. -				// golang.org/issue/49645 -				return handleResponseHeaders() -			default: -				waitDone() -				return nil, cs.abortErr -			} -		case <-ctx.Done(): -			err := ctx.Err() -			cs.abortStream(err) -			return nil, cancelRequest(cs, err) -		case <-cs.reqCancel: -			cs.abortStream(errRequestCanceled) -			return nil, cancelRequest(cs, errRequestCanceled) -		} -	} -} - -// doRequest runs for the duration of the request lifetime. -// -// It sends the request and performs post-request cleanup (closing Request.Body, etc.). -func (cs *clientStream) doRequest(req *http.Request, streamf func(*clientStream)) { -	cs.cc.t.markNewGoroutine() -	err := cs.writeRequest(req, streamf) -	cs.cleanupWriteRequest(err) -} - -var errExtendedConnectNotSupported = errors.New("net/http: extended connect not supported by peer") - -// writeRequest sends a request. -// -// It returns nil after the request is written, the response read, -// and the request stream is half-closed by the peer. -// -// It returns non-nil if the request ends otherwise. -// If the returned error is StreamError, the error Code may be used in resetting the stream. -func (cs *clientStream) writeRequest(req *http.Request, streamf func(*clientStream)) (err error) { -	cc := cs.cc -	ctx := cs.ctx - -	// wait for setting frames to be received, a server can change this value later, -	// but we just wait for the first settings frame -	var isExtendedConnect bool -	if req.Method == "CONNECT" && req.Header.Get(":protocol") != "" { -		isExtendedConnect = true -	} - -	// Acquire the new-request lock by writing to reqHeaderMu. -	// This lock guards the critical section covering allocating a new stream ID -	// (requires mu) and creating the stream (requires wmu). -	if cc.reqHeaderMu == nil { -		panic("RoundTrip on uninitialized ClientConn") // for tests -	} -	if isExtendedConnect { -		select { -		case <-cs.reqCancel: -			return errRequestCanceled -		case <-ctx.Done(): -			return ctx.Err() -		case <-cc.seenSettingsChan: -			if !cc.extendedConnectAllowed { -				return errExtendedConnectNotSupported -			} -		} -	} -	select { -	case cc.reqHeaderMu <- struct{}{}: -	case <-cs.reqCancel: -		return errRequestCanceled -	case <-ctx.Done(): -		return ctx.Err() -	} - -	cc.mu.Lock() -	if cc.idleTimer != nil { -		cc.idleTimer.Stop() -	} -	cc.decrStreamReservationsLocked() -	if err := cc.awaitOpenSlotForStreamLocked(cs); err != nil { -		cc.mu.Unlock() -		<-cc.reqHeaderMu -		return err -	} -	cc.addStreamLocked(cs) // assigns stream ID -	if isConnectionCloseRequest(req) { -		cc.doNotReuse = true -	} -	cc.mu.Unlock() - -	if streamf != nil { -		streamf(cs) -	} - -	continueTimeout := cc.t.expectContinueTimeout() -	if continueTimeout != 0 { -		if !httpguts.HeaderValuesContainsToken(req.Header["Expect"], "100-continue") { -			continueTimeout = 0 -		} else { -			cs.on100 = make(chan struct{}, 1) -		} -	} - -	// Past this point (where we send request headers), it is possible for -	// RoundTrip to return successfully. Since the RoundTrip contract permits -	// the caller to "mutate or reuse" the Request after closing the Response's Body, -	// we must take care when referencing the Request from here on. -	err = cs.encodeAndWriteHeaders(req) -	<-cc.reqHeaderMu -	if err != nil { -		return err -	} - -	hasBody := cs.reqBodyContentLength != 0 -	if !hasBody { -		cs.sentEndStream = true -	} else { -		if continueTimeout != 0 { -			traceWait100Continue(cs.trace) -			timer := time.NewTimer(continueTimeout) -			select { -			case <-timer.C: -				err = nil -			case <-cs.on100: -				err = nil -			case <-cs.abort: -				err = cs.abortErr -			case <-ctx.Done(): -				err = ctx.Err() -			case <-cs.reqCancel: -				err = errRequestCanceled -			} -			timer.Stop() -			if err != nil { -				traceWroteRequest(cs.trace, err) -				return err -			} -		} - -		if err = cs.writeRequestBody(req); err != nil { -			if err != errStopReqBodyWrite { -				traceWroteRequest(cs.trace, err) -				return err -			} -		} else { -			cs.sentEndStream = true -		} -	} - -	traceWroteRequest(cs.trace, err) - -	var respHeaderTimer <-chan time.Time -	var respHeaderRecv chan struct{} -	if d := cc.responseHeaderTimeout(); d != 0 { -		timer := cc.t.newTimer(d) -		defer timer.Stop() -		respHeaderTimer = timer.C() -		respHeaderRecv = cs.respHeaderRecv -	} -	// Wait until the peer half-closes its end of the stream, -	// or until the request is aborted (via context, error, or otherwise), -	// whichever comes first. -	for { -		select { -		case <-cs.peerClosed: -			return nil -		case <-respHeaderTimer: -			return errTimeout -		case <-respHeaderRecv: -			respHeaderRecv = nil -			respHeaderTimer = nil // keep waiting for END_STREAM -		case <-cs.abort: -			return cs.abortErr -		case <-ctx.Done(): -			return ctx.Err() -		case <-cs.reqCancel: -			return errRequestCanceled -		} -	} -} - -func (cs *clientStream) encodeAndWriteHeaders(req *http.Request) error { -	cc := cs.cc -	ctx := cs.ctx - -	cc.wmu.Lock() -	defer cc.wmu.Unlock() - -	// If the request was canceled while waiting for cc.mu, just quit. -	select { -	case <-cs.abort: -		return cs.abortErr -	case <-ctx.Done(): -		return ctx.Err() -	case <-cs.reqCancel: -		return errRequestCanceled -	default: -	} - -	// Encode headers. -	// -	// we send: HEADERS{1}, CONTINUATION{0,} + DATA{0,} (DATA is -	// sent by writeRequestBody below, along with any Trailers, -	// again in form HEADERS{1}, CONTINUATION{0,}) -	cc.hbuf.Reset() -	res, err := httpcommon.EncodeHeaders(httpcommon.EncodeHeadersParam{ -		Request:               req, -		AddGzipHeader:         cs.requestedGzip, -		PeerMaxHeaderListSize: cc.peerMaxHeaderListSize, -		DefaultUserAgent:      defaultUserAgent, -	}, func(name, value string) { -		cc.writeHeader(name, value) -	}) -	if err != nil { -		return fmt.Errorf("http2: %w", err) -	} -	hdrs := cc.hbuf.Bytes() - -	// Write the request. -	endStream := !res.HasBody && !res.HasTrailers -	cs.sentHeaders = true -	err = cc.writeHeaders(cs.ID, endStream, int(cc.maxFrameSize), hdrs) -	traceWroteHeaders(cs.trace) -	return err -} - -// cleanupWriteRequest performs post-request tasks. -// -// If err (the result of writeRequest) is non-nil and the stream is not closed, -// cleanupWriteRequest will send a reset to the peer. -func (cs *clientStream) cleanupWriteRequest(err error) { -	cc := cs.cc - -	if cs.ID == 0 { -		// We were canceled before creating the stream, so return our reservation. -		cc.decrStreamReservations() -	} - -	// TODO: write h12Compare test showing whether -	// Request.Body is closed by the Transport, -	// and in multiple cases: server replies <=299 and >299 -	// while still writing request body -	cc.mu.Lock() -	mustCloseBody := false -	if cs.reqBody != nil && cs.reqBodyClosed == nil { -		mustCloseBody = true -		cs.reqBodyClosed = make(chan struct{}) -	} -	bodyClosed := cs.reqBodyClosed -	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil -	cc.mu.Unlock() -	if mustCloseBody { -		cs.reqBody.Close() -		close(bodyClosed) -	} -	if bodyClosed != nil { -		<-bodyClosed -	} - -	if err != nil && cs.sentEndStream { -		// If the connection is closed immediately after the response is read, -		// we may be aborted before finishing up here. If the stream was closed -		// cleanly on both sides, there is no error. -		select { -		case <-cs.peerClosed: -			err = nil -		default: -		} -	} -	if err != nil { -		cs.abortStream(err) // possibly redundant, but harmless -		if cs.sentHeaders { -			if se, ok := err.(StreamError); ok { -				if se.Cause != errFromPeer { -					cc.writeStreamReset(cs.ID, se.Code, false, err) -				} -			} else { -				// We're cancelling an in-flight request. -				// -				// This could be due to the server becoming unresponsive. -				// To avoid sending too many requests on a dead connection, -				// we let the request continue to consume a concurrency slot -				// until we can confirm the server is still responding. -				// We do this by sending a PING frame along with the RST_STREAM -				// (unless a ping is already in flight). -				// -				// For simplicity, we don't bother tracking the PING payload: -				// We reset cc.pendingResets any time we receive a PING ACK. -				// -				// We skip this if the conn is going to be closed on idle, -				// because it's short lived and will probably be closed before -				// we get the ping response. -				ping := false -				if !closeOnIdle { -					cc.mu.Lock() -					// rstStreamPingsBlocked works around a gRPC behavior: -					// see comment on the field for details. -					if !cc.rstStreamPingsBlocked { -						if cc.pendingResets == 0 { -							ping = true -						} -						cc.pendingResets++ -					} -					cc.mu.Unlock() -				} -				cc.writeStreamReset(cs.ID, ErrCodeCancel, ping, err) -			} -		} -		cs.bufPipe.CloseWithError(err) // no-op if already closed -	} else { -		if cs.sentHeaders && !cs.sentEndStream { -			cc.writeStreamReset(cs.ID, ErrCodeNo, false, nil) -		} -		cs.bufPipe.CloseWithError(errRequestCanceled) -	} -	if cs.ID != 0 { -		cc.forgetStreamID(cs.ID) -	} - -	cc.wmu.Lock() -	werr := cc.werr -	cc.wmu.Unlock() -	if werr != nil { -		cc.Close() -	} - -	close(cs.donec) -} - -// awaitOpenSlotForStreamLocked waits until len(streams) < maxConcurrentStreams. -// Must hold cc.mu. -func (cc *ClientConn) awaitOpenSlotForStreamLocked(cs *clientStream) error { -	for { -		if cc.closed && cc.nextStreamID == 1 && cc.streamsReserved == 0 { -			// This is the very first request sent to this connection. -			// Return a fatal error which aborts the retry loop. -			return errClientConnNotEstablished -		} -		cc.lastActive = cc.t.now() -		if cc.closed || !cc.canTakeNewRequestLocked() { -			return errClientConnUnusable -		} -		cc.lastIdle = time.Time{} -		if cc.currentRequestCountLocked() < int(cc.maxConcurrentStreams) { -			return nil -		} -		cc.pendingRequests++ -		cc.cond.Wait() -		cc.pendingRequests-- -		select { -		case <-cs.abort: -			return cs.abortErr -		default: -		} -	} -} - -// requires cc.wmu be held -func (cc *ClientConn) writeHeaders(streamID uint32, endStream bool, maxFrameSize int, hdrs []byte) error { -	first := true // first frame written (HEADERS is first, then CONTINUATION) -	for len(hdrs) > 0 && cc.werr == nil { -		chunk := hdrs -		if len(chunk) > maxFrameSize { -			chunk = chunk[:maxFrameSize] -		} -		hdrs = hdrs[len(chunk):] -		endHeaders := len(hdrs) == 0 -		if first { -			cc.fr.WriteHeaders(HeadersFrameParam{ -				StreamID:      streamID, -				BlockFragment: chunk, -				EndStream:     endStream, -				EndHeaders:    endHeaders, -			}) -			first = false -		} else { -			cc.fr.WriteContinuation(streamID, endHeaders, chunk) -		} -	} -	cc.bw.Flush() -	return cc.werr -} - -// internal error values; they don't escape to callers -var ( -	// abort request body write; don't send cancel -	errStopReqBodyWrite = errors.New("http2: aborting request body write") - -	// abort request body write, but send stream reset of cancel. -	errStopReqBodyWriteAndCancel = errors.New("http2: canceling request") - -	errReqBodyTooLong = errors.New("http2: request body larger than specified content length") -) - -// frameScratchBufferLen returns the length of a buffer to use for -// outgoing request bodies to read/write to/from. -// -// It returns max(1, min(peer's advertised max frame size, -// Request.ContentLength+1, 512KB)). -func (cs *clientStream) frameScratchBufferLen(maxFrameSize int) int { -	const max = 512 << 10 -	n := int64(maxFrameSize) -	if n > max { -		n = max -	} -	if cl := cs.reqBodyContentLength; cl != -1 && cl+1 < n { -		// Add an extra byte past the declared content-length to -		// give the caller's Request.Body io.Reader a chance to -		// give us more bytes than they declared, so we can catch it -		// early. -		n = cl + 1 -	} -	if n < 1 { -		return 1 -	} -	return int(n) // doesn't truncate; max is 512K -} - -// Seven bufPools manage different frame sizes. This helps to avoid scenarios where long-running -// streaming requests using small frame sizes occupy large buffers initially allocated for prior -// requests needing big buffers. The size ranges are as follows: -// {0 KB, 16 KB], {16 KB, 32 KB], {32 KB, 64 KB], {64 KB, 128 KB], {128 KB, 256 KB], -// {256 KB, 512 KB], {512 KB, infinity} -// In practice, the maximum scratch buffer size should not exceed 512 KB due to -// frameScratchBufferLen(maxFrameSize), thus the "infinity pool" should never be used. -// It exists mainly as a safety measure, for potential future increases in max buffer size. -var bufPools [7]sync.Pool // of *[]byte -func bufPoolIndex(size int) int { -	if size <= 16384 { -		return 0 -	} -	size -= 1 -	bits := bits.Len(uint(size)) -	index := bits - 14 -	if index >= len(bufPools) { -		return len(bufPools) - 1 -	} -	return index -} - -func (cs *clientStream) writeRequestBody(req *http.Request) (err error) { -	cc := cs.cc -	body := cs.reqBody -	sentEnd := false // whether we sent the final DATA frame w/ END_STREAM - -	hasTrailers := req.Trailer != nil -	remainLen := cs.reqBodyContentLength -	hasContentLen := remainLen != -1 - -	cc.mu.Lock() -	maxFrameSize := int(cc.maxFrameSize) -	cc.mu.Unlock() - -	// Scratch buffer for reading into & writing from. -	scratchLen := cs.frameScratchBufferLen(maxFrameSize) -	var buf []byte -	index := bufPoolIndex(scratchLen) -	if bp, ok := bufPools[index].Get().(*[]byte); ok && len(*bp) >= scratchLen { -		defer bufPools[index].Put(bp) -		buf = *bp -	} else { -		buf = make([]byte, scratchLen) -		defer bufPools[index].Put(&buf) -	} - -	var sawEOF bool -	for !sawEOF { -		n, err := body.Read(buf) -		if hasContentLen { -			remainLen -= int64(n) -			if remainLen == 0 && err == nil { -				// The request body's Content-Length was predeclared and -				// we just finished reading it all, but the underlying io.Reader -				// returned the final chunk with a nil error (which is one of -				// the two valid things a Reader can do at EOF). Because we'd prefer -				// to send the END_STREAM bit early, double-check that we're actually -				// at EOF. Subsequent reads should return (0, EOF) at this point. -				// If either value is different, we return an error in one of two ways below. -				var scratch [1]byte -				var n1 int -				n1, err = body.Read(scratch[:]) -				remainLen -= int64(n1) -			} -			if remainLen < 0 { -				err = errReqBodyTooLong -				return err -			} -		} -		if err != nil { -			cc.mu.Lock() -			bodyClosed := cs.reqBodyClosed != nil -			cc.mu.Unlock() -			switch { -			case bodyClosed: -				return errStopReqBodyWrite -			case err == io.EOF: -				sawEOF = true -				err = nil -			default: -				return err -			} -		} - -		remain := buf[:n] -		for len(remain) > 0 && err == nil { -			var allowed int32 -			allowed, err = cs.awaitFlowControl(len(remain)) -			if err != nil { -				return err -			} -			cc.wmu.Lock() -			data := remain[:allowed] -			remain = remain[allowed:] -			sentEnd = sawEOF && len(remain) == 0 && !hasTrailers -			err = cc.fr.WriteData(cs.ID, sentEnd, data) -			if err == nil { -				// TODO(bradfitz): this flush is for latency, not bandwidth. -				// Most requests won't need this. Make this opt-in or -				// opt-out?  Use some heuristic on the body type? Nagel-like -				// timers?  Based on 'n'? Only last chunk of this for loop, -				// unless flow control tokens are low? For now, always. -				// If we change this, see comment below. -				err = cc.bw.Flush() -			} -			cc.wmu.Unlock() -		} -		if err != nil { -			return err -		} -	} - -	if sentEnd { -		// Already sent END_STREAM (which implies we have no -		// trailers) and flushed, because currently all -		// WriteData frames above get a flush. So we're done. -		return nil -	} - -	// Since the RoundTrip contract permits the caller to "mutate or reuse" -	// a request after the Response's Body is closed, verify that this hasn't -	// happened before accessing the trailers. -	cc.mu.Lock() -	trailer := req.Trailer -	err = cs.abortErr -	cc.mu.Unlock() -	if err != nil { -		return err -	} - -	cc.wmu.Lock() -	defer cc.wmu.Unlock() -	var trls []byte -	if len(trailer) > 0 { -		trls, err = cc.encodeTrailers(trailer) -		if err != nil { -			return err -		} -	} - -	// Two ways to send END_STREAM: either with trailers, or -	// with an empty DATA frame. -	if len(trls) > 0 { -		err = cc.writeHeaders(cs.ID, true, maxFrameSize, trls) -	} else { -		err = cc.fr.WriteData(cs.ID, true, nil) -	} -	if ferr := cc.bw.Flush(); ferr != nil && err == nil { -		err = ferr -	} -	return err -} - -// awaitFlowControl waits for [1, min(maxBytes, cc.cs.maxFrameSize)] flow -// control tokens from the server. -// It returns either the non-zero number of tokens taken or an error -// if the stream is dead. -func (cs *clientStream) awaitFlowControl(maxBytes int) (taken int32, err error) { -	cc := cs.cc -	ctx := cs.ctx -	cc.mu.Lock() -	defer cc.mu.Unlock() -	for { -		if cc.closed { -			return 0, errClientConnClosed -		} -		if cs.reqBodyClosed != nil { -			return 0, errStopReqBodyWrite -		} -		select { -		case <-cs.abort: -			return 0, cs.abortErr -		case <-ctx.Done(): -			return 0, ctx.Err() -		case <-cs.reqCancel: -			return 0, errRequestCanceled -		default: -		} -		if a := cs.flow.available(); a > 0 { -			take := a -			if int(take) > maxBytes { - -				take = int32(maxBytes) // can't truncate int; take is int32 -			} -			if take > int32(cc.maxFrameSize) { -				take = int32(cc.maxFrameSize) -			} -			cs.flow.take(take) -			return take, nil -		} -		cc.cond.Wait() -	} -} - -// requires cc.wmu be held. -func (cc *ClientConn) encodeTrailers(trailer http.Header) ([]byte, error) { -	cc.hbuf.Reset() - -	hlSize := uint64(0) -	for k, vv := range trailer { -		for _, v := range vv { -			hf := hpack.HeaderField{Name: k, Value: v} -			hlSize += uint64(hf.Size()) -		} -	} -	if hlSize > cc.peerMaxHeaderListSize { -		return nil, errRequestHeaderListSize -	} - -	for k, vv := range trailer { -		lowKey, ascii := httpcommon.LowerHeader(k) -		if !ascii { -			// Skip writing invalid headers. Per RFC 7540, Section 8.1.2, header -			// field names have to be ASCII characters (just as in HTTP/1.x). -			continue -		} -		// Transfer-Encoding, etc.. have already been filtered at the -		// start of RoundTrip -		for _, v := range vv { -			cc.writeHeader(lowKey, v) -		} -	} -	return cc.hbuf.Bytes(), nil -} - -func (cc *ClientConn) writeHeader(name, value string) { -	if VerboseLogs { -		log.Printf("http2: Transport encoding header %q = %q", name, value) -	} -	cc.henc.WriteField(hpack.HeaderField{Name: name, Value: value}) -} - -type resAndError struct { -	_   incomparable -	res *http.Response -	err error -} - -// requires cc.mu be held. -func (cc *ClientConn) addStreamLocked(cs *clientStream) { -	cs.flow.add(int32(cc.initialWindowSize)) -	cs.flow.setConnFlow(&cc.flow) -	cs.inflow.init(cc.initialStreamRecvWindowSize) -	cs.ID = cc.nextStreamID -	cc.nextStreamID += 2 -	cc.streams[cs.ID] = cs -	if cs.ID == 0 { -		panic("assigned stream ID 0") -	} -} - -func (cc *ClientConn) forgetStreamID(id uint32) { -	cc.mu.Lock() -	slen := len(cc.streams) -	delete(cc.streams, id) -	if len(cc.streams) != slen-1 { -		panic("forgetting unknown stream id") -	} -	cc.lastActive = cc.t.now() -	if len(cc.streams) == 0 && cc.idleTimer != nil { -		cc.idleTimer.Reset(cc.idleTimeout) -		cc.lastIdle = cc.t.now() -	} -	// Wake up writeRequestBody via clientStream.awaitFlowControl and -	// wake up RoundTrip if there is a pending request. -	cc.cond.Broadcast() - -	closeOnIdle := cc.singleUse || cc.doNotReuse || cc.t.disableKeepAlives() || cc.goAway != nil -	if closeOnIdle && cc.streamsReserved == 0 && len(cc.streams) == 0 { -		if VerboseLogs { -			cc.vlogf("http2: Transport closing idle conn %p (forSingleUse=%v, maxStream=%v)", cc, cc.singleUse, cc.nextStreamID-2) -		} -		cc.closed = true -		defer cc.closeConn() -	} - -	cc.mu.Unlock() -} - -// clientConnReadLoop is the state owned by the clientConn's frame-reading readLoop. -type clientConnReadLoop struct { -	_  incomparable -	cc *ClientConn -} - -// readLoop runs in its own goroutine and reads and dispatches frames. -func (cc *ClientConn) readLoop() { -	cc.t.markNewGoroutine() -	rl := &clientConnReadLoop{cc: cc} -	defer rl.cleanup() -	cc.readerErr = rl.run() -	if ce, ok := cc.readerErr.(ConnectionError); ok { -		cc.wmu.Lock() -		cc.fr.WriteGoAway(0, ErrCode(ce), nil) -		cc.wmu.Unlock() -	} -} - -// GoAwayError is returned by the Transport when the server closes the -// TCP connection after sending a GOAWAY frame. -type GoAwayError struct { -	LastStreamID uint32 -	ErrCode      ErrCode -	DebugData    string -} - -func (e GoAwayError) Error() string { -	return fmt.Sprintf("http2: server sent GOAWAY and closed the connection; LastStreamID=%v, ErrCode=%v, debug=%q", -		e.LastStreamID, e.ErrCode, e.DebugData) -} - -func isEOFOrNetReadError(err error) bool { -	if err == io.EOF { -		return true -	} -	ne, ok := err.(*net.OpError) -	return ok && ne.Op == "read" -} - -func (rl *clientConnReadLoop) cleanup() { -	cc := rl.cc -	defer cc.closeConn() -	defer close(cc.readerDone) - -	if cc.idleTimer != nil { -		cc.idleTimer.Stop() -	} - -	// Close any response bodies if the server closes prematurely. -	// TODO: also do this if we've written the headers but not -	// gotten a response yet. -	err := cc.readerErr -	cc.mu.Lock() -	if cc.goAway != nil && isEOFOrNetReadError(err) { -		err = GoAwayError{ -			LastStreamID: cc.goAway.LastStreamID, -			ErrCode:      cc.goAway.ErrCode, -			DebugData:    cc.goAwayDebug, -		} -	} else if err == io.EOF { -		err = io.ErrUnexpectedEOF -	} -	cc.closed = true - -	// If the connection has never been used, and has been open for only a short time, -	// leave it in the connection pool for a little while. -	// -	// This avoids a situation where new connections are constantly created, -	// added to the pool, fail, and are removed from the pool, without any error -	// being surfaced to the user. -	unusedWaitTime := 5 * time.Second -	if cc.idleTimeout > 0 && unusedWaitTime > cc.idleTimeout { -		unusedWaitTime = cc.idleTimeout -	} -	idleTime := cc.t.now().Sub(cc.lastActive) -	if atomic.LoadUint32(&cc.atomicReused) == 0 && idleTime < unusedWaitTime && !cc.closedOnIdle { -		cc.idleTimer = cc.t.afterFunc(unusedWaitTime-idleTime, func() { -			cc.t.connPool().MarkDead(cc) -		}) -	} else { -		cc.mu.Unlock() // avoid any deadlocks in MarkDead -		cc.t.connPool().MarkDead(cc) -		cc.mu.Lock() -	} - -	for _, cs := range cc.streams { -		select { -		case <-cs.peerClosed: -			// The server closed the stream before closing the conn, -			// so no need to interrupt it. -		default: -			cs.abortStreamLocked(err) -		} -	} -	cc.cond.Broadcast() -	cc.mu.Unlock() -} - -// countReadFrameError calls Transport.CountError with a string -// representing err. -func (cc *ClientConn) countReadFrameError(err error) { -	f := cc.t.CountError -	if f == nil || err == nil { -		return -	} -	if ce, ok := err.(ConnectionError); ok { -		errCode := ErrCode(ce) -		f(fmt.Sprintf("read_frame_conn_error_%s", errCode.stringToken())) -		return -	} -	if errors.Is(err, io.EOF) { -		f("read_frame_eof") -		return -	} -	if errors.Is(err, io.ErrUnexpectedEOF) { -		f("read_frame_unexpected_eof") -		return -	} -	if errors.Is(err, ErrFrameTooLarge) { -		f("read_frame_too_large") -		return -	} -	f("read_frame_other") -} - -func (rl *clientConnReadLoop) run() error { -	cc := rl.cc -	gotSettings := false -	readIdleTimeout := cc.readIdleTimeout -	var t timer -	if readIdleTimeout != 0 { -		t = cc.t.afterFunc(readIdleTimeout, cc.healthCheck) -	} -	for { -		f, err := cc.fr.ReadFrame() -		if t != nil { -			t.Reset(readIdleTimeout) -		} -		if err != nil { -			cc.vlogf("http2: Transport readFrame error on conn %p: (%T) %v", cc, err, err) -		} -		if se, ok := err.(StreamError); ok { -			if cs := rl.streamByID(se.StreamID, notHeaderOrDataFrame); cs != nil { -				if se.Cause == nil { -					se.Cause = cc.fr.errDetail -				} -				rl.endStreamError(cs, se) -			} -			continue -		} else if err != nil { -			cc.countReadFrameError(err) -			return err -		} -		if VerboseLogs { -			cc.vlogf("http2: Transport received %s", summarizeFrame(f)) -		} -		if !gotSettings { -			if _, ok := f.(*SettingsFrame); !ok { -				cc.logf("protocol error: received %T before a SETTINGS frame", f) -				return ConnectionError(ErrCodeProtocol) -			} -			gotSettings = true -		} - -		switch f := f.(type) { -		case *MetaHeadersFrame: -			err = rl.processHeaders(f) -		case *DataFrame: -			err = rl.processData(f) -		case *GoAwayFrame: -			err = rl.processGoAway(f) -		case *RSTStreamFrame: -			err = rl.processResetStream(f) -		case *SettingsFrame: -			err = rl.processSettings(f) -		case *PushPromiseFrame: -			err = rl.processPushPromise(f) -		case *WindowUpdateFrame: -			err = rl.processWindowUpdate(f) -		case *PingFrame: -			err = rl.processPing(f) -		default: -			cc.logf("Transport: unhandled response frame type %T", f) -		} -		if err != nil { -			if VerboseLogs { -				cc.vlogf("http2: Transport conn %p received error from processing frame %v: %v", cc, summarizeFrame(f), err) -			} -			if !cc.seenSettings { -				close(cc.seenSettingsChan) -			} -			return err -		} -	} -} - -func (rl *clientConnReadLoop) processHeaders(f *MetaHeadersFrame) error { -	cs := rl.streamByID(f.StreamID, headerOrDataFrame) -	if cs == nil { -		// We'd get here if we canceled a request while the -		// server had its response still in flight. So if this -		// was just something we canceled, ignore it. -		return nil -	} -	if cs.readClosed { -		rl.endStreamError(cs, StreamError{ -			StreamID: f.StreamID, -			Code:     ErrCodeProtocol, -			Cause:    errors.New("protocol error: headers after END_STREAM"), -		}) -		return nil -	} -	if !cs.firstByte { -		if cs.trace != nil { -			// TODO(bradfitz): move first response byte earlier, -			// when we first read the 9 byte header, not waiting -			// until all the HEADERS+CONTINUATION frames have been -			// merged. This works for now. -			traceFirstResponseByte(cs.trace) -		} -		cs.firstByte = true -	} -	if !cs.pastHeaders { -		cs.pastHeaders = true -	} else { -		return rl.processTrailers(cs, f) -	} - -	res, err := rl.handleResponse(cs, f) -	if err != nil { -		if _, ok := err.(ConnectionError); ok { -			return err -		} -		// Any other error type is a stream error. -		rl.endStreamError(cs, StreamError{ -			StreamID: f.StreamID, -			Code:     ErrCodeProtocol, -			Cause:    err, -		}) -		return nil // return nil from process* funcs to keep conn alive -	} -	if res == nil { -		// (nil, nil) special case. See handleResponse docs. -		return nil -	} -	cs.resTrailer = &res.Trailer -	cs.res = res -	close(cs.respHeaderRecv) -	if f.StreamEnded() { -		rl.endStream(cs) -	} -	return nil -} - -// may return error types nil, or ConnectionError. Any other error value -// is a StreamError of type ErrCodeProtocol. The returned error in that case -// is the detail. -// -// As a special case, handleResponse may return (nil, nil) to skip the -// frame (currently only used for 1xx responses). -func (rl *clientConnReadLoop) handleResponse(cs *clientStream, f *MetaHeadersFrame) (*http.Response, error) { -	if f.Truncated { -		return nil, errResponseHeaderListSize -	} - -	status := f.PseudoValue("status") -	if status == "" { -		return nil, errors.New("malformed response from server: missing status pseudo header") -	} -	statusCode, err := strconv.Atoi(status) -	if err != nil { -		return nil, errors.New("malformed response from server: malformed non-numeric status pseudo header") -	} - -	regularFields := f.RegularFields() -	strs := make([]string, len(regularFields)) -	header := make(http.Header, len(regularFields)) -	res := &http.Response{ -		Proto:      "HTTP/2.0", -		ProtoMajor: 2, -		Header:     header, -		StatusCode: statusCode, -		Status:     status + " " + http.StatusText(statusCode), -	} -	for _, hf := range regularFields { -		key := httpcommon.CanonicalHeader(hf.Name) -		if key == "Trailer" { -			t := res.Trailer -			if t == nil { -				t = make(http.Header) -				res.Trailer = t -			} -			foreachHeaderElement(hf.Value, func(v string) { -				t[httpcommon.CanonicalHeader(v)] = nil -			}) -		} else { -			vv := header[key] -			if vv == nil && len(strs) > 0 { -				// More than likely this will be a single-element key. -				// Most headers aren't multi-valued. -				// Set the capacity on strs[0] to 1, so any future append -				// won't extend the slice into the other strings. -				vv, strs = strs[:1:1], strs[1:] -				vv[0] = hf.Value -				header[key] = vv -			} else { -				header[key] = append(vv, hf.Value) -			} -		} -	} - -	if statusCode >= 100 && statusCode <= 199 { -		if f.StreamEnded() { -			return nil, errors.New("1xx informational response with END_STREAM flag") -		} -		if fn := cs.get1xxTraceFunc(); fn != nil { -			// If the 1xx response is being delivered to the user, -			// then they're responsible for limiting the number -			// of responses. -			if err := fn(statusCode, textproto.MIMEHeader(header)); err != nil { -				return nil, err -			} -		} else { -			// If the user didn't examine the 1xx response, then we -			// limit the size of all 1xx headers. -			// -			// This differs a bit from the HTTP/1 implementation, which -			// limits the size of all 1xx headers plus the final response. -			// Use the larger limit of MaxHeaderListSize and -			// net/http.Transport.MaxResponseHeaderBytes. -			limit := int64(cs.cc.t.maxHeaderListSize()) -			if t1 := cs.cc.t.t1; t1 != nil && t1.MaxResponseHeaderBytes > limit { -				limit = t1.MaxResponseHeaderBytes -			} -			for _, h := range f.Fields { -				cs.totalHeaderSize += int64(h.Size()) -			} -			if cs.totalHeaderSize > limit { -				if VerboseLogs { -					log.Printf("http2: 1xx informational responses too large") -				} -				return nil, errors.New("header list too large") -			} -		} -		if statusCode == 100 { -			traceGot100Continue(cs.trace) -			select { -			case cs.on100 <- struct{}{}: -			default: -			} -		} -		cs.pastHeaders = false // do it all again -		return nil, nil -	} - -	res.ContentLength = -1 -	if clens := res.Header["Content-Length"]; len(clens) == 1 { -		if cl, err := strconv.ParseUint(clens[0], 10, 63); err == nil { -			res.ContentLength = int64(cl) -		} else { -			// TODO: care? unlike http/1, it won't mess up our framing, so it's -			// more safe smuggling-wise to ignore. -		} -	} else if len(clens) > 1 { -		// TODO: care? unlike http/1, it won't mess up our framing, so it's -		// more safe smuggling-wise to ignore. -	} else if f.StreamEnded() && !cs.isHead { -		res.ContentLength = 0 -	} - -	if cs.isHead { -		res.Body = noBody -		return res, nil -	} - -	if f.StreamEnded() { -		if res.ContentLength > 0 { -			res.Body = missingBody{} -		} else { -			res.Body = noBody -		} -		return res, nil -	} - -	cs.bufPipe.setBuffer(&dataBuffer{expected: res.ContentLength}) -	cs.bytesRemain = res.ContentLength -	res.Body = transportResponseBody{cs} - -	if cs.requestedGzip && asciiEqualFold(res.Header.Get("Content-Encoding"), "gzip") { -		res.Header.Del("Content-Encoding") -		res.Header.Del("Content-Length") -		res.ContentLength = -1 -		res.Body = &gzipReader{body: res.Body} -		res.Uncompressed = true -	} -	return res, nil -} - -func (rl *clientConnReadLoop) processTrailers(cs *clientStream, f *MetaHeadersFrame) error { -	if cs.pastTrailers { -		// Too many HEADERS frames for this stream. -		return ConnectionError(ErrCodeProtocol) -	} -	cs.pastTrailers = true -	if !f.StreamEnded() { -		// We expect that any headers for trailers also -		// has END_STREAM. -		return ConnectionError(ErrCodeProtocol) -	} -	if len(f.PseudoFields()) > 0 { -		// No pseudo header fields are defined for trailers. -		// TODO: ConnectionError might be overly harsh? Check. -		return ConnectionError(ErrCodeProtocol) -	} - -	trailer := make(http.Header) -	for _, hf := range f.RegularFields() { -		key := httpcommon.CanonicalHeader(hf.Name) -		trailer[key] = append(trailer[key], hf.Value) -	} -	cs.trailer = trailer - -	rl.endStream(cs) -	return nil -} - -// transportResponseBody is the concrete type of Transport.RoundTrip's -// Response.Body. It is an io.ReadCloser. -type transportResponseBody struct { -	cs *clientStream -} - -func (b transportResponseBody) Read(p []byte) (n int, err error) { -	cs := b.cs -	cc := cs.cc - -	if cs.readErr != nil { -		return 0, cs.readErr -	} -	n, err = b.cs.bufPipe.Read(p) -	if cs.bytesRemain != -1 { -		if int64(n) > cs.bytesRemain { -			n = int(cs.bytesRemain) -			if err == nil { -				err = errors.New("net/http: server replied with more than declared Content-Length; truncated") -				cs.abortStream(err) -			} -			cs.readErr = err -			return int(cs.bytesRemain), err -		} -		cs.bytesRemain -= int64(n) -		if err == io.EOF && cs.bytesRemain > 0 { -			err = io.ErrUnexpectedEOF -			cs.readErr = err -			return n, err -		} -	} -	if n == 0 { -		// No flow control tokens to send back. -		return -	} - -	cc.mu.Lock() -	connAdd := cc.inflow.add(n) -	var streamAdd int32 -	if err == nil { // No need to refresh if the stream is over or failed. -		streamAdd = cs.inflow.add(n) -	} -	cc.mu.Unlock() - -	if connAdd != 0 || streamAdd != 0 { -		cc.wmu.Lock() -		defer cc.wmu.Unlock() -		if connAdd != 0 { -			cc.fr.WriteWindowUpdate(0, mustUint31(connAdd)) -		} -		if streamAdd != 0 { -			cc.fr.WriteWindowUpdate(cs.ID, mustUint31(streamAdd)) -		} -		cc.bw.Flush() -	} -	return -} - -var errClosedResponseBody = errors.New("http2: response body closed") - -func (b transportResponseBody) Close() error { -	cs := b.cs -	cc := cs.cc - -	cs.bufPipe.BreakWithError(errClosedResponseBody) -	cs.abortStream(errClosedResponseBody) - -	unread := cs.bufPipe.Len() -	if unread > 0 { -		cc.mu.Lock() -		// Return connection-level flow control. -		connAdd := cc.inflow.add(unread) -		cc.mu.Unlock() - -		// TODO(dneil): Acquiring this mutex can block indefinitely. -		// Move flow control return to a goroutine? -		cc.wmu.Lock() -		// Return connection-level flow control. -		if connAdd > 0 { -			cc.fr.WriteWindowUpdate(0, uint32(connAdd)) -		} -		cc.bw.Flush() -		cc.wmu.Unlock() -	} - -	select { -	case <-cs.donec: -	case <-cs.ctx.Done(): -		// See golang/go#49366: The net/http package can cancel the -		// request context after the response body is fully read. -		// Don't treat this as an error. -		return nil -	case <-cs.reqCancel: -		return errRequestCanceled -	} -	return nil -} - -func (rl *clientConnReadLoop) processData(f *DataFrame) error { -	cc := rl.cc -	cs := rl.streamByID(f.StreamID, headerOrDataFrame) -	data := f.Data() -	if cs == nil { -		cc.mu.Lock() -		neverSent := cc.nextStreamID -		cc.mu.Unlock() -		if f.StreamID >= neverSent { -			// We never asked for this. -			cc.logf("http2: Transport received unsolicited DATA frame; closing connection") -			return ConnectionError(ErrCodeProtocol) -		} -		// We probably did ask for this, but canceled. Just ignore it. -		// TODO: be stricter here? only silently ignore things which -		// we canceled, but not things which were closed normally -		// by the peer? Tough without accumulating too much state. - -		// But at least return their flow control: -		if f.Length > 0 { -			cc.mu.Lock() -			ok := cc.inflow.take(f.Length) -			connAdd := cc.inflow.add(int(f.Length)) -			cc.mu.Unlock() -			if !ok { -				return ConnectionError(ErrCodeFlowControl) -			} -			if connAdd > 0 { -				cc.wmu.Lock() -				cc.fr.WriteWindowUpdate(0, uint32(connAdd)) -				cc.bw.Flush() -				cc.wmu.Unlock() -			} -		} -		return nil -	} -	if cs.readClosed { -		cc.logf("protocol error: received DATA after END_STREAM") -		rl.endStreamError(cs, StreamError{ -			StreamID: f.StreamID, -			Code:     ErrCodeProtocol, -		}) -		return nil -	} -	if !cs.pastHeaders { -		cc.logf("protocol error: received DATA before a HEADERS frame") -		rl.endStreamError(cs, StreamError{ -			StreamID: f.StreamID, -			Code:     ErrCodeProtocol, -		}) -		return nil -	} -	if f.Length > 0 { -		if cs.isHead && len(data) > 0 { -			cc.logf("protocol error: received DATA on a HEAD request") -			rl.endStreamError(cs, StreamError{ -				StreamID: f.StreamID, -				Code:     ErrCodeProtocol, -			}) -			return nil -		} -		// Check connection-level flow control. -		cc.mu.Lock() -		if !takeInflows(&cc.inflow, &cs.inflow, f.Length) { -			cc.mu.Unlock() -			return ConnectionError(ErrCodeFlowControl) -		} -		// Return any padded flow control now, since we won't -		// refund it later on body reads. -		var refund int -		if pad := int(f.Length) - len(data); pad > 0 { -			refund += pad -		} - -		didReset := false -		var err error -		if len(data) > 0 { -			if _, err = cs.bufPipe.Write(data); err != nil { -				// Return len(data) now if the stream is already closed, -				// since data will never be read. -				didReset = true -				refund += len(data) -			} -		} - -		sendConn := cc.inflow.add(refund) -		var sendStream int32 -		if !didReset { -			sendStream = cs.inflow.add(refund) -		} -		cc.mu.Unlock() - -		if sendConn > 0 || sendStream > 0 { -			cc.wmu.Lock() -			if sendConn > 0 { -				cc.fr.WriteWindowUpdate(0, uint32(sendConn)) -			} -			if sendStream > 0 { -				cc.fr.WriteWindowUpdate(cs.ID, uint32(sendStream)) -			} -			cc.bw.Flush() -			cc.wmu.Unlock() -		} - -		if err != nil { -			rl.endStreamError(cs, err) -			return nil -		} -	} - -	if f.StreamEnded() { -		rl.endStream(cs) -	} -	return nil -} - -func (rl *clientConnReadLoop) endStream(cs *clientStream) { -	// TODO: check that any declared content-length matches, like -	// server.go's (*stream).endStream method. -	if !cs.readClosed { -		cs.readClosed = true -		// Close cs.bufPipe and cs.peerClosed with cc.mu held to avoid a -		// race condition: The caller can read io.EOF from Response.Body -		// and close the body before we close cs.peerClosed, causing -		// cleanupWriteRequest to send a RST_STREAM. -		rl.cc.mu.Lock() -		defer rl.cc.mu.Unlock() -		cs.bufPipe.closeWithErrorAndCode(io.EOF, cs.copyTrailers) -		close(cs.peerClosed) -	} -} - -func (rl *clientConnReadLoop) endStreamError(cs *clientStream, err error) { -	cs.readAborted = true -	cs.abortStream(err) -} - -// Constants passed to streamByID for documentation purposes. -const ( -	headerOrDataFrame    = true -	notHeaderOrDataFrame = false -) - -// streamByID returns the stream with the given id, or nil if no stream has that id. -// If headerOrData is true, it clears rst.StreamPingsBlocked. -func (rl *clientConnReadLoop) streamByID(id uint32, headerOrData bool) *clientStream { -	rl.cc.mu.Lock() -	defer rl.cc.mu.Unlock() -	if headerOrData { -		// Work around an unfortunate gRPC behavior. -		// See comment on ClientConn.rstStreamPingsBlocked for details. -		rl.cc.rstStreamPingsBlocked = false -	} -	cs := rl.cc.streams[id] -	if cs != nil && !cs.readAborted { -		return cs -	} -	return nil -} - -func (cs *clientStream) copyTrailers() { -	for k, vv := range cs.trailer { -		t := cs.resTrailer -		if *t == nil { -			*t = make(http.Header) -		} -		(*t)[k] = vv -	} -} - -func (rl *clientConnReadLoop) processGoAway(f *GoAwayFrame) error { -	cc := rl.cc -	cc.t.connPool().MarkDead(cc) -	if f.ErrCode != 0 { -		// TODO: deal with GOAWAY more. particularly the error code -		cc.vlogf("transport got GOAWAY with error code = %v", f.ErrCode) -		if fn := cc.t.CountError; fn != nil { -			fn("recv_goaway_" + f.ErrCode.stringToken()) -		} -	} -	cc.setGoAway(f) -	return nil -} - -func (rl *clientConnReadLoop) processSettings(f *SettingsFrame) error { -	cc := rl.cc -	// Locking both mu and wmu here allows frame encoding to read settings with only wmu held. -	// Acquiring wmu when f.IsAck() is unnecessary, but convenient and mostly harmless. -	cc.wmu.Lock() -	defer cc.wmu.Unlock() - -	if err := rl.processSettingsNoWrite(f); err != nil { -		return err -	} -	if !f.IsAck() { -		cc.fr.WriteSettingsAck() -		cc.bw.Flush() -	} -	return nil -} - -func (rl *clientConnReadLoop) processSettingsNoWrite(f *SettingsFrame) error { -	cc := rl.cc -	cc.mu.Lock() -	defer cc.mu.Unlock() - -	if f.IsAck() { -		if cc.wantSettingsAck { -			cc.wantSettingsAck = false -			return nil -		} -		return ConnectionError(ErrCodeProtocol) -	} - -	var seenMaxConcurrentStreams bool -	err := f.ForeachSetting(func(s Setting) error { -		switch s.ID { -		case SettingMaxFrameSize: -			cc.maxFrameSize = s.Val -		case SettingMaxConcurrentStreams: -			cc.maxConcurrentStreams = s.Val -			seenMaxConcurrentStreams = true -		case SettingMaxHeaderListSize: -			cc.peerMaxHeaderListSize = uint64(s.Val) -		case SettingInitialWindowSize: -			// Values above the maximum flow-control -			// window size of 2^31-1 MUST be treated as a -			// connection error (Section 5.4.1) of type -			// FLOW_CONTROL_ERROR. -			if s.Val > math.MaxInt32 { -				return ConnectionError(ErrCodeFlowControl) -			} - -			// Adjust flow control of currently-open -			// frames by the difference of the old initial -			// window size and this one. -			delta := int32(s.Val) - int32(cc.initialWindowSize) -			for _, cs := range cc.streams { -				cs.flow.add(delta) -			} -			cc.cond.Broadcast() - -			cc.initialWindowSize = s.Val -		case SettingHeaderTableSize: -			cc.henc.SetMaxDynamicTableSize(s.Val) -			cc.peerMaxHeaderTableSize = s.Val -		case SettingEnableConnectProtocol: -			if err := s.Valid(); err != nil { -				return err -			} -			// If the peer wants to send us SETTINGS_ENABLE_CONNECT_PROTOCOL, -			// we require that it do so in the first SETTINGS frame. -			// -			// When we attempt to use extended CONNECT, we wait for the first -			// SETTINGS frame to see if the server supports it. If we let the -			// server enable the feature with a later SETTINGS frame, then -			// users will see inconsistent results depending on whether we've -			// seen that frame or not. -			if !cc.seenSettings { -				cc.extendedConnectAllowed = s.Val == 1 -			} -		default: -			cc.vlogf("Unhandled Setting: %v", s) -		} -		return nil -	}) -	if err != nil { -		return err -	} - -	if !cc.seenSettings { -		if !seenMaxConcurrentStreams { -			// This was the servers initial SETTINGS frame and it -			// didn't contain a MAX_CONCURRENT_STREAMS field so -			// increase the number of concurrent streams this -			// connection can establish to our default. -			cc.maxConcurrentStreams = defaultMaxConcurrentStreams -		} -		close(cc.seenSettingsChan) -		cc.seenSettings = true -	} - -	return nil -} - -func (rl *clientConnReadLoop) processWindowUpdate(f *WindowUpdateFrame) error { -	cc := rl.cc -	cs := rl.streamByID(f.StreamID, notHeaderOrDataFrame) -	if f.StreamID != 0 && cs == nil { -		return nil -	} - -	cc.mu.Lock() -	defer cc.mu.Unlock() - -	fl := &cc.flow -	if cs != nil { -		fl = &cs.flow -	} -	if !fl.add(int32(f.Increment)) { -		// For stream, the sender sends RST_STREAM with an error code of FLOW_CONTROL_ERROR -		if cs != nil { -			rl.endStreamError(cs, StreamError{ -				StreamID: f.StreamID, -				Code:     ErrCodeFlowControl, -			}) -			return nil -		} - -		return ConnectionError(ErrCodeFlowControl) -	} -	cc.cond.Broadcast() -	return nil -} - -func (rl *clientConnReadLoop) processResetStream(f *RSTStreamFrame) error { -	cs := rl.streamByID(f.StreamID, notHeaderOrDataFrame) -	if cs == nil { -		// TODO: return error if server tries to RST_STREAM an idle stream -		return nil -	} -	serr := streamError(cs.ID, f.ErrCode) -	serr.Cause = errFromPeer -	if f.ErrCode == ErrCodeProtocol { -		rl.cc.SetDoNotReuse() -	} -	if fn := cs.cc.t.CountError; fn != nil { -		fn("recv_rststream_" + f.ErrCode.stringToken()) -	} -	cs.abortStream(serr) - -	cs.bufPipe.CloseWithError(serr) -	return nil -} - -// Ping sends a PING frame to the server and waits for the ack. -func (cc *ClientConn) Ping(ctx context.Context) error { -	c := make(chan struct{}) -	// Generate a random payload -	var p [8]byte -	for { -		if _, err := rand.Read(p[:]); err != nil { -			return err -		} -		cc.mu.Lock() -		// check for dup before insert -		if _, found := cc.pings[p]; !found { -			cc.pings[p] = c -			cc.mu.Unlock() -			break -		} -		cc.mu.Unlock() -	} -	var pingError error -	errc := make(chan struct{}) -	go func() { -		cc.t.markNewGoroutine() -		cc.wmu.Lock() -		defer cc.wmu.Unlock() -		if pingError = cc.fr.WritePing(false, p); pingError != nil { -			close(errc) -			return -		} -		if pingError = cc.bw.Flush(); pingError != nil { -			close(errc) -			return -		} -	}() -	select { -	case <-c: -		return nil -	case <-errc: -		return pingError -	case <-ctx.Done(): -		return ctx.Err() -	case <-cc.readerDone: -		// connection closed -		return cc.readerErr -	} -} - -func (rl *clientConnReadLoop) processPing(f *PingFrame) error { -	if f.IsAck() { -		cc := rl.cc -		cc.mu.Lock() -		defer cc.mu.Unlock() -		// If ack, notify listener if any -		if c, ok := cc.pings[f.Data]; ok { -			close(c) -			delete(cc.pings, f.Data) -		} -		if cc.pendingResets > 0 { -			// See clientStream.cleanupWriteRequest. -			cc.pendingResets = 0 -			cc.rstStreamPingsBlocked = true -			cc.cond.Broadcast() -		} -		return nil -	} -	cc := rl.cc -	cc.wmu.Lock() -	defer cc.wmu.Unlock() -	if err := cc.fr.WritePing(true, f.Data); err != nil { -		return err -	} -	return cc.bw.Flush() -} - -func (rl *clientConnReadLoop) processPushPromise(f *PushPromiseFrame) error { -	// We told the peer we don't want them. -	// Spec says: -	// "PUSH_PROMISE MUST NOT be sent if the SETTINGS_ENABLE_PUSH -	// setting of the peer endpoint is set to 0. An endpoint that -	// has set this setting and has received acknowledgement MUST -	// treat the receipt of a PUSH_PROMISE frame as a connection -	// error (Section 5.4.1) of type PROTOCOL_ERROR." -	return ConnectionError(ErrCodeProtocol) -} - -// writeStreamReset sends a RST_STREAM frame. -// When ping is true, it also sends a PING frame with a random payload. -func (cc *ClientConn) writeStreamReset(streamID uint32, code ErrCode, ping bool, err error) { -	// TODO: map err to more interesting error codes, once the -	// HTTP community comes up with some. But currently for -	// RST_STREAM there's no equivalent to GOAWAY frame's debug -	// data, and the error codes are all pretty vague ("cancel"). -	cc.wmu.Lock() -	cc.fr.WriteRSTStream(streamID, code) -	if ping { -		var payload [8]byte -		rand.Read(payload[:]) -		cc.fr.WritePing(false, payload) -	} -	cc.bw.Flush() -	cc.wmu.Unlock() -} - -var ( -	errResponseHeaderListSize = errors.New("http2: response header list larger than advertised limit") -	errRequestHeaderListSize  = httpcommon.ErrRequestHeaderListSize -) - -func (cc *ClientConn) logf(format string, args ...interface{}) { -	cc.t.logf(format, args...) -} - -func (cc *ClientConn) vlogf(format string, args ...interface{}) { -	cc.t.vlogf(format, args...) -} - -func (t *Transport) vlogf(format string, args ...interface{}) { -	if VerboseLogs { -		t.logf(format, args...) -	} -} - -func (t *Transport) logf(format string, args ...interface{}) { -	log.Printf(format, args...) -} - -var noBody io.ReadCloser = noBodyReader{} - -type noBodyReader struct{} - -func (noBodyReader) Close() error             { return nil } -func (noBodyReader) Read([]byte) (int, error) { return 0, io.EOF } - -type missingBody struct{} - -func (missingBody) Close() error             { return nil } -func (missingBody) Read([]byte) (int, error) { return 0, io.ErrUnexpectedEOF } - -func strSliceContains(ss []string, s string) bool { -	for _, v := range ss { -		if v == s { -			return true -		} -	} -	return false -} - -type erringRoundTripper struct{ err error } - -func (rt erringRoundTripper) RoundTripErr() error                             { return rt.err } -func (rt erringRoundTripper) RoundTrip(*http.Request) (*http.Response, error) { return nil, rt.err } - -// gzipReader wraps a response body so it can lazily -// call gzip.NewReader on the first call to Read -type gzipReader struct { -	_    incomparable -	body io.ReadCloser // underlying Response.Body -	zr   *gzip.Reader  // lazily-initialized gzip reader -	zerr error         // sticky error -} - -func (gz *gzipReader) Read(p []byte) (n int, err error) { -	if gz.zerr != nil { -		return 0, gz.zerr -	} -	if gz.zr == nil { -		gz.zr, err = gzip.NewReader(gz.body) -		if err != nil { -			gz.zerr = err -			return 0, err -		} -	} -	return gz.zr.Read(p) -} - -func (gz *gzipReader) Close() error { -	if err := gz.body.Close(); err != nil { -		return err -	} -	gz.zerr = fs.ErrClosed -	return nil -} - -type errorReader struct{ err error } - -func (r errorReader) Read(p []byte) (int, error) { return 0, r.err } - -// isConnectionCloseRequest reports whether req should use its own -// connection for a single request and then close the connection. -func isConnectionCloseRequest(req *http.Request) bool { -	return req.Close || httpguts.HeaderValuesContainsToken(req.Header["Connection"], "close") -} - -// registerHTTPSProtocol calls Transport.RegisterProtocol but -// converting panics into errors. -func registerHTTPSProtocol(t *http.Transport, rt noDialH2RoundTripper) (err error) { -	defer func() { -		if e := recover(); e != nil { -			err = fmt.Errorf("%v", e) -		} -	}() -	t.RegisterProtocol("https", rt) -	return nil -} - -// noDialH2RoundTripper is a RoundTripper which only tries to complete the request -// if there's already has a cached connection to the host. -// (The field is exported so it can be accessed via reflect from net/http; tested -// by TestNoDialH2RoundTripperType) -type noDialH2RoundTripper struct{ *Transport } - -func (rt noDialH2RoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { -	res, err := rt.Transport.RoundTrip(req) -	if isNoCachedConnError(err) { -		return nil, http.ErrSkipAltProtocol -	} -	return res, err -} - -func (t *Transport) idleConnTimeout() time.Duration { -	// to keep things backwards compatible, we use non-zero values of -	// IdleConnTimeout, followed by using the IdleConnTimeout on the underlying -	// http1 transport, followed by 0 -	if t.IdleConnTimeout != 0 { -		return t.IdleConnTimeout -	} - -	if t.t1 != nil { -		return t.t1.IdleConnTimeout -	} - -	return 0 -} - -func traceGetConn(req *http.Request, hostPort string) { -	trace := httptrace.ContextClientTrace(req.Context()) -	if trace == nil || trace.GetConn == nil { -		return -	} -	trace.GetConn(hostPort) -} - -func traceGotConn(req *http.Request, cc *ClientConn, reused bool) { -	trace := httptrace.ContextClientTrace(req.Context()) -	if trace == nil || trace.GotConn == nil { -		return -	} -	ci := httptrace.GotConnInfo{Conn: cc.tconn} -	ci.Reused = reused -	cc.mu.Lock() -	ci.WasIdle = len(cc.streams) == 0 && reused -	if ci.WasIdle && !cc.lastActive.IsZero() { -		ci.IdleTime = cc.t.timeSince(cc.lastActive) -	} -	cc.mu.Unlock() - -	trace.GotConn(ci) -} - -func traceWroteHeaders(trace *httptrace.ClientTrace) { -	if trace != nil && trace.WroteHeaders != nil { -		trace.WroteHeaders() -	} -} - -func traceGot100Continue(trace *httptrace.ClientTrace) { -	if trace != nil && trace.Got100Continue != nil { -		trace.Got100Continue() -	} -} - -func traceWait100Continue(trace *httptrace.ClientTrace) { -	if trace != nil && trace.Wait100Continue != nil { -		trace.Wait100Continue() -	} -} - -func traceWroteRequest(trace *httptrace.ClientTrace, err error) { -	if trace != nil && trace.WroteRequest != nil { -		trace.WroteRequest(httptrace.WroteRequestInfo{Err: err}) -	} -} - -func traceFirstResponseByte(trace *httptrace.ClientTrace) { -	if trace != nil && trace.GotFirstResponseByte != nil { -		trace.GotFirstResponseByte() -	} -} - -func traceGot1xxResponseFunc(trace *httptrace.ClientTrace) func(int, textproto.MIMEHeader) error { -	if trace != nil { -		return trace.Got1xxResponse -	} -	return nil -} - -// dialTLSWithContext uses tls.Dialer, added in Go 1.15, to open a TLS -// connection. -func (t *Transport) dialTLSWithContext(ctx context.Context, network, addr string, cfg *tls.Config) (*tls.Conn, error) { -	dialer := &tls.Dialer{ -		Config: cfg, -	} -	cn, err := dialer.DialContext(ctx, network, addr) -	if err != nil { -		return nil, err -	} -	tlsCn := cn.(*tls.Conn) // DialContext comment promises this will always succeed -	return tlsCn, nil -} diff --git a/vendor/golang.org/x/net/http2/unencrypted.go b/vendor/golang.org/x/net/http2/unencrypted.go deleted file mode 100644 index b2de21161..000000000 --- a/vendor/golang.org/x/net/http2/unencrypted.go +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright 2024 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. - -package http2 - -import ( -	"crypto/tls" -	"errors" -	"net" -) - -const nextProtoUnencryptedHTTP2 = "unencrypted_http2" - -// unencryptedNetConnFromTLSConn retrieves a net.Conn wrapped in a *tls.Conn. -// -// TLSNextProto functions accept a *tls.Conn. -// -// When passing an unencrypted HTTP/2 connection to a TLSNextProto function, -// we pass a *tls.Conn with an underlying net.Conn containing the unencrypted connection. -// To be extra careful about mistakes (accidentally dropping TLS encryption in a place -// where we want it), the tls.Conn contains a net.Conn with an UnencryptedNetConn method -// that returns the actual connection we want to use. -func unencryptedNetConnFromTLSConn(tc *tls.Conn) (net.Conn, error) { -	conner, ok := tc.NetConn().(interface { -		UnencryptedNetConn() net.Conn -	}) -	if !ok { -		return nil, errors.New("http2: TLS conn unexpectedly found in unencrypted handoff") -	} -	return conner.UnencryptedNetConn(), nil -} diff --git a/vendor/golang.org/x/net/http2/write.go b/vendor/golang.org/x/net/http2/write.go deleted file mode 100644 index fdb35b947..000000000 --- a/vendor/golang.org/x/net/http2/write.go +++ /dev/null @@ -1,381 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import ( -	"bytes" -	"fmt" -	"log" -	"net/http" -	"net/url" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2/hpack" -	"golang.org/x/net/internal/httpcommon" -) - -// writeFramer is implemented by any type that is used to write frames. -type writeFramer interface { -	writeFrame(writeContext) error - -	// staysWithinBuffer reports whether this writer promises that -	// it will only write less than or equal to size bytes, and it -	// won't Flush the write context. -	staysWithinBuffer(size int) bool -} - -// writeContext is the interface needed by the various frame writer -// types below. All the writeFrame methods below are scheduled via the -// frame writing scheduler (see writeScheduler in writesched.go). -// -// This interface is implemented by *serverConn. -// -// TODO: decide whether to a) use this in the client code (which didn't -// end up using this yet, because it has a simpler design, not -// currently implementing priorities), or b) delete this and -// make the server code a bit more concrete. -type writeContext interface { -	Framer() *Framer -	Flush() error -	CloseConn() error -	// HeaderEncoder returns an HPACK encoder that writes to the -	// returned buffer. -	HeaderEncoder() (*hpack.Encoder, *bytes.Buffer) -} - -// writeEndsStream reports whether w writes a frame that will transition -// the stream to a half-closed local state. This returns false for RST_STREAM, -// which closes the entire stream (not just the local half). -func writeEndsStream(w writeFramer) bool { -	switch v := w.(type) { -	case *writeData: -		return v.endStream -	case *writeResHeaders: -		return v.endStream -	case nil: -		// This can only happen if the caller reuses w after it's -		// been intentionally nil'ed out to prevent use. Keep this -		// here to catch future refactoring breaking it. -		panic("writeEndsStream called on nil writeFramer") -	} -	return false -} - -type flushFrameWriter struct{} - -func (flushFrameWriter) writeFrame(ctx writeContext) error { -	return ctx.Flush() -} - -func (flushFrameWriter) staysWithinBuffer(max int) bool { return false } - -type writeSettings []Setting - -func (s writeSettings) staysWithinBuffer(max int) bool { -	const settingSize = 6 // uint16 + uint32 -	return frameHeaderLen+settingSize*len(s) <= max - -} - -func (s writeSettings) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteSettings([]Setting(s)...) -} - -type writeGoAway struct { -	maxStreamID uint32 -	code        ErrCode -} - -func (p *writeGoAway) writeFrame(ctx writeContext) error { -	err := ctx.Framer().WriteGoAway(p.maxStreamID, p.code, nil) -	ctx.Flush() // ignore error: we're hanging up on them anyway -	return err -} - -func (*writeGoAway) staysWithinBuffer(max int) bool { return false } // flushes - -type writeData struct { -	streamID  uint32 -	p         []byte -	endStream bool -} - -func (w *writeData) String() string { -	return fmt.Sprintf("writeData(stream=%d, p=%d, endStream=%v)", w.streamID, len(w.p), w.endStream) -} - -func (w *writeData) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteData(w.streamID, w.endStream, w.p) -} - -func (w *writeData) staysWithinBuffer(max int) bool { -	return frameHeaderLen+len(w.p) <= max -} - -// handlerPanicRST is the message sent from handler goroutines when -// the handler panics. -type handlerPanicRST struct { -	StreamID uint32 -} - -func (hp handlerPanicRST) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteRSTStream(hp.StreamID, ErrCodeInternal) -} - -func (hp handlerPanicRST) staysWithinBuffer(max int) bool { return frameHeaderLen+4 <= max } - -func (se StreamError) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteRSTStream(se.StreamID, se.Code) -} - -func (se StreamError) staysWithinBuffer(max int) bool { return frameHeaderLen+4 <= max } - -type writePing struct { -	data [8]byte -} - -func (w writePing) writeFrame(ctx writeContext) error { -	return ctx.Framer().WritePing(false, w.data) -} - -func (w writePing) staysWithinBuffer(max int) bool { return frameHeaderLen+len(w.data) <= max } - -type writePingAck struct{ pf *PingFrame } - -func (w writePingAck) writeFrame(ctx writeContext) error { -	return ctx.Framer().WritePing(true, w.pf.Data) -} - -func (w writePingAck) staysWithinBuffer(max int) bool { return frameHeaderLen+len(w.pf.Data) <= max } - -type writeSettingsAck struct{} - -func (writeSettingsAck) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteSettingsAck() -} - -func (writeSettingsAck) staysWithinBuffer(max int) bool { return frameHeaderLen <= max } - -// splitHeaderBlock splits headerBlock into fragments so that each fragment fits -// in a single frame, then calls fn for each fragment. firstFrag/lastFrag are true -// for the first/last fragment, respectively. -func splitHeaderBlock(ctx writeContext, headerBlock []byte, fn func(ctx writeContext, frag []byte, firstFrag, lastFrag bool) error) error { -	// For now we're lazy and just pick the minimum MAX_FRAME_SIZE -	// that all peers must support (16KB). Later we could care -	// more and send larger frames if the peer advertised it, but -	// there's little point. Most headers are small anyway (so we -	// generally won't have CONTINUATION frames), and extra frames -	// only waste 9 bytes anyway. -	const maxFrameSize = 16384 - -	first := true -	for len(headerBlock) > 0 { -		frag := headerBlock -		if len(frag) > maxFrameSize { -			frag = frag[:maxFrameSize] -		} -		headerBlock = headerBlock[len(frag):] -		if err := fn(ctx, frag, first, len(headerBlock) == 0); err != nil { -			return err -		} -		first = false -	} -	return nil -} - -// writeResHeaders is a request to write a HEADERS and 0+ CONTINUATION frames -// for HTTP response headers or trailers from a server handler. -type writeResHeaders struct { -	streamID    uint32 -	httpResCode int         // 0 means no ":status" line -	h           http.Header // may be nil -	trailers    []string    // if non-nil, which keys of h to write. nil means all. -	endStream   bool - -	date          string -	contentType   string -	contentLength string -} - -func encKV(enc *hpack.Encoder, k, v string) { -	if VerboseLogs { -		log.Printf("http2: server encoding header %q = %q", k, v) -	} -	enc.WriteField(hpack.HeaderField{Name: k, Value: v}) -} - -func (w *writeResHeaders) staysWithinBuffer(max int) bool { -	// TODO: this is a common one. It'd be nice to return true -	// here and get into the fast path if we could be clever and -	// calculate the size fast enough, or at least a conservative -	// upper bound that usually fires. (Maybe if w.h and -	// w.trailers are nil, so we don't need to enumerate it.) -	// Otherwise I'm afraid that just calculating the length to -	// answer this question would be slower than the ~2µs benefit. -	return false -} - -func (w *writeResHeaders) writeFrame(ctx writeContext) error { -	enc, buf := ctx.HeaderEncoder() -	buf.Reset() - -	if w.httpResCode != 0 { -		encKV(enc, ":status", httpCodeString(w.httpResCode)) -	} - -	encodeHeaders(enc, w.h, w.trailers) - -	if w.contentType != "" { -		encKV(enc, "content-type", w.contentType) -	} -	if w.contentLength != "" { -		encKV(enc, "content-length", w.contentLength) -	} -	if w.date != "" { -		encKV(enc, "date", w.date) -	} - -	headerBlock := buf.Bytes() -	if len(headerBlock) == 0 && w.trailers == nil { -		panic("unexpected empty hpack") -	} - -	return splitHeaderBlock(ctx, headerBlock, w.writeHeaderBlock) -} - -func (w *writeResHeaders) writeHeaderBlock(ctx writeContext, frag []byte, firstFrag, lastFrag bool) error { -	if firstFrag { -		return ctx.Framer().WriteHeaders(HeadersFrameParam{ -			StreamID:      w.streamID, -			BlockFragment: frag, -			EndStream:     w.endStream, -			EndHeaders:    lastFrag, -		}) -	} else { -		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag) -	} -} - -// writePushPromise is a request to write a PUSH_PROMISE and 0+ CONTINUATION frames. -type writePushPromise struct { -	streamID uint32   // pusher stream -	method   string   // for :method -	url      *url.URL // for :scheme, :authority, :path -	h        http.Header - -	// Creates an ID for a pushed stream. This runs on serveG just before -	// the frame is written. The returned ID is copied to promisedID. -	allocatePromisedID func() (uint32, error) -	promisedID         uint32 -} - -func (w *writePushPromise) staysWithinBuffer(max int) bool { -	// TODO: see writeResHeaders.staysWithinBuffer -	return false -} - -func (w *writePushPromise) writeFrame(ctx writeContext) error { -	enc, buf := ctx.HeaderEncoder() -	buf.Reset() - -	encKV(enc, ":method", w.method) -	encKV(enc, ":scheme", w.url.Scheme) -	encKV(enc, ":authority", w.url.Host) -	encKV(enc, ":path", w.url.RequestURI()) -	encodeHeaders(enc, w.h, nil) - -	headerBlock := buf.Bytes() -	if len(headerBlock) == 0 { -		panic("unexpected empty hpack") -	} - -	return splitHeaderBlock(ctx, headerBlock, w.writeHeaderBlock) -} - -func (w *writePushPromise) writeHeaderBlock(ctx writeContext, frag []byte, firstFrag, lastFrag bool) error { -	if firstFrag { -		return ctx.Framer().WritePushPromise(PushPromiseParam{ -			StreamID:      w.streamID, -			PromiseID:     w.promisedID, -			BlockFragment: frag, -			EndHeaders:    lastFrag, -		}) -	} else { -		return ctx.Framer().WriteContinuation(w.streamID, lastFrag, frag) -	} -} - -type write100ContinueHeadersFrame struct { -	streamID uint32 -} - -func (w write100ContinueHeadersFrame) writeFrame(ctx writeContext) error { -	enc, buf := ctx.HeaderEncoder() -	buf.Reset() -	encKV(enc, ":status", "100") -	return ctx.Framer().WriteHeaders(HeadersFrameParam{ -		StreamID:      w.streamID, -		BlockFragment: buf.Bytes(), -		EndStream:     false, -		EndHeaders:    true, -	}) -} - -func (w write100ContinueHeadersFrame) staysWithinBuffer(max int) bool { -	// Sloppy but conservative: -	return 9+2*(len(":status")+len("100")) <= max -} - -type writeWindowUpdate struct { -	streamID uint32 // or 0 for conn-level -	n        uint32 -} - -func (wu writeWindowUpdate) staysWithinBuffer(max int) bool { return frameHeaderLen+4 <= max } - -func (wu writeWindowUpdate) writeFrame(ctx writeContext) error { -	return ctx.Framer().WriteWindowUpdate(wu.streamID, wu.n) -} - -// encodeHeaders encodes an http.Header. If keys is not nil, then (k, h[k]) -// is encoded only if k is in keys. -func encodeHeaders(enc *hpack.Encoder, h http.Header, keys []string) { -	if keys == nil { -		sorter := sorterPool.Get().(*sorter) -		// Using defer here, since the returned keys from the -		// sorter.Keys method is only valid until the sorter -		// is returned: -		defer sorterPool.Put(sorter) -		keys = sorter.Keys(h) -	} -	for _, k := range keys { -		vv := h[k] -		k, ascii := httpcommon.LowerHeader(k) -		if !ascii { -			// Skip writing invalid headers. Per RFC 7540, Section 8.1.2, header -			// field names have to be ASCII characters (just as in HTTP/1.x). -			continue -		} -		if !validWireHeaderFieldName(k) { -			// Skip it as backup paranoia. Per -			// golang.org/issue/14048, these should -			// already be rejected at a higher level. -			continue -		} -		isTE := k == "transfer-encoding" -		for _, v := range vv { -			if !httpguts.ValidHeaderFieldValue(v) { -				// TODO: return an error? golang.org/issue/14048 -				// For now just omit it. -				continue -			} -			// TODO: more of "8.1.2.2 Connection-Specific Header Fields" -			if isTE && v != "trailers" { -				continue -			} -			encKV(enc, k, v) -		} -	} -} diff --git a/vendor/golang.org/x/net/http2/writesched.go b/vendor/golang.org/x/net/http2/writesched.go deleted file mode 100644 index cc893adc2..000000000 --- a/vendor/golang.org/x/net/http2/writesched.go +++ /dev/null @@ -1,251 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import "fmt" - -// WriteScheduler is the interface implemented by HTTP/2 write schedulers. -// Methods are never called concurrently. -type WriteScheduler interface { -	// OpenStream opens a new stream in the write scheduler. -	// It is illegal to call this with streamID=0 or with a streamID that is -	// already open -- the call may panic. -	OpenStream(streamID uint32, options OpenStreamOptions) - -	// CloseStream closes a stream in the write scheduler. Any frames queued on -	// this stream should be discarded. It is illegal to call this on a stream -	// that is not open -- the call may panic. -	CloseStream(streamID uint32) - -	// AdjustStream adjusts the priority of the given stream. This may be called -	// on a stream that has not yet been opened or has been closed. Note that -	// RFC 7540 allows PRIORITY frames to be sent on streams in any state. See: -	// https://tools.ietf.org/html/rfc7540#section-5.1 -	AdjustStream(streamID uint32, priority PriorityParam) - -	// Push queues a frame in the scheduler. In most cases, this will not be -	// called with wr.StreamID()!=0 unless that stream is currently open. The one -	// exception is RST_STREAM frames, which may be sent on idle or closed streams. -	Push(wr FrameWriteRequest) - -	// Pop dequeues the next frame to write. Returns false if no frames can -	// be written. Frames with a given wr.StreamID() are Pop'd in the same -	// order they are Push'd, except RST_STREAM frames. No frames should be -	// discarded except by CloseStream. -	Pop() (wr FrameWriteRequest, ok bool) -} - -// OpenStreamOptions specifies extra options for WriteScheduler.OpenStream. -type OpenStreamOptions struct { -	// PusherID is zero if the stream was initiated by the client. Otherwise, -	// PusherID names the stream that pushed the newly opened stream. -	PusherID uint32 -} - -// FrameWriteRequest is a request to write a frame. -type FrameWriteRequest struct { -	// write is the interface value that does the writing, once the -	// WriteScheduler has selected this frame to write. The write -	// functions are all defined in write.go. -	write writeFramer - -	// stream is the stream on which this frame will be written. -	// nil for non-stream frames like PING and SETTINGS. -	// nil for RST_STREAM streams, which use the StreamError.StreamID field instead. -	stream *stream - -	// done, if non-nil, must be a buffered channel with space for -	// 1 message and is sent the return value from write (or an -	// earlier error) when the frame has been written. -	done chan error -} - -// StreamID returns the id of the stream this frame will be written to. -// 0 is used for non-stream frames such as PING and SETTINGS. -func (wr FrameWriteRequest) StreamID() uint32 { -	if wr.stream == nil { -		if se, ok := wr.write.(StreamError); ok { -			// (*serverConn).resetStream doesn't set -			// stream because it doesn't necessarily have -			// one. So special case this type of write -			// message. -			return se.StreamID -		} -		return 0 -	} -	return wr.stream.id -} - -// isControl reports whether wr is a control frame for MaxQueuedControlFrames -// purposes. That includes non-stream frames and RST_STREAM frames. -func (wr FrameWriteRequest) isControl() bool { -	return wr.stream == nil -} - -// DataSize returns the number of flow control bytes that must be consumed -// to write this entire frame. This is 0 for non-DATA frames. -func (wr FrameWriteRequest) DataSize() int { -	if wd, ok := wr.write.(*writeData); ok { -		return len(wd.p) -	} -	return 0 -} - -// Consume consumes min(n, available) bytes from this frame, where available -// is the number of flow control bytes available on the stream. Consume returns -// 0, 1, or 2 frames, where the integer return value gives the number of frames -// returned. -// -// If flow control prevents consuming any bytes, this returns (_, _, 0). If -// the entire frame was consumed, this returns (wr, _, 1). Otherwise, this -// returns (consumed, rest, 2), where 'consumed' contains the consumed bytes and -// 'rest' contains the remaining bytes. The consumed bytes are deducted from the -// underlying stream's flow control budget. -func (wr FrameWriteRequest) Consume(n int32) (FrameWriteRequest, FrameWriteRequest, int) { -	var empty FrameWriteRequest - -	// Non-DATA frames are always consumed whole. -	wd, ok := wr.write.(*writeData) -	if !ok || len(wd.p) == 0 { -		return wr, empty, 1 -	} - -	// Might need to split after applying limits. -	allowed := wr.stream.flow.available() -	if n < allowed { -		allowed = n -	} -	if wr.stream.sc.maxFrameSize < allowed { -		allowed = wr.stream.sc.maxFrameSize -	} -	if allowed <= 0 { -		return empty, empty, 0 -	} -	if len(wd.p) > int(allowed) { -		wr.stream.flow.take(allowed) -		consumed := FrameWriteRequest{ -			stream: wr.stream, -			write: &writeData{ -				streamID: wd.streamID, -				p:        wd.p[:allowed], -				// Even if the original had endStream set, there -				// are bytes remaining because len(wd.p) > allowed, -				// so we know endStream is false. -				endStream: false, -			}, -			// Our caller is blocking on the final DATA frame, not -			// this intermediate frame, so no need to wait. -			done: nil, -		} -		rest := FrameWriteRequest{ -			stream: wr.stream, -			write: &writeData{ -				streamID:  wd.streamID, -				p:         wd.p[allowed:], -				endStream: wd.endStream, -			}, -			done: wr.done, -		} -		return consumed, rest, 2 -	} - -	// The frame is consumed whole. -	// NB: This cast cannot overflow because allowed is <= math.MaxInt32. -	wr.stream.flow.take(int32(len(wd.p))) -	return wr, empty, 1 -} - -// String is for debugging only. -func (wr FrameWriteRequest) String() string { -	var des string -	if s, ok := wr.write.(fmt.Stringer); ok { -		des = s.String() -	} else { -		des = fmt.Sprintf("%T", wr.write) -	} -	return fmt.Sprintf("[FrameWriteRequest stream=%d, ch=%v, writer=%v]", wr.StreamID(), wr.done != nil, des) -} - -// replyToWriter sends err to wr.done and panics if the send must block -// This does nothing if wr.done is nil. -func (wr *FrameWriteRequest) replyToWriter(err error) { -	if wr.done == nil { -		return -	} -	select { -	case wr.done <- err: -	default: -		panic(fmt.Sprintf("unbuffered done channel passed in for type %T", wr.write)) -	} -	wr.write = nil // prevent use (assume it's tainted after wr.done send) -} - -// writeQueue is used by implementations of WriteScheduler. -type writeQueue struct { -	s          []FrameWriteRequest -	prev, next *writeQueue -} - -func (q *writeQueue) empty() bool { return len(q.s) == 0 } - -func (q *writeQueue) push(wr FrameWriteRequest) { -	q.s = append(q.s, wr) -} - -func (q *writeQueue) shift() FrameWriteRequest { -	if len(q.s) == 0 { -		panic("invalid use of queue") -	} -	wr := q.s[0] -	// TODO: less copy-happy queue. -	copy(q.s, q.s[1:]) -	q.s[len(q.s)-1] = FrameWriteRequest{} -	q.s = q.s[:len(q.s)-1] -	return wr -} - -// consume consumes up to n bytes from q.s[0]. If the frame is -// entirely consumed, it is removed from the queue. If the frame -// is partially consumed, the frame is kept with the consumed -// bytes removed. Returns true iff any bytes were consumed. -func (q *writeQueue) consume(n int32) (FrameWriteRequest, bool) { -	if len(q.s) == 0 { -		return FrameWriteRequest{}, false -	} -	consumed, rest, numresult := q.s[0].Consume(n) -	switch numresult { -	case 0: -		return FrameWriteRequest{}, false -	case 1: -		q.shift() -	case 2: -		q.s[0] = rest -	} -	return consumed, true -} - -type writeQueuePool []*writeQueue - -// put inserts an unused writeQueue into the pool. -func (p *writeQueuePool) put(q *writeQueue) { -	for i := range q.s { -		q.s[i] = FrameWriteRequest{} -	} -	q.s = q.s[:0] -	*p = append(*p, q) -} - -// get returns an empty writeQueue. -func (p *writeQueuePool) get() *writeQueue { -	ln := len(*p) -	if ln == 0 { -		return new(writeQueue) -	} -	x := ln - 1 -	q := (*p)[x] -	(*p)[x] = nil -	*p = (*p)[:x] -	return q -} diff --git a/vendor/golang.org/x/net/http2/writesched_priority.go b/vendor/golang.org/x/net/http2/writesched_priority.go deleted file mode 100644 index f6783339d..000000000 --- a/vendor/golang.org/x/net/http2/writesched_priority.go +++ /dev/null @@ -1,451 +0,0 @@ -// Copyright 2016 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. - -package http2 - -import ( -	"fmt" -	"math" -	"sort" -) - -// RFC 7540, Section 5.3.5: the default weight is 16. -const priorityDefaultWeight = 15 // 16 = 15 + 1 - -// PriorityWriteSchedulerConfig configures a priorityWriteScheduler. -type PriorityWriteSchedulerConfig struct { -	// MaxClosedNodesInTree controls the maximum number of closed streams to -	// retain in the priority tree. Setting this to zero saves a small amount -	// of memory at the cost of performance. -	// -	// See RFC 7540, Section 5.3.4: -	//   "It is possible for a stream to become closed while prioritization -	//   information ... is in transit. ... This potentially creates suboptimal -	//   prioritization, since the stream could be given a priority that is -	//   different from what is intended. To avoid these problems, an endpoint -	//   SHOULD retain stream prioritization state for a period after streams -	//   become closed. The longer state is retained, the lower the chance that -	//   streams are assigned incorrect or default priority values." -	MaxClosedNodesInTree int - -	// MaxIdleNodesInTree controls the maximum number of idle streams to -	// retain in the priority tree. Setting this to zero saves a small amount -	// of memory at the cost of performance. -	// -	// See RFC 7540, Section 5.3.4: -	//   Similarly, streams that are in the "idle" state can be assigned -	//   priority or become a parent of other streams. This allows for the -	//   creation of a grouping node in the dependency tree, which enables -	//   more flexible expressions of priority. Idle streams begin with a -	//   default priority (Section 5.3.5). -	MaxIdleNodesInTree int - -	// ThrottleOutOfOrderWrites enables write throttling to help ensure that -	// data is delivered in priority order. This works around a race where -	// stream B depends on stream A and both streams are about to call Write -	// to queue DATA frames. If B wins the race, a naive scheduler would eagerly -	// write as much data from B as possible, but this is suboptimal because A -	// is a higher-priority stream. With throttling enabled, we write a small -	// amount of data from B to minimize the amount of bandwidth that B can -	// steal from A. -	ThrottleOutOfOrderWrites bool -} - -// NewPriorityWriteScheduler constructs a WriteScheduler that schedules -// frames by following HTTP/2 priorities as described in RFC 7540 Section 5.3. -// If cfg is nil, default options are used. -func NewPriorityWriteScheduler(cfg *PriorityWriteSchedulerConfig) WriteScheduler { -	if cfg == nil { -		// For justification of these defaults, see: -		// https://docs.google.com/document/d/1oLhNg1skaWD4_DtaoCxdSRN5erEXrH-KnLrMwEpOtFY -		cfg = &PriorityWriteSchedulerConfig{ -			MaxClosedNodesInTree:     10, -			MaxIdleNodesInTree:       10, -			ThrottleOutOfOrderWrites: false, -		} -	} - -	ws := &priorityWriteScheduler{ -		nodes:                make(map[uint32]*priorityNode), -		maxClosedNodesInTree: cfg.MaxClosedNodesInTree, -		maxIdleNodesInTree:   cfg.MaxIdleNodesInTree, -		enableWriteThrottle:  cfg.ThrottleOutOfOrderWrites, -	} -	ws.nodes[0] = &ws.root -	if cfg.ThrottleOutOfOrderWrites { -		ws.writeThrottleLimit = 1024 -	} else { -		ws.writeThrottleLimit = math.MaxInt32 -	} -	return ws -} - -type priorityNodeState int - -const ( -	priorityNodeOpen priorityNodeState = iota -	priorityNodeClosed -	priorityNodeIdle -) - -// priorityNode is a node in an HTTP/2 priority tree. -// Each node is associated with a single stream ID. -// See RFC 7540, Section 5.3. -type priorityNode struct { -	q            writeQueue        // queue of pending frames to write -	id           uint32            // id of the stream, or 0 for the root of the tree -	weight       uint8             // the actual weight is weight+1, so the value is in [1,256] -	state        priorityNodeState // open | closed | idle -	bytes        int64             // number of bytes written by this node, or 0 if closed -	subtreeBytes int64             // sum(node.bytes) of all nodes in this subtree - -	// These links form the priority tree. -	parent     *priorityNode -	kids       *priorityNode // start of the kids list -	prev, next *priorityNode // doubly-linked list of siblings -} - -func (n *priorityNode) setParent(parent *priorityNode) { -	if n == parent { -		panic("setParent to self") -	} -	if n.parent == parent { -		return -	} -	// Unlink from current parent. -	if parent := n.parent; parent != nil { -		if n.prev == nil { -			parent.kids = n.next -		} else { -			n.prev.next = n.next -		} -		if n.next != nil { -			n.next.prev = n.prev -		} -	} -	// Link to new parent. -	// If parent=nil, remove n from the tree. -	// Always insert at the head of parent.kids (this is assumed by walkReadyInOrder). -	n.parent = parent -	if parent == nil { -		n.next = nil -		n.prev = nil -	} else { -		n.next = parent.kids -		n.prev = nil -		if n.next != nil { -			n.next.prev = n -		} -		parent.kids = n -	} -} - -func (n *priorityNode) addBytes(b int64) { -	n.bytes += b -	for ; n != nil; n = n.parent { -		n.subtreeBytes += b -	} -} - -// walkReadyInOrder iterates over the tree in priority order, calling f for each node -// with a non-empty write queue. When f returns true, this function returns true and the -// walk halts. tmp is used as scratch space for sorting. -// -// f(n, openParent) takes two arguments: the node to visit, n, and a bool that is true -// if any ancestor p of n is still open (ignoring the root node). -func (n *priorityNode) walkReadyInOrder(openParent bool, tmp *[]*priorityNode, f func(*priorityNode, bool) bool) bool { -	if !n.q.empty() && f(n, openParent) { -		return true -	} -	if n.kids == nil { -		return false -	} - -	// Don't consider the root "open" when updating openParent since -	// we can't send data frames on the root stream (only control frames). -	if n.id != 0 { -		openParent = openParent || (n.state == priorityNodeOpen) -	} - -	// Common case: only one kid or all kids have the same weight. -	// Some clients don't use weights; other clients (like web browsers) -	// use mostly-linear priority trees. -	w := n.kids.weight -	needSort := false -	for k := n.kids.next; k != nil; k = k.next { -		if k.weight != w { -			needSort = true -			break -		} -	} -	if !needSort { -		for k := n.kids; k != nil; k = k.next { -			if k.walkReadyInOrder(openParent, tmp, f) { -				return true -			} -		} -		return false -	} - -	// Uncommon case: sort the child nodes. We remove the kids from the parent, -	// then re-insert after sorting so we can reuse tmp for future sort calls. -	*tmp = (*tmp)[:0] -	for n.kids != nil { -		*tmp = append(*tmp, n.kids) -		n.kids.setParent(nil) -	} -	sort.Sort(sortPriorityNodeSiblings(*tmp)) -	for i := len(*tmp) - 1; i >= 0; i-- { -		(*tmp)[i].setParent(n) // setParent inserts at the head of n.kids -	} -	for k := n.kids; k != nil; k = k.next { -		if k.walkReadyInOrder(openParent, tmp, f) { -			return true -		} -	} -	return false -} - -type sortPriorityNodeSiblings []*priorityNode - -func (z sortPriorityNodeSiblings) Len() int      { return len(z) } -func (z sortPriorityNodeSiblings) Swap(i, k int) { z[i], z[k] = z[k], z[i] } -func (z sortPriorityNodeSiblings) Less(i, k int) bool { -	// Prefer the subtree that has sent fewer bytes relative to its weight. -	// See sections 5.3.2 and 5.3.4. -	wi, bi := float64(z[i].weight+1), float64(z[i].subtreeBytes) -	wk, bk := float64(z[k].weight+1), float64(z[k].subtreeBytes) -	if bi == 0 && bk == 0 { -		return wi >= wk -	} -	if bk == 0 { -		return false -	} -	return bi/bk <= wi/wk -} - -type priorityWriteScheduler struct { -	// root is the root of the priority tree, where root.id = 0. -	// The root queues control frames that are not associated with any stream. -	root priorityNode - -	// nodes maps stream ids to priority tree nodes. -	nodes map[uint32]*priorityNode - -	// maxID is the maximum stream id in nodes. -	maxID uint32 - -	// lists of nodes that have been closed or are idle, but are kept in -	// the tree for improved prioritization. When the lengths exceed either -	// maxClosedNodesInTree or maxIdleNodesInTree, old nodes are discarded. -	closedNodes, idleNodes []*priorityNode - -	// From the config. -	maxClosedNodesInTree int -	maxIdleNodesInTree   int -	writeThrottleLimit   int32 -	enableWriteThrottle  bool - -	// tmp is scratch space for priorityNode.walkReadyInOrder to reduce allocations. -	tmp []*priorityNode - -	// pool of empty queues for reuse. -	queuePool writeQueuePool -} - -func (ws *priorityWriteScheduler) OpenStream(streamID uint32, options OpenStreamOptions) { -	// The stream may be currently idle but cannot be opened or closed. -	if curr := ws.nodes[streamID]; curr != nil { -		if curr.state != priorityNodeIdle { -			panic(fmt.Sprintf("stream %d already opened", streamID)) -		} -		curr.state = priorityNodeOpen -		return -	} - -	// RFC 7540, Section 5.3.5: -	//  "All streams are initially assigned a non-exclusive dependency on stream 0x0. -	//  Pushed streams initially depend on their associated stream. In both cases, -	//  streams are assigned a default weight of 16." -	parent := ws.nodes[options.PusherID] -	if parent == nil { -		parent = &ws.root -	} -	n := &priorityNode{ -		q:      *ws.queuePool.get(), -		id:     streamID, -		weight: priorityDefaultWeight, -		state:  priorityNodeOpen, -	} -	n.setParent(parent) -	ws.nodes[streamID] = n -	if streamID > ws.maxID { -		ws.maxID = streamID -	} -} - -func (ws *priorityWriteScheduler) CloseStream(streamID uint32) { -	if streamID == 0 { -		panic("violation of WriteScheduler interface: cannot close stream 0") -	} -	if ws.nodes[streamID] == nil { -		panic(fmt.Sprintf("violation of WriteScheduler interface: unknown stream %d", streamID)) -	} -	if ws.nodes[streamID].state != priorityNodeOpen { -		panic(fmt.Sprintf("violation of WriteScheduler interface: stream %d already closed", streamID)) -	} - -	n := ws.nodes[streamID] -	n.state = priorityNodeClosed -	n.addBytes(-n.bytes) - -	q := n.q -	ws.queuePool.put(&q) -	n.q.s = nil -	if ws.maxClosedNodesInTree > 0 { -		ws.addClosedOrIdleNode(&ws.closedNodes, ws.maxClosedNodesInTree, n) -	} else { -		ws.removeNode(n) -	} -} - -func (ws *priorityWriteScheduler) AdjustStream(streamID uint32, priority PriorityParam) { -	if streamID == 0 { -		panic("adjustPriority on root") -	} - -	// If streamID does not exist, there are two cases: -	// - A closed stream that has been removed (this will have ID <= maxID) -	// - An idle stream that is being used for "grouping" (this will have ID > maxID) -	n := ws.nodes[streamID] -	if n == nil { -		if streamID <= ws.maxID || ws.maxIdleNodesInTree == 0 { -			return -		} -		ws.maxID = streamID -		n = &priorityNode{ -			q:      *ws.queuePool.get(), -			id:     streamID, -			weight: priorityDefaultWeight, -			state:  priorityNodeIdle, -		} -		n.setParent(&ws.root) -		ws.nodes[streamID] = n -		ws.addClosedOrIdleNode(&ws.idleNodes, ws.maxIdleNodesInTree, n) -	} - -	// Section 5.3.1: A dependency on a stream that is not currently in the tree -	// results in that stream being given a default priority (Section 5.3.5). -	parent := ws.nodes[priority.StreamDep] -	if parent == nil { -		n.setParent(&ws.root) -		n.weight = priorityDefaultWeight -		return -	} - -	// Ignore if the client tries to make a node its own parent. -	if n == parent { -		return -	} - -	// Section 5.3.3: -	//   "If a stream is made dependent on one of its own dependencies, the -	//   formerly dependent stream is first moved to be dependent on the -	//   reprioritized stream's previous parent. The moved dependency retains -	//   its weight." -	// -	// That is: if parent depends on n, move parent to depend on n.parent. -	for x := parent.parent; x != nil; x = x.parent { -		if x == n { -			parent.setParent(n.parent) -			break -		} -	} - -	// Section 5.3.3: The exclusive flag causes the stream to become the sole -	// dependency of its parent stream, causing other dependencies to become -	// dependent on the exclusive stream. -	if priority.Exclusive { -		k := parent.kids -		for k != nil { -			next := k.next -			if k != n { -				k.setParent(n) -			} -			k = next -		} -	} - -	n.setParent(parent) -	n.weight = priority.Weight -} - -func (ws *priorityWriteScheduler) Push(wr FrameWriteRequest) { -	var n *priorityNode -	if wr.isControl() { -		n = &ws.root -	} else { -		id := wr.StreamID() -		n = ws.nodes[id] -		if n == nil { -			// id is an idle or closed stream. wr should not be a HEADERS or -			// DATA frame. In other case, we push wr onto the root, rather -			// than creating a new priorityNode. -			if wr.DataSize() > 0 { -				panic("add DATA on non-open stream") -			} -			n = &ws.root -		} -	} -	n.q.push(wr) -} - -func (ws *priorityWriteScheduler) Pop() (wr FrameWriteRequest, ok bool) { -	ws.root.walkReadyInOrder(false, &ws.tmp, func(n *priorityNode, openParent bool) bool { -		limit := int32(math.MaxInt32) -		if openParent { -			limit = ws.writeThrottleLimit -		} -		wr, ok = n.q.consume(limit) -		if !ok { -			return false -		} -		n.addBytes(int64(wr.DataSize())) -		// If B depends on A and B continuously has data available but A -		// does not, gradually increase the throttling limit to allow B to -		// steal more and more bandwidth from A. -		if openParent { -			ws.writeThrottleLimit += 1024 -			if ws.writeThrottleLimit < 0 { -				ws.writeThrottleLimit = math.MaxInt32 -			} -		} else if ws.enableWriteThrottle { -			ws.writeThrottleLimit = 1024 -		} -		return true -	}) -	return wr, ok -} - -func (ws *priorityWriteScheduler) addClosedOrIdleNode(list *[]*priorityNode, maxSize int, n *priorityNode) { -	if maxSize == 0 { -		return -	} -	if len(*list) == maxSize { -		// Remove the oldest node, then shift left. -		ws.removeNode((*list)[0]) -		x := (*list)[1:] -		copy(*list, x) -		*list = (*list)[:len(x)] -	} -	*list = append(*list, n) -} - -func (ws *priorityWriteScheduler) removeNode(n *priorityNode) { -	for n.kids != nil { -		n.kids.setParent(n.parent) -	} -	n.setParent(nil) -	delete(ws.nodes, n.id) -} diff --git a/vendor/golang.org/x/net/http2/writesched_random.go b/vendor/golang.org/x/net/http2/writesched_random.go deleted file mode 100644 index f2e55e05c..000000000 --- a/vendor/golang.org/x/net/http2/writesched_random.go +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright 2014 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. - -package http2 - -import "math" - -// NewRandomWriteScheduler constructs a WriteScheduler that ignores HTTP/2 -// priorities. Control frames like SETTINGS and PING are written before DATA -// frames, but if no control frames are queued and multiple streams have queued -// HEADERS or DATA frames, Pop selects a ready stream arbitrarily. -func NewRandomWriteScheduler() WriteScheduler { -	return &randomWriteScheduler{sq: make(map[uint32]*writeQueue)} -} - -type randomWriteScheduler struct { -	// zero are frames not associated with a specific stream. -	zero writeQueue - -	// sq contains the stream-specific queues, keyed by stream ID. -	// When a stream is idle, closed, or emptied, it's deleted -	// from the map. -	sq map[uint32]*writeQueue - -	// pool of empty queues for reuse. -	queuePool writeQueuePool -} - -func (ws *randomWriteScheduler) OpenStream(streamID uint32, options OpenStreamOptions) { -	// no-op: idle streams are not tracked -} - -func (ws *randomWriteScheduler) CloseStream(streamID uint32) { -	q, ok := ws.sq[streamID] -	if !ok { -		return -	} -	delete(ws.sq, streamID) -	ws.queuePool.put(q) -} - -func (ws *randomWriteScheduler) AdjustStream(streamID uint32, priority PriorityParam) { -	// no-op: priorities are ignored -} - -func (ws *randomWriteScheduler) Push(wr FrameWriteRequest) { -	if wr.isControl() { -		ws.zero.push(wr) -		return -	} -	id := wr.StreamID() -	q, ok := ws.sq[id] -	if !ok { -		q = ws.queuePool.get() -		ws.sq[id] = q -	} -	q.push(wr) -} - -func (ws *randomWriteScheduler) Pop() (FrameWriteRequest, bool) { -	// Control and RST_STREAM frames first. -	if !ws.zero.empty() { -		return ws.zero.shift(), true -	} -	// Iterate over all non-idle streams until finding one that can be consumed. -	for streamID, q := range ws.sq { -		if wr, ok := q.consume(math.MaxInt32); ok { -			if q.empty() { -				delete(ws.sq, streamID) -				ws.queuePool.put(q) -			} -			return wr, true -		} -	} -	return FrameWriteRequest{}, false -} diff --git a/vendor/golang.org/x/net/http2/writesched_roundrobin.go b/vendor/golang.org/x/net/http2/writesched_roundrobin.go deleted file mode 100644 index 54fe86322..000000000 --- a/vendor/golang.org/x/net/http2/writesched_roundrobin.go +++ /dev/null @@ -1,119 +0,0 @@ -// Copyright 2023 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. - -package http2 - -import ( -	"fmt" -	"math" -) - -type roundRobinWriteScheduler struct { -	// control contains control frames (SETTINGS, PING, etc.). -	control writeQueue - -	// streams maps stream ID to a queue. -	streams map[uint32]*writeQueue - -	// stream queues are stored in a circular linked list. -	// head is the next stream to write, or nil if there are no streams open. -	head *writeQueue - -	// pool of empty queues for reuse. -	queuePool writeQueuePool -} - -// newRoundRobinWriteScheduler constructs a new write scheduler. -// The round robin scheduler priorizes control frames -// like SETTINGS and PING over DATA frames. -// When there are no control frames to send, it performs a round-robin -// selection from the ready streams. -func newRoundRobinWriteScheduler() WriteScheduler { -	ws := &roundRobinWriteScheduler{ -		streams: make(map[uint32]*writeQueue), -	} -	return ws -} - -func (ws *roundRobinWriteScheduler) OpenStream(streamID uint32, options OpenStreamOptions) { -	if ws.streams[streamID] != nil { -		panic(fmt.Errorf("stream %d already opened", streamID)) -	} -	q := ws.queuePool.get() -	ws.streams[streamID] = q -	if ws.head == nil { -		ws.head = q -		q.next = q -		q.prev = q -	} else { -		// Queues are stored in a ring. -		// Insert the new stream before ws.head, putting it at the end of the list. -		q.prev = ws.head.prev -		q.next = ws.head -		q.prev.next = q -		q.next.prev = q -	} -} - -func (ws *roundRobinWriteScheduler) CloseStream(streamID uint32) { -	q := ws.streams[streamID] -	if q == nil { -		return -	} -	if q.next == q { -		// This was the only open stream. -		ws.head = nil -	} else { -		q.prev.next = q.next -		q.next.prev = q.prev -		if ws.head == q { -			ws.head = q.next -		} -	} -	delete(ws.streams, streamID) -	ws.queuePool.put(q) -} - -func (ws *roundRobinWriteScheduler) AdjustStream(streamID uint32, priority PriorityParam) {} - -func (ws *roundRobinWriteScheduler) Push(wr FrameWriteRequest) { -	if wr.isControl() { -		ws.control.push(wr) -		return -	} -	q := ws.streams[wr.StreamID()] -	if q == nil { -		// This is a closed stream. -		// wr should not be a HEADERS or DATA frame. -		// We push the request onto the control queue. -		if wr.DataSize() > 0 { -			panic("add DATA on non-open stream") -		} -		ws.control.push(wr) -		return -	} -	q.push(wr) -} - -func (ws *roundRobinWriteScheduler) Pop() (FrameWriteRequest, bool) { -	// Control and RST_STREAM frames first. -	if !ws.control.empty() { -		return ws.control.shift(), true -	} -	if ws.head == nil { -		return FrameWriteRequest{}, false -	} -	q := ws.head -	for { -		if wr, ok := q.consume(math.MaxInt32); ok { -			ws.head = q.next -			return wr, true -		} -		q = q.next -		if q == ws.head { -			break -		} -	} -	return FrameWriteRequest{}, false -} diff --git a/vendor/golang.org/x/net/idna/go118.go b/vendor/golang.org/x/net/idna/go118.go deleted file mode 100644 index 712f1ad83..000000000 --- a/vendor/golang.org/x/net/idna/go118.go +++ /dev/null @@ -1,13 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2021 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 go1.18 - -package idna - -// Transitional processing is disabled by default in Go 1.18. -// https://golang.org/issue/47510 -const transitionalLookup = false diff --git a/vendor/golang.org/x/net/idna/idna10.0.0.go b/vendor/golang.org/x/net/idna/idna10.0.0.go deleted file mode 100644 index 7b3717884..000000000 --- a/vendor/golang.org/x/net/idna/idna10.0.0.go +++ /dev/null @@ -1,769 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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 go1.10 - -// Package idna implements IDNA2008 using the compatibility processing -// defined by UTS (Unicode Technical Standard) #46, which defines a standard to -// deal with the transition from IDNA2003. -// -// IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC -// 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894. -// UTS #46 is defined in https://www.unicode.org/reports/tr46. -// See https://unicode.org/cldr/utility/idna.jsp for a visualization of the -// differences between these two standards. -package idna // import "golang.org/x/net/idna" - -import ( -	"fmt" -	"strings" -	"unicode/utf8" - -	"golang.org/x/text/secure/bidirule" -	"golang.org/x/text/unicode/bidi" -	"golang.org/x/text/unicode/norm" -) - -// NOTE: Unlike common practice in Go APIs, the functions will return a -// sanitized domain name in case of errors. Browsers sometimes use a partially -// evaluated string as lookup. -// TODO: the current error handling is, in my opinion, the least opinionated. -// Other strategies are also viable, though: -// Option 1) Return an empty string in case of error, but allow the user to -//    specify explicitly which errors to ignore. -// Option 2) Return the partially evaluated string if it is itself a valid -//    string, otherwise return the empty string in case of error. -// Option 3) Option 1 and 2. -// Option 4) Always return an empty string for now and implement Option 1 as -//    needed, and document that the return string may not be empty in case of -//    error in the future. -// I think Option 1 is best, but it is quite opinionated. - -// ToASCII is a wrapper for Punycode.ToASCII. -func ToASCII(s string) (string, error) { -	return Punycode.process(s, true) -} - -// ToUnicode is a wrapper for Punycode.ToUnicode. -func ToUnicode(s string) (string, error) { -	return Punycode.process(s, false) -} - -// An Option configures a Profile at creation time. -type Option func(*options) - -// Transitional sets a Profile to use the Transitional mapping as defined in UTS -// #46. This will cause, for example, "ß" to be mapped to "ss". Using the -// transitional mapping provides a compromise between IDNA2003 and IDNA2008 -// compatibility. It is used by some browsers when resolving domain names. This -// option is only meaningful if combined with MapForLookup. -func Transitional(transitional bool) Option { -	return func(o *options) { o.transitional = transitional } -} - -// VerifyDNSLength sets whether a Profile should fail if any of the IDN parts -// are longer than allowed by the RFC. -// -// This option corresponds to the VerifyDnsLength flag in UTS #46. -func VerifyDNSLength(verify bool) Option { -	return func(o *options) { o.verifyDNSLength = verify } -} - -// RemoveLeadingDots removes leading label separators. Leading runes that map to -// dots, such as U+3002 IDEOGRAPHIC FULL STOP, are removed as well. -func RemoveLeadingDots(remove bool) Option { -	return func(o *options) { o.removeLeadingDots = remove } -} - -// ValidateLabels sets whether to check the mandatory label validation criteria -// as defined in Section 5.4 of RFC 5891. This includes testing for correct use -// of hyphens ('-'), normalization, validity of runes, and the context rules. -// In particular, ValidateLabels also sets the CheckHyphens and CheckJoiners flags -// in UTS #46. -func ValidateLabels(enable bool) Option { -	return func(o *options) { -		// Don't override existing mappings, but set one that at least checks -		// normalization if it is not set. -		if o.mapping == nil && enable { -			o.mapping = normalize -		} -		o.trie = trie -		o.checkJoiners = enable -		o.checkHyphens = enable -		if enable { -			o.fromPuny = validateFromPunycode -		} else { -			o.fromPuny = nil -		} -	} -} - -// CheckHyphens sets whether to check for correct use of hyphens ('-') in -// labels. Most web browsers do not have this option set, since labels such as -// "r3---sn-apo3qvuoxuxbt-j5pe" are in common use. -// -// This option corresponds to the CheckHyphens flag in UTS #46. -func CheckHyphens(enable bool) Option { -	return func(o *options) { o.checkHyphens = enable } -} - -// CheckJoiners sets whether to check the ContextJ rules as defined in Appendix -// A of RFC 5892, concerning the use of joiner runes. -// -// This option corresponds to the CheckJoiners flag in UTS #46. -func CheckJoiners(enable bool) Option { -	return func(o *options) { -		o.trie = trie -		o.checkJoiners = enable -	} -} - -// StrictDomainName limits the set of permissible ASCII characters to those -// allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the -// hyphen). This is set by default for MapForLookup and ValidateForRegistration, -// but is only useful if ValidateLabels is set. -// -// This option is useful, for instance, for browsers that allow characters -// outside this range, for example a '_' (U+005F LOW LINE). See -// http://www.rfc-editor.org/std/std3.txt for more details. -// -// This option corresponds to the UseSTD3ASCIIRules flag in UTS #46. -func StrictDomainName(use bool) Option { -	return func(o *options) { o.useSTD3Rules = use } -} - -// NOTE: the following options pull in tables. The tables should not be linked -// in as long as the options are not used. - -// BidiRule enables the Bidi rule as defined in RFC 5893. Any application -// that relies on proper validation of labels should include this rule. -// -// This option corresponds to the CheckBidi flag in UTS #46. -func BidiRule() Option { -	return func(o *options) { o.bidirule = bidirule.ValidString } -} - -// ValidateForRegistration sets validation options to verify that a given IDN is -// properly formatted for registration as defined by Section 4 of RFC 5891. -func ValidateForRegistration() Option { -	return func(o *options) { -		o.mapping = validateRegistration -		StrictDomainName(true)(o) -		ValidateLabels(true)(o) -		VerifyDNSLength(true)(o) -		BidiRule()(o) -	} -} - -// MapForLookup sets validation and mapping options such that a given IDN is -// transformed for domain name lookup according to the requirements set out in -// Section 5 of RFC 5891. The mappings follow the recommendations of RFC 5894, -// RFC 5895 and UTS 46. It does not add the Bidi Rule. Use the BidiRule option -// to add this check. -// -// The mappings include normalization and mapping case, width and other -// compatibility mappings. -func MapForLookup() Option { -	return func(o *options) { -		o.mapping = validateAndMap -		StrictDomainName(true)(o) -		ValidateLabels(true)(o) -	} -} - -type options struct { -	transitional      bool -	useSTD3Rules      bool -	checkHyphens      bool -	checkJoiners      bool -	verifyDNSLength   bool -	removeLeadingDots bool - -	trie *idnaTrie - -	// fromPuny calls validation rules when converting A-labels to U-labels. -	fromPuny func(p *Profile, s string) error - -	// mapping implements a validation and mapping step as defined in RFC 5895 -	// or UTS 46, tailored to, for example, domain registration or lookup. -	mapping func(p *Profile, s string) (mapped string, isBidi bool, err error) - -	// bidirule, if specified, checks whether s conforms to the Bidi Rule -	// defined in RFC 5893. -	bidirule func(s string) bool -} - -// A Profile defines the configuration of an IDNA mapper. -type Profile struct { -	options -} - -func apply(o *options, opts []Option) { -	for _, f := range opts { -		f(o) -	} -} - -// New creates a new Profile. -// -// With no options, the returned Profile is the most permissive and equals the -// Punycode Profile. Options can be passed to further restrict the Profile. The -// MapForLookup and ValidateForRegistration options set a collection of options, -// for lookup and registration purposes respectively, which can be tailored by -// adding more fine-grained options, where later options override earlier -// options. -func New(o ...Option) *Profile { -	p := &Profile{} -	apply(&p.options, o) -	return p -} - -// ToASCII converts a domain or domain label to its ASCII form. For example, -// ToASCII("bücher.example.com") is "xn--bcher-kva.example.com", and -// ToASCII("golang") is "golang". If an error is encountered it will return -// an error and a (partially) processed result. -func (p *Profile) ToASCII(s string) (string, error) { -	return p.process(s, true) -} - -// ToUnicode converts a domain or domain label to its Unicode form. For example, -// ToUnicode("xn--bcher-kva.example.com") is "bücher.example.com", and -// ToUnicode("golang") is "golang". If an error is encountered it will return -// an error and a (partially) processed result. -func (p *Profile) ToUnicode(s string) (string, error) { -	pp := *p -	pp.transitional = false -	return pp.process(s, false) -} - -// String reports a string with a description of the profile for debugging -// purposes. The string format may change with different versions. -func (p *Profile) String() string { -	s := "" -	if p.transitional { -		s = "Transitional" -	} else { -		s = "NonTransitional" -	} -	if p.useSTD3Rules { -		s += ":UseSTD3Rules" -	} -	if p.checkHyphens { -		s += ":CheckHyphens" -	} -	if p.checkJoiners { -		s += ":CheckJoiners" -	} -	if p.verifyDNSLength { -		s += ":VerifyDNSLength" -	} -	return s -} - -var ( -	// Punycode is a Profile that does raw punycode processing with a minimum -	// of validation. -	Punycode *Profile = punycode - -	// Lookup is the recommended profile for looking up domain names, according -	// to Section 5 of RFC 5891. The exact configuration of this profile may -	// change over time. -	Lookup *Profile = lookup - -	// Display is the recommended profile for displaying domain names. -	// The configuration of this profile may change over time. -	Display *Profile = display - -	// Registration is the recommended profile for checking whether a given -	// IDN is valid for registration, according to Section 4 of RFC 5891. -	Registration *Profile = registration - -	punycode = &Profile{} -	lookup   = &Profile{options{ -		transitional: transitionalLookup, -		useSTD3Rules: true, -		checkHyphens: true, -		checkJoiners: true, -		trie:         trie, -		fromPuny:     validateFromPunycode, -		mapping:      validateAndMap, -		bidirule:     bidirule.ValidString, -	}} -	display = &Profile{options{ -		useSTD3Rules: true, -		checkHyphens: true, -		checkJoiners: true, -		trie:         trie, -		fromPuny:     validateFromPunycode, -		mapping:      validateAndMap, -		bidirule:     bidirule.ValidString, -	}} -	registration = &Profile{options{ -		useSTD3Rules:    true, -		verifyDNSLength: true, -		checkHyphens:    true, -		checkJoiners:    true, -		trie:            trie, -		fromPuny:        validateFromPunycode, -		mapping:         validateRegistration, -		bidirule:        bidirule.ValidString, -	}} - -	// TODO: profiles -	// Register: recommended for approving domain names: don't do any mappings -	// but rather reject on invalid input. Bundle or block deviation characters. -) - -type labelError struct{ label, code_ string } - -func (e labelError) code() string { return e.code_ } -func (e labelError) Error() string { -	return fmt.Sprintf("idna: invalid label %q", e.label) -} - -type runeError rune - -func (e runeError) code() string { return "P1" } -func (e runeError) Error() string { -	return fmt.Sprintf("idna: disallowed rune %U", e) -} - -// process implements the algorithm described in section 4 of UTS #46, -// see https://www.unicode.org/reports/tr46. -func (p *Profile) process(s string, toASCII bool) (string, error) { -	var err error -	var isBidi bool -	if p.mapping != nil { -		s, isBidi, err = p.mapping(p, s) -	} -	// Remove leading empty labels. -	if p.removeLeadingDots { -		for ; len(s) > 0 && s[0] == '.'; s = s[1:] { -		} -	} -	// TODO: allow for a quick check of the tables data. -	// It seems like we should only create this error on ToASCII, but the -	// UTS 46 conformance tests suggests we should always check this. -	if err == nil && p.verifyDNSLength && s == "" { -		err = &labelError{s, "A4"} -	} -	labels := labelIter{orig: s} -	for ; !labels.done(); labels.next() { -		label := labels.label() -		if label == "" { -			// Empty labels are not okay. The label iterator skips the last -			// label if it is empty. -			if err == nil && p.verifyDNSLength { -				err = &labelError{s, "A4"} -			} -			continue -		} -		if strings.HasPrefix(label, acePrefix) { -			u, err2 := decode(label[len(acePrefix):]) -			if err2 != nil { -				if err == nil { -					err = err2 -				} -				// Spec says keep the old label. -				continue -			} -			isBidi = isBidi || bidirule.DirectionString(u) != bidi.LeftToRight -			labels.set(u) -			if err == nil && p.fromPuny != nil { -				err = p.fromPuny(p, u) -			} -			if err == nil { -				// This should be called on NonTransitional, according to the -				// spec, but that currently does not have any effect. Use the -				// original profile to preserve options. -				err = p.validateLabel(u) -			} -		} else if err == nil { -			err = p.validateLabel(label) -		} -	} -	if isBidi && p.bidirule != nil && err == nil { -		for labels.reset(); !labels.done(); labels.next() { -			if !p.bidirule(labels.label()) { -				err = &labelError{s, "B"} -				break -			} -		} -	} -	if toASCII { -		for labels.reset(); !labels.done(); labels.next() { -			label := labels.label() -			if !ascii(label) { -				a, err2 := encode(acePrefix, label) -				if err == nil { -					err = err2 -				} -				label = a -				labels.set(a) -			} -			n := len(label) -			if p.verifyDNSLength && err == nil && (n == 0 || n > 63) { -				err = &labelError{label, "A4"} -			} -		} -	} -	s = labels.result() -	if toASCII && p.verifyDNSLength && err == nil { -		// Compute the length of the domain name minus the root label and its dot. -		n := len(s) -		if n > 0 && s[n-1] == '.' { -			n-- -		} -		if len(s) < 1 || n > 253 { -			err = &labelError{s, "A4"} -		} -	} -	return s, err -} - -func normalize(p *Profile, s string) (mapped string, isBidi bool, err error) { -	// TODO: consider first doing a quick check to see if any of these checks -	// need to be done. This will make it slower in the general case, but -	// faster in the common case. -	mapped = norm.NFC.String(s) -	isBidi = bidirule.DirectionString(mapped) == bidi.RightToLeft -	return mapped, isBidi, nil -} - -func validateRegistration(p *Profile, s string) (idem string, bidi bool, err error) { -	// TODO: filter need for normalization in loop below. -	if !norm.NFC.IsNormalString(s) { -		return s, false, &labelError{s, "V1"} -	} -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		if sz == 0 { -			return s, bidi, runeError(utf8.RuneError) -		} -		bidi = bidi || info(v).isBidi(s[i:]) -		// Copy bytes not copied so far. -		switch p.simplify(info(v).category()) { -		// TODO: handle the NV8 defined in the Unicode idna data set to allow -		// for strict conformance to IDNA2008. -		case valid, deviation: -		case disallowed, mapped, unknown, ignored: -			r, _ := utf8.DecodeRuneInString(s[i:]) -			return s, bidi, runeError(r) -		} -		i += sz -	} -	return s, bidi, nil -} - -func (c info) isBidi(s string) bool { -	if !c.isMapped() { -		return c&attributesMask == rtl -	} -	// TODO: also store bidi info for mapped data. This is possible, but a bit -	// cumbersome and not for the common case. -	p, _ := bidi.LookupString(s) -	switch p.Class() { -	case bidi.R, bidi.AL, bidi.AN: -		return true -	} -	return false -} - -func validateAndMap(p *Profile, s string) (vm string, bidi bool, err error) { -	var ( -		b []byte -		k int -	) -	// combinedInfoBits contains the or-ed bits of all runes. We use this -	// to derive the mayNeedNorm bit later. This may trigger normalization -	// overeagerly, but it will not do so in the common case. The end result -	// is another 10% saving on BenchmarkProfile for the common case. -	var combinedInfoBits info -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		if sz == 0 { -			b = append(b, s[k:i]...) -			b = append(b, "\ufffd"...) -			k = len(s) -			if err == nil { -				err = runeError(utf8.RuneError) -			} -			break -		} -		combinedInfoBits |= info(v) -		bidi = bidi || info(v).isBidi(s[i:]) -		start := i -		i += sz -		// Copy bytes not copied so far. -		switch p.simplify(info(v).category()) { -		case valid: -			continue -		case disallowed: -			if err == nil { -				r, _ := utf8.DecodeRuneInString(s[start:]) -				err = runeError(r) -			} -			continue -		case mapped, deviation: -			b = append(b, s[k:start]...) -			b = info(v).appendMapping(b, s[start:i]) -		case ignored: -			b = append(b, s[k:start]...) -			// drop the rune -		case unknown: -			b = append(b, s[k:start]...) -			b = append(b, "\ufffd"...) -		} -		k = i -	} -	if k == 0 { -		// No changes so far. -		if combinedInfoBits&mayNeedNorm != 0 { -			s = norm.NFC.String(s) -		} -	} else { -		b = append(b, s[k:]...) -		if norm.NFC.QuickSpan(b) != len(b) { -			b = norm.NFC.Bytes(b) -		} -		// TODO: the punycode converters require strings as input. -		s = string(b) -	} -	return s, bidi, err -} - -// A labelIter allows iterating over domain name labels. -type labelIter struct { -	orig     string -	slice    []string -	curStart int -	curEnd   int -	i        int -} - -func (l *labelIter) reset() { -	l.curStart = 0 -	l.curEnd = 0 -	l.i = 0 -} - -func (l *labelIter) done() bool { -	return l.curStart >= len(l.orig) -} - -func (l *labelIter) result() string { -	if l.slice != nil { -		return strings.Join(l.slice, ".") -	} -	return l.orig -} - -func (l *labelIter) label() string { -	if l.slice != nil { -		return l.slice[l.i] -	} -	p := strings.IndexByte(l.orig[l.curStart:], '.') -	l.curEnd = l.curStart + p -	if p == -1 { -		l.curEnd = len(l.orig) -	} -	return l.orig[l.curStart:l.curEnd] -} - -// next sets the value to the next label. It skips the last label if it is empty. -func (l *labelIter) next() { -	l.i++ -	if l.slice != nil { -		if l.i >= len(l.slice) || l.i == len(l.slice)-1 && l.slice[l.i] == "" { -			l.curStart = len(l.orig) -		} -	} else { -		l.curStart = l.curEnd + 1 -		if l.curStart == len(l.orig)-1 && l.orig[l.curStart] == '.' { -			l.curStart = len(l.orig) -		} -	} -} - -func (l *labelIter) set(s string) { -	if l.slice == nil { -		l.slice = strings.Split(l.orig, ".") -	} -	l.slice[l.i] = s -} - -// acePrefix is the ASCII Compatible Encoding prefix. -const acePrefix = "xn--" - -func (p *Profile) simplify(cat category) category { -	switch cat { -	case disallowedSTD3Mapped: -		if p.useSTD3Rules { -			cat = disallowed -		} else { -			cat = mapped -		} -	case disallowedSTD3Valid: -		if p.useSTD3Rules { -			cat = disallowed -		} else { -			cat = valid -		} -	case deviation: -		if !p.transitional { -			cat = valid -		} -	case validNV8, validXV8: -		// TODO: handle V2008 -		cat = valid -	} -	return cat -} - -func validateFromPunycode(p *Profile, s string) error { -	if !norm.NFC.IsNormalString(s) { -		return &labelError{s, "V1"} -	} -	// TODO: detect whether string may have to be normalized in the following -	// loop. -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		if sz == 0 { -			return runeError(utf8.RuneError) -		} -		if c := p.simplify(info(v).category()); c != valid && c != deviation { -			return &labelError{s, "V6"} -		} -		i += sz -	} -	return nil -} - -const ( -	zwnj = "\u200c" -	zwj  = "\u200d" -) - -type joinState int8 - -const ( -	stateStart joinState = iota -	stateVirama -	stateBefore -	stateBeforeVirama -	stateAfter -	stateFAIL -) - -var joinStates = [][numJoinTypes]joinState{ -	stateStart: { -		joiningL:   stateBefore, -		joiningD:   stateBefore, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateVirama, -	}, -	stateVirama: { -		joiningL: stateBefore, -		joiningD: stateBefore, -	}, -	stateBefore: { -		joiningL:   stateBefore, -		joiningD:   stateBefore, -		joiningT:   stateBefore, -		joinZWNJ:   stateAfter, -		joinZWJ:    stateFAIL, -		joinVirama: stateBeforeVirama, -	}, -	stateBeforeVirama: { -		joiningL: stateBefore, -		joiningD: stateBefore, -		joiningT: stateBefore, -	}, -	stateAfter: { -		joiningL:   stateFAIL, -		joiningD:   stateBefore, -		joiningT:   stateAfter, -		joiningR:   stateStart, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateAfter, // no-op as we can't accept joiners here -	}, -	stateFAIL: { -		0:          stateFAIL, -		joiningL:   stateFAIL, -		joiningD:   stateFAIL, -		joiningT:   stateFAIL, -		joiningR:   stateFAIL, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateFAIL, -	}, -} - -// validateLabel validates the criteria from Section 4.1. Item 1, 4, and 6 are -// already implicitly satisfied by the overall implementation. -func (p *Profile) validateLabel(s string) (err error) { -	if s == "" { -		if p.verifyDNSLength { -			return &labelError{s, "A4"} -		} -		return nil -	} -	if p.checkHyphens { -		if len(s) > 4 && s[2] == '-' && s[3] == '-' { -			return &labelError{s, "V2"} -		} -		if s[0] == '-' || s[len(s)-1] == '-' { -			return &labelError{s, "V3"} -		} -	} -	if !p.checkJoiners { -		return nil -	} -	trie := p.trie // p.checkJoiners is only set if trie is set. -	// TODO: merge the use of this in the trie. -	v, sz := trie.lookupString(s) -	x := info(v) -	if x.isModifier() { -		return &labelError{s, "V5"} -	} -	// Quickly return in the absence of zero-width (non) joiners. -	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 { -		return nil -	} -	st := stateStart -	for i := 0; ; { -		jt := x.joinType() -		if s[i:i+sz] == zwj { -			jt = joinZWJ -		} else if s[i:i+sz] == zwnj { -			jt = joinZWNJ -		} -		st = joinStates[st][jt] -		if x.isViramaModifier() { -			st = joinStates[st][joinVirama] -		} -		if i += sz; i == len(s) { -			break -		} -		v, sz = trie.lookupString(s[i:]) -		x = info(v) -	} -	if st == stateFAIL || st == stateAfter { -		return &labelError{s, "C"} -	} -	return nil -} - -func ascii(s string) bool { -	for i := 0; i < len(s); i++ { -		if s[i] >= utf8.RuneSelf { -			return false -		} -	} -	return true -} diff --git a/vendor/golang.org/x/net/idna/idna9.0.0.go b/vendor/golang.org/x/net/idna/idna9.0.0.go deleted file mode 100644 index cc6a892a4..000000000 --- a/vendor/golang.org/x/net/idna/idna9.0.0.go +++ /dev/null @@ -1,717 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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 !go1.10 - -// Package idna implements IDNA2008 using the compatibility processing -// defined by UTS (Unicode Technical Standard) #46, which defines a standard to -// deal with the transition from IDNA2003. -// -// IDNA2008 (Internationalized Domain Names for Applications), is defined in RFC -// 5890, RFC 5891, RFC 5892, RFC 5893 and RFC 5894. -// UTS #46 is defined in https://www.unicode.org/reports/tr46. -// See https://unicode.org/cldr/utility/idna.jsp for a visualization of the -// differences between these two standards. -package idna // import "golang.org/x/net/idna" - -import ( -	"fmt" -	"strings" -	"unicode/utf8" - -	"golang.org/x/text/secure/bidirule" -	"golang.org/x/text/unicode/norm" -) - -// NOTE: Unlike common practice in Go APIs, the functions will return a -// sanitized domain name in case of errors. Browsers sometimes use a partially -// evaluated string as lookup. -// TODO: the current error handling is, in my opinion, the least opinionated. -// Other strategies are also viable, though: -// Option 1) Return an empty string in case of error, but allow the user to -//    specify explicitly which errors to ignore. -// Option 2) Return the partially evaluated string if it is itself a valid -//    string, otherwise return the empty string in case of error. -// Option 3) Option 1 and 2. -// Option 4) Always return an empty string for now and implement Option 1 as -//    needed, and document that the return string may not be empty in case of -//    error in the future. -// I think Option 1 is best, but it is quite opinionated. - -// ToASCII is a wrapper for Punycode.ToASCII. -func ToASCII(s string) (string, error) { -	return Punycode.process(s, true) -} - -// ToUnicode is a wrapper for Punycode.ToUnicode. -func ToUnicode(s string) (string, error) { -	return Punycode.process(s, false) -} - -// An Option configures a Profile at creation time. -type Option func(*options) - -// Transitional sets a Profile to use the Transitional mapping as defined in UTS -// #46. This will cause, for example, "ß" to be mapped to "ss". Using the -// transitional mapping provides a compromise between IDNA2003 and IDNA2008 -// compatibility. It is used by some browsers when resolving domain names. This -// option is only meaningful if combined with MapForLookup. -func Transitional(transitional bool) Option { -	return func(o *options) { o.transitional = transitional } -} - -// VerifyDNSLength sets whether a Profile should fail if any of the IDN parts -// are longer than allowed by the RFC. -// -// This option corresponds to the VerifyDnsLength flag in UTS #46. -func VerifyDNSLength(verify bool) Option { -	return func(o *options) { o.verifyDNSLength = verify } -} - -// RemoveLeadingDots removes leading label separators. Leading runes that map to -// dots, such as U+3002 IDEOGRAPHIC FULL STOP, are removed as well. -func RemoveLeadingDots(remove bool) Option { -	return func(o *options) { o.removeLeadingDots = remove } -} - -// ValidateLabels sets whether to check the mandatory label validation criteria -// as defined in Section 5.4 of RFC 5891. This includes testing for correct use -// of hyphens ('-'), normalization, validity of runes, and the context rules. -// In particular, ValidateLabels also sets the CheckHyphens and CheckJoiners flags -// in UTS #46. -func ValidateLabels(enable bool) Option { -	return func(o *options) { -		// Don't override existing mappings, but set one that at least checks -		// normalization if it is not set. -		if o.mapping == nil && enable { -			o.mapping = normalize -		} -		o.trie = trie -		o.checkJoiners = enable -		o.checkHyphens = enable -		if enable { -			o.fromPuny = validateFromPunycode -		} else { -			o.fromPuny = nil -		} -	} -} - -// CheckHyphens sets whether to check for correct use of hyphens ('-') in -// labels. Most web browsers do not have this option set, since labels such as -// "r3---sn-apo3qvuoxuxbt-j5pe" are in common use. -// -// This option corresponds to the CheckHyphens flag in UTS #46. -func CheckHyphens(enable bool) Option { -	return func(o *options) { o.checkHyphens = enable } -} - -// CheckJoiners sets whether to check the ContextJ rules as defined in Appendix -// A of RFC 5892, concerning the use of joiner runes. -// -// This option corresponds to the CheckJoiners flag in UTS #46. -func CheckJoiners(enable bool) Option { -	return func(o *options) { -		o.trie = trie -		o.checkJoiners = enable -	} -} - -// StrictDomainName limits the set of permissible ASCII characters to those -// allowed in domain names as defined in RFC 1034 (A-Z, a-z, 0-9 and the -// hyphen). This is set by default for MapForLookup and ValidateForRegistration, -// but is only useful if ValidateLabels is set. -// -// This option is useful, for instance, for browsers that allow characters -// outside this range, for example a '_' (U+005F LOW LINE). See -// http://www.rfc-editor.org/std/std3.txt for more details. -// -// This option corresponds to the UseSTD3ASCIIRules flag in UTS #46. -func StrictDomainName(use bool) Option { -	return func(o *options) { o.useSTD3Rules = use } -} - -// NOTE: the following options pull in tables. The tables should not be linked -// in as long as the options are not used. - -// BidiRule enables the Bidi rule as defined in RFC 5893. Any application -// that relies on proper validation of labels should include this rule. -// -// This option corresponds to the CheckBidi flag in UTS #46. -func BidiRule() Option { -	return func(o *options) { o.bidirule = bidirule.ValidString } -} - -// ValidateForRegistration sets validation options to verify that a given IDN is -// properly formatted for registration as defined by Section 4 of RFC 5891. -func ValidateForRegistration() Option { -	return func(o *options) { -		o.mapping = validateRegistration -		StrictDomainName(true)(o) -		ValidateLabels(true)(o) -		VerifyDNSLength(true)(o) -		BidiRule()(o) -	} -} - -// MapForLookup sets validation and mapping options such that a given IDN is -// transformed for domain name lookup according to the requirements set out in -// Section 5 of RFC 5891. The mappings follow the recommendations of RFC 5894, -// RFC 5895 and UTS 46. It does not add the Bidi Rule. Use the BidiRule option -// to add this check. -// -// The mappings include normalization and mapping case, width and other -// compatibility mappings. -func MapForLookup() Option { -	return func(o *options) { -		o.mapping = validateAndMap -		StrictDomainName(true)(o) -		ValidateLabels(true)(o) -		RemoveLeadingDots(true)(o) -	} -} - -type options struct { -	transitional      bool -	useSTD3Rules      bool -	checkHyphens      bool -	checkJoiners      bool -	verifyDNSLength   bool -	removeLeadingDots bool - -	trie *idnaTrie - -	// fromPuny calls validation rules when converting A-labels to U-labels. -	fromPuny func(p *Profile, s string) error - -	// mapping implements a validation and mapping step as defined in RFC 5895 -	// or UTS 46, tailored to, for example, domain registration or lookup. -	mapping func(p *Profile, s string) (string, error) - -	// bidirule, if specified, checks whether s conforms to the Bidi Rule -	// defined in RFC 5893. -	bidirule func(s string) bool -} - -// A Profile defines the configuration of a IDNA mapper. -type Profile struct { -	options -} - -func apply(o *options, opts []Option) { -	for _, f := range opts { -		f(o) -	} -} - -// New creates a new Profile. -// -// With no options, the returned Profile is the most permissive and equals the -// Punycode Profile. Options can be passed to further restrict the Profile. The -// MapForLookup and ValidateForRegistration options set a collection of options, -// for lookup and registration purposes respectively, which can be tailored by -// adding more fine-grained options, where later options override earlier -// options. -func New(o ...Option) *Profile { -	p := &Profile{} -	apply(&p.options, o) -	return p -} - -// ToASCII converts a domain or domain label to its ASCII form. For example, -// ToASCII("bücher.example.com") is "xn--bcher-kva.example.com", and -// ToASCII("golang") is "golang". If an error is encountered it will return -// an error and a (partially) processed result. -func (p *Profile) ToASCII(s string) (string, error) { -	return p.process(s, true) -} - -// ToUnicode converts a domain or domain label to its Unicode form. For example, -// ToUnicode("xn--bcher-kva.example.com") is "bücher.example.com", and -// ToUnicode("golang") is "golang". If an error is encountered it will return -// an error and a (partially) processed result. -func (p *Profile) ToUnicode(s string) (string, error) { -	pp := *p -	pp.transitional = false -	return pp.process(s, false) -} - -// String reports a string with a description of the profile for debugging -// purposes. The string format may change with different versions. -func (p *Profile) String() string { -	s := "" -	if p.transitional { -		s = "Transitional" -	} else { -		s = "NonTransitional" -	} -	if p.useSTD3Rules { -		s += ":UseSTD3Rules" -	} -	if p.checkHyphens { -		s += ":CheckHyphens" -	} -	if p.checkJoiners { -		s += ":CheckJoiners" -	} -	if p.verifyDNSLength { -		s += ":VerifyDNSLength" -	} -	return s -} - -var ( -	// Punycode is a Profile that does raw punycode processing with a minimum -	// of validation. -	Punycode *Profile = punycode - -	// Lookup is the recommended profile for looking up domain names, according -	// to Section 5 of RFC 5891. The exact configuration of this profile may -	// change over time. -	Lookup *Profile = lookup - -	// Display is the recommended profile for displaying domain names. -	// The configuration of this profile may change over time. -	Display *Profile = display - -	// Registration is the recommended profile for checking whether a given -	// IDN is valid for registration, according to Section 4 of RFC 5891. -	Registration *Profile = registration - -	punycode = &Profile{} -	lookup   = &Profile{options{ -		transitional:      true, -		removeLeadingDots: true, -		useSTD3Rules:      true, -		checkHyphens:      true, -		checkJoiners:      true, -		trie:              trie, -		fromPuny:          validateFromPunycode, -		mapping:           validateAndMap, -		bidirule:          bidirule.ValidString, -	}} -	display = &Profile{options{ -		useSTD3Rules:      true, -		removeLeadingDots: true, -		checkHyphens:      true, -		checkJoiners:      true, -		trie:              trie, -		fromPuny:          validateFromPunycode, -		mapping:           validateAndMap, -		bidirule:          bidirule.ValidString, -	}} -	registration = &Profile{options{ -		useSTD3Rules:    true, -		verifyDNSLength: true, -		checkHyphens:    true, -		checkJoiners:    true, -		trie:            trie, -		fromPuny:        validateFromPunycode, -		mapping:         validateRegistration, -		bidirule:        bidirule.ValidString, -	}} - -	// TODO: profiles -	// Register: recommended for approving domain names: don't do any mappings -	// but rather reject on invalid input. Bundle or block deviation characters. -) - -type labelError struct{ label, code_ string } - -func (e labelError) code() string { return e.code_ } -func (e labelError) Error() string { -	return fmt.Sprintf("idna: invalid label %q", e.label) -} - -type runeError rune - -func (e runeError) code() string { return "P1" } -func (e runeError) Error() string { -	return fmt.Sprintf("idna: disallowed rune %U", e) -} - -// process implements the algorithm described in section 4 of UTS #46, -// see https://www.unicode.org/reports/tr46. -func (p *Profile) process(s string, toASCII bool) (string, error) { -	var err error -	if p.mapping != nil { -		s, err = p.mapping(p, s) -	} -	// Remove leading empty labels. -	if p.removeLeadingDots { -		for ; len(s) > 0 && s[0] == '.'; s = s[1:] { -		} -	} -	// It seems like we should only create this error on ToASCII, but the -	// UTS 46 conformance tests suggests we should always check this. -	if err == nil && p.verifyDNSLength && s == "" { -		err = &labelError{s, "A4"} -	} -	labels := labelIter{orig: s} -	for ; !labels.done(); labels.next() { -		label := labels.label() -		if label == "" { -			// Empty labels are not okay. The label iterator skips the last -			// label if it is empty. -			if err == nil && p.verifyDNSLength { -				err = &labelError{s, "A4"} -			} -			continue -		} -		if strings.HasPrefix(label, acePrefix) { -			u, err2 := decode(label[len(acePrefix):]) -			if err2 != nil { -				if err == nil { -					err = err2 -				} -				// Spec says keep the old label. -				continue -			} -			labels.set(u) -			if err == nil && p.fromPuny != nil { -				err = p.fromPuny(p, u) -			} -			if err == nil { -				// This should be called on NonTransitional, according to the -				// spec, but that currently does not have any effect. Use the -				// original profile to preserve options. -				err = p.validateLabel(u) -			} -		} else if err == nil { -			err = p.validateLabel(label) -		} -	} -	if toASCII { -		for labels.reset(); !labels.done(); labels.next() { -			label := labels.label() -			if !ascii(label) { -				a, err2 := encode(acePrefix, label) -				if err == nil { -					err = err2 -				} -				label = a -				labels.set(a) -			} -			n := len(label) -			if p.verifyDNSLength && err == nil && (n == 0 || n > 63) { -				err = &labelError{label, "A4"} -			} -		} -	} -	s = labels.result() -	if toASCII && p.verifyDNSLength && err == nil { -		// Compute the length of the domain name minus the root label and its dot. -		n := len(s) -		if n > 0 && s[n-1] == '.' { -			n-- -		} -		if len(s) < 1 || n > 253 { -			err = &labelError{s, "A4"} -		} -	} -	return s, err -} - -func normalize(p *Profile, s string) (string, error) { -	return norm.NFC.String(s), nil -} - -func validateRegistration(p *Profile, s string) (string, error) { -	if !norm.NFC.IsNormalString(s) { -		return s, &labelError{s, "V1"} -	} -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		// Copy bytes not copied so far. -		switch p.simplify(info(v).category()) { -		// TODO: handle the NV8 defined in the Unicode idna data set to allow -		// for strict conformance to IDNA2008. -		case valid, deviation: -		case disallowed, mapped, unknown, ignored: -			r, _ := utf8.DecodeRuneInString(s[i:]) -			return s, runeError(r) -		} -		i += sz -	} -	return s, nil -} - -func validateAndMap(p *Profile, s string) (string, error) { -	var ( -		err error -		b   []byte -		k   int -	) -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		start := i -		i += sz -		// Copy bytes not copied so far. -		switch p.simplify(info(v).category()) { -		case valid: -			continue -		case disallowed: -			if err == nil { -				r, _ := utf8.DecodeRuneInString(s[start:]) -				err = runeError(r) -			} -			continue -		case mapped, deviation: -			b = append(b, s[k:start]...) -			b = info(v).appendMapping(b, s[start:i]) -		case ignored: -			b = append(b, s[k:start]...) -			// drop the rune -		case unknown: -			b = append(b, s[k:start]...) -			b = append(b, "\ufffd"...) -		} -		k = i -	} -	if k == 0 { -		// No changes so far. -		s = norm.NFC.String(s) -	} else { -		b = append(b, s[k:]...) -		if norm.NFC.QuickSpan(b) != len(b) { -			b = norm.NFC.Bytes(b) -		} -		// TODO: the punycode converters require strings as input. -		s = string(b) -	} -	return s, err -} - -// A labelIter allows iterating over domain name labels. -type labelIter struct { -	orig     string -	slice    []string -	curStart int -	curEnd   int -	i        int -} - -func (l *labelIter) reset() { -	l.curStart = 0 -	l.curEnd = 0 -	l.i = 0 -} - -func (l *labelIter) done() bool { -	return l.curStart >= len(l.orig) -} - -func (l *labelIter) result() string { -	if l.slice != nil { -		return strings.Join(l.slice, ".") -	} -	return l.orig -} - -func (l *labelIter) label() string { -	if l.slice != nil { -		return l.slice[l.i] -	} -	p := strings.IndexByte(l.orig[l.curStart:], '.') -	l.curEnd = l.curStart + p -	if p == -1 { -		l.curEnd = len(l.orig) -	} -	return l.orig[l.curStart:l.curEnd] -} - -// next sets the value to the next label. It skips the last label if it is empty. -func (l *labelIter) next() { -	l.i++ -	if l.slice != nil { -		if l.i >= len(l.slice) || l.i == len(l.slice)-1 && l.slice[l.i] == "" { -			l.curStart = len(l.orig) -		} -	} else { -		l.curStart = l.curEnd + 1 -		if l.curStart == len(l.orig)-1 && l.orig[l.curStart] == '.' { -			l.curStart = len(l.orig) -		} -	} -} - -func (l *labelIter) set(s string) { -	if l.slice == nil { -		l.slice = strings.Split(l.orig, ".") -	} -	l.slice[l.i] = s -} - -// acePrefix is the ASCII Compatible Encoding prefix. -const acePrefix = "xn--" - -func (p *Profile) simplify(cat category) category { -	switch cat { -	case disallowedSTD3Mapped: -		if p.useSTD3Rules { -			cat = disallowed -		} else { -			cat = mapped -		} -	case disallowedSTD3Valid: -		if p.useSTD3Rules { -			cat = disallowed -		} else { -			cat = valid -		} -	case deviation: -		if !p.transitional { -			cat = valid -		} -	case validNV8, validXV8: -		// TODO: handle V2008 -		cat = valid -	} -	return cat -} - -func validateFromPunycode(p *Profile, s string) error { -	if !norm.NFC.IsNormalString(s) { -		return &labelError{s, "V1"} -	} -	for i := 0; i < len(s); { -		v, sz := trie.lookupString(s[i:]) -		if c := p.simplify(info(v).category()); c != valid && c != deviation { -			return &labelError{s, "V6"} -		} -		i += sz -	} -	return nil -} - -const ( -	zwnj = "\u200c" -	zwj  = "\u200d" -) - -type joinState int8 - -const ( -	stateStart joinState = iota -	stateVirama -	stateBefore -	stateBeforeVirama -	stateAfter -	stateFAIL -) - -var joinStates = [][numJoinTypes]joinState{ -	stateStart: { -		joiningL:   stateBefore, -		joiningD:   stateBefore, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateVirama, -	}, -	stateVirama: { -		joiningL: stateBefore, -		joiningD: stateBefore, -	}, -	stateBefore: { -		joiningL:   stateBefore, -		joiningD:   stateBefore, -		joiningT:   stateBefore, -		joinZWNJ:   stateAfter, -		joinZWJ:    stateFAIL, -		joinVirama: stateBeforeVirama, -	}, -	stateBeforeVirama: { -		joiningL: stateBefore, -		joiningD: stateBefore, -		joiningT: stateBefore, -	}, -	stateAfter: { -		joiningL:   stateFAIL, -		joiningD:   stateBefore, -		joiningT:   stateAfter, -		joiningR:   stateStart, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateAfter, // no-op as we can't accept joiners here -	}, -	stateFAIL: { -		0:          stateFAIL, -		joiningL:   stateFAIL, -		joiningD:   stateFAIL, -		joiningT:   stateFAIL, -		joiningR:   stateFAIL, -		joinZWNJ:   stateFAIL, -		joinZWJ:    stateFAIL, -		joinVirama: stateFAIL, -	}, -} - -// validateLabel validates the criteria from Section 4.1. Item 1, 4, and 6 are -// already implicitly satisfied by the overall implementation. -func (p *Profile) validateLabel(s string) error { -	if s == "" { -		if p.verifyDNSLength { -			return &labelError{s, "A4"} -		} -		return nil -	} -	if p.bidirule != nil && !p.bidirule(s) { -		return &labelError{s, "B"} -	} -	if p.checkHyphens { -		if len(s) > 4 && s[2] == '-' && s[3] == '-' { -			return &labelError{s, "V2"} -		} -		if s[0] == '-' || s[len(s)-1] == '-' { -			return &labelError{s, "V3"} -		} -	} -	if !p.checkJoiners { -		return nil -	} -	trie := p.trie // p.checkJoiners is only set if trie is set. -	// TODO: merge the use of this in the trie. -	v, sz := trie.lookupString(s) -	x := info(v) -	if x.isModifier() { -		return &labelError{s, "V5"} -	} -	// Quickly return in the absence of zero-width (non) joiners. -	if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 { -		return nil -	} -	st := stateStart -	for i := 0; ; { -		jt := x.joinType() -		if s[i:i+sz] == zwj { -			jt = joinZWJ -		} else if s[i:i+sz] == zwnj { -			jt = joinZWNJ -		} -		st = joinStates[st][jt] -		if x.isViramaModifier() { -			st = joinStates[st][joinVirama] -		} -		if i += sz; i == len(s) { -			break -		} -		v, sz = trie.lookupString(s[i:]) -		x = info(v) -	} -	if st == stateFAIL || st == stateAfter { -		return &labelError{s, "C"} -	} -	return nil -} - -func ascii(s string) bool { -	for i := 0; i < len(s); i++ { -		if s[i] >= utf8.RuneSelf { -			return false -		} -	} -	return true -} diff --git a/vendor/golang.org/x/net/idna/pre_go118.go b/vendor/golang.org/x/net/idna/pre_go118.go deleted file mode 100644 index 40e74bb3d..000000000 --- a/vendor/golang.org/x/net/idna/pre_go118.go +++ /dev/null @@ -1,11 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2021 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 !go1.18 - -package idna - -const transitionalLookup = true diff --git a/vendor/golang.org/x/net/idna/punycode.go b/vendor/golang.org/x/net/idna/punycode.go deleted file mode 100644 index e8e3ac11a..000000000 --- a/vendor/golang.org/x/net/idna/punycode.go +++ /dev/null @@ -1,217 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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. - -package idna - -// This file implements the Punycode algorithm from RFC 3492. - -import ( -	"math" -	"strings" -	"unicode/utf8" -) - -// These parameter values are specified in section 5. -// -// All computation is done with int32s, so that overflow behavior is identical -// regardless of whether int is 32-bit or 64-bit. -const ( -	base        int32 = 36 -	damp        int32 = 700 -	initialBias int32 = 72 -	initialN    int32 = 128 -	skew        int32 = 38 -	tmax        int32 = 26 -	tmin        int32 = 1 -) - -func punyError(s string) error { return &labelError{s, "A3"} } - -// decode decodes a string as specified in section 6.2. -func decode(encoded string) (string, error) { -	if encoded == "" { -		return "", nil -	} -	pos := 1 + strings.LastIndex(encoded, "-") -	if pos == 1 { -		return "", punyError(encoded) -	} -	if pos == len(encoded) { -		return encoded[:len(encoded)-1], nil -	} -	output := make([]rune, 0, len(encoded)) -	if pos != 0 { -		for _, r := range encoded[:pos-1] { -			output = append(output, r) -		} -	} -	i, n, bias := int32(0), initialN, initialBias -	overflow := false -	for pos < len(encoded) { -		oldI, w := i, int32(1) -		for k := base; ; k += base { -			if pos == len(encoded) { -				return "", punyError(encoded) -			} -			digit, ok := decodeDigit(encoded[pos]) -			if !ok { -				return "", punyError(encoded) -			} -			pos++ -			i, overflow = madd(i, digit, w) -			if overflow { -				return "", punyError(encoded) -			} -			t := k - bias -			if k <= bias { -				t = tmin -			} else if k >= bias+tmax { -				t = tmax -			} -			if digit < t { -				break -			} -			w, overflow = madd(0, w, base-t) -			if overflow { -				return "", punyError(encoded) -			} -		} -		if len(output) >= 1024 { -			return "", punyError(encoded) -		} -		x := int32(len(output) + 1) -		bias = adapt(i-oldI, x, oldI == 0) -		n += i / x -		i %= x -		if n < 0 || n > utf8.MaxRune { -			return "", punyError(encoded) -		} -		output = append(output, 0) -		copy(output[i+1:], output[i:]) -		output[i] = n -		i++ -	} -	return string(output), nil -} - -// encode encodes a string as specified in section 6.3 and prepends prefix to -// the result. -// -// The "while h < length(input)" line in the specification becomes "for -// remaining != 0" in the Go code, because len(s) in Go is in bytes, not runes. -func encode(prefix, s string) (string, error) { -	output := make([]byte, len(prefix), len(prefix)+1+2*len(s)) -	copy(output, prefix) -	delta, n, bias := int32(0), initialN, initialBias -	b, remaining := int32(0), int32(0) -	for _, r := range s { -		if r < 0x80 { -			b++ -			output = append(output, byte(r)) -		} else { -			remaining++ -		} -	} -	h := b -	if b > 0 { -		output = append(output, '-') -	} -	overflow := false -	for remaining != 0 { -		m := int32(0x7fffffff) -		for _, r := range s { -			if m > r && r >= n { -				m = r -			} -		} -		delta, overflow = madd(delta, m-n, h+1) -		if overflow { -			return "", punyError(s) -		} -		n = m -		for _, r := range s { -			if r < n { -				delta++ -				if delta < 0 { -					return "", punyError(s) -				} -				continue -			} -			if r > n { -				continue -			} -			q := delta -			for k := base; ; k += base { -				t := k - bias -				if k <= bias { -					t = tmin -				} else if k >= bias+tmax { -					t = tmax -				} -				if q < t { -					break -				} -				output = append(output, encodeDigit(t+(q-t)%(base-t))) -				q = (q - t) / (base - t) -			} -			output = append(output, encodeDigit(q)) -			bias = adapt(delta, h+1, h == b) -			delta = 0 -			h++ -			remaining-- -		} -		delta++ -		n++ -	} -	return string(output), nil -} - -// madd computes a + (b * c), detecting overflow. -func madd(a, b, c int32) (next int32, overflow bool) { -	p := int64(b) * int64(c) -	if p > math.MaxInt32-int64(a) { -		return 0, true -	} -	return a + int32(p), false -} - -func decodeDigit(x byte) (digit int32, ok bool) { -	switch { -	case '0' <= x && x <= '9': -		return int32(x - ('0' - 26)), true -	case 'A' <= x && x <= 'Z': -		return int32(x - 'A'), true -	case 'a' <= x && x <= 'z': -		return int32(x - 'a'), true -	} -	return 0, false -} - -func encodeDigit(digit int32) byte { -	switch { -	case 0 <= digit && digit < 26: -		return byte(digit + 'a') -	case 26 <= digit && digit < 36: -		return byte(digit + ('0' - 26)) -	} -	panic("idna: internal error in punycode encoding") -} - -// adapt is the bias adaptation function specified in section 6.1. -func adapt(delta, numPoints int32, firstTime bool) int32 { -	if firstTime { -		delta /= damp -	} else { -		delta /= 2 -	} -	delta += delta / numPoints -	k := int32(0) -	for delta > ((base-tmin)*tmax)/2 { -		delta /= base - tmin -		k += base -	} -	return k + (base-tmin+1)*delta/(delta+skew) -} diff --git a/vendor/golang.org/x/net/idna/tables10.0.0.go b/vendor/golang.org/x/net/idna/tables10.0.0.go deleted file mode 100644 index c6c2bf10a..000000000 --- a/vendor/golang.org/x/net/idna/tables10.0.0.go +++ /dev/null @@ -1,4559 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build go1.10 && !go1.13 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "10.0.0" - -var mappings string = "" + // Size: 8175 bytes -	"\x00\x01 \x03 ̈\x01a\x03 ̄\x012\x013\x03 ́\x03 ̧\x011\x01o\x051⁄4\x051⁄2" + -	"\x053⁄4\x03i̇\x03l·\x03ʼn\x01s\x03dž\x03ⱥ\x03ⱦ\x01h\x01j\x01r\x01w\x01y" + -	"\x03 ̆\x03 ̇\x03 ̊\x03 ̨\x03 ̃\x03 ̋\x01l\x01x\x04̈́\x03 ι\x01;\x05 ̈́" + -	"\x04եւ\x04اٴ\x04وٴ\x04ۇٴ\x04يٴ\x06क़\x06ख़\x06ग़\x06ज़\x06ड़\x06ढ़\x06फ़" + -	"\x06य़\x06ড়\x06ঢ়\x06য়\x06ਲ਼\x06ਸ਼\x06ਖ਼\x06ਗ਼\x06ਜ਼\x06ਫ਼\x06ଡ଼\x06ଢ଼" + -	"\x06ํา\x06ໍາ\x06ຫນ\x06ຫມ\x06གྷ\x06ཌྷ\x06དྷ\x06བྷ\x06ཛྷ\x06ཀྵ\x06ཱི\x06ཱུ" + -	"\x06ྲྀ\x09ྲཱྀ\x06ླྀ\x09ླཱྀ\x06ཱྀ\x06ྒྷ\x06ྜྷ\x06ྡྷ\x06ྦྷ\x06ྫྷ\x06ྐྵ\x02" + -	"в\x02д\x02о\x02с\x02т\x02ъ\x02ѣ\x02æ\x01b\x01d\x01e\x02ǝ\x01g\x01i\x01k" + -	"\x01m\x01n\x02ȣ\x01p\x01t\x01u\x02ɐ\x02ɑ\x02ə\x02ɛ\x02ɜ\x02ŋ\x02ɔ\x02ɯ" + -	"\x01v\x02β\x02γ\x02δ\x02φ\x02χ\x02ρ\x02н\x02ɒ\x01c\x02ɕ\x02ð\x01f\x02ɟ" + -	"\x02ɡ\x02ɥ\x02ɨ\x02ɩ\x02ɪ\x02ʝ\x02ɭ\x02ʟ\x02ɱ\x02ɰ\x02ɲ\x02ɳ\x02ɴ\x02ɵ" + -	"\x02ɸ\x02ʂ\x02ʃ\x02ƫ\x02ʉ\x02ʊ\x02ʋ\x02ʌ\x01z\x02ʐ\x02ʑ\x02ʒ\x02θ\x02ss" + -	"\x02ά\x02έ\x02ή\x02ί\x02ό\x02ύ\x02ώ\x05ἀι\x05ἁι\x05ἂι\x05ἃι\x05ἄι\x05ἅι" + -	"\x05ἆι\x05ἇι\x05ἠι\x05ἡι\x05ἢι\x05ἣι\x05ἤι\x05ἥι\x05ἦι\x05ἧι\x05ὠι\x05ὡι" + -	"\x05ὢι\x05ὣι\x05ὤι\x05ὥι\x05ὦι\x05ὧι\x05ὰι\x04αι\x04άι\x05ᾶι\x02ι\x05 ̈͂" + -	"\x05ὴι\x04ηι\x04ήι\x05ῆι\x05 ̓̀\x05 ̓́\x05 ̓͂\x02ΐ\x05 ̔̀\x05 ̔́\x05 ̔͂" + -	"\x02ΰ\x05 ̈̀\x01`\x05ὼι\x04ωι\x04ώι\x05ῶι\x06′′\x09′′′\x06‵‵\x09‵‵‵\x02!" + -	"!\x02??\x02?!\x02!?\x0c′′′′\x010\x014\x015\x016\x017\x018\x019\x01+\x01=" + -	"\x01(\x01)\x02rs\x02ħ\x02no\x01q\x02sm\x02tm\x02ω\x02å\x02א\x02ב\x02ג" + -	"\x02ד\x02π\x051⁄7\x051⁄9\x061⁄10\x051⁄3\x052⁄3\x051⁄5\x052⁄5\x053⁄5\x054" + -	"⁄5\x051⁄6\x055⁄6\x051⁄8\x053⁄8\x055⁄8\x057⁄8\x041⁄\x02ii\x02iv\x02vi" + -	"\x04viii\x02ix\x02xi\x050⁄3\x06∫∫\x09∫∫∫\x06∮∮\x09∮∮∮\x0210\x0211\x0212" + -	"\x0213\x0214\x0215\x0216\x0217\x0218\x0219\x0220\x04(10)\x04(11)\x04(12)" + -	"\x04(13)\x04(14)\x04(15)\x04(16)\x04(17)\x04(18)\x04(19)\x04(20)\x0c∫∫∫∫" + -	"\x02==\x05⫝̸\x02ɫ\x02ɽ\x02ȿ\x02ɀ\x01.\x04 ゙\x04 ゚\x06より\x06コト\x05(ᄀ)\x05" + -	"(ᄂ)\x05(ᄃ)\x05(ᄅ)\x05(ᄆ)\x05(ᄇ)\x05(ᄉ)\x05(ᄋ)\x05(ᄌ)\x05(ᄎ)\x05(ᄏ)\x05(ᄐ" + -	")\x05(ᄑ)\x05(ᄒ)\x05(가)\x05(나)\x05(다)\x05(라)\x05(마)\x05(바)\x05(사)\x05(아)" + -	"\x05(자)\x05(차)\x05(카)\x05(타)\x05(파)\x05(하)\x05(주)\x08(오전)\x08(오후)\x05(一)" + -	"\x05(二)\x05(三)\x05(四)\x05(五)\x05(六)\x05(七)\x05(八)\x05(九)\x05(十)\x05(月)" + -	"\x05(火)\x05(水)\x05(木)\x05(金)\x05(土)\x05(日)\x05(株)\x05(有)\x05(社)\x05(名)" + -	"\x05(特)\x05(財)\x05(祝)\x05(労)\x05(代)\x05(呼)\x05(学)\x05(監)\x05(企)\x05(資)" + -	"\x05(協)\x05(祭)\x05(休)\x05(自)\x05(至)\x0221\x0222\x0223\x0224\x0225\x0226" + -	"\x0227\x0228\x0229\x0230\x0231\x0232\x0233\x0234\x0235\x06참고\x06주의\x0236" + -	"\x0237\x0238\x0239\x0240\x0241\x0242\x0243\x0244\x0245\x0246\x0247\x0248" + -	"\x0249\x0250\x041月\x042月\x043月\x044月\x045月\x046月\x047月\x048月\x049月\x0510" + -	"月\x0511月\x0512月\x02hg\x02ev\x0cアパート\x0cアルファ\x0cアンペア\x09アール\x0cイニング\x09" + -	"インチ\x09ウォン\x0fエスクード\x0cエーカー\x09オンス\x09オーム\x09カイリ\x0cカラット\x0cカロリー\x09ガロ" + -	"ン\x09ガンマ\x06ギガ\x09ギニー\x0cキュリー\x0cギルダー\x06キロ\x0fキログラム\x12キロメートル\x0fキロワッ" + -	"ト\x09グラム\x0fグラムトン\x0fクルゼイロ\x0cクローネ\x09ケース\x09コルナ\x09コーポ\x0cサイクル\x0fサンチ" + -	"ーム\x0cシリング\x09センチ\x09セント\x09ダース\x06デシ\x06ドル\x06トン\x06ナノ\x09ノット\x09ハイツ" + -	"\x0fパーセント\x09パーツ\x0cバーレル\x0fピアストル\x09ピクル\x06ピコ\x06ビル\x0fファラッド\x0cフィート" + -	"\x0fブッシェル\x09フラン\x0fヘクタール\x06ペソ\x09ペニヒ\x09ヘルツ\x09ペンス\x09ページ\x09ベータ\x0cポイ" + -	"ント\x09ボルト\x06ホン\x09ポンド\x09ホール\x09ホーン\x0cマイクロ\x09マイル\x09マッハ\x09マルク\x0fマ" + -	"ンション\x0cミクロン\x06ミリ\x0fミリバール\x06メガ\x0cメガトン\x0cメートル\x09ヤード\x09ヤール\x09ユアン" + -	"\x0cリットル\x06リラ\x09ルピー\x0cルーブル\x06レム\x0fレントゲン\x09ワット\x040点\x041点\x042点" + -	"\x043点\x044点\x045点\x046点\x047点\x048点\x049点\x0510点\x0511点\x0512点\x0513点" + -	"\x0514点\x0515点\x0516点\x0517点\x0518点\x0519点\x0520点\x0521点\x0522点\x0523点" + -	"\x0524点\x02da\x02au\x02ov\x02pc\x02dm\x02iu\x06平成\x06昭和\x06大正\x06明治\x0c株" + -	"式会社\x02pa\x02na\x02ma\x02ka\x02kb\x02mb\x02gb\x04kcal\x02pf\x02nf\x02m" + -	"g\x02kg\x02hz\x02ml\x02dl\x02kl\x02fm\x02nm\x02mm\x02cm\x02km\x02m2\x02m" + -	"3\x05m∕s\x06m∕s2\x07rad∕s\x08rad∕s2\x02ps\x02ns\x02ms\x02pv\x02nv\x02mv" + -	"\x02kv\x02pw\x02nw\x02mw\x02kw\x02bq\x02cc\x02cd\x06c∕kg\x02db\x02gy\x02" + -	"ha\x02hp\x02in\x02kk\x02kt\x02lm\x02ln\x02lx\x02ph\x02pr\x02sr\x02sv\x02" + -	"wb\x05v∕m\x05a∕m\x041日\x042日\x043日\x044日\x045日\x046日\x047日\x048日\x049日" + -	"\x0510日\x0511日\x0512日\x0513日\x0514日\x0515日\x0516日\x0517日\x0518日\x0519日" + -	"\x0520日\x0521日\x0522日\x0523日\x0524日\x0525日\x0526日\x0527日\x0528日\x0529日" + -	"\x0530日\x0531日\x02ь\x02ɦ\x02ɬ\x02ʞ\x02ʇ\x02œ\x04𤋮\x04𢡊\x04𢡄\x04𣏕\x04𥉉" + -	"\x04𥳐\x04𧻓\x02ff\x02fi\x02fl\x02st\x04մն\x04մե\x04մի\x04վն\x04մխ\x04יִ" + -	"\x04ײַ\x02ע\x02ה\x02כ\x02ל\x02ם\x02ר\x02ת\x04שׁ\x04שׂ\x06שּׁ\x06שּׂ\x04א" + -	"ַ\x04אָ\x04אּ\x04בּ\x04גּ\x04דּ\x04הּ\x04וּ\x04זּ\x04טּ\x04יּ\x04ךּ\x04" + -	"כּ\x04לּ\x04מּ\x04נּ\x04סּ\x04ףּ\x04פּ\x04צּ\x04קּ\x04רּ\x04שּ\x04תּ" + -	"\x04וֹ\x04בֿ\x04כֿ\x04פֿ\x04אל\x02ٱ\x02ٻ\x02پ\x02ڀ\x02ٺ\x02ٿ\x02ٹ\x02ڤ" + -	"\x02ڦ\x02ڄ\x02ڃ\x02چ\x02ڇ\x02ڍ\x02ڌ\x02ڎ\x02ڈ\x02ژ\x02ڑ\x02ک\x02گ\x02ڳ" + -	"\x02ڱ\x02ں\x02ڻ\x02ۀ\x02ہ\x02ھ\x02ے\x02ۓ\x02ڭ\x02ۇ\x02ۆ\x02ۈ\x02ۋ\x02ۅ" + -	"\x02ۉ\x02ې\x02ى\x04ئا\x04ئە\x04ئو\x04ئۇ\x04ئۆ\x04ئۈ\x04ئې\x04ئى\x02ی\x04" + -	"ئج\x04ئح\x04ئم\x04ئي\x04بج\x04بح\x04بخ\x04بم\x04بى\x04بي\x04تج\x04تح" + -	"\x04تخ\x04تم\x04تى\x04تي\x04ثج\x04ثم\x04ثى\x04ثي\x04جح\x04جم\x04حج\x04حم" + -	"\x04خج\x04خح\x04خم\x04سج\x04سح\x04سخ\x04سم\x04صح\x04صم\x04ضج\x04ضح\x04ضخ" + -	"\x04ضم\x04طح\x04طم\x04ظم\x04عج\x04عم\x04غج\x04غم\x04فج\x04فح\x04فخ\x04فم" + -	"\x04فى\x04في\x04قح\x04قم\x04قى\x04قي\x04كا\x04كج\x04كح\x04كخ\x04كل\x04كم" + -	"\x04كى\x04كي\x04لج\x04لح\x04لخ\x04لم\x04لى\x04لي\x04مج\x04مح\x04مخ\x04مم" + -	"\x04مى\x04مي\x04نج\x04نح\x04نخ\x04نم\x04نى\x04ني\x04هج\x04هم\x04هى\x04هي" + -	"\x04يج\x04يح\x04يخ\x04يم\x04يى\x04يي\x04ذٰ\x04رٰ\x04ىٰ\x05 ٌّ\x05 ٍّ\x05" + -	" َّ\x05 ُّ\x05 ِّ\x05 ّٰ\x04ئر\x04ئز\x04ئن\x04بر\x04بز\x04بن\x04تر\x04تز" + -	"\x04تن\x04ثر\x04ثز\x04ثن\x04ما\x04نر\x04نز\x04نن\x04ير\x04يز\x04ين\x04ئخ" + -	"\x04ئه\x04به\x04ته\x04صخ\x04له\x04نه\x04هٰ\x04يه\x04ثه\x04سه\x04شم\x04شه" + -	"\x06ـَّ\x06ـُّ\x06ـِّ\x04طى\x04طي\x04عى\x04عي\x04غى\x04غي\x04سى\x04سي" + -	"\x04شى\x04شي\x04حى\x04حي\x04جى\x04جي\x04خى\x04خي\x04صى\x04صي\x04ضى\x04ضي" + -	"\x04شج\x04شح\x04شخ\x04شر\x04سر\x04صر\x04ضر\x04اً\x06تجم\x06تحج\x06تحم" + -	"\x06تخم\x06تمج\x06تمح\x06تمخ\x06جمح\x06حمي\x06حمى\x06سحج\x06سجح\x06سجى" + -	"\x06سمح\x06سمج\x06سمم\x06صحح\x06صمم\x06شحم\x06شجي\x06شمخ\x06شمم\x06ضحى" + -	"\x06ضخم\x06طمح\x06طمم\x06طمي\x06عجم\x06عمم\x06عمى\x06غمم\x06غمي\x06غمى" + -	"\x06فخم\x06قمح\x06قمم\x06لحم\x06لحي\x06لحى\x06لجج\x06لخم\x06لمح\x06محج" + -	"\x06محم\x06محي\x06مجح\x06مجم\x06مخج\x06مخم\x06مجخ\x06همج\x06همم\x06نحم" + -	"\x06نحى\x06نجم\x06نجى\x06نمي\x06نمى\x06يمم\x06بخي\x06تجي\x06تجى\x06تخي" + -	"\x06تخى\x06تمي\x06تمى\x06جمي\x06جحى\x06جمى\x06سخى\x06صحي\x06شحي\x06ضحي" + -	"\x06لجي\x06لمي\x06يحي\x06يجي\x06يمي\x06ممي\x06قمي\x06نحي\x06عمي\x06كمي" + -	"\x06نجح\x06مخي\x06لجم\x06كمم\x06جحي\x06حجي\x06مجي\x06فمي\x06بحي\x06سخي" + -	"\x06نجي\x06صلے\x06قلے\x08الله\x08اكبر\x08محمد\x08صلعم\x08رسول\x08عليه" + -	"\x08وسلم\x06صلى!صلى الله عليه وسلم\x0fجل جلاله\x08ریال\x01,\x01:\x01!" + -	"\x01?\x01_\x01{\x01}\x01[\x01]\x01#\x01&\x01*\x01-\x01<\x01>\x01\\\x01$" + -	"\x01%\x01@\x04ـً\x04ـَ\x04ـُ\x04ـِ\x04ـّ\x04ـْ\x02ء\x02آ\x02أ\x02ؤ\x02إ" + -	"\x02ئ\x02ا\x02ب\x02ة\x02ت\x02ث\x02ج\x02ح\x02خ\x02د\x02ذ\x02ر\x02ز\x02س" + -	"\x02ش\x02ص\x02ض\x02ط\x02ظ\x02ع\x02غ\x02ف\x02ق\x02ك\x02ل\x02م\x02ن\x02ه" + -	"\x02و\x02ي\x04لآ\x04لأ\x04لإ\x04لا\x01\x22\x01'\x01/\x01^\x01|\x01~\x02¢" + -	"\x02£\x02¬\x02¦\x02¥\x08𝅗𝅥\x08𝅘𝅥\x0c𝅘𝅥𝅮\x0c𝅘𝅥𝅯\x0c𝅘𝅥𝅰\x0c𝅘𝅥𝅱\x0c𝅘𝅥𝅲\x08𝆹" + -	"𝅥\x08𝆺𝅥\x0c𝆹𝅥𝅮\x0c𝆺𝅥𝅮\x0c𝆹𝅥𝅯\x0c𝆺𝅥𝅯\x02ı\x02ȷ\x02α\x02ε\x02ζ\x02η\x02" + -	"κ\x02λ\x02μ\x02ν\x02ξ\x02ο\x02σ\x02τ\x02υ\x02ψ\x03∇\x03∂\x02ϝ\x02ٮ\x02ڡ" + -	"\x02ٯ\x020,\x021,\x022,\x023,\x024,\x025,\x026,\x027,\x028,\x029,\x03(a)" + -	"\x03(b)\x03(c)\x03(d)\x03(e)\x03(f)\x03(g)\x03(h)\x03(i)\x03(j)\x03(k)" + -	"\x03(l)\x03(m)\x03(n)\x03(o)\x03(p)\x03(q)\x03(r)\x03(s)\x03(t)\x03(u)" + -	"\x03(v)\x03(w)\x03(x)\x03(y)\x03(z)\x07〔s〕\x02wz\x02hv\x02sd\x03ppv\x02w" + -	"c\x02mc\x02md\x02dj\x06ほか\x06ココ\x03サ\x03手\x03字\x03双\x03デ\x03二\x03多\x03解" + -	"\x03天\x03交\x03映\x03無\x03料\x03前\x03後\x03再\x03新\x03初\x03終\x03生\x03販\x03声" + -	"\x03吹\x03演\x03投\x03捕\x03一\x03三\x03遊\x03左\x03中\x03右\x03指\x03走\x03打\x03禁" + -	"\x03空\x03合\x03満\x03有\x03月\x03申\x03割\x03営\x03配\x09〔本〕\x09〔三〕\x09〔二〕\x09〔安" + -	"〕\x09〔点〕\x09〔打〕\x09〔盗〕\x09〔勝〕\x09〔敗〕\x03得\x03可\x03丽\x03丸\x03乁\x03你\x03" + -	"侮\x03侻\x03倂\x03偺\x03備\x03僧\x03像\x03㒞\x03免\x03兔\x03兤\x03具\x03㒹\x03內\x03" + -	"冗\x03冤\x03仌\x03冬\x03况\x03凵\x03刃\x03㓟\x03刻\x03剆\x03剷\x03㔕\x03勇\x03勉\x03" + -	"勤\x03勺\x03包\x03匆\x03北\x03卉\x03卑\x03博\x03即\x03卽\x03卿\x03灰\x03及\x03叟\x03" + -	"叫\x03叱\x03吆\x03咞\x03吸\x03呈\x03周\x03咢\x03哶\x03唐\x03啓\x03啣\x03善\x03喙\x03" + -	"喫\x03喳\x03嗂\x03圖\x03嘆\x03圗\x03噑\x03噴\x03切\x03壮\x03城\x03埴\x03堍\x03型\x03" + -	"堲\x03報\x03墬\x03売\x03壷\x03夆\x03夢\x03奢\x03姬\x03娛\x03娧\x03姘\x03婦\x03㛮\x03" + -	"嬈\x03嬾\x03寃\x03寘\x03寧\x03寳\x03寿\x03将\x03尢\x03㞁\x03屠\x03屮\x03峀\x03岍\x03" + -	"嵃\x03嵮\x03嵫\x03嵼\x03巡\x03巢\x03㠯\x03巽\x03帨\x03帽\x03幩\x03㡢\x03㡼\x03庰\x03" + -	"庳\x03庶\x03廊\x03廾\x03舁\x03弢\x03㣇\x03形\x03彫\x03㣣\x03徚\x03忍\x03志\x03忹\x03" + -	"悁\x03㤺\x03㤜\x03悔\x03惇\x03慈\x03慌\x03慎\x03慺\x03憎\x03憲\x03憤\x03憯\x03懞\x03" + -	"懲\x03懶\x03成\x03戛\x03扝\x03抱\x03拔\x03捐\x03挽\x03拼\x03捨\x03掃\x03揤\x03搢\x03" + -	"揅\x03掩\x03㨮\x03摩\x03摾\x03撝\x03摷\x03㩬\x03敏\x03敬\x03旣\x03書\x03晉\x03㬙\x03" + -	"暑\x03㬈\x03㫤\x03冒\x03冕\x03最\x03暜\x03肭\x03䏙\x03朗\x03望\x03朡\x03杞\x03杓\x03" + -	"㭉\x03柺\x03枅\x03桒\x03梅\x03梎\x03栟\x03椔\x03㮝\x03楂\x03榣\x03槪\x03檨\x03櫛\x03" + -	"㰘\x03次\x03歔\x03㱎\x03歲\x03殟\x03殺\x03殻\x03汎\x03沿\x03泍\x03汧\x03洖\x03派\x03" + -	"海\x03流\x03浩\x03浸\x03涅\x03洴\x03港\x03湮\x03㴳\x03滋\x03滇\x03淹\x03潮\x03濆\x03" + -	"瀹\x03瀞\x03瀛\x03㶖\x03灊\x03災\x03灷\x03炭\x03煅\x03熜\x03爨\x03爵\x03牐\x03犀\x03" + -	"犕\x03獺\x03王\x03㺬\x03玥\x03㺸\x03瑇\x03瑜\x03瑱\x03璅\x03瓊\x03㼛\x03甤\x03甾\x03" + -	"異\x03瘐\x03㿼\x03䀈\x03直\x03眞\x03真\x03睊\x03䀹\x03瞋\x03䁆\x03䂖\x03硎\x03碌\x03" + -	"磌\x03䃣\x03祖\x03福\x03秫\x03䄯\x03穀\x03穊\x03穏\x03䈂\x03篆\x03築\x03䈧\x03糒\x03" + -	"䊠\x03糨\x03糣\x03紀\x03絣\x03䌁\x03緇\x03縂\x03繅\x03䌴\x03䍙\x03罺\x03羕\x03翺\x03" + -	"者\x03聠\x03聰\x03䏕\x03育\x03脃\x03䐋\x03脾\x03媵\x03舄\x03辞\x03䑫\x03芑\x03芋\x03" + -	"芝\x03劳\x03花\x03芳\x03芽\x03苦\x03若\x03茝\x03荣\x03莭\x03茣\x03莽\x03菧\x03著\x03" + -	"荓\x03菊\x03菌\x03菜\x03䔫\x03蓱\x03蓳\x03蔖\x03蕤\x03䕝\x03䕡\x03䕫\x03虐\x03虜\x03" + -	"虧\x03虩\x03蚩\x03蚈\x03蜎\x03蛢\x03蝹\x03蜨\x03蝫\x03螆\x03蟡\x03蠁\x03䗹\x03衠\x03" + -	"衣\x03裗\x03裞\x03䘵\x03裺\x03㒻\x03䚾\x03䛇\x03誠\x03諭\x03變\x03豕\x03貫\x03賁\x03" + -	"贛\x03起\x03跋\x03趼\x03跰\x03軔\x03輸\x03邔\x03郱\x03鄑\x03鄛\x03鈸\x03鋗\x03鋘\x03" + -	"鉼\x03鏹\x03鐕\x03開\x03䦕\x03閷\x03䧦\x03雃\x03嶲\x03霣\x03䩮\x03䩶\x03韠\x03䪲\x03" + -	"頋\x03頩\x03飢\x03䬳\x03餩\x03馧\x03駂\x03駾\x03䯎\x03鬒\x03鱀\x03鳽\x03䳎\x03䳭\x03" + -	"鵧\x03䳸\x03麻\x03䵖\x03黹\x03黾\x03鼅\x03鼏\x03鼖\x03鼻" - -var xorData string = "" + // Size: 4855 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x02\x01\x04\x02\x01\x02\x02\x019\x02\x03\x1c\x02" + -	"\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03\xc1r\x02" + -	"\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<\x03\xc1s*" + -	"\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03\x83\xab" + -	"\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96\xe1\xcd" + -	"\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03\x9a\xec" + -	"\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c!\x03" + -	"\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03ʦ\x93" + -	"\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7\x03" + -	"\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca\xfa" + -	"\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e\x03" + -	"\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca\xe3" + -	"\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99\x03" + -	"\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca\xe8" + -	"\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03\x0b" + -	"\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06\x05" + -	"\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03\x0786" + -	"\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/\x03" + -	"\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f\x03" + -	"\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-\x03" + -	"\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03\x07" + -	"\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03\x07" + -	"\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03\x07" + -	"\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b\x0a" + -	"\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03\x07" + -	"\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+\x03" + -	"\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03\x04" + -	"4\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03\x04+ " + -	"\x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!\x22" + -	"\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04\x03" + -	"\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>\x03" + -	"\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03\x054" + -	"\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03\x05)" + -	":\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$\x1e" + -	"\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226\x03" + -	"\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05\x1b" + -	"\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05\x03" + -	"\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03\x06" + -	"\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08\x03" + -	"\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03\x0a6" + -	"\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a\x1f" + -	"\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03\x0a" + -	"\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f\x02" + -	"\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/\x03" + -	"\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a\x00" + -	"\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+\x10" + -	"\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#<" + -	"\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!\x00" + -	"\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18.\x03" + -	"\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15\x22" + -	"\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b\x12" + -	"\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05<" + -	"\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!\x10\x03\x0b!0" + -	"\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b\x03\x09\x1f" + -	"\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14\x03\x0a\x01" + -	"\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03\x08='\x03" + -	"\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03\x09\x0c" + -	"\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06!3\x03" + -	"\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05\x03\x07" + -	"<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07\x01\x00" + -	"\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03\x09\x11" + -	"\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03\x0a/1" + -	"\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03\x07<3" + -	"\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06\x13\x00" + -	"\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(;\x03" + -	"\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08\x14$" + -	"\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03\x0a" + -	"\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19\x01" + -	"\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18\x03" + -	"\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03\x07" + -	"\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03\x0a" + -	"\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03\x0b" + -	"\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03\x08" + -	"\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05\x03" + -	"\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11\x03" + -	"\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03\x09" + -	"\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a." + -	"\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x01\x1e\x03\x0f$!\x03" + -	"\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08\x18\x03\x0f" + -	"\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$\x03\x0e\x0d)" + -	"\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d\x03\x0d. \x03" + -	"\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03\x0d\x0d\x0f\x03" + -	"\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03\x0c\x09:\x03\x0e" + -	"\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18\x03\x0c\x1f\x1c" + -	"\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03\x0b<+\x03\x0b8" + -	"\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d\x22&\x03\x0b\x1a" + -	"\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03\x0a!\x1a\x03\x0a!" + -	"7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03\x0a\x00 \x03\x0a" + -	"\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a\x1b-\x03\x09-" + -	"\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091\x1f\x03\x093" + -	"\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(\x16\x03\x09" + -	"\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!\x03\x09\x1a" + -	"\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03\x08\x02*" + -	"\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03\x070\x0c" + -	"\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x0671\x03" + -	"\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 \x1d\x03" + -	"\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 29052 bytes (28.37 KiB). Checksum: ef06e7ecc26f36dd. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 125: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 125 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 127 blocks, 8128 entries, 16256 bytes -// The third block is the zero block. -var idnaValues = [8128]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x001a, 0xe9: 0x0018, -	0xea: 0x0039, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x004a, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0069, 0xf3: 0x0079, 0xf4: 0x008a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x00aa, 0xf9: 0x00c9, 0xfa: 0x00d9, 0xfb: 0x0018, -	0xfc: 0x00e9, 0xfd: 0x0119, 0xfe: 0x0149, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0179, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0199, -	// Block 0x5, offset 0x140 -	0x140: 0x0199, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x01b9, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x01d9, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x01e9, 0x1c5: 0x01e9, -	0x1c6: 0x01e9, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0209, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x0229, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x029a, 0x259: 0x02ba, 0x25a: 0x02da, 0x25b: 0x02fa, 0x25c: 0x031a, 0x25d: 0x033a, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0359, 0x262: 0x01d9, 0x263: 0x0369, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0379, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x03a2, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x03c2, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x008a, 0x2c5: 0x03d2, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0040, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0429, -	0x4b6: 0x0451, 0x4b7: 0x0479, 0x4b8: 0x04a1, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x0c08, 0x541: 0x0a08, 0x542: 0x0a08, 0x543: 0x0a08, 0x544: 0x0a08, 0x545: 0x0a08, -	0x546: 0x0c08, 0x547: 0x0c08, 0x548: 0x0a08, 0x549: 0x0c08, 0x54a: 0x0a08, 0x54b: 0x0a08, -	0x54c: 0x0a08, 0x54d: 0x0a08, 0x54e: 0x0a08, 0x54f: 0x0a08, 0x550: 0x0a08, 0x551: 0x0a08, -	0x552: 0x0a08, 0x553: 0x0a08, 0x554: 0x0c08, 0x555: 0x0a08, 0x556: 0x0808, 0x557: 0x0808, -	0x558: 0x0808, 0x559: 0x3308, 0x55a: 0x3308, 0x55b: 0x3308, 0x55c: 0x0040, 0x55d: 0x0040, -	0x55e: 0x0818, 0x55f: 0x0040, 0x560: 0x0a08, 0x561: 0x0808, 0x562: 0x0a08, 0x563: 0x0a08, -	0x564: 0x0a08, 0x565: 0x0a08, 0x566: 0x0808, 0x567: 0x0c08, 0x568: 0x0a08, 0x569: 0x0c08, -	0x56a: 0x0c08, 0x56b: 0x0040, 0x56c: 0x0040, 0x56d: 0x0040, 0x56e: 0x0040, 0x56f: 0x0040, -	0x570: 0x0040, 0x571: 0x0040, 0x572: 0x0040, 0x573: 0x0040, 0x574: 0x0040, 0x575: 0x0040, -	0x576: 0x0040, 0x577: 0x0040, 0x578: 0x0040, 0x579: 0x0040, 0x57a: 0x0040, 0x57b: 0x0040, -	0x57c: 0x0040, 0x57d: 0x0040, 0x57e: 0x0040, 0x57f: 0x0040, -	// Block 0x16, offset 0x580 -	0x580: 0x3008, 0x581: 0x3308, 0x582: 0x3308, 0x583: 0x3308, 0x584: 0x3308, 0x585: 0x3308, -	0x586: 0x3308, 0x587: 0x3308, 0x588: 0x3308, 0x589: 0x3008, 0x58a: 0x3008, 0x58b: 0x3008, -	0x58c: 0x3008, 0x58d: 0x3b08, 0x58e: 0x3008, 0x58f: 0x3008, 0x590: 0x0008, 0x591: 0x3308, -	0x592: 0x3308, 0x593: 0x3308, 0x594: 0x3308, 0x595: 0x3308, 0x596: 0x3308, 0x597: 0x3308, -	0x598: 0x04c9, 0x599: 0x0501, 0x59a: 0x0539, 0x59b: 0x0571, 0x59c: 0x05a9, 0x59d: 0x05e1, -	0x59e: 0x0619, 0x59f: 0x0651, 0x5a0: 0x0008, 0x5a1: 0x0008, 0x5a2: 0x3308, 0x5a3: 0x3308, -	0x5a4: 0x0018, 0x5a5: 0x0018, 0x5a6: 0x0008, 0x5a7: 0x0008, 0x5a8: 0x0008, 0x5a9: 0x0008, -	0x5aa: 0x0008, 0x5ab: 0x0008, 0x5ac: 0x0008, 0x5ad: 0x0008, 0x5ae: 0x0008, 0x5af: 0x0008, -	0x5b0: 0x0018, 0x5b1: 0x0008, 0x5b2: 0x0008, 0x5b3: 0x0008, 0x5b4: 0x0008, 0x5b5: 0x0008, -	0x5b6: 0x0008, 0x5b7: 0x0008, 0x5b8: 0x0008, 0x5b9: 0x0008, 0x5ba: 0x0008, 0x5bb: 0x0008, -	0x5bc: 0x0008, 0x5bd: 0x0008, 0x5be: 0x0008, 0x5bf: 0x0008, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x0008, 0x5c1: 0x3308, 0x5c2: 0x3008, 0x5c3: 0x3008, 0x5c4: 0x0040, 0x5c5: 0x0008, -	0x5c6: 0x0008, 0x5c7: 0x0008, 0x5c8: 0x0008, 0x5c9: 0x0008, 0x5ca: 0x0008, 0x5cb: 0x0008, -	0x5cc: 0x0008, 0x5cd: 0x0040, 0x5ce: 0x0040, 0x5cf: 0x0008, 0x5d0: 0x0008, 0x5d1: 0x0040, -	0x5d2: 0x0040, 0x5d3: 0x0008, 0x5d4: 0x0008, 0x5d5: 0x0008, 0x5d6: 0x0008, 0x5d7: 0x0008, -	0x5d8: 0x0008, 0x5d9: 0x0008, 0x5da: 0x0008, 0x5db: 0x0008, 0x5dc: 0x0008, 0x5dd: 0x0008, -	0x5de: 0x0008, 0x5df: 0x0008, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x0008, 0x5e3: 0x0008, -	0x5e4: 0x0008, 0x5e5: 0x0008, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0040, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0008, 0x5f1: 0x0040, 0x5f2: 0x0008, 0x5f3: 0x0040, 0x5f4: 0x0040, 0x5f5: 0x0040, -	0x5f6: 0x0008, 0x5f7: 0x0008, 0x5f8: 0x0008, 0x5f9: 0x0008, 0x5fa: 0x0040, 0x5fb: 0x0040, -	0x5fc: 0x3308, 0x5fd: 0x0008, 0x5fe: 0x3008, 0x5ff: 0x3008, -	// Block 0x18, offset 0x600 -	0x600: 0x3008, 0x601: 0x3308, 0x602: 0x3308, 0x603: 0x3308, 0x604: 0x3308, 0x605: 0x0040, -	0x606: 0x0040, 0x607: 0x3008, 0x608: 0x3008, 0x609: 0x0040, 0x60a: 0x0040, 0x60b: 0x3008, -	0x60c: 0x3008, 0x60d: 0x3b08, 0x60e: 0x0008, 0x60f: 0x0040, 0x610: 0x0040, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0040, 0x614: 0x0040, 0x615: 0x0040, 0x616: 0x0040, 0x617: 0x3008, -	0x618: 0x0040, 0x619: 0x0040, 0x61a: 0x0040, 0x61b: 0x0040, 0x61c: 0x0689, 0x61d: 0x06c1, -	0x61e: 0x0040, 0x61f: 0x06f9, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x3308, 0x623: 0x3308, -	0x624: 0x0040, 0x625: 0x0040, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0008, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0008, 0x632: 0x0018, 0x633: 0x0018, 0x634: 0x0018, 0x635: 0x0018, -	0x636: 0x0018, 0x637: 0x0018, 0x638: 0x0018, 0x639: 0x0018, 0x63a: 0x0018, 0x63b: 0x0018, -	0x63c: 0x0008, 0x63d: 0x0018, 0x63e: 0x0040, 0x63f: 0x0040, -	// Block 0x19, offset 0x640 -	0x640: 0x0040, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x3008, 0x644: 0x0040, 0x645: 0x0008, -	0x646: 0x0008, 0x647: 0x0008, 0x648: 0x0008, 0x649: 0x0008, 0x64a: 0x0008, 0x64b: 0x0040, -	0x64c: 0x0040, 0x64d: 0x0040, 0x64e: 0x0040, 0x64f: 0x0008, 0x650: 0x0008, 0x651: 0x0040, -	0x652: 0x0040, 0x653: 0x0008, 0x654: 0x0008, 0x655: 0x0008, 0x656: 0x0008, 0x657: 0x0008, -	0x658: 0x0008, 0x659: 0x0008, 0x65a: 0x0008, 0x65b: 0x0008, 0x65c: 0x0008, 0x65d: 0x0008, -	0x65e: 0x0008, 0x65f: 0x0008, 0x660: 0x0008, 0x661: 0x0008, 0x662: 0x0008, 0x663: 0x0008, -	0x664: 0x0008, 0x665: 0x0008, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0040, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x0008, 0x671: 0x0040, 0x672: 0x0008, 0x673: 0x0731, 0x674: 0x0040, 0x675: 0x0008, -	0x676: 0x0769, 0x677: 0x0040, 0x678: 0x0008, 0x679: 0x0008, 0x67a: 0x0040, 0x67b: 0x0040, -	0x67c: 0x3308, 0x67d: 0x0040, 0x67e: 0x3008, 0x67f: 0x3008, -	// Block 0x1a, offset 0x680 -	0x680: 0x3008, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x0040, 0x684: 0x0040, 0x685: 0x0040, -	0x686: 0x0040, 0x687: 0x3308, 0x688: 0x3308, 0x689: 0x0040, 0x68a: 0x0040, 0x68b: 0x3308, -	0x68c: 0x3308, 0x68d: 0x3b08, 0x68e: 0x0040, 0x68f: 0x0040, 0x690: 0x0040, 0x691: 0x3308, -	0x692: 0x0040, 0x693: 0x0040, 0x694: 0x0040, 0x695: 0x0040, 0x696: 0x0040, 0x697: 0x0040, -	0x698: 0x0040, 0x699: 0x07a1, 0x69a: 0x07d9, 0x69b: 0x0811, 0x69c: 0x0008, 0x69d: 0x0040, -	0x69e: 0x0849, 0x69f: 0x0040, 0x6a0: 0x0040, 0x6a1: 0x0040, 0x6a2: 0x0040, 0x6a3: 0x0040, -	0x6a4: 0x0040, 0x6a5: 0x0040, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0008, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x3308, 0x6b1: 0x3308, 0x6b2: 0x0008, 0x6b3: 0x0008, 0x6b4: 0x0008, 0x6b5: 0x3308, -	0x6b6: 0x0040, 0x6b7: 0x0040, 0x6b8: 0x0040, 0x6b9: 0x0040, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x0040, 0x6bd: 0x0040, 0x6be: 0x0040, 0x6bf: 0x0040, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x0040, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x3008, 0x6c4: 0x0040, 0x6c5: 0x0008, -	0x6c6: 0x0008, 0x6c7: 0x0008, 0x6c8: 0x0008, 0x6c9: 0x0008, 0x6ca: 0x0008, 0x6cb: 0x0008, -	0x6cc: 0x0008, 0x6cd: 0x0008, 0x6ce: 0x0040, 0x6cf: 0x0008, 0x6d0: 0x0008, 0x6d1: 0x0008, -	0x6d2: 0x0040, 0x6d3: 0x0008, 0x6d4: 0x0008, 0x6d5: 0x0008, 0x6d6: 0x0008, 0x6d7: 0x0008, -	0x6d8: 0x0008, 0x6d9: 0x0008, 0x6da: 0x0008, 0x6db: 0x0008, 0x6dc: 0x0008, 0x6dd: 0x0008, -	0x6de: 0x0008, 0x6df: 0x0008, 0x6e0: 0x0008, 0x6e1: 0x0008, 0x6e2: 0x0008, 0x6e3: 0x0008, -	0x6e4: 0x0008, 0x6e5: 0x0008, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0040, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x0008, 0x6f1: 0x0040, 0x6f2: 0x0008, 0x6f3: 0x0008, 0x6f4: 0x0040, 0x6f5: 0x0008, -	0x6f6: 0x0008, 0x6f7: 0x0008, 0x6f8: 0x0008, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x3308, 0x6fd: 0x0008, 0x6fe: 0x3008, 0x6ff: 0x3008, -	// Block 0x1c, offset 0x700 -	0x700: 0x3008, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3308, 0x704: 0x3308, 0x705: 0x3308, -	0x706: 0x0040, 0x707: 0x3308, 0x708: 0x3308, 0x709: 0x3008, 0x70a: 0x0040, 0x70b: 0x3008, -	0x70c: 0x3008, 0x70d: 0x3b08, 0x70e: 0x0040, 0x70f: 0x0040, 0x710: 0x0008, 0x711: 0x0040, -	0x712: 0x0040, 0x713: 0x0040, 0x714: 0x0040, 0x715: 0x0040, 0x716: 0x0040, 0x717: 0x0040, -	0x718: 0x0040, 0x719: 0x0040, 0x71a: 0x0040, 0x71b: 0x0040, 0x71c: 0x0040, 0x71d: 0x0040, -	0x71e: 0x0040, 0x71f: 0x0040, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x3308, 0x723: 0x3308, -	0x724: 0x0040, 0x725: 0x0040, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0008, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0018, 0x731: 0x0018, 0x732: 0x0040, 0x733: 0x0040, 0x734: 0x0040, 0x735: 0x0040, -	0x736: 0x0040, 0x737: 0x0040, 0x738: 0x0040, 0x739: 0x0008, 0x73a: 0x3308, 0x73b: 0x3308, -	0x73c: 0x3308, 0x73d: 0x3308, 0x73e: 0x3308, 0x73f: 0x3308, -	// Block 0x1d, offset 0x740 -	0x740: 0x0040, 0x741: 0x3308, 0x742: 0x3008, 0x743: 0x3008, 0x744: 0x0040, 0x745: 0x0008, -	0x746: 0x0008, 0x747: 0x0008, 0x748: 0x0008, 0x749: 0x0008, 0x74a: 0x0008, 0x74b: 0x0008, -	0x74c: 0x0008, 0x74d: 0x0040, 0x74e: 0x0040, 0x74f: 0x0008, 0x750: 0x0008, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0008, 0x754: 0x0008, 0x755: 0x0008, 0x756: 0x0008, 0x757: 0x0008, -	0x758: 0x0008, 0x759: 0x0008, 0x75a: 0x0008, 0x75b: 0x0008, 0x75c: 0x0008, 0x75d: 0x0008, -	0x75e: 0x0008, 0x75f: 0x0008, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x0008, 0x763: 0x0008, -	0x764: 0x0008, 0x765: 0x0008, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0040, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0008, 0x771: 0x0040, 0x772: 0x0008, 0x773: 0x0008, 0x774: 0x0040, 0x775: 0x0008, -	0x776: 0x0008, 0x777: 0x0008, 0x778: 0x0008, 0x779: 0x0008, 0x77a: 0x0040, 0x77b: 0x0040, -	0x77c: 0x3308, 0x77d: 0x0008, 0x77e: 0x3008, 0x77f: 0x3308, -	// Block 0x1e, offset 0x780 -	0x780: 0x3008, 0x781: 0x3308, 0x782: 0x3308, 0x783: 0x3308, 0x784: 0x3308, 0x785: 0x0040, -	0x786: 0x0040, 0x787: 0x3008, 0x788: 0x3008, 0x789: 0x0040, 0x78a: 0x0040, 0x78b: 0x3008, -	0x78c: 0x3008, 0x78d: 0x3b08, 0x78e: 0x0040, 0x78f: 0x0040, 0x790: 0x0040, 0x791: 0x0040, -	0x792: 0x0040, 0x793: 0x0040, 0x794: 0x0040, 0x795: 0x0040, 0x796: 0x3308, 0x797: 0x3008, -	0x798: 0x0040, 0x799: 0x0040, 0x79a: 0x0040, 0x79b: 0x0040, 0x79c: 0x0881, 0x79d: 0x08b9, -	0x79e: 0x0040, 0x79f: 0x0008, 0x7a0: 0x0008, 0x7a1: 0x0008, 0x7a2: 0x3308, 0x7a3: 0x3308, -	0x7a4: 0x0040, 0x7a5: 0x0040, 0x7a6: 0x0008, 0x7a7: 0x0008, 0x7a8: 0x0008, 0x7a9: 0x0008, -	0x7aa: 0x0008, 0x7ab: 0x0008, 0x7ac: 0x0008, 0x7ad: 0x0008, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0018, 0x7b1: 0x0008, 0x7b2: 0x0018, 0x7b3: 0x0018, 0x7b4: 0x0018, 0x7b5: 0x0018, -	0x7b6: 0x0018, 0x7b7: 0x0018, 0x7b8: 0x0040, 0x7b9: 0x0040, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x0040, 0x7bd: 0x0040, 0x7be: 0x0040, 0x7bf: 0x0040, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x0040, 0x7c1: 0x0040, 0x7c2: 0x3308, 0x7c3: 0x0008, 0x7c4: 0x0040, 0x7c5: 0x0008, -	0x7c6: 0x0008, 0x7c7: 0x0008, 0x7c8: 0x0008, 0x7c9: 0x0008, 0x7ca: 0x0008, 0x7cb: 0x0040, -	0x7cc: 0x0040, 0x7cd: 0x0040, 0x7ce: 0x0008, 0x7cf: 0x0008, 0x7d0: 0x0008, 0x7d1: 0x0040, -	0x7d2: 0x0008, 0x7d3: 0x0008, 0x7d4: 0x0008, 0x7d5: 0x0008, 0x7d6: 0x0040, 0x7d7: 0x0040, -	0x7d8: 0x0040, 0x7d9: 0x0008, 0x7da: 0x0008, 0x7db: 0x0040, 0x7dc: 0x0008, 0x7dd: 0x0040, -	0x7de: 0x0008, 0x7df: 0x0008, 0x7e0: 0x0040, 0x7e1: 0x0040, 0x7e2: 0x0040, 0x7e3: 0x0008, -	0x7e4: 0x0008, 0x7e5: 0x0040, 0x7e6: 0x0040, 0x7e7: 0x0040, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0040, 0x7ec: 0x0040, 0x7ed: 0x0040, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0008, 0x7f1: 0x0008, 0x7f2: 0x0008, 0x7f3: 0x0008, 0x7f4: 0x0008, 0x7f5: 0x0008, -	0x7f6: 0x0008, 0x7f7: 0x0008, 0x7f8: 0x0008, 0x7f9: 0x0008, 0x7fa: 0x0040, 0x7fb: 0x0040, -	0x7fc: 0x0040, 0x7fd: 0x0040, 0x7fe: 0x3008, 0x7ff: 0x3008, -	// Block 0x20, offset 0x800 -	0x800: 0x3308, 0x801: 0x3008, 0x802: 0x3008, 0x803: 0x3008, 0x804: 0x3008, 0x805: 0x0040, -	0x806: 0x3308, 0x807: 0x3308, 0x808: 0x3308, 0x809: 0x0040, 0x80a: 0x3308, 0x80b: 0x3308, -	0x80c: 0x3308, 0x80d: 0x3b08, 0x80e: 0x0040, 0x80f: 0x0040, 0x810: 0x0040, 0x811: 0x0040, -	0x812: 0x0040, 0x813: 0x0040, 0x814: 0x0040, 0x815: 0x3308, 0x816: 0x3308, 0x817: 0x0040, -	0x818: 0x0008, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0040, 0x81c: 0x0040, 0x81d: 0x0040, -	0x81e: 0x0040, 0x81f: 0x0040, 0x820: 0x0008, 0x821: 0x0008, 0x822: 0x3308, 0x823: 0x3308, -	0x824: 0x0040, 0x825: 0x0040, 0x826: 0x0008, 0x827: 0x0008, 0x828: 0x0008, 0x829: 0x0008, -	0x82a: 0x0008, 0x82b: 0x0008, 0x82c: 0x0008, 0x82d: 0x0008, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0040, 0x831: 0x0040, 0x832: 0x0040, 0x833: 0x0040, 0x834: 0x0040, 0x835: 0x0040, -	0x836: 0x0040, 0x837: 0x0040, 0x838: 0x0018, 0x839: 0x0018, 0x83a: 0x0018, 0x83b: 0x0018, -	0x83c: 0x0018, 0x83d: 0x0018, 0x83e: 0x0018, 0x83f: 0x0018, -	// Block 0x21, offset 0x840 -	0x840: 0x0008, 0x841: 0x3308, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x0040, 0x845: 0x0008, -	0x846: 0x0008, 0x847: 0x0008, 0x848: 0x0008, 0x849: 0x0008, 0x84a: 0x0008, 0x84b: 0x0008, -	0x84c: 0x0008, 0x84d: 0x0040, 0x84e: 0x0008, 0x84f: 0x0008, 0x850: 0x0008, 0x851: 0x0040, -	0x852: 0x0008, 0x853: 0x0008, 0x854: 0x0008, 0x855: 0x0008, 0x856: 0x0008, 0x857: 0x0008, -	0x858: 0x0008, 0x859: 0x0008, 0x85a: 0x0008, 0x85b: 0x0008, 0x85c: 0x0008, 0x85d: 0x0008, -	0x85e: 0x0008, 0x85f: 0x0008, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x0008, 0x863: 0x0008, -	0x864: 0x0008, 0x865: 0x0008, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0040, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0008, 0x871: 0x0008, 0x872: 0x0008, 0x873: 0x0008, 0x874: 0x0040, 0x875: 0x0008, -	0x876: 0x0008, 0x877: 0x0008, 0x878: 0x0008, 0x879: 0x0008, 0x87a: 0x0040, 0x87b: 0x0040, -	0x87c: 0x3308, 0x87d: 0x0008, 0x87e: 0x3008, 0x87f: 0x3308, -	// Block 0x22, offset 0x880 -	0x880: 0x3008, 0x881: 0x3008, 0x882: 0x3008, 0x883: 0x3008, 0x884: 0x3008, 0x885: 0x0040, -	0x886: 0x3308, 0x887: 0x3008, 0x888: 0x3008, 0x889: 0x0040, 0x88a: 0x3008, 0x88b: 0x3008, -	0x88c: 0x3308, 0x88d: 0x3b08, 0x88e: 0x0040, 0x88f: 0x0040, 0x890: 0x0040, 0x891: 0x0040, -	0x892: 0x0040, 0x893: 0x0040, 0x894: 0x0040, 0x895: 0x3008, 0x896: 0x3008, 0x897: 0x0040, -	0x898: 0x0040, 0x899: 0x0040, 0x89a: 0x0040, 0x89b: 0x0040, 0x89c: 0x0040, 0x89d: 0x0040, -	0x89e: 0x0008, 0x89f: 0x0040, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x3308, 0x8a3: 0x3308, -	0x8a4: 0x0040, 0x8a5: 0x0040, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0008, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0040, 0x8b1: 0x0008, 0x8b2: 0x0008, 0x8b3: 0x0040, 0x8b4: 0x0040, 0x8b5: 0x0040, -	0x8b6: 0x0040, 0x8b7: 0x0040, 0x8b8: 0x0040, 0x8b9: 0x0040, 0x8ba: 0x0040, 0x8bb: 0x0040, -	0x8bc: 0x0040, 0x8bd: 0x0040, 0x8be: 0x0040, 0x8bf: 0x0040, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x3008, 0x8c1: 0x3308, 0x8c2: 0x3308, 0x8c3: 0x3308, 0x8c4: 0x3308, 0x8c5: 0x0040, -	0x8c6: 0x3008, 0x8c7: 0x3008, 0x8c8: 0x3008, 0x8c9: 0x0040, 0x8ca: 0x3008, 0x8cb: 0x3008, -	0x8cc: 0x3008, 0x8cd: 0x3b08, 0x8ce: 0x0008, 0x8cf: 0x0018, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0008, 0x8d5: 0x0008, 0x8d6: 0x0008, 0x8d7: 0x3008, -	0x8d8: 0x0018, 0x8d9: 0x0018, 0x8da: 0x0018, 0x8db: 0x0018, 0x8dc: 0x0018, 0x8dd: 0x0018, -	0x8de: 0x0018, 0x8df: 0x0008, 0x8e0: 0x0008, 0x8e1: 0x0008, 0x8e2: 0x3308, 0x8e3: 0x3308, -	0x8e4: 0x0040, 0x8e5: 0x0040, 0x8e6: 0x0008, 0x8e7: 0x0008, 0x8e8: 0x0008, 0x8e9: 0x0008, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0008, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0018, 0x8f1: 0x0018, 0x8f2: 0x0018, 0x8f3: 0x0018, 0x8f4: 0x0018, 0x8f5: 0x0018, -	0x8f6: 0x0018, 0x8f7: 0x0018, 0x8f8: 0x0018, 0x8f9: 0x0018, 0x8fa: 0x0008, 0x8fb: 0x0008, -	0x8fc: 0x0008, 0x8fd: 0x0008, 0x8fe: 0x0008, 0x8ff: 0x0008, -	// Block 0x24, offset 0x900 -	0x900: 0x0040, 0x901: 0x0008, 0x902: 0x0008, 0x903: 0x0040, 0x904: 0x0008, 0x905: 0x0040, -	0x906: 0x0040, 0x907: 0x0008, 0x908: 0x0008, 0x909: 0x0040, 0x90a: 0x0008, 0x90b: 0x0040, -	0x90c: 0x0040, 0x90d: 0x0008, 0x90e: 0x0040, 0x90f: 0x0040, 0x910: 0x0040, 0x911: 0x0040, -	0x912: 0x0040, 0x913: 0x0040, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x0008, -	0x918: 0x0040, 0x919: 0x0008, 0x91a: 0x0008, 0x91b: 0x0008, 0x91c: 0x0008, 0x91d: 0x0008, -	0x91e: 0x0008, 0x91f: 0x0008, 0x920: 0x0040, 0x921: 0x0008, 0x922: 0x0008, 0x923: 0x0008, -	0x924: 0x0040, 0x925: 0x0008, 0x926: 0x0040, 0x927: 0x0008, 0x928: 0x0040, 0x929: 0x0040, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0040, 0x92d: 0x0008, 0x92e: 0x0008, 0x92f: 0x0008, -	0x930: 0x0008, 0x931: 0x3308, 0x932: 0x0008, 0x933: 0x0929, 0x934: 0x3308, 0x935: 0x3308, -	0x936: 0x3308, 0x937: 0x3308, 0x938: 0x3308, 0x939: 0x3308, 0x93a: 0x0040, 0x93b: 0x3308, -	0x93c: 0x3308, 0x93d: 0x0008, 0x93e: 0x0040, 0x93f: 0x0040, -	// Block 0x25, offset 0x940 -	0x940: 0x0008, 0x941: 0x0008, 0x942: 0x0008, 0x943: 0x09d1, 0x944: 0x0008, 0x945: 0x0008, -	0x946: 0x0008, 0x947: 0x0008, 0x948: 0x0040, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0008, -	0x94c: 0x0008, 0x94d: 0x0a09, 0x94e: 0x0008, 0x94f: 0x0008, 0x950: 0x0008, 0x951: 0x0008, -	0x952: 0x0a41, 0x953: 0x0008, 0x954: 0x0008, 0x955: 0x0008, 0x956: 0x0008, 0x957: 0x0a79, -	0x958: 0x0008, 0x959: 0x0008, 0x95a: 0x0008, 0x95b: 0x0008, 0x95c: 0x0ab1, 0x95d: 0x0008, -	0x95e: 0x0008, 0x95f: 0x0008, 0x960: 0x0008, 0x961: 0x0008, 0x962: 0x0008, 0x963: 0x0008, -	0x964: 0x0008, 0x965: 0x0008, 0x966: 0x0008, 0x967: 0x0008, 0x968: 0x0008, 0x969: 0x0ae9, -	0x96a: 0x0008, 0x96b: 0x0008, 0x96c: 0x0008, 0x96d: 0x0040, 0x96e: 0x0040, 0x96f: 0x0040, -	0x970: 0x0040, 0x971: 0x3308, 0x972: 0x3308, 0x973: 0x0b21, 0x974: 0x3308, 0x975: 0x0b59, -	0x976: 0x0b91, 0x977: 0x0bc9, 0x978: 0x0c19, 0x979: 0x0c51, 0x97a: 0x3308, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x3308, 0x97e: 0x3308, 0x97f: 0x3008, -	// Block 0x26, offset 0x980 -	0x980: 0x3308, 0x981: 0x0ca1, 0x982: 0x3308, 0x983: 0x3308, 0x984: 0x3b08, 0x985: 0x0018, -	0x986: 0x3308, 0x987: 0x3308, 0x988: 0x0008, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x3308, 0x98e: 0x3308, 0x98f: 0x3308, 0x990: 0x3308, 0x991: 0x3308, -	0x992: 0x3308, 0x993: 0x0cd9, 0x994: 0x3308, 0x995: 0x3308, 0x996: 0x3308, 0x997: 0x3308, -	0x998: 0x0040, 0x999: 0x3308, 0x99a: 0x3308, 0x99b: 0x3308, 0x99c: 0x3308, 0x99d: 0x0d11, -	0x99e: 0x3308, 0x99f: 0x3308, 0x9a0: 0x3308, 0x9a1: 0x3308, 0x9a2: 0x0d49, 0x9a3: 0x3308, -	0x9a4: 0x3308, 0x9a5: 0x3308, 0x9a6: 0x3308, 0x9a7: 0x0d81, 0x9a8: 0x3308, 0x9a9: 0x3308, -	0x9aa: 0x3308, 0x9ab: 0x3308, 0x9ac: 0x0db9, 0x9ad: 0x3308, 0x9ae: 0x3308, 0x9af: 0x3308, -	0x9b0: 0x3308, 0x9b1: 0x3308, 0x9b2: 0x3308, 0x9b3: 0x3308, 0x9b4: 0x3308, 0x9b5: 0x3308, -	0x9b6: 0x3308, 0x9b7: 0x3308, 0x9b8: 0x3308, 0x9b9: 0x0df1, 0x9ba: 0x3308, 0x9bb: 0x3308, -	0x9bc: 0x3308, 0x9bd: 0x0040, 0x9be: 0x0018, 0x9bf: 0x0018, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x0008, 0x9c1: 0x0008, 0x9c2: 0x0008, 0x9c3: 0x0008, 0x9c4: 0x0008, 0x9c5: 0x0008, -	0x9c6: 0x0008, 0x9c7: 0x0008, 0x9c8: 0x0008, 0x9c9: 0x0008, 0x9ca: 0x0008, 0x9cb: 0x0008, -	0x9cc: 0x0008, 0x9cd: 0x0008, 0x9ce: 0x0008, 0x9cf: 0x0008, 0x9d0: 0x0008, 0x9d1: 0x0008, -	0x9d2: 0x0008, 0x9d3: 0x0008, 0x9d4: 0x0008, 0x9d5: 0x0008, 0x9d6: 0x0008, 0x9d7: 0x0008, -	0x9d8: 0x0008, 0x9d9: 0x0008, 0x9da: 0x0008, 0x9db: 0x0008, 0x9dc: 0x0008, 0x9dd: 0x0008, -	0x9de: 0x0008, 0x9df: 0x0008, 0x9e0: 0x0008, 0x9e1: 0x0008, 0x9e2: 0x0008, 0x9e3: 0x0008, -	0x9e4: 0x0008, 0x9e5: 0x0008, 0x9e6: 0x0008, 0x9e7: 0x0008, 0x9e8: 0x0008, 0x9e9: 0x0008, -	0x9ea: 0x0008, 0x9eb: 0x0008, 0x9ec: 0x0039, 0x9ed: 0x0ed1, 0x9ee: 0x0ee9, 0x9ef: 0x0008, -	0x9f0: 0x0ef9, 0x9f1: 0x0f09, 0x9f2: 0x0f19, 0x9f3: 0x0f31, 0x9f4: 0x0249, 0x9f5: 0x0f41, -	0x9f6: 0x0259, 0x9f7: 0x0f51, 0x9f8: 0x0359, 0x9f9: 0x0f61, 0x9fa: 0x0f71, 0x9fb: 0x0008, -	0x9fc: 0x00d9, 0x9fd: 0x0f81, 0x9fe: 0x0f99, 0x9ff: 0x0269, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0fa9, 0xa01: 0x0fb9, 0xa02: 0x0279, 0xa03: 0x0039, 0xa04: 0x0fc9, 0xa05: 0x0fe1, -	0xa06: 0x059d, 0xa07: 0x0ee9, 0xa08: 0x0ef9, 0xa09: 0x0f09, 0xa0a: 0x0ff9, 0xa0b: 0x1011, -	0xa0c: 0x1029, 0xa0d: 0x0f31, 0xa0e: 0x0008, 0xa0f: 0x0f51, 0xa10: 0x0f61, 0xa11: 0x1041, -	0xa12: 0x00d9, 0xa13: 0x1059, 0xa14: 0x05b5, 0xa15: 0x05b5, 0xa16: 0x0f99, 0xa17: 0x0fa9, -	0xa18: 0x0fb9, 0xa19: 0x059d, 0xa1a: 0x1071, 0xa1b: 0x1089, 0xa1c: 0x05cd, 0xa1d: 0x1099, -	0xa1e: 0x10b1, 0xa1f: 0x10c9, 0xa20: 0x10e1, 0xa21: 0x10f9, 0xa22: 0x0f41, 0xa23: 0x0269, -	0xa24: 0x0fb9, 0xa25: 0x1089, 0xa26: 0x1099, 0xa27: 0x10b1, 0xa28: 0x1111, 0xa29: 0x10e1, -	0xa2a: 0x10f9, 0xa2b: 0x0008, 0xa2c: 0x0008, 0xa2d: 0x0008, 0xa2e: 0x0008, 0xa2f: 0x0008, -	0xa30: 0x0008, 0xa31: 0x0008, 0xa32: 0x0008, 0xa33: 0x0008, 0xa34: 0x0008, 0xa35: 0x0008, -	0xa36: 0x0008, 0xa37: 0x0008, 0xa38: 0x1129, 0xa39: 0x0008, 0xa3a: 0x0008, 0xa3b: 0x0008, -	0xa3c: 0x0008, 0xa3d: 0x0008, 0xa3e: 0x0008, 0xa3f: 0x0008, -	// Block 0x29, offset 0xa40 -	0xa40: 0x0008, 0xa41: 0x0008, 0xa42: 0x0008, 0xa43: 0x0008, 0xa44: 0x0008, 0xa45: 0x0008, -	0xa46: 0x0008, 0xa47: 0x0008, 0xa48: 0x0008, 0xa49: 0x0008, 0xa4a: 0x0008, 0xa4b: 0x0008, -	0xa4c: 0x0008, 0xa4d: 0x0008, 0xa4e: 0x0008, 0xa4f: 0x0008, 0xa50: 0x0008, 0xa51: 0x0008, -	0xa52: 0x0008, 0xa53: 0x0008, 0xa54: 0x0008, 0xa55: 0x0008, 0xa56: 0x0008, 0xa57: 0x0008, -	0xa58: 0x0008, 0xa59: 0x0008, 0xa5a: 0x0008, 0xa5b: 0x1141, 0xa5c: 0x1159, 0xa5d: 0x1169, -	0xa5e: 0x1181, 0xa5f: 0x1029, 0xa60: 0x1199, 0xa61: 0x11a9, 0xa62: 0x11c1, 0xa63: 0x11d9, -	0xa64: 0x11f1, 0xa65: 0x1209, 0xa66: 0x1221, 0xa67: 0x05e5, 0xa68: 0x1239, 0xa69: 0x1251, -	0xa6a: 0xe17d, 0xa6b: 0x1269, 0xa6c: 0x1281, 0xa6d: 0x1299, 0xa6e: 0x12b1, 0xa6f: 0x12c9, -	0xa70: 0x12e1, 0xa71: 0x12f9, 0xa72: 0x1311, 0xa73: 0x1329, 0xa74: 0x1341, 0xa75: 0x1359, -	0xa76: 0x1371, 0xa77: 0x1389, 0xa78: 0x05fd, 0xa79: 0x13a1, 0xa7a: 0x13b9, 0xa7b: 0x13d1, -	0xa7c: 0x13e1, 0xa7d: 0x13f9, 0xa7e: 0x1411, 0xa7f: 0x1429, -	// Block 0x2a, offset 0xa80 -	0xa80: 0xe00d, 0xa81: 0x0008, 0xa82: 0xe00d, 0xa83: 0x0008, 0xa84: 0xe00d, 0xa85: 0x0008, -	0xa86: 0xe00d, 0xa87: 0x0008, 0xa88: 0xe00d, 0xa89: 0x0008, 0xa8a: 0xe00d, 0xa8b: 0x0008, -	0xa8c: 0xe00d, 0xa8d: 0x0008, 0xa8e: 0xe00d, 0xa8f: 0x0008, 0xa90: 0xe00d, 0xa91: 0x0008, -	0xa92: 0xe00d, 0xa93: 0x0008, 0xa94: 0xe00d, 0xa95: 0x0008, 0xa96: 0xe00d, 0xa97: 0x0008, -	0xa98: 0xe00d, 0xa99: 0x0008, 0xa9a: 0xe00d, 0xa9b: 0x0008, 0xa9c: 0xe00d, 0xa9d: 0x0008, -	0xa9e: 0xe00d, 0xa9f: 0x0008, 0xaa0: 0xe00d, 0xaa1: 0x0008, 0xaa2: 0xe00d, 0xaa3: 0x0008, -	0xaa4: 0xe00d, 0xaa5: 0x0008, 0xaa6: 0xe00d, 0xaa7: 0x0008, 0xaa8: 0xe00d, 0xaa9: 0x0008, -	0xaaa: 0xe00d, 0xaab: 0x0008, 0xaac: 0xe00d, 0xaad: 0x0008, 0xaae: 0xe00d, 0xaaf: 0x0008, -	0xab0: 0xe00d, 0xab1: 0x0008, 0xab2: 0xe00d, 0xab3: 0x0008, 0xab4: 0xe00d, 0xab5: 0x0008, -	0xab6: 0xe00d, 0xab7: 0x0008, 0xab8: 0xe00d, 0xab9: 0x0008, 0xaba: 0xe00d, 0xabb: 0x0008, -	0xabc: 0xe00d, 0xabd: 0x0008, 0xabe: 0xe00d, 0xabf: 0x0008, -	// Block 0x2b, offset 0xac0 -	0xac0: 0xe00d, 0xac1: 0x0008, 0xac2: 0xe00d, 0xac3: 0x0008, 0xac4: 0xe00d, 0xac5: 0x0008, -	0xac6: 0xe00d, 0xac7: 0x0008, 0xac8: 0xe00d, 0xac9: 0x0008, 0xaca: 0xe00d, 0xacb: 0x0008, -	0xacc: 0xe00d, 0xacd: 0x0008, 0xace: 0xe00d, 0xacf: 0x0008, 0xad0: 0xe00d, 0xad1: 0x0008, -	0xad2: 0xe00d, 0xad3: 0x0008, 0xad4: 0xe00d, 0xad5: 0x0008, 0xad6: 0x0008, 0xad7: 0x0008, -	0xad8: 0x0008, 0xad9: 0x0008, 0xada: 0x0615, 0xadb: 0x0635, 0xadc: 0x0008, 0xadd: 0x0008, -	0xade: 0x1441, 0xadf: 0x0008, 0xae0: 0xe00d, 0xae1: 0x0008, 0xae2: 0xe00d, 0xae3: 0x0008, -	0xae4: 0xe00d, 0xae5: 0x0008, 0xae6: 0xe00d, 0xae7: 0x0008, 0xae8: 0xe00d, 0xae9: 0x0008, -	0xaea: 0xe00d, 0xaeb: 0x0008, 0xaec: 0xe00d, 0xaed: 0x0008, 0xaee: 0xe00d, 0xaef: 0x0008, -	0xaf0: 0xe00d, 0xaf1: 0x0008, 0xaf2: 0xe00d, 0xaf3: 0x0008, 0xaf4: 0xe00d, 0xaf5: 0x0008, -	0xaf6: 0xe00d, 0xaf7: 0x0008, 0xaf8: 0xe00d, 0xaf9: 0x0008, 0xafa: 0xe00d, 0xafb: 0x0008, -	0xafc: 0xe00d, 0xafd: 0x0008, 0xafe: 0xe00d, 0xaff: 0x0008, -	// Block 0x2c, offset 0xb00 -	0xb00: 0x0008, 0xb01: 0x0008, 0xb02: 0x0008, 0xb03: 0x0008, 0xb04: 0x0008, 0xb05: 0x0008, -	0xb06: 0x0040, 0xb07: 0x0040, 0xb08: 0xe045, 0xb09: 0xe045, 0xb0a: 0xe045, 0xb0b: 0xe045, -	0xb0c: 0xe045, 0xb0d: 0xe045, 0xb0e: 0x0040, 0xb0f: 0x0040, 0xb10: 0x0008, 0xb11: 0x0008, -	0xb12: 0x0008, 0xb13: 0x0008, 0xb14: 0x0008, 0xb15: 0x0008, 0xb16: 0x0008, 0xb17: 0x0008, -	0xb18: 0x0040, 0xb19: 0xe045, 0xb1a: 0x0040, 0xb1b: 0xe045, 0xb1c: 0x0040, 0xb1d: 0xe045, -	0xb1e: 0x0040, 0xb1f: 0xe045, 0xb20: 0x0008, 0xb21: 0x0008, 0xb22: 0x0008, 0xb23: 0x0008, -	0xb24: 0x0008, 0xb25: 0x0008, 0xb26: 0x0008, 0xb27: 0x0008, 0xb28: 0xe045, 0xb29: 0xe045, -	0xb2a: 0xe045, 0xb2b: 0xe045, 0xb2c: 0xe045, 0xb2d: 0xe045, 0xb2e: 0xe045, 0xb2f: 0xe045, -	0xb30: 0x0008, 0xb31: 0x1459, 0xb32: 0x0008, 0xb33: 0x1471, 0xb34: 0x0008, 0xb35: 0x1489, -	0xb36: 0x0008, 0xb37: 0x14a1, 0xb38: 0x0008, 0xb39: 0x14b9, 0xb3a: 0x0008, 0xb3b: 0x14d1, -	0xb3c: 0x0008, 0xb3d: 0x14e9, 0xb3e: 0x0040, 0xb3f: 0x0040, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x1501, 0xb41: 0x1531, 0xb42: 0x1561, 0xb43: 0x1591, 0xb44: 0x15c1, 0xb45: 0x15f1, -	0xb46: 0x1621, 0xb47: 0x1651, 0xb48: 0x1501, 0xb49: 0x1531, 0xb4a: 0x1561, 0xb4b: 0x1591, -	0xb4c: 0x15c1, 0xb4d: 0x15f1, 0xb4e: 0x1621, 0xb4f: 0x1651, 0xb50: 0x1681, 0xb51: 0x16b1, -	0xb52: 0x16e1, 0xb53: 0x1711, 0xb54: 0x1741, 0xb55: 0x1771, 0xb56: 0x17a1, 0xb57: 0x17d1, -	0xb58: 0x1681, 0xb59: 0x16b1, 0xb5a: 0x16e1, 0xb5b: 0x1711, 0xb5c: 0x1741, 0xb5d: 0x1771, -	0xb5e: 0x17a1, 0xb5f: 0x17d1, 0xb60: 0x1801, 0xb61: 0x1831, 0xb62: 0x1861, 0xb63: 0x1891, -	0xb64: 0x18c1, 0xb65: 0x18f1, 0xb66: 0x1921, 0xb67: 0x1951, 0xb68: 0x1801, 0xb69: 0x1831, -	0xb6a: 0x1861, 0xb6b: 0x1891, 0xb6c: 0x18c1, 0xb6d: 0x18f1, 0xb6e: 0x1921, 0xb6f: 0x1951, -	0xb70: 0x0008, 0xb71: 0x0008, 0xb72: 0x1981, 0xb73: 0x19b1, 0xb74: 0x19d9, 0xb75: 0x0040, -	0xb76: 0x0008, 0xb77: 0x1a01, 0xb78: 0xe045, 0xb79: 0xe045, 0xb7a: 0x064d, 0xb7b: 0x1459, -	0xb7c: 0x19b1, 0xb7d: 0x0666, 0xb7e: 0x1a31, 0xb7f: 0x0686, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x06a6, 0xb81: 0x1a4a, 0xb82: 0x1a79, 0xb83: 0x1aa9, 0xb84: 0x1ad1, 0xb85: 0x0040, -	0xb86: 0x0008, 0xb87: 0x1af9, 0xb88: 0x06c5, 0xb89: 0x1471, 0xb8a: 0x06dd, 0xb8b: 0x1489, -	0xb8c: 0x1aa9, 0xb8d: 0x1b2a, 0xb8e: 0x1b5a, 0xb8f: 0x1b8a, 0xb90: 0x0008, 0xb91: 0x0008, -	0xb92: 0x0008, 0xb93: 0x1bb9, 0xb94: 0x0040, 0xb95: 0x0040, 0xb96: 0x0008, 0xb97: 0x0008, -	0xb98: 0xe045, 0xb99: 0xe045, 0xb9a: 0x06f5, 0xb9b: 0x14a1, 0xb9c: 0x0040, 0xb9d: 0x1bd2, -	0xb9e: 0x1c02, 0xb9f: 0x1c32, 0xba0: 0x0008, 0xba1: 0x0008, 0xba2: 0x0008, 0xba3: 0x1c61, -	0xba4: 0x0008, 0xba5: 0x0008, 0xba6: 0x0008, 0xba7: 0x0008, 0xba8: 0xe045, 0xba9: 0xe045, -	0xbaa: 0x070d, 0xbab: 0x14d1, 0xbac: 0xe04d, 0xbad: 0x1c7a, 0xbae: 0x03d2, 0xbaf: 0x1caa, -	0xbb0: 0x0040, 0xbb1: 0x0040, 0xbb2: 0x1cb9, 0xbb3: 0x1ce9, 0xbb4: 0x1d11, 0xbb5: 0x0040, -	0xbb6: 0x0008, 0xbb7: 0x1d39, 0xbb8: 0x0725, 0xbb9: 0x14b9, 0xbba: 0x0515, 0xbbb: 0x14e9, -	0xbbc: 0x1ce9, 0xbbd: 0x073e, 0xbbe: 0x075e, 0xbbf: 0x0040, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x000a, 0xbc1: 0x000a, 0xbc2: 0x000a, 0xbc3: 0x000a, 0xbc4: 0x000a, 0xbc5: 0x000a, -	0xbc6: 0x000a, 0xbc7: 0x000a, 0xbc8: 0x000a, 0xbc9: 0x000a, 0xbca: 0x000a, 0xbcb: 0x03c0, -	0xbcc: 0x0003, 0xbcd: 0x0003, 0xbce: 0x0340, 0xbcf: 0x0b40, 0xbd0: 0x0018, 0xbd1: 0xe00d, -	0xbd2: 0x0018, 0xbd3: 0x0018, 0xbd4: 0x0018, 0xbd5: 0x0018, 0xbd6: 0x0018, 0xbd7: 0x077e, -	0xbd8: 0x0018, 0xbd9: 0x0018, 0xbda: 0x0018, 0xbdb: 0x0018, 0xbdc: 0x0018, 0xbdd: 0x0018, -	0xbde: 0x0018, 0xbdf: 0x0018, 0xbe0: 0x0018, 0xbe1: 0x0018, 0xbe2: 0x0018, 0xbe3: 0x0018, -	0xbe4: 0x0040, 0xbe5: 0x0040, 0xbe6: 0x0040, 0xbe7: 0x0018, 0xbe8: 0x0040, 0xbe9: 0x0040, -	0xbea: 0x0340, 0xbeb: 0x0340, 0xbec: 0x0340, 0xbed: 0x0340, 0xbee: 0x0340, 0xbef: 0x000a, -	0xbf0: 0x0018, 0xbf1: 0x0018, 0xbf2: 0x0018, 0xbf3: 0x1d69, 0xbf4: 0x1da1, 0xbf5: 0x0018, -	0xbf6: 0x1df1, 0xbf7: 0x1e29, 0xbf8: 0x0018, 0xbf9: 0x0018, 0xbfa: 0x0018, 0xbfb: 0x0018, -	0xbfc: 0x1e7a, 0xbfd: 0x0018, 0xbfe: 0x079e, 0xbff: 0x0018, -	// Block 0x30, offset 0xc00 -	0xc00: 0x0018, 0xc01: 0x0018, 0xc02: 0x0018, 0xc03: 0x0018, 0xc04: 0x0018, 0xc05: 0x0018, -	0xc06: 0x0018, 0xc07: 0x1e92, 0xc08: 0x1eaa, 0xc09: 0x1ec2, 0xc0a: 0x0018, 0xc0b: 0x0018, -	0xc0c: 0x0018, 0xc0d: 0x0018, 0xc0e: 0x0018, 0xc0f: 0x0018, 0xc10: 0x0018, 0xc11: 0x0018, -	0xc12: 0x0018, 0xc13: 0x0018, 0xc14: 0x0018, 0xc15: 0x0018, 0xc16: 0x0018, 0xc17: 0x1ed9, -	0xc18: 0x0018, 0xc19: 0x0018, 0xc1a: 0x0018, 0xc1b: 0x0018, 0xc1c: 0x0018, 0xc1d: 0x0018, -	0xc1e: 0x0018, 0xc1f: 0x000a, 0xc20: 0x03c0, 0xc21: 0x0340, 0xc22: 0x0340, 0xc23: 0x0340, -	0xc24: 0x03c0, 0xc25: 0x0040, 0xc26: 0x0040, 0xc27: 0x0040, 0xc28: 0x0040, 0xc29: 0x0040, -	0xc2a: 0x0340, 0xc2b: 0x0340, 0xc2c: 0x0340, 0xc2d: 0x0340, 0xc2e: 0x0340, 0xc2f: 0x0340, -	0xc30: 0x1f41, 0xc31: 0x0f41, 0xc32: 0x0040, 0xc33: 0x0040, 0xc34: 0x1f51, 0xc35: 0x1f61, -	0xc36: 0x1f71, 0xc37: 0x1f81, 0xc38: 0x1f91, 0xc39: 0x1fa1, 0xc3a: 0x1fb2, 0xc3b: 0x07bd, -	0xc3c: 0x1fc2, 0xc3d: 0x1fd2, 0xc3e: 0x1fe2, 0xc3f: 0x0f71, -	// Block 0x31, offset 0xc40 -	0xc40: 0x1f41, 0xc41: 0x00c9, 0xc42: 0x0069, 0xc43: 0x0079, 0xc44: 0x1f51, 0xc45: 0x1f61, -	0xc46: 0x1f71, 0xc47: 0x1f81, 0xc48: 0x1f91, 0xc49: 0x1fa1, 0xc4a: 0x1fb2, 0xc4b: 0x07d5, -	0xc4c: 0x1fc2, 0xc4d: 0x1fd2, 0xc4e: 0x1fe2, 0xc4f: 0x0040, 0xc50: 0x0039, 0xc51: 0x0f09, -	0xc52: 0x00d9, 0xc53: 0x0369, 0xc54: 0x0ff9, 0xc55: 0x0249, 0xc56: 0x0f51, 0xc57: 0x0359, -	0xc58: 0x0f61, 0xc59: 0x0f71, 0xc5a: 0x0f99, 0xc5b: 0x01d9, 0xc5c: 0x0fa9, 0xc5d: 0x0040, -	0xc5e: 0x0040, 0xc5f: 0x0040, 0xc60: 0x0018, 0xc61: 0x0018, 0xc62: 0x0018, 0xc63: 0x0018, -	0xc64: 0x0018, 0xc65: 0x0018, 0xc66: 0x0018, 0xc67: 0x0018, 0xc68: 0x1ff1, 0xc69: 0x0018, -	0xc6a: 0x0018, 0xc6b: 0x0018, 0xc6c: 0x0018, 0xc6d: 0x0018, 0xc6e: 0x0018, 0xc6f: 0x0018, -	0xc70: 0x0018, 0xc71: 0x0018, 0xc72: 0x0018, 0xc73: 0x0018, 0xc74: 0x0018, 0xc75: 0x0018, -	0xc76: 0x0018, 0xc77: 0x0018, 0xc78: 0x0018, 0xc79: 0x0018, 0xc7a: 0x0018, 0xc7b: 0x0018, -	0xc7c: 0x0018, 0xc7d: 0x0018, 0xc7e: 0x0018, 0xc7f: 0x0018, -	// Block 0x32, offset 0xc80 -	0xc80: 0x07ee, 0xc81: 0x080e, 0xc82: 0x1159, 0xc83: 0x082d, 0xc84: 0x0018, 0xc85: 0x084e, -	0xc86: 0x086e, 0xc87: 0x1011, 0xc88: 0x0018, 0xc89: 0x088d, 0xc8a: 0x0f31, 0xc8b: 0x0249, -	0xc8c: 0x0249, 0xc8d: 0x0249, 0xc8e: 0x0249, 0xc8f: 0x2009, 0xc90: 0x0f41, 0xc91: 0x0f41, -	0xc92: 0x0359, 0xc93: 0x0359, 0xc94: 0x0018, 0xc95: 0x0f71, 0xc96: 0x2021, 0xc97: 0x0018, -	0xc98: 0x0018, 0xc99: 0x0f99, 0xc9a: 0x2039, 0xc9b: 0x0269, 0xc9c: 0x0269, 0xc9d: 0x0269, -	0xc9e: 0x0018, 0xc9f: 0x0018, 0xca0: 0x2049, 0xca1: 0x08ad, 0xca2: 0x2061, 0xca3: 0x0018, -	0xca4: 0x13d1, 0xca5: 0x0018, 0xca6: 0x2079, 0xca7: 0x0018, 0xca8: 0x13d1, 0xca9: 0x0018, -	0xcaa: 0x0f51, 0xcab: 0x2091, 0xcac: 0x0ee9, 0xcad: 0x1159, 0xcae: 0x0018, 0xcaf: 0x0f09, -	0xcb0: 0x0f09, 0xcb1: 0x1199, 0xcb2: 0x0040, 0xcb3: 0x0f61, 0xcb4: 0x00d9, 0xcb5: 0x20a9, -	0xcb6: 0x20c1, 0xcb7: 0x20d9, 0xcb8: 0x20f1, 0xcb9: 0x0f41, 0xcba: 0x0018, 0xcbb: 0x08cd, -	0xcbc: 0x2109, 0xcbd: 0x10b1, 0xcbe: 0x10b1, 0xcbf: 0x2109, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x08ed, 0xcc1: 0x0018, 0xcc2: 0x0018, 0xcc3: 0x0018, 0xcc4: 0x0018, 0xcc5: 0x0ef9, -	0xcc6: 0x0ef9, 0xcc7: 0x0f09, 0xcc8: 0x0f41, 0xcc9: 0x0259, 0xcca: 0x0018, 0xccb: 0x0018, -	0xccc: 0x0018, 0xccd: 0x0018, 0xcce: 0x0008, 0xccf: 0x0018, 0xcd0: 0x2121, 0xcd1: 0x2151, -	0xcd2: 0x2181, 0xcd3: 0x21b9, 0xcd4: 0x21e9, 0xcd5: 0x2219, 0xcd6: 0x2249, 0xcd7: 0x2279, -	0xcd8: 0x22a9, 0xcd9: 0x22d9, 0xcda: 0x2309, 0xcdb: 0x2339, 0xcdc: 0x2369, 0xcdd: 0x2399, -	0xcde: 0x23c9, 0xcdf: 0x23f9, 0xce0: 0x0f41, 0xce1: 0x2421, 0xce2: 0x0905, 0xce3: 0x2439, -	0xce4: 0x1089, 0xce5: 0x2451, 0xce6: 0x0925, 0xce7: 0x2469, 0xce8: 0x2491, 0xce9: 0x0369, -	0xcea: 0x24a9, 0xceb: 0x0945, 0xcec: 0x0359, 0xced: 0x1159, 0xcee: 0x0ef9, 0xcef: 0x0f61, -	0xcf0: 0x0f41, 0xcf1: 0x2421, 0xcf2: 0x0965, 0xcf3: 0x2439, 0xcf4: 0x1089, 0xcf5: 0x2451, -	0xcf6: 0x0985, 0xcf7: 0x2469, 0xcf8: 0x2491, 0xcf9: 0x0369, 0xcfa: 0x24a9, 0xcfb: 0x09a5, -	0xcfc: 0x0359, 0xcfd: 0x1159, 0xcfe: 0x0ef9, 0xcff: 0x0f61, -	// Block 0x34, offset 0xd00 -	0xd00: 0x0018, 0xd01: 0x0018, 0xd02: 0x0018, 0xd03: 0x0018, 0xd04: 0x0018, 0xd05: 0x0018, -	0xd06: 0x0018, 0xd07: 0x0018, 0xd08: 0x0018, 0xd09: 0x0018, 0xd0a: 0x0018, 0xd0b: 0x0040, -	0xd0c: 0x0040, 0xd0d: 0x0040, 0xd0e: 0x0040, 0xd0f: 0x0040, 0xd10: 0x0040, 0xd11: 0x0040, -	0xd12: 0x0040, 0xd13: 0x0040, 0xd14: 0x0040, 0xd15: 0x0040, 0xd16: 0x0040, 0xd17: 0x0040, -	0xd18: 0x0040, 0xd19: 0x0040, 0xd1a: 0x0040, 0xd1b: 0x0040, 0xd1c: 0x0040, 0xd1d: 0x0040, -	0xd1e: 0x0040, 0xd1f: 0x0040, 0xd20: 0x00c9, 0xd21: 0x0069, 0xd22: 0x0079, 0xd23: 0x1f51, -	0xd24: 0x1f61, 0xd25: 0x1f71, 0xd26: 0x1f81, 0xd27: 0x1f91, 0xd28: 0x1fa1, 0xd29: 0x2601, -	0xd2a: 0x2619, 0xd2b: 0x2631, 0xd2c: 0x2649, 0xd2d: 0x2661, 0xd2e: 0x2679, 0xd2f: 0x2691, -	0xd30: 0x26a9, 0xd31: 0x26c1, 0xd32: 0x26d9, 0xd33: 0x26f1, 0xd34: 0x0a06, 0xd35: 0x0a26, -	0xd36: 0x0a46, 0xd37: 0x0a66, 0xd38: 0x0a86, 0xd39: 0x0aa6, 0xd3a: 0x0ac6, 0xd3b: 0x0ae6, -	0xd3c: 0x0b06, 0xd3d: 0x270a, 0xd3e: 0x2732, 0xd3f: 0x275a, -	// Block 0x35, offset 0xd40 -	0xd40: 0x2782, 0xd41: 0x27aa, 0xd42: 0x27d2, 0xd43: 0x27fa, 0xd44: 0x2822, 0xd45: 0x284a, -	0xd46: 0x2872, 0xd47: 0x289a, 0xd48: 0x0040, 0xd49: 0x0040, 0xd4a: 0x0040, 0xd4b: 0x0040, -	0xd4c: 0x0040, 0xd4d: 0x0040, 0xd4e: 0x0040, 0xd4f: 0x0040, 0xd50: 0x0040, 0xd51: 0x0040, -	0xd52: 0x0040, 0xd53: 0x0040, 0xd54: 0x0040, 0xd55: 0x0040, 0xd56: 0x0040, 0xd57: 0x0040, -	0xd58: 0x0040, 0xd59: 0x0040, 0xd5a: 0x0040, 0xd5b: 0x0040, 0xd5c: 0x0b26, 0xd5d: 0x0b46, -	0xd5e: 0x0b66, 0xd5f: 0x0b86, 0xd60: 0x0ba6, 0xd61: 0x0bc6, 0xd62: 0x0be6, 0xd63: 0x0c06, -	0xd64: 0x0c26, 0xd65: 0x0c46, 0xd66: 0x0c66, 0xd67: 0x0c86, 0xd68: 0x0ca6, 0xd69: 0x0cc6, -	0xd6a: 0x0ce6, 0xd6b: 0x0d06, 0xd6c: 0x0d26, 0xd6d: 0x0d46, 0xd6e: 0x0d66, 0xd6f: 0x0d86, -	0xd70: 0x0da6, 0xd71: 0x0dc6, 0xd72: 0x0de6, 0xd73: 0x0e06, 0xd74: 0x0e26, 0xd75: 0x0e46, -	0xd76: 0x0039, 0xd77: 0x0ee9, 0xd78: 0x1159, 0xd79: 0x0ef9, 0xd7a: 0x0f09, 0xd7b: 0x1199, -	0xd7c: 0x0f31, 0xd7d: 0x0249, 0xd7e: 0x0f41, 0xd7f: 0x0259, -	// Block 0x36, offset 0xd80 -	0xd80: 0x0f51, 0xd81: 0x0359, 0xd82: 0x0f61, 0xd83: 0x0f71, 0xd84: 0x00d9, 0xd85: 0x0f99, -	0xd86: 0x2039, 0xd87: 0x0269, 0xd88: 0x01d9, 0xd89: 0x0fa9, 0xd8a: 0x0fb9, 0xd8b: 0x1089, -	0xd8c: 0x0279, 0xd8d: 0x0369, 0xd8e: 0x0289, 0xd8f: 0x13d1, 0xd90: 0x0039, 0xd91: 0x0ee9, -	0xd92: 0x1159, 0xd93: 0x0ef9, 0xd94: 0x0f09, 0xd95: 0x1199, 0xd96: 0x0f31, 0xd97: 0x0249, -	0xd98: 0x0f41, 0xd99: 0x0259, 0xd9a: 0x0f51, 0xd9b: 0x0359, 0xd9c: 0x0f61, 0xd9d: 0x0f71, -	0xd9e: 0x00d9, 0xd9f: 0x0f99, 0xda0: 0x2039, 0xda1: 0x0269, 0xda2: 0x01d9, 0xda3: 0x0fa9, -	0xda4: 0x0fb9, 0xda5: 0x1089, 0xda6: 0x0279, 0xda7: 0x0369, 0xda8: 0x0289, 0xda9: 0x13d1, -	0xdaa: 0x1f41, 0xdab: 0x0018, 0xdac: 0x0018, 0xdad: 0x0018, 0xdae: 0x0018, 0xdaf: 0x0018, -	0xdb0: 0x0018, 0xdb1: 0x0018, 0xdb2: 0x0018, 0xdb3: 0x0018, 0xdb4: 0x0018, 0xdb5: 0x0018, -	0xdb6: 0x0018, 0xdb7: 0x0018, 0xdb8: 0x0018, 0xdb9: 0x0018, 0xdba: 0x0018, 0xdbb: 0x0018, -	0xdbc: 0x0018, 0xdbd: 0x0018, 0xdbe: 0x0018, 0xdbf: 0x0018, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0x0008, 0xdc1: 0x0008, 0xdc2: 0x0008, 0xdc3: 0x0008, 0xdc4: 0x0008, 0xdc5: 0x0008, -	0xdc6: 0x0008, 0xdc7: 0x0008, 0xdc8: 0x0008, 0xdc9: 0x0008, 0xdca: 0x0008, 0xdcb: 0x0008, -	0xdcc: 0x0008, 0xdcd: 0x0008, 0xdce: 0x0008, 0xdcf: 0x0008, 0xdd0: 0x0008, 0xdd1: 0x0008, -	0xdd2: 0x0008, 0xdd3: 0x0008, 0xdd4: 0x0008, 0xdd5: 0x0008, 0xdd6: 0x0008, 0xdd7: 0x0008, -	0xdd8: 0x0008, 0xdd9: 0x0008, 0xdda: 0x0008, 0xddb: 0x0008, 0xddc: 0x0008, 0xddd: 0x0008, -	0xdde: 0x0008, 0xddf: 0x0040, 0xde0: 0xe00d, 0xde1: 0x0008, 0xde2: 0x2971, 0xde3: 0x0ebd, -	0xde4: 0x2989, 0xde5: 0x0008, 0xde6: 0x0008, 0xde7: 0xe07d, 0xde8: 0x0008, 0xde9: 0xe01d, -	0xdea: 0x0008, 0xdeb: 0xe03d, 0xdec: 0x0008, 0xded: 0x0fe1, 0xdee: 0x1281, 0xdef: 0x0fc9, -	0xdf0: 0x1141, 0xdf1: 0x0008, 0xdf2: 0xe00d, 0xdf3: 0x0008, 0xdf4: 0x0008, 0xdf5: 0xe01d, -	0xdf6: 0x0008, 0xdf7: 0x0008, 0xdf8: 0x0008, 0xdf9: 0x0008, 0xdfa: 0x0008, 0xdfb: 0x0008, -	0xdfc: 0x0259, 0xdfd: 0x1089, 0xdfe: 0x29a1, 0xdff: 0x29b9, -	// Block 0x38, offset 0xe00 -	0xe00: 0xe00d, 0xe01: 0x0008, 0xe02: 0xe00d, 0xe03: 0x0008, 0xe04: 0xe00d, 0xe05: 0x0008, -	0xe06: 0xe00d, 0xe07: 0x0008, 0xe08: 0xe00d, 0xe09: 0x0008, 0xe0a: 0xe00d, 0xe0b: 0x0008, -	0xe0c: 0xe00d, 0xe0d: 0x0008, 0xe0e: 0xe00d, 0xe0f: 0x0008, 0xe10: 0xe00d, 0xe11: 0x0008, -	0xe12: 0xe00d, 0xe13: 0x0008, 0xe14: 0xe00d, 0xe15: 0x0008, 0xe16: 0xe00d, 0xe17: 0x0008, -	0xe18: 0xe00d, 0xe19: 0x0008, 0xe1a: 0xe00d, 0xe1b: 0x0008, 0xe1c: 0xe00d, 0xe1d: 0x0008, -	0xe1e: 0xe00d, 0xe1f: 0x0008, 0xe20: 0xe00d, 0xe21: 0x0008, 0xe22: 0xe00d, 0xe23: 0x0008, -	0xe24: 0x0008, 0xe25: 0x0018, 0xe26: 0x0018, 0xe27: 0x0018, 0xe28: 0x0018, 0xe29: 0x0018, -	0xe2a: 0x0018, 0xe2b: 0xe03d, 0xe2c: 0x0008, 0xe2d: 0xe01d, 0xe2e: 0x0008, 0xe2f: 0x3308, -	0xe30: 0x3308, 0xe31: 0x3308, 0xe32: 0xe00d, 0xe33: 0x0008, 0xe34: 0x0040, 0xe35: 0x0040, -	0xe36: 0x0040, 0xe37: 0x0040, 0xe38: 0x0040, 0xe39: 0x0018, 0xe3a: 0x0018, 0xe3b: 0x0018, -	0xe3c: 0x0018, 0xe3d: 0x0018, 0xe3e: 0x0018, 0xe3f: 0x0018, -	// Block 0x39, offset 0xe40 -	0xe40: 0x26fd, 0xe41: 0x271d, 0xe42: 0x273d, 0xe43: 0x275d, 0xe44: 0x277d, 0xe45: 0x279d, -	0xe46: 0x27bd, 0xe47: 0x27dd, 0xe48: 0x27fd, 0xe49: 0x281d, 0xe4a: 0x283d, 0xe4b: 0x285d, -	0xe4c: 0x287d, 0xe4d: 0x289d, 0xe4e: 0x28bd, 0xe4f: 0x28dd, 0xe50: 0x28fd, 0xe51: 0x291d, -	0xe52: 0x293d, 0xe53: 0x295d, 0xe54: 0x297d, 0xe55: 0x299d, 0xe56: 0x0040, 0xe57: 0x0040, -	0xe58: 0x0040, 0xe59: 0x0040, 0xe5a: 0x0040, 0xe5b: 0x0040, 0xe5c: 0x0040, 0xe5d: 0x0040, -	0xe5e: 0x0040, 0xe5f: 0x0040, 0xe60: 0x0040, 0xe61: 0x0040, 0xe62: 0x0040, 0xe63: 0x0040, -	0xe64: 0x0040, 0xe65: 0x0040, 0xe66: 0x0040, 0xe67: 0x0040, 0xe68: 0x0040, 0xe69: 0x0040, -	0xe6a: 0x0040, 0xe6b: 0x0040, 0xe6c: 0x0040, 0xe6d: 0x0040, 0xe6e: 0x0040, 0xe6f: 0x0040, -	0xe70: 0x0040, 0xe71: 0x0040, 0xe72: 0x0040, 0xe73: 0x0040, 0xe74: 0x0040, 0xe75: 0x0040, -	0xe76: 0x0040, 0xe77: 0x0040, 0xe78: 0x0040, 0xe79: 0x0040, 0xe7a: 0x0040, 0xe7b: 0x0040, -	0xe7c: 0x0040, 0xe7d: 0x0040, 0xe7e: 0x0040, 0xe7f: 0x0040, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x000a, 0xe81: 0x0018, 0xe82: 0x29d1, 0xe83: 0x0018, 0xe84: 0x0018, 0xe85: 0x0008, -	0xe86: 0x0008, 0xe87: 0x0008, 0xe88: 0x0018, 0xe89: 0x0018, 0xe8a: 0x0018, 0xe8b: 0x0018, -	0xe8c: 0x0018, 0xe8d: 0x0018, 0xe8e: 0x0018, 0xe8f: 0x0018, 0xe90: 0x0018, 0xe91: 0x0018, -	0xe92: 0x0018, 0xe93: 0x0018, 0xe94: 0x0018, 0xe95: 0x0018, 0xe96: 0x0018, 0xe97: 0x0018, -	0xe98: 0x0018, 0xe99: 0x0018, 0xe9a: 0x0018, 0xe9b: 0x0018, 0xe9c: 0x0018, 0xe9d: 0x0018, -	0xe9e: 0x0018, 0xe9f: 0x0018, 0xea0: 0x0018, 0xea1: 0x0018, 0xea2: 0x0018, 0xea3: 0x0018, -	0xea4: 0x0018, 0xea5: 0x0018, 0xea6: 0x0018, 0xea7: 0x0018, 0xea8: 0x0018, 0xea9: 0x0018, -	0xeaa: 0x3308, 0xeab: 0x3308, 0xeac: 0x3308, 0xead: 0x3308, 0xeae: 0x3018, 0xeaf: 0x3018, -	0xeb0: 0x0018, 0xeb1: 0x0018, 0xeb2: 0x0018, 0xeb3: 0x0018, 0xeb4: 0x0018, 0xeb5: 0x0018, -	0xeb6: 0xe125, 0xeb7: 0x0018, 0xeb8: 0x29bd, 0xeb9: 0x29dd, 0xeba: 0x29fd, 0xebb: 0x0018, -	0xebc: 0x0008, 0xebd: 0x0018, 0xebe: 0x0018, 0xebf: 0x0018, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x2b3d, 0xec1: 0x2b5d, 0xec2: 0x2b7d, 0xec3: 0x2b9d, 0xec4: 0x2bbd, 0xec5: 0x2bdd, -	0xec6: 0x2bdd, 0xec7: 0x2bdd, 0xec8: 0x2bfd, 0xec9: 0x2bfd, 0xeca: 0x2bfd, 0xecb: 0x2bfd, -	0xecc: 0x2c1d, 0xecd: 0x2c1d, 0xece: 0x2c1d, 0xecf: 0x2c3d, 0xed0: 0x2c5d, 0xed1: 0x2c5d, -	0xed2: 0x2a7d, 0xed3: 0x2a7d, 0xed4: 0x2c5d, 0xed5: 0x2c5d, 0xed6: 0x2c7d, 0xed7: 0x2c7d, -	0xed8: 0x2c5d, 0xed9: 0x2c5d, 0xeda: 0x2a7d, 0xedb: 0x2a7d, 0xedc: 0x2c5d, 0xedd: 0x2c5d, -	0xede: 0x2c3d, 0xedf: 0x2c3d, 0xee0: 0x2c9d, 0xee1: 0x2c9d, 0xee2: 0x2cbd, 0xee3: 0x2cbd, -	0xee4: 0x0040, 0xee5: 0x2cdd, 0xee6: 0x2cfd, 0xee7: 0x2d1d, 0xee8: 0x2d1d, 0xee9: 0x2d3d, -	0xeea: 0x2d5d, 0xeeb: 0x2d7d, 0xeec: 0x2d9d, 0xeed: 0x2dbd, 0xeee: 0x2ddd, 0xeef: 0x2dfd, -	0xef0: 0x2e1d, 0xef1: 0x2e3d, 0xef2: 0x2e3d, 0xef3: 0x2e5d, 0xef4: 0x2e7d, 0xef5: 0x2e7d, -	0xef6: 0x2e9d, 0xef7: 0x2ebd, 0xef8: 0x2e5d, 0xef9: 0x2edd, 0xefa: 0x2efd, 0xefb: 0x2edd, -	0xefc: 0x2e5d, 0xefd: 0x2f1d, 0xefe: 0x2f3d, 0xeff: 0x2f5d, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x2f7d, 0xf01: 0x2f9d, 0xf02: 0x2cfd, 0xf03: 0x2cdd, 0xf04: 0x2fbd, 0xf05: 0x2fdd, -	0xf06: 0x2ffd, 0xf07: 0x301d, 0xf08: 0x303d, 0xf09: 0x305d, 0xf0a: 0x307d, 0xf0b: 0x309d, -	0xf0c: 0x30bd, 0xf0d: 0x30dd, 0xf0e: 0x30fd, 0xf0f: 0x0040, 0xf10: 0x0018, 0xf11: 0x0018, -	0xf12: 0x311d, 0xf13: 0x313d, 0xf14: 0x315d, 0xf15: 0x317d, 0xf16: 0x319d, 0xf17: 0x31bd, -	0xf18: 0x31dd, 0xf19: 0x31fd, 0xf1a: 0x321d, 0xf1b: 0x323d, 0xf1c: 0x315d, 0xf1d: 0x325d, -	0xf1e: 0x327d, 0xf1f: 0x329d, 0xf20: 0x0008, 0xf21: 0x0008, 0xf22: 0x0008, 0xf23: 0x0008, -	0xf24: 0x0008, 0xf25: 0x0008, 0xf26: 0x0008, 0xf27: 0x0008, 0xf28: 0x0008, 0xf29: 0x0008, -	0xf2a: 0x0008, 0xf2b: 0x0008, 0xf2c: 0x0008, 0xf2d: 0x0008, 0xf2e: 0x0008, 0xf2f: 0x0008, -	0xf30: 0x0008, 0xf31: 0x0008, 0xf32: 0x0008, 0xf33: 0x0008, 0xf34: 0x0008, 0xf35: 0x0008, -	0xf36: 0x0008, 0xf37: 0x0008, 0xf38: 0x0008, 0xf39: 0x0008, 0xf3a: 0x0008, 0xf3b: 0x0040, -	0xf3c: 0x0040, 0xf3d: 0x0040, 0xf3e: 0x0040, 0xf3f: 0x0040, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x36a2, 0xf41: 0x36d2, 0xf42: 0x3702, 0xf43: 0x3732, 0xf44: 0x32bd, 0xf45: 0x32dd, -	0xf46: 0x32fd, 0xf47: 0x331d, 0xf48: 0x0018, 0xf49: 0x0018, 0xf4a: 0x0018, 0xf4b: 0x0018, -	0xf4c: 0x0018, 0xf4d: 0x0018, 0xf4e: 0x0018, 0xf4f: 0x0018, 0xf50: 0x333d, 0xf51: 0x3761, -	0xf52: 0x3779, 0xf53: 0x3791, 0xf54: 0x37a9, 0xf55: 0x37c1, 0xf56: 0x37d9, 0xf57: 0x37f1, -	0xf58: 0x3809, 0xf59: 0x3821, 0xf5a: 0x3839, 0xf5b: 0x3851, 0xf5c: 0x3869, 0xf5d: 0x3881, -	0xf5e: 0x3899, 0xf5f: 0x38b1, 0xf60: 0x335d, 0xf61: 0x337d, 0xf62: 0x339d, 0xf63: 0x33bd, -	0xf64: 0x33dd, 0xf65: 0x33dd, 0xf66: 0x33fd, 0xf67: 0x341d, 0xf68: 0x343d, 0xf69: 0x345d, -	0xf6a: 0x347d, 0xf6b: 0x349d, 0xf6c: 0x34bd, 0xf6d: 0x34dd, 0xf6e: 0x34fd, 0xf6f: 0x351d, -	0xf70: 0x353d, 0xf71: 0x355d, 0xf72: 0x357d, 0xf73: 0x359d, 0xf74: 0x35bd, 0xf75: 0x35dd, -	0xf76: 0x35fd, 0xf77: 0x361d, 0xf78: 0x363d, 0xf79: 0x365d, 0xf7a: 0x367d, 0xf7b: 0x369d, -	0xf7c: 0x38c9, 0xf7d: 0x3901, 0xf7e: 0x36bd, 0xf7f: 0x0018, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x36dd, 0xf81: 0x36fd, 0xf82: 0x371d, 0xf83: 0x373d, 0xf84: 0x375d, 0xf85: 0x377d, -	0xf86: 0x379d, 0xf87: 0x37bd, 0xf88: 0x37dd, 0xf89: 0x37fd, 0xf8a: 0x381d, 0xf8b: 0x383d, -	0xf8c: 0x385d, 0xf8d: 0x387d, 0xf8e: 0x389d, 0xf8f: 0x38bd, 0xf90: 0x38dd, 0xf91: 0x38fd, -	0xf92: 0x391d, 0xf93: 0x393d, 0xf94: 0x395d, 0xf95: 0x397d, 0xf96: 0x399d, 0xf97: 0x39bd, -	0xf98: 0x39dd, 0xf99: 0x39fd, 0xf9a: 0x3a1d, 0xf9b: 0x3a3d, 0xf9c: 0x3a5d, 0xf9d: 0x3a7d, -	0xf9e: 0x3a9d, 0xf9f: 0x3abd, 0xfa0: 0x3add, 0xfa1: 0x3afd, 0xfa2: 0x3b1d, 0xfa3: 0x3b3d, -	0xfa4: 0x3b5d, 0xfa5: 0x3b7d, 0xfa6: 0x127d, 0xfa7: 0x3b9d, 0xfa8: 0x3bbd, 0xfa9: 0x3bdd, -	0xfaa: 0x3bfd, 0xfab: 0x3c1d, 0xfac: 0x3c3d, 0xfad: 0x3c5d, 0xfae: 0x239d, 0xfaf: 0x3c7d, -	0xfb0: 0x3c9d, 0xfb1: 0x3939, 0xfb2: 0x3951, 0xfb3: 0x3969, 0xfb4: 0x3981, 0xfb5: 0x3999, -	0xfb6: 0x39b1, 0xfb7: 0x39c9, 0xfb8: 0x39e1, 0xfb9: 0x39f9, 0xfba: 0x3a11, 0xfbb: 0x3a29, -	0xfbc: 0x3a41, 0xfbd: 0x3a59, 0xfbe: 0x3a71, 0xfbf: 0x3a89, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x3aa1, 0xfc1: 0x3ac9, 0xfc2: 0x3af1, 0xfc3: 0x3b19, 0xfc4: 0x3b41, 0xfc5: 0x3b69, -	0xfc6: 0x3b91, 0xfc7: 0x3bb9, 0xfc8: 0x3be1, 0xfc9: 0x3c09, 0xfca: 0x3c39, 0xfcb: 0x3c69, -	0xfcc: 0x3c99, 0xfcd: 0x3cbd, 0xfce: 0x3cb1, 0xfcf: 0x3cdd, 0xfd0: 0x3cfd, 0xfd1: 0x3d15, -	0xfd2: 0x3d2d, 0xfd3: 0x3d45, 0xfd4: 0x3d5d, 0xfd5: 0x3d5d, 0xfd6: 0x3d45, 0xfd7: 0x3d75, -	0xfd8: 0x07bd, 0xfd9: 0x3d8d, 0xfda: 0x3da5, 0xfdb: 0x3dbd, 0xfdc: 0x3dd5, 0xfdd: 0x3ded, -	0xfde: 0x3e05, 0xfdf: 0x3e1d, 0xfe0: 0x3e35, 0xfe1: 0x3e4d, 0xfe2: 0x3e65, 0xfe3: 0x3e7d, -	0xfe4: 0x3e95, 0xfe5: 0x3e95, 0xfe6: 0x3ead, 0xfe7: 0x3ead, 0xfe8: 0x3ec5, 0xfe9: 0x3ec5, -	0xfea: 0x3edd, 0xfeb: 0x3ef5, 0xfec: 0x3f0d, 0xfed: 0x3f25, 0xfee: 0x3f3d, 0xfef: 0x3f3d, -	0xff0: 0x3f55, 0xff1: 0x3f55, 0xff2: 0x3f55, 0xff3: 0x3f6d, 0xff4: 0x3f85, 0xff5: 0x3f9d, -	0xff6: 0x3fb5, 0xff7: 0x3f9d, 0xff8: 0x3fcd, 0xff9: 0x3fe5, 0xffa: 0x3f6d, 0xffb: 0x3ffd, -	0xffc: 0x4015, 0xffd: 0x4015, 0xffe: 0x4015, 0xfff: 0x0040, -	// Block 0x40, offset 0x1000 -	0x1000: 0x3cc9, 0x1001: 0x3d31, 0x1002: 0x3d99, 0x1003: 0x3e01, 0x1004: 0x3e51, 0x1005: 0x3eb9, -	0x1006: 0x3f09, 0x1007: 0x3f59, 0x1008: 0x3fd9, 0x1009: 0x4041, 0x100a: 0x4091, 0x100b: 0x40e1, -	0x100c: 0x4131, 0x100d: 0x4199, 0x100e: 0x4201, 0x100f: 0x4251, 0x1010: 0x42a1, 0x1011: 0x42d9, -	0x1012: 0x4329, 0x1013: 0x4391, 0x1014: 0x43f9, 0x1015: 0x4431, 0x1016: 0x44b1, 0x1017: 0x4549, -	0x1018: 0x45c9, 0x1019: 0x4619, 0x101a: 0x4699, 0x101b: 0x4719, 0x101c: 0x4781, 0x101d: 0x47d1, -	0x101e: 0x4821, 0x101f: 0x4871, 0x1020: 0x48d9, 0x1021: 0x4959, 0x1022: 0x49c1, 0x1023: 0x4a11, -	0x1024: 0x4a61, 0x1025: 0x4ab1, 0x1026: 0x4ae9, 0x1027: 0x4b21, 0x1028: 0x4b59, 0x1029: 0x4b91, -	0x102a: 0x4be1, 0x102b: 0x4c31, 0x102c: 0x4cb1, 0x102d: 0x4d01, 0x102e: 0x4d69, 0x102f: 0x4de9, -	0x1030: 0x4e39, 0x1031: 0x4e71, 0x1032: 0x4ea9, 0x1033: 0x4f29, 0x1034: 0x4f91, 0x1035: 0x5011, -	0x1036: 0x5061, 0x1037: 0x50e1, 0x1038: 0x5119, 0x1039: 0x5169, 0x103a: 0x51b9, 0x103b: 0x5209, -	0x103c: 0x5259, 0x103d: 0x52a9, 0x103e: 0x5311, 0x103f: 0x5361, -	// Block 0x41, offset 0x1040 -	0x1040: 0x5399, 0x1041: 0x53e9, 0x1042: 0x5439, 0x1043: 0x5489, 0x1044: 0x54f1, 0x1045: 0x5541, -	0x1046: 0x5591, 0x1047: 0x55e1, 0x1048: 0x5661, 0x1049: 0x56c9, 0x104a: 0x5701, 0x104b: 0x5781, -	0x104c: 0x57b9, 0x104d: 0x5821, 0x104e: 0x5889, 0x104f: 0x58d9, 0x1050: 0x5929, 0x1051: 0x5979, -	0x1052: 0x59e1, 0x1053: 0x5a19, 0x1054: 0x5a69, 0x1055: 0x5ad1, 0x1056: 0x5b09, 0x1057: 0x5b89, -	0x1058: 0x5bd9, 0x1059: 0x5c01, 0x105a: 0x5c29, 0x105b: 0x5c51, 0x105c: 0x5c79, 0x105d: 0x5ca1, -	0x105e: 0x5cc9, 0x105f: 0x5cf1, 0x1060: 0x5d19, 0x1061: 0x5d41, 0x1062: 0x5d69, 0x1063: 0x5d99, -	0x1064: 0x5dc9, 0x1065: 0x5df9, 0x1066: 0x5e29, 0x1067: 0x5e59, 0x1068: 0x5e89, 0x1069: 0x5eb9, -	0x106a: 0x5ee9, 0x106b: 0x5f19, 0x106c: 0x5f49, 0x106d: 0x5f79, 0x106e: 0x5fa9, 0x106f: 0x5fd9, -	0x1070: 0x6009, 0x1071: 0x402d, 0x1072: 0x6039, 0x1073: 0x6051, 0x1074: 0x404d, 0x1075: 0x6069, -	0x1076: 0x6081, 0x1077: 0x6099, 0x1078: 0x406d, 0x1079: 0x406d, 0x107a: 0x60b1, 0x107b: 0x60c9, -	0x107c: 0x6101, 0x107d: 0x6139, 0x107e: 0x6171, 0x107f: 0x61a9, -	// Block 0x42, offset 0x1080 -	0x1080: 0x6211, 0x1081: 0x6229, 0x1082: 0x408d, 0x1083: 0x6241, 0x1084: 0x6259, 0x1085: 0x6271, -	0x1086: 0x6289, 0x1087: 0x62a1, 0x1088: 0x40ad, 0x1089: 0x62b9, 0x108a: 0x62e1, 0x108b: 0x62f9, -	0x108c: 0x40cd, 0x108d: 0x40cd, 0x108e: 0x6311, 0x108f: 0x6329, 0x1090: 0x6341, 0x1091: 0x40ed, -	0x1092: 0x410d, 0x1093: 0x412d, 0x1094: 0x414d, 0x1095: 0x416d, 0x1096: 0x6359, 0x1097: 0x6371, -	0x1098: 0x6389, 0x1099: 0x63a1, 0x109a: 0x63b9, 0x109b: 0x418d, 0x109c: 0x63d1, 0x109d: 0x63e9, -	0x109e: 0x6401, 0x109f: 0x41ad, 0x10a0: 0x41cd, 0x10a1: 0x6419, 0x10a2: 0x41ed, 0x10a3: 0x420d, -	0x10a4: 0x422d, 0x10a5: 0x6431, 0x10a6: 0x424d, 0x10a7: 0x6449, 0x10a8: 0x6479, 0x10a9: 0x6211, -	0x10aa: 0x426d, 0x10ab: 0x428d, 0x10ac: 0x42ad, 0x10ad: 0x42cd, 0x10ae: 0x64b1, 0x10af: 0x64f1, -	0x10b0: 0x6539, 0x10b1: 0x6551, 0x10b2: 0x42ed, 0x10b3: 0x6569, 0x10b4: 0x6581, 0x10b5: 0x6599, -	0x10b6: 0x430d, 0x10b7: 0x65b1, 0x10b8: 0x65c9, 0x10b9: 0x65b1, 0x10ba: 0x65e1, 0x10bb: 0x65f9, -	0x10bc: 0x432d, 0x10bd: 0x6611, 0x10be: 0x6629, 0x10bf: 0x6611, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0x434d, 0x10c1: 0x436d, 0x10c2: 0x0040, 0x10c3: 0x6641, 0x10c4: 0x6659, 0x10c5: 0x6671, -	0x10c6: 0x6689, 0x10c7: 0x0040, 0x10c8: 0x66c1, 0x10c9: 0x66d9, 0x10ca: 0x66f1, 0x10cb: 0x6709, -	0x10cc: 0x6721, 0x10cd: 0x6739, 0x10ce: 0x6401, 0x10cf: 0x6751, 0x10d0: 0x6769, 0x10d1: 0x6781, -	0x10d2: 0x438d, 0x10d3: 0x6799, 0x10d4: 0x6289, 0x10d5: 0x43ad, 0x10d6: 0x43cd, 0x10d7: 0x67b1, -	0x10d8: 0x0040, 0x10d9: 0x43ed, 0x10da: 0x67c9, 0x10db: 0x67e1, 0x10dc: 0x67f9, 0x10dd: 0x6811, -	0x10de: 0x6829, 0x10df: 0x6859, 0x10e0: 0x6889, 0x10e1: 0x68b1, 0x10e2: 0x68d9, 0x10e3: 0x6901, -	0x10e4: 0x6929, 0x10e5: 0x6951, 0x10e6: 0x6979, 0x10e7: 0x69a1, 0x10e8: 0x69c9, 0x10e9: 0x69f1, -	0x10ea: 0x6a21, 0x10eb: 0x6a51, 0x10ec: 0x6a81, 0x10ed: 0x6ab1, 0x10ee: 0x6ae1, 0x10ef: 0x6b11, -	0x10f0: 0x6b41, 0x10f1: 0x6b71, 0x10f2: 0x6ba1, 0x10f3: 0x6bd1, 0x10f4: 0x6c01, 0x10f5: 0x6c31, -	0x10f6: 0x6c61, 0x10f7: 0x6c91, 0x10f8: 0x6cc1, 0x10f9: 0x6cf1, 0x10fa: 0x6d21, 0x10fb: 0x6d51, -	0x10fc: 0x6d81, 0x10fd: 0x6db1, 0x10fe: 0x6de1, 0x10ff: 0x440d, -	// Block 0x44, offset 0x1100 -	0x1100: 0xe00d, 0x1101: 0x0008, 0x1102: 0xe00d, 0x1103: 0x0008, 0x1104: 0xe00d, 0x1105: 0x0008, -	0x1106: 0xe00d, 0x1107: 0x0008, 0x1108: 0xe00d, 0x1109: 0x0008, 0x110a: 0xe00d, 0x110b: 0x0008, -	0x110c: 0xe00d, 0x110d: 0x0008, 0x110e: 0xe00d, 0x110f: 0x0008, 0x1110: 0xe00d, 0x1111: 0x0008, -	0x1112: 0xe00d, 0x1113: 0x0008, 0x1114: 0xe00d, 0x1115: 0x0008, 0x1116: 0xe00d, 0x1117: 0x0008, -	0x1118: 0xe00d, 0x1119: 0x0008, 0x111a: 0xe00d, 0x111b: 0x0008, 0x111c: 0xe00d, 0x111d: 0x0008, -	0x111e: 0xe00d, 0x111f: 0x0008, 0x1120: 0xe00d, 0x1121: 0x0008, 0x1122: 0xe00d, 0x1123: 0x0008, -	0x1124: 0xe00d, 0x1125: 0x0008, 0x1126: 0xe00d, 0x1127: 0x0008, 0x1128: 0xe00d, 0x1129: 0x0008, -	0x112a: 0xe00d, 0x112b: 0x0008, 0x112c: 0xe00d, 0x112d: 0x0008, 0x112e: 0x0008, 0x112f: 0x3308, -	0x1130: 0x3318, 0x1131: 0x3318, 0x1132: 0x3318, 0x1133: 0x0018, 0x1134: 0x3308, 0x1135: 0x3308, -	0x1136: 0x3308, 0x1137: 0x3308, 0x1138: 0x3308, 0x1139: 0x3308, 0x113a: 0x3308, 0x113b: 0x3308, -	0x113c: 0x3308, 0x113d: 0x3308, 0x113e: 0x0018, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0xe00d, 0x1141: 0x0008, 0x1142: 0xe00d, 0x1143: 0x0008, 0x1144: 0xe00d, 0x1145: 0x0008, -	0x1146: 0xe00d, 0x1147: 0x0008, 0x1148: 0xe00d, 0x1149: 0x0008, 0x114a: 0xe00d, 0x114b: 0x0008, -	0x114c: 0xe00d, 0x114d: 0x0008, 0x114e: 0xe00d, 0x114f: 0x0008, 0x1150: 0xe00d, 0x1151: 0x0008, -	0x1152: 0xe00d, 0x1153: 0x0008, 0x1154: 0xe00d, 0x1155: 0x0008, 0x1156: 0xe00d, 0x1157: 0x0008, -	0x1158: 0xe00d, 0x1159: 0x0008, 0x115a: 0xe00d, 0x115b: 0x0008, 0x115c: 0x0ea1, 0x115d: 0x6e11, -	0x115e: 0x3308, 0x115f: 0x3308, 0x1160: 0x0008, 0x1161: 0x0008, 0x1162: 0x0008, 0x1163: 0x0008, -	0x1164: 0x0008, 0x1165: 0x0008, 0x1166: 0x0008, 0x1167: 0x0008, 0x1168: 0x0008, 0x1169: 0x0008, -	0x116a: 0x0008, 0x116b: 0x0008, 0x116c: 0x0008, 0x116d: 0x0008, 0x116e: 0x0008, 0x116f: 0x0008, -	0x1170: 0x0008, 0x1171: 0x0008, 0x1172: 0x0008, 0x1173: 0x0008, 0x1174: 0x0008, 0x1175: 0x0008, -	0x1176: 0x0008, 0x1177: 0x0008, 0x1178: 0x0008, 0x1179: 0x0008, 0x117a: 0x0008, 0x117b: 0x0008, -	0x117c: 0x0008, 0x117d: 0x0008, 0x117e: 0x0008, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0x0018, 0x1181: 0x0018, 0x1182: 0x0018, 0x1183: 0x0018, 0x1184: 0x0018, 0x1185: 0x0018, -	0x1186: 0x0018, 0x1187: 0x0018, 0x1188: 0x0018, 0x1189: 0x0018, 0x118a: 0x0018, 0x118b: 0x0018, -	0x118c: 0x0018, 0x118d: 0x0018, 0x118e: 0x0018, 0x118f: 0x0018, 0x1190: 0x0018, 0x1191: 0x0018, -	0x1192: 0x0018, 0x1193: 0x0018, 0x1194: 0x0018, 0x1195: 0x0018, 0x1196: 0x0018, 0x1197: 0x0008, -	0x1198: 0x0008, 0x1199: 0x0008, 0x119a: 0x0008, 0x119b: 0x0008, 0x119c: 0x0008, 0x119d: 0x0008, -	0x119e: 0x0008, 0x119f: 0x0008, 0x11a0: 0x0018, 0x11a1: 0x0018, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0xe00d, 0x11ab: 0x0008, 0x11ac: 0xe00d, 0x11ad: 0x0008, 0x11ae: 0xe00d, 0x11af: 0x0008, -	0x11b0: 0x0008, 0x11b1: 0x0008, 0x11b2: 0xe00d, 0x11b3: 0x0008, 0x11b4: 0xe00d, 0x11b5: 0x0008, -	0x11b6: 0xe00d, 0x11b7: 0x0008, 0x11b8: 0xe00d, 0x11b9: 0x0008, 0x11ba: 0xe00d, 0x11bb: 0x0008, -	0x11bc: 0xe00d, 0x11bd: 0x0008, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0xe00d, 0x11c1: 0x0008, 0x11c2: 0xe00d, 0x11c3: 0x0008, 0x11c4: 0xe00d, 0x11c5: 0x0008, -	0x11c6: 0xe00d, 0x11c7: 0x0008, 0x11c8: 0xe00d, 0x11c9: 0x0008, 0x11ca: 0xe00d, 0x11cb: 0x0008, -	0x11cc: 0xe00d, 0x11cd: 0x0008, 0x11ce: 0xe00d, 0x11cf: 0x0008, 0x11d0: 0xe00d, 0x11d1: 0x0008, -	0x11d2: 0xe00d, 0x11d3: 0x0008, 0x11d4: 0xe00d, 0x11d5: 0x0008, 0x11d6: 0xe00d, 0x11d7: 0x0008, -	0x11d8: 0xe00d, 0x11d9: 0x0008, 0x11da: 0xe00d, 0x11db: 0x0008, 0x11dc: 0xe00d, 0x11dd: 0x0008, -	0x11de: 0xe00d, 0x11df: 0x0008, 0x11e0: 0xe00d, 0x11e1: 0x0008, 0x11e2: 0xe00d, 0x11e3: 0x0008, -	0x11e4: 0xe00d, 0x11e5: 0x0008, 0x11e6: 0xe00d, 0x11e7: 0x0008, 0x11e8: 0xe00d, 0x11e9: 0x0008, -	0x11ea: 0xe00d, 0x11eb: 0x0008, 0x11ec: 0xe00d, 0x11ed: 0x0008, 0x11ee: 0xe00d, 0x11ef: 0x0008, -	0x11f0: 0xe0fd, 0x11f1: 0x0008, 0x11f2: 0x0008, 0x11f3: 0x0008, 0x11f4: 0x0008, 0x11f5: 0x0008, -	0x11f6: 0x0008, 0x11f7: 0x0008, 0x11f8: 0x0008, 0x11f9: 0xe01d, 0x11fa: 0x0008, 0x11fb: 0xe03d, -	0x11fc: 0x0008, 0x11fd: 0x442d, 0x11fe: 0xe00d, 0x11ff: 0x0008, -	// Block 0x48, offset 0x1200 -	0x1200: 0xe00d, 0x1201: 0x0008, 0x1202: 0xe00d, 0x1203: 0x0008, 0x1204: 0xe00d, 0x1205: 0x0008, -	0x1206: 0xe00d, 0x1207: 0x0008, 0x1208: 0x0008, 0x1209: 0x0018, 0x120a: 0x0018, 0x120b: 0xe03d, -	0x120c: 0x0008, 0x120d: 0x11d9, 0x120e: 0x0008, 0x120f: 0x0008, 0x1210: 0xe00d, 0x1211: 0x0008, -	0x1212: 0xe00d, 0x1213: 0x0008, 0x1214: 0x0008, 0x1215: 0x0008, 0x1216: 0xe00d, 0x1217: 0x0008, -	0x1218: 0xe00d, 0x1219: 0x0008, 0x121a: 0xe00d, 0x121b: 0x0008, 0x121c: 0xe00d, 0x121d: 0x0008, -	0x121e: 0xe00d, 0x121f: 0x0008, 0x1220: 0xe00d, 0x1221: 0x0008, 0x1222: 0xe00d, 0x1223: 0x0008, -	0x1224: 0xe00d, 0x1225: 0x0008, 0x1226: 0xe00d, 0x1227: 0x0008, 0x1228: 0xe00d, 0x1229: 0x0008, -	0x122a: 0x6e29, 0x122b: 0x1029, 0x122c: 0x11c1, 0x122d: 0x6e41, 0x122e: 0x1221, 0x122f: 0x0040, -	0x1230: 0x6e59, 0x1231: 0x6e71, 0x1232: 0x1239, 0x1233: 0x444d, 0x1234: 0xe00d, 0x1235: 0x0008, -	0x1236: 0xe00d, 0x1237: 0x0008, 0x1238: 0x0040, 0x1239: 0x0040, 0x123a: 0x0040, 0x123b: 0x0040, -	0x123c: 0x0040, 0x123d: 0x0040, 0x123e: 0x0040, 0x123f: 0x0040, -	// Block 0x49, offset 0x1240 -	0x1240: 0x64d5, 0x1241: 0x64f5, 0x1242: 0x6515, 0x1243: 0x6535, 0x1244: 0x6555, 0x1245: 0x6575, -	0x1246: 0x6595, 0x1247: 0x65b5, 0x1248: 0x65d5, 0x1249: 0x65f5, 0x124a: 0x6615, 0x124b: 0x6635, -	0x124c: 0x6655, 0x124d: 0x6675, 0x124e: 0x0008, 0x124f: 0x0008, 0x1250: 0x6695, 0x1251: 0x0008, -	0x1252: 0x66b5, 0x1253: 0x0008, 0x1254: 0x0008, 0x1255: 0x66d5, 0x1256: 0x66f5, 0x1257: 0x6715, -	0x1258: 0x6735, 0x1259: 0x6755, 0x125a: 0x6775, 0x125b: 0x6795, 0x125c: 0x67b5, 0x125d: 0x67d5, -	0x125e: 0x67f5, 0x125f: 0x0008, 0x1260: 0x6815, 0x1261: 0x0008, 0x1262: 0x6835, 0x1263: 0x0008, -	0x1264: 0x0008, 0x1265: 0x6855, 0x1266: 0x6875, 0x1267: 0x0008, 0x1268: 0x0008, 0x1269: 0x0008, -	0x126a: 0x6895, 0x126b: 0x68b5, 0x126c: 0x68d5, 0x126d: 0x68f5, 0x126e: 0x6915, 0x126f: 0x6935, -	0x1270: 0x6955, 0x1271: 0x6975, 0x1272: 0x6995, 0x1273: 0x69b5, 0x1274: 0x69d5, 0x1275: 0x69f5, -	0x1276: 0x6a15, 0x1277: 0x6a35, 0x1278: 0x6a55, 0x1279: 0x6a75, 0x127a: 0x6a95, 0x127b: 0x6ab5, -	0x127c: 0x6ad5, 0x127d: 0x6af5, 0x127e: 0x6b15, 0x127f: 0x6b35, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x7a95, 0x1281: 0x7ab5, 0x1282: 0x7ad5, 0x1283: 0x7af5, 0x1284: 0x7b15, 0x1285: 0x7b35, -	0x1286: 0x7b55, 0x1287: 0x7b75, 0x1288: 0x7b95, 0x1289: 0x7bb5, 0x128a: 0x7bd5, 0x128b: 0x7bf5, -	0x128c: 0x7c15, 0x128d: 0x7c35, 0x128e: 0x7c55, 0x128f: 0x6ec9, 0x1290: 0x6ef1, 0x1291: 0x6f19, -	0x1292: 0x7c75, 0x1293: 0x7c95, 0x1294: 0x7cb5, 0x1295: 0x6f41, 0x1296: 0x6f69, 0x1297: 0x6f91, -	0x1298: 0x7cd5, 0x1299: 0x7cf5, 0x129a: 0x0040, 0x129b: 0x0040, 0x129c: 0x0040, 0x129d: 0x0040, -	0x129e: 0x0040, 0x129f: 0x0040, 0x12a0: 0x0040, 0x12a1: 0x0040, 0x12a2: 0x0040, 0x12a3: 0x0040, -	0x12a4: 0x0040, 0x12a5: 0x0040, 0x12a6: 0x0040, 0x12a7: 0x0040, 0x12a8: 0x0040, 0x12a9: 0x0040, -	0x12aa: 0x0040, 0x12ab: 0x0040, 0x12ac: 0x0040, 0x12ad: 0x0040, 0x12ae: 0x0040, 0x12af: 0x0040, -	0x12b0: 0x0040, 0x12b1: 0x0040, 0x12b2: 0x0040, 0x12b3: 0x0040, 0x12b4: 0x0040, 0x12b5: 0x0040, -	0x12b6: 0x0040, 0x12b7: 0x0040, 0x12b8: 0x0040, 0x12b9: 0x0040, 0x12ba: 0x0040, 0x12bb: 0x0040, -	0x12bc: 0x0040, 0x12bd: 0x0040, 0x12be: 0x0040, 0x12bf: 0x0040, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x6fb9, 0x12c1: 0x6fd1, 0x12c2: 0x6fe9, 0x12c3: 0x7d15, 0x12c4: 0x7d35, 0x12c5: 0x7001, -	0x12c6: 0x7001, 0x12c7: 0x0040, 0x12c8: 0x0040, 0x12c9: 0x0040, 0x12ca: 0x0040, 0x12cb: 0x0040, -	0x12cc: 0x0040, 0x12cd: 0x0040, 0x12ce: 0x0040, 0x12cf: 0x0040, 0x12d0: 0x0040, 0x12d1: 0x0040, -	0x12d2: 0x0040, 0x12d3: 0x7019, 0x12d4: 0x7041, 0x12d5: 0x7069, 0x12d6: 0x7091, 0x12d7: 0x70b9, -	0x12d8: 0x0040, 0x12d9: 0x0040, 0x12da: 0x0040, 0x12db: 0x0040, 0x12dc: 0x0040, 0x12dd: 0x70e1, -	0x12de: 0x3308, 0x12df: 0x7109, 0x12e0: 0x7131, 0x12e1: 0x20a9, 0x12e2: 0x20f1, 0x12e3: 0x7149, -	0x12e4: 0x7161, 0x12e5: 0x7179, 0x12e6: 0x7191, 0x12e7: 0x71a9, 0x12e8: 0x71c1, 0x12e9: 0x1fb2, -	0x12ea: 0x71d9, 0x12eb: 0x7201, 0x12ec: 0x7229, 0x12ed: 0x7261, 0x12ee: 0x7299, 0x12ef: 0x72c1, -	0x12f0: 0x72e9, 0x12f1: 0x7311, 0x12f2: 0x7339, 0x12f3: 0x7361, 0x12f4: 0x7389, 0x12f5: 0x73b1, -	0x12f6: 0x73d9, 0x12f7: 0x0040, 0x12f8: 0x7401, 0x12f9: 0x7429, 0x12fa: 0x7451, 0x12fb: 0x7479, -	0x12fc: 0x74a1, 0x12fd: 0x0040, 0x12fe: 0x74c9, 0x12ff: 0x0040, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x74f1, 0x1301: 0x7519, 0x1302: 0x0040, 0x1303: 0x7541, 0x1304: 0x7569, 0x1305: 0x0040, -	0x1306: 0x7591, 0x1307: 0x75b9, 0x1308: 0x75e1, 0x1309: 0x7609, 0x130a: 0x7631, 0x130b: 0x7659, -	0x130c: 0x7681, 0x130d: 0x76a9, 0x130e: 0x76d1, 0x130f: 0x76f9, 0x1310: 0x7721, 0x1311: 0x7721, -	0x1312: 0x7739, 0x1313: 0x7739, 0x1314: 0x7739, 0x1315: 0x7739, 0x1316: 0x7751, 0x1317: 0x7751, -	0x1318: 0x7751, 0x1319: 0x7751, 0x131a: 0x7769, 0x131b: 0x7769, 0x131c: 0x7769, 0x131d: 0x7769, -	0x131e: 0x7781, 0x131f: 0x7781, 0x1320: 0x7781, 0x1321: 0x7781, 0x1322: 0x7799, 0x1323: 0x7799, -	0x1324: 0x7799, 0x1325: 0x7799, 0x1326: 0x77b1, 0x1327: 0x77b1, 0x1328: 0x77b1, 0x1329: 0x77b1, -	0x132a: 0x77c9, 0x132b: 0x77c9, 0x132c: 0x77c9, 0x132d: 0x77c9, 0x132e: 0x77e1, 0x132f: 0x77e1, -	0x1330: 0x77e1, 0x1331: 0x77e1, 0x1332: 0x77f9, 0x1333: 0x77f9, 0x1334: 0x77f9, 0x1335: 0x77f9, -	0x1336: 0x7811, 0x1337: 0x7811, 0x1338: 0x7811, 0x1339: 0x7811, 0x133a: 0x7829, 0x133b: 0x7829, -	0x133c: 0x7829, 0x133d: 0x7829, 0x133e: 0x7841, 0x133f: 0x7841, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x7841, 0x1341: 0x7841, 0x1342: 0x7859, 0x1343: 0x7859, 0x1344: 0x7871, 0x1345: 0x7871, -	0x1346: 0x7889, 0x1347: 0x7889, 0x1348: 0x78a1, 0x1349: 0x78a1, 0x134a: 0x78b9, 0x134b: 0x78b9, -	0x134c: 0x78d1, 0x134d: 0x78d1, 0x134e: 0x78e9, 0x134f: 0x78e9, 0x1350: 0x78e9, 0x1351: 0x78e9, -	0x1352: 0x7901, 0x1353: 0x7901, 0x1354: 0x7901, 0x1355: 0x7901, 0x1356: 0x7919, 0x1357: 0x7919, -	0x1358: 0x7919, 0x1359: 0x7919, 0x135a: 0x7931, 0x135b: 0x7931, 0x135c: 0x7931, 0x135d: 0x7931, -	0x135e: 0x7949, 0x135f: 0x7949, 0x1360: 0x7961, 0x1361: 0x7961, 0x1362: 0x7961, 0x1363: 0x7961, -	0x1364: 0x7979, 0x1365: 0x7979, 0x1366: 0x7991, 0x1367: 0x7991, 0x1368: 0x7991, 0x1369: 0x7991, -	0x136a: 0x79a9, 0x136b: 0x79a9, 0x136c: 0x79a9, 0x136d: 0x79a9, 0x136e: 0x79c1, 0x136f: 0x79c1, -	0x1370: 0x79d9, 0x1371: 0x79d9, 0x1372: 0x0818, 0x1373: 0x0818, 0x1374: 0x0818, 0x1375: 0x0818, -	0x1376: 0x0818, 0x1377: 0x0818, 0x1378: 0x0818, 0x1379: 0x0818, 0x137a: 0x0818, 0x137b: 0x0818, -	0x137c: 0x0818, 0x137d: 0x0818, 0x137e: 0x0818, 0x137f: 0x0818, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x0818, 0x1381: 0x0818, 0x1382: 0x0040, 0x1383: 0x0040, 0x1384: 0x0040, 0x1385: 0x0040, -	0x1386: 0x0040, 0x1387: 0x0040, 0x1388: 0x0040, 0x1389: 0x0040, 0x138a: 0x0040, 0x138b: 0x0040, -	0x138c: 0x0040, 0x138d: 0x0040, 0x138e: 0x0040, 0x138f: 0x0040, 0x1390: 0x0040, 0x1391: 0x0040, -	0x1392: 0x0040, 0x1393: 0x79f1, 0x1394: 0x79f1, 0x1395: 0x79f1, 0x1396: 0x79f1, 0x1397: 0x7a09, -	0x1398: 0x7a09, 0x1399: 0x7a21, 0x139a: 0x7a21, 0x139b: 0x7a39, 0x139c: 0x7a39, 0x139d: 0x0479, -	0x139e: 0x7a51, 0x139f: 0x7a51, 0x13a0: 0x7a69, 0x13a1: 0x7a69, 0x13a2: 0x7a81, 0x13a3: 0x7a81, -	0x13a4: 0x7a99, 0x13a5: 0x7a99, 0x13a6: 0x7a99, 0x13a7: 0x7a99, 0x13a8: 0x7ab1, 0x13a9: 0x7ab1, -	0x13aa: 0x7ac9, 0x13ab: 0x7ac9, 0x13ac: 0x7af1, 0x13ad: 0x7af1, 0x13ae: 0x7b19, 0x13af: 0x7b19, -	0x13b0: 0x7b41, 0x13b1: 0x7b41, 0x13b2: 0x7b69, 0x13b3: 0x7b69, 0x13b4: 0x7b91, 0x13b5: 0x7b91, -	0x13b6: 0x7bb9, 0x13b7: 0x7bb9, 0x13b8: 0x7bb9, 0x13b9: 0x7be1, 0x13ba: 0x7be1, 0x13bb: 0x7be1, -	0x13bc: 0x7c09, 0x13bd: 0x7c09, 0x13be: 0x7c09, 0x13bf: 0x7c09, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x85f9, 0x13c1: 0x8621, 0x13c2: 0x8649, 0x13c3: 0x8671, 0x13c4: 0x8699, 0x13c5: 0x86c1, -	0x13c6: 0x86e9, 0x13c7: 0x8711, 0x13c8: 0x8739, 0x13c9: 0x8761, 0x13ca: 0x8789, 0x13cb: 0x87b1, -	0x13cc: 0x87d9, 0x13cd: 0x8801, 0x13ce: 0x8829, 0x13cf: 0x8851, 0x13d0: 0x8879, 0x13d1: 0x88a1, -	0x13d2: 0x88c9, 0x13d3: 0x88f1, 0x13d4: 0x8919, 0x13d5: 0x8941, 0x13d6: 0x8969, 0x13d7: 0x8991, -	0x13d8: 0x89b9, 0x13d9: 0x89e1, 0x13da: 0x8a09, 0x13db: 0x8a31, 0x13dc: 0x8a59, 0x13dd: 0x8a81, -	0x13de: 0x8aaa, 0x13df: 0x8ada, 0x13e0: 0x8b0a, 0x13e1: 0x8b3a, 0x13e2: 0x8b6a, 0x13e3: 0x8b9a, -	0x13e4: 0x8bc9, 0x13e5: 0x8bf1, 0x13e6: 0x7c71, 0x13e7: 0x8c19, 0x13e8: 0x7be1, 0x13e9: 0x7c99, -	0x13ea: 0x8c41, 0x13eb: 0x8c69, 0x13ec: 0x7d39, 0x13ed: 0x8c91, 0x13ee: 0x7d61, 0x13ef: 0x7d89, -	0x13f0: 0x8cb9, 0x13f1: 0x8ce1, 0x13f2: 0x7e29, 0x13f3: 0x8d09, 0x13f4: 0x7e51, 0x13f5: 0x7e79, -	0x13f6: 0x8d31, 0x13f7: 0x8d59, 0x13f8: 0x7ec9, 0x13f9: 0x8d81, 0x13fa: 0x7ef1, 0x13fb: 0x7f19, -	0x13fc: 0x83a1, 0x13fd: 0x83c9, 0x13fe: 0x8441, 0x13ff: 0x8469, -	// Block 0x50, offset 0x1400 -	0x1400: 0x8491, 0x1401: 0x8531, 0x1402: 0x8559, 0x1403: 0x8581, 0x1404: 0x85a9, 0x1405: 0x8649, -	0x1406: 0x8671, 0x1407: 0x8699, 0x1408: 0x8da9, 0x1409: 0x8739, 0x140a: 0x8dd1, 0x140b: 0x8df9, -	0x140c: 0x8829, 0x140d: 0x8e21, 0x140e: 0x8851, 0x140f: 0x8879, 0x1410: 0x8a81, 0x1411: 0x8e49, -	0x1412: 0x8e71, 0x1413: 0x89b9, 0x1414: 0x8e99, 0x1415: 0x89e1, 0x1416: 0x8a09, 0x1417: 0x7c21, -	0x1418: 0x7c49, 0x1419: 0x8ec1, 0x141a: 0x7c71, 0x141b: 0x8ee9, 0x141c: 0x7cc1, 0x141d: 0x7ce9, -	0x141e: 0x7d11, 0x141f: 0x7d39, 0x1420: 0x8f11, 0x1421: 0x7db1, 0x1422: 0x7dd9, 0x1423: 0x7e01, -	0x1424: 0x7e29, 0x1425: 0x8f39, 0x1426: 0x7ec9, 0x1427: 0x7f41, 0x1428: 0x7f69, 0x1429: 0x7f91, -	0x142a: 0x7fb9, 0x142b: 0x7fe1, 0x142c: 0x8031, 0x142d: 0x8059, 0x142e: 0x8081, 0x142f: 0x80a9, -	0x1430: 0x80d1, 0x1431: 0x80f9, 0x1432: 0x8f61, 0x1433: 0x8121, 0x1434: 0x8149, 0x1435: 0x8171, -	0x1436: 0x8199, 0x1437: 0x81c1, 0x1438: 0x81e9, 0x1439: 0x8239, 0x143a: 0x8261, 0x143b: 0x8289, -	0x143c: 0x82b1, 0x143d: 0x82d9, 0x143e: 0x8301, 0x143f: 0x8329, -	// Block 0x51, offset 0x1440 -	0x1440: 0x8351, 0x1441: 0x8379, 0x1442: 0x83f1, 0x1443: 0x8419, 0x1444: 0x84b9, 0x1445: 0x84e1, -	0x1446: 0x8509, 0x1447: 0x8531, 0x1448: 0x8559, 0x1449: 0x85d1, 0x144a: 0x85f9, 0x144b: 0x8621, -	0x144c: 0x8649, 0x144d: 0x8f89, 0x144e: 0x86c1, 0x144f: 0x86e9, 0x1450: 0x8711, 0x1451: 0x8739, -	0x1452: 0x87b1, 0x1453: 0x87d9, 0x1454: 0x8801, 0x1455: 0x8829, 0x1456: 0x8fb1, 0x1457: 0x88a1, -	0x1458: 0x88c9, 0x1459: 0x8fd9, 0x145a: 0x8941, 0x145b: 0x8969, 0x145c: 0x8991, 0x145d: 0x89b9, -	0x145e: 0x9001, 0x145f: 0x7c71, 0x1460: 0x8ee9, 0x1461: 0x7d39, 0x1462: 0x8f11, 0x1463: 0x7e29, -	0x1464: 0x8f39, 0x1465: 0x7ec9, 0x1466: 0x9029, 0x1467: 0x80d1, 0x1468: 0x9051, 0x1469: 0x9079, -	0x146a: 0x90a1, 0x146b: 0x8531, 0x146c: 0x8559, 0x146d: 0x8649, 0x146e: 0x8829, 0x146f: 0x8fb1, -	0x1470: 0x89b9, 0x1471: 0x9001, 0x1472: 0x90c9, 0x1473: 0x9101, 0x1474: 0x9139, 0x1475: 0x9171, -	0x1476: 0x9199, 0x1477: 0x91c1, 0x1478: 0x91e9, 0x1479: 0x9211, 0x147a: 0x9239, 0x147b: 0x9261, -	0x147c: 0x9289, 0x147d: 0x92b1, 0x147e: 0x92d9, 0x147f: 0x9301, -	// Block 0x52, offset 0x1480 -	0x1480: 0x9329, 0x1481: 0x9351, 0x1482: 0x9379, 0x1483: 0x93a1, 0x1484: 0x93c9, 0x1485: 0x93f1, -	0x1486: 0x9419, 0x1487: 0x9441, 0x1488: 0x9469, 0x1489: 0x9491, 0x148a: 0x94b9, 0x148b: 0x94e1, -	0x148c: 0x9079, 0x148d: 0x9509, 0x148e: 0x9531, 0x148f: 0x9559, 0x1490: 0x9581, 0x1491: 0x9171, -	0x1492: 0x9199, 0x1493: 0x91c1, 0x1494: 0x91e9, 0x1495: 0x9211, 0x1496: 0x9239, 0x1497: 0x9261, -	0x1498: 0x9289, 0x1499: 0x92b1, 0x149a: 0x92d9, 0x149b: 0x9301, 0x149c: 0x9329, 0x149d: 0x9351, -	0x149e: 0x9379, 0x149f: 0x93a1, 0x14a0: 0x93c9, 0x14a1: 0x93f1, 0x14a2: 0x9419, 0x14a3: 0x9441, -	0x14a4: 0x9469, 0x14a5: 0x9491, 0x14a6: 0x94b9, 0x14a7: 0x94e1, 0x14a8: 0x9079, 0x14a9: 0x9509, -	0x14aa: 0x9531, 0x14ab: 0x9559, 0x14ac: 0x9581, 0x14ad: 0x9491, 0x14ae: 0x94b9, 0x14af: 0x94e1, -	0x14b0: 0x9079, 0x14b1: 0x9051, 0x14b2: 0x90a1, 0x14b3: 0x8211, 0x14b4: 0x8059, 0x14b5: 0x8081, -	0x14b6: 0x80a9, 0x14b7: 0x9491, 0x14b8: 0x94b9, 0x14b9: 0x94e1, 0x14ba: 0x8211, 0x14bb: 0x8239, -	0x14bc: 0x95a9, 0x14bd: 0x95a9, 0x14be: 0x0018, 0x14bf: 0x0018, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0x0040, 0x14c1: 0x0040, 0x14c2: 0x0040, 0x14c3: 0x0040, 0x14c4: 0x0040, 0x14c5: 0x0040, -	0x14c6: 0x0040, 0x14c7: 0x0040, 0x14c8: 0x0040, 0x14c9: 0x0040, 0x14ca: 0x0040, 0x14cb: 0x0040, -	0x14cc: 0x0040, 0x14cd: 0x0040, 0x14ce: 0x0040, 0x14cf: 0x0040, 0x14d0: 0x95d1, 0x14d1: 0x9609, -	0x14d2: 0x9609, 0x14d3: 0x9641, 0x14d4: 0x9679, 0x14d5: 0x96b1, 0x14d6: 0x96e9, 0x14d7: 0x9721, -	0x14d8: 0x9759, 0x14d9: 0x9759, 0x14da: 0x9791, 0x14db: 0x97c9, 0x14dc: 0x9801, 0x14dd: 0x9839, -	0x14de: 0x9871, 0x14df: 0x98a9, 0x14e0: 0x98a9, 0x14e1: 0x98e1, 0x14e2: 0x9919, 0x14e3: 0x9919, -	0x14e4: 0x9951, 0x14e5: 0x9951, 0x14e6: 0x9989, 0x14e7: 0x99c1, 0x14e8: 0x99c1, 0x14e9: 0x99f9, -	0x14ea: 0x9a31, 0x14eb: 0x9a31, 0x14ec: 0x9a69, 0x14ed: 0x9a69, 0x14ee: 0x9aa1, 0x14ef: 0x9ad9, -	0x14f0: 0x9ad9, 0x14f1: 0x9b11, 0x14f2: 0x9b11, 0x14f3: 0x9b49, 0x14f4: 0x9b81, 0x14f5: 0x9bb9, -	0x14f6: 0x9bf1, 0x14f7: 0x9bf1, 0x14f8: 0x9c29, 0x14f9: 0x9c61, 0x14fa: 0x9c99, 0x14fb: 0x9cd1, -	0x14fc: 0x9d09, 0x14fd: 0x9d09, 0x14fe: 0x9d41, 0x14ff: 0x9d79, -	// Block 0x54, offset 0x1500 -	0x1500: 0xa949, 0x1501: 0xa981, 0x1502: 0xa9b9, 0x1503: 0xa8a1, 0x1504: 0x9bb9, 0x1505: 0x9989, -	0x1506: 0xa9f1, 0x1507: 0xaa29, 0x1508: 0x0040, 0x1509: 0x0040, 0x150a: 0x0040, 0x150b: 0x0040, -	0x150c: 0x0040, 0x150d: 0x0040, 0x150e: 0x0040, 0x150f: 0x0040, 0x1510: 0x0040, 0x1511: 0x0040, -	0x1512: 0x0040, 0x1513: 0x0040, 0x1514: 0x0040, 0x1515: 0x0040, 0x1516: 0x0040, 0x1517: 0x0040, -	0x1518: 0x0040, 0x1519: 0x0040, 0x151a: 0x0040, 0x151b: 0x0040, 0x151c: 0x0040, 0x151d: 0x0040, -	0x151e: 0x0040, 0x151f: 0x0040, 0x1520: 0x0040, 0x1521: 0x0040, 0x1522: 0x0040, 0x1523: 0x0040, -	0x1524: 0x0040, 0x1525: 0x0040, 0x1526: 0x0040, 0x1527: 0x0040, 0x1528: 0x0040, 0x1529: 0x0040, -	0x152a: 0x0040, 0x152b: 0x0040, 0x152c: 0x0040, 0x152d: 0x0040, 0x152e: 0x0040, 0x152f: 0x0040, -	0x1530: 0xaa61, 0x1531: 0xaa99, 0x1532: 0xaad1, 0x1533: 0xab19, 0x1534: 0xab61, 0x1535: 0xaba9, -	0x1536: 0xabf1, 0x1537: 0xac39, 0x1538: 0xac81, 0x1539: 0xacc9, 0x153a: 0xad02, 0x153b: 0xae12, -	0x153c: 0xae91, 0x153d: 0x0018, 0x153e: 0x0040, 0x153f: 0x0040, -	// Block 0x55, offset 0x1540 -	0x1540: 0x33c0, 0x1541: 0x33c0, 0x1542: 0x33c0, 0x1543: 0x33c0, 0x1544: 0x33c0, 0x1545: 0x33c0, -	0x1546: 0x33c0, 0x1547: 0x33c0, 0x1548: 0x33c0, 0x1549: 0x33c0, 0x154a: 0x33c0, 0x154b: 0x33c0, -	0x154c: 0x33c0, 0x154d: 0x33c0, 0x154e: 0x33c0, 0x154f: 0x33c0, 0x1550: 0xaeda, 0x1551: 0x7d55, -	0x1552: 0x0040, 0x1553: 0xaeea, 0x1554: 0x03c2, 0x1555: 0xaefa, 0x1556: 0xaf0a, 0x1557: 0x7d75, -	0x1558: 0x7d95, 0x1559: 0x0040, 0x155a: 0x0040, 0x155b: 0x0040, 0x155c: 0x0040, 0x155d: 0x0040, -	0x155e: 0x0040, 0x155f: 0x0040, 0x1560: 0x3308, 0x1561: 0x3308, 0x1562: 0x3308, 0x1563: 0x3308, -	0x1564: 0x3308, 0x1565: 0x3308, 0x1566: 0x3308, 0x1567: 0x3308, 0x1568: 0x3308, 0x1569: 0x3308, -	0x156a: 0x3308, 0x156b: 0x3308, 0x156c: 0x3308, 0x156d: 0x3308, 0x156e: 0x3308, 0x156f: 0x3308, -	0x1570: 0x0040, 0x1571: 0x7db5, 0x1572: 0x7dd5, 0x1573: 0xaf1a, 0x1574: 0xaf1a, 0x1575: 0x1fd2, -	0x1576: 0x1fe2, 0x1577: 0xaf2a, 0x1578: 0xaf3a, 0x1579: 0x7df5, 0x157a: 0x7e15, 0x157b: 0x7e35, -	0x157c: 0x7df5, 0x157d: 0x7e55, 0x157e: 0x7e75, 0x157f: 0x7e55, -	// Block 0x56, offset 0x1580 -	0x1580: 0x7e95, 0x1581: 0x7eb5, 0x1582: 0x7ed5, 0x1583: 0x7eb5, 0x1584: 0x7ef5, 0x1585: 0x0018, -	0x1586: 0x0018, 0x1587: 0xaf4a, 0x1588: 0xaf5a, 0x1589: 0x7f16, 0x158a: 0x7f36, 0x158b: 0x7f56, -	0x158c: 0x7f76, 0x158d: 0xaf1a, 0x158e: 0xaf1a, 0x158f: 0xaf1a, 0x1590: 0xaeda, 0x1591: 0x7f95, -	0x1592: 0x0040, 0x1593: 0x0040, 0x1594: 0x03c2, 0x1595: 0xaeea, 0x1596: 0xaf0a, 0x1597: 0xaefa, -	0x1598: 0x7fb5, 0x1599: 0x1fd2, 0x159a: 0x1fe2, 0x159b: 0xaf2a, 0x159c: 0xaf3a, 0x159d: 0x7e95, -	0x159e: 0x7ef5, 0x159f: 0xaf6a, 0x15a0: 0xaf7a, 0x15a1: 0xaf8a, 0x15a2: 0x1fb2, 0x15a3: 0xaf99, -	0x15a4: 0xafaa, 0x15a5: 0xafba, 0x15a6: 0x1fc2, 0x15a7: 0x0040, 0x15a8: 0xafca, 0x15a9: 0xafda, -	0x15aa: 0xafea, 0x15ab: 0xaffa, 0x15ac: 0x0040, 0x15ad: 0x0040, 0x15ae: 0x0040, 0x15af: 0x0040, -	0x15b0: 0x7fd6, 0x15b1: 0xb009, 0x15b2: 0x7ff6, 0x15b3: 0x0808, 0x15b4: 0x8016, 0x15b5: 0x0040, -	0x15b6: 0x8036, 0x15b7: 0xb031, 0x15b8: 0x8056, 0x15b9: 0xb059, 0x15ba: 0x8076, 0x15bb: 0xb081, -	0x15bc: 0x8096, 0x15bd: 0xb0a9, 0x15be: 0x80b6, 0x15bf: 0xb0d1, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0xb0f9, 0x15c1: 0xb111, 0x15c2: 0xb111, 0x15c3: 0xb129, 0x15c4: 0xb129, 0x15c5: 0xb141, -	0x15c6: 0xb141, 0x15c7: 0xb159, 0x15c8: 0xb159, 0x15c9: 0xb171, 0x15ca: 0xb171, 0x15cb: 0xb171, -	0x15cc: 0xb171, 0x15cd: 0xb189, 0x15ce: 0xb189, 0x15cf: 0xb1a1, 0x15d0: 0xb1a1, 0x15d1: 0xb1a1, -	0x15d2: 0xb1a1, 0x15d3: 0xb1b9, 0x15d4: 0xb1b9, 0x15d5: 0xb1d1, 0x15d6: 0xb1d1, 0x15d7: 0xb1d1, -	0x15d8: 0xb1d1, 0x15d9: 0xb1e9, 0x15da: 0xb1e9, 0x15db: 0xb1e9, 0x15dc: 0xb1e9, 0x15dd: 0xb201, -	0x15de: 0xb201, 0x15df: 0xb201, 0x15e0: 0xb201, 0x15e1: 0xb219, 0x15e2: 0xb219, 0x15e3: 0xb219, -	0x15e4: 0xb219, 0x15e5: 0xb231, 0x15e6: 0xb231, 0x15e7: 0xb231, 0x15e8: 0xb231, 0x15e9: 0xb249, -	0x15ea: 0xb249, 0x15eb: 0xb261, 0x15ec: 0xb261, 0x15ed: 0xb279, 0x15ee: 0xb279, 0x15ef: 0xb291, -	0x15f0: 0xb291, 0x15f1: 0xb2a9, 0x15f2: 0xb2a9, 0x15f3: 0xb2a9, 0x15f4: 0xb2a9, 0x15f5: 0xb2c1, -	0x15f6: 0xb2c1, 0x15f7: 0xb2c1, 0x15f8: 0xb2c1, 0x15f9: 0xb2d9, 0x15fa: 0xb2d9, 0x15fb: 0xb2d9, -	0x15fc: 0xb2d9, 0x15fd: 0xb2f1, 0x15fe: 0xb2f1, 0x15ff: 0xb2f1, -	// Block 0x58, offset 0x1600 -	0x1600: 0xb2f1, 0x1601: 0xb309, 0x1602: 0xb309, 0x1603: 0xb309, 0x1604: 0xb309, 0x1605: 0xb321, -	0x1606: 0xb321, 0x1607: 0xb321, 0x1608: 0xb321, 0x1609: 0xb339, 0x160a: 0xb339, 0x160b: 0xb339, -	0x160c: 0xb339, 0x160d: 0xb351, 0x160e: 0xb351, 0x160f: 0xb351, 0x1610: 0xb351, 0x1611: 0xb369, -	0x1612: 0xb369, 0x1613: 0xb369, 0x1614: 0xb369, 0x1615: 0xb381, 0x1616: 0xb381, 0x1617: 0xb381, -	0x1618: 0xb381, 0x1619: 0xb399, 0x161a: 0xb399, 0x161b: 0xb399, 0x161c: 0xb399, 0x161d: 0xb3b1, -	0x161e: 0xb3b1, 0x161f: 0xb3b1, 0x1620: 0xb3b1, 0x1621: 0xb3c9, 0x1622: 0xb3c9, 0x1623: 0xb3c9, -	0x1624: 0xb3c9, 0x1625: 0xb3e1, 0x1626: 0xb3e1, 0x1627: 0xb3e1, 0x1628: 0xb3e1, 0x1629: 0xb3f9, -	0x162a: 0xb3f9, 0x162b: 0xb3f9, 0x162c: 0xb3f9, 0x162d: 0xb411, 0x162e: 0xb411, 0x162f: 0x7ab1, -	0x1630: 0x7ab1, 0x1631: 0xb429, 0x1632: 0xb429, 0x1633: 0xb429, 0x1634: 0xb429, 0x1635: 0xb441, -	0x1636: 0xb441, 0x1637: 0xb469, 0x1638: 0xb469, 0x1639: 0xb491, 0x163a: 0xb491, 0x163b: 0xb4b9, -	0x163c: 0xb4b9, 0x163d: 0x0040, 0x163e: 0x0040, 0x163f: 0x03c0, -	// Block 0x59, offset 0x1640 -	0x1640: 0x0040, 0x1641: 0xaefa, 0x1642: 0xb4e2, 0x1643: 0xaf6a, 0x1644: 0xafda, 0x1645: 0xafea, -	0x1646: 0xaf7a, 0x1647: 0xb4f2, 0x1648: 0x1fd2, 0x1649: 0x1fe2, 0x164a: 0xaf8a, 0x164b: 0x1fb2, -	0x164c: 0xaeda, 0x164d: 0xaf99, 0x164e: 0x29d1, 0x164f: 0xb502, 0x1650: 0x1f41, 0x1651: 0x00c9, -	0x1652: 0x0069, 0x1653: 0x0079, 0x1654: 0x1f51, 0x1655: 0x1f61, 0x1656: 0x1f71, 0x1657: 0x1f81, -	0x1658: 0x1f91, 0x1659: 0x1fa1, 0x165a: 0xaeea, 0x165b: 0x03c2, 0x165c: 0xafaa, 0x165d: 0x1fc2, -	0x165e: 0xafba, 0x165f: 0xaf0a, 0x1660: 0xaffa, 0x1661: 0x0039, 0x1662: 0x0ee9, 0x1663: 0x1159, -	0x1664: 0x0ef9, 0x1665: 0x0f09, 0x1666: 0x1199, 0x1667: 0x0f31, 0x1668: 0x0249, 0x1669: 0x0f41, -	0x166a: 0x0259, 0x166b: 0x0f51, 0x166c: 0x0359, 0x166d: 0x0f61, 0x166e: 0x0f71, 0x166f: 0x00d9, -	0x1670: 0x0f99, 0x1671: 0x2039, 0x1672: 0x0269, 0x1673: 0x01d9, 0x1674: 0x0fa9, 0x1675: 0x0fb9, -	0x1676: 0x1089, 0x1677: 0x0279, 0x1678: 0x0369, 0x1679: 0x0289, 0x167a: 0x13d1, 0x167b: 0xaf4a, -	0x167c: 0xafca, 0x167d: 0xaf5a, 0x167e: 0xb512, 0x167f: 0xaf1a, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x1caa, 0x1681: 0x0039, 0x1682: 0x0ee9, 0x1683: 0x1159, 0x1684: 0x0ef9, 0x1685: 0x0f09, -	0x1686: 0x1199, 0x1687: 0x0f31, 0x1688: 0x0249, 0x1689: 0x0f41, 0x168a: 0x0259, 0x168b: 0x0f51, -	0x168c: 0x0359, 0x168d: 0x0f61, 0x168e: 0x0f71, 0x168f: 0x00d9, 0x1690: 0x0f99, 0x1691: 0x2039, -	0x1692: 0x0269, 0x1693: 0x01d9, 0x1694: 0x0fa9, 0x1695: 0x0fb9, 0x1696: 0x1089, 0x1697: 0x0279, -	0x1698: 0x0369, 0x1699: 0x0289, 0x169a: 0x13d1, 0x169b: 0xaf2a, 0x169c: 0xb522, 0x169d: 0xaf3a, -	0x169e: 0xb532, 0x169f: 0x80d5, 0x16a0: 0x80f5, 0x16a1: 0x29d1, 0x16a2: 0x8115, 0x16a3: 0x8115, -	0x16a4: 0x8135, 0x16a5: 0x8155, 0x16a6: 0x8175, 0x16a7: 0x8195, 0x16a8: 0x81b5, 0x16a9: 0x81d5, -	0x16aa: 0x81f5, 0x16ab: 0x8215, 0x16ac: 0x8235, 0x16ad: 0x8255, 0x16ae: 0x8275, 0x16af: 0x8295, -	0x16b0: 0x82b5, 0x16b1: 0x82d5, 0x16b2: 0x82f5, 0x16b3: 0x8315, 0x16b4: 0x8335, 0x16b5: 0x8355, -	0x16b6: 0x8375, 0x16b7: 0x8395, 0x16b8: 0x83b5, 0x16b9: 0x83d5, 0x16ba: 0x83f5, 0x16bb: 0x8415, -	0x16bc: 0x81b5, 0x16bd: 0x8435, 0x16be: 0x8455, 0x16bf: 0x8215, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x8475, 0x16c1: 0x8495, 0x16c2: 0x84b5, 0x16c3: 0x84d5, 0x16c4: 0x84f5, 0x16c5: 0x8515, -	0x16c6: 0x8535, 0x16c7: 0x8555, 0x16c8: 0x84d5, 0x16c9: 0x8575, 0x16ca: 0x84d5, 0x16cb: 0x8595, -	0x16cc: 0x8595, 0x16cd: 0x85b5, 0x16ce: 0x85b5, 0x16cf: 0x85d5, 0x16d0: 0x8515, 0x16d1: 0x85f5, -	0x16d2: 0x8615, 0x16d3: 0x85f5, 0x16d4: 0x8635, 0x16d5: 0x8615, 0x16d6: 0x8655, 0x16d7: 0x8655, -	0x16d8: 0x8675, 0x16d9: 0x8675, 0x16da: 0x8695, 0x16db: 0x8695, 0x16dc: 0x8615, 0x16dd: 0x8115, -	0x16de: 0x86b5, 0x16df: 0x86d5, 0x16e0: 0x0040, 0x16e1: 0x86f5, 0x16e2: 0x8715, 0x16e3: 0x8735, -	0x16e4: 0x8755, 0x16e5: 0x8735, 0x16e6: 0x8775, 0x16e7: 0x8795, 0x16e8: 0x87b5, 0x16e9: 0x87b5, -	0x16ea: 0x87d5, 0x16eb: 0x87d5, 0x16ec: 0x87f5, 0x16ed: 0x87f5, 0x16ee: 0x87d5, 0x16ef: 0x87d5, -	0x16f0: 0x8815, 0x16f1: 0x8835, 0x16f2: 0x8855, 0x16f3: 0x8875, 0x16f4: 0x8895, 0x16f5: 0x88b5, -	0x16f6: 0x88b5, 0x16f7: 0x88b5, 0x16f8: 0x88d5, 0x16f9: 0x88d5, 0x16fa: 0x88d5, 0x16fb: 0x88d5, -	0x16fc: 0x87b5, 0x16fd: 0x87b5, 0x16fe: 0x87b5, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0040, 0x1701: 0x0040, 0x1702: 0x8715, 0x1703: 0x86f5, 0x1704: 0x88f5, 0x1705: 0x86f5, -	0x1706: 0x8715, 0x1707: 0x86f5, 0x1708: 0x0040, 0x1709: 0x0040, 0x170a: 0x8915, 0x170b: 0x8715, -	0x170c: 0x8935, 0x170d: 0x88f5, 0x170e: 0x8935, 0x170f: 0x8715, 0x1710: 0x0040, 0x1711: 0x0040, -	0x1712: 0x8955, 0x1713: 0x8975, 0x1714: 0x8875, 0x1715: 0x8935, 0x1716: 0x88f5, 0x1717: 0x8935, -	0x1718: 0x0040, 0x1719: 0x0040, 0x171a: 0x8995, 0x171b: 0x89b5, 0x171c: 0x8995, 0x171d: 0x0040, -	0x171e: 0x0040, 0x171f: 0x0040, 0x1720: 0xb541, 0x1721: 0xb559, 0x1722: 0xb571, 0x1723: 0x89d6, -	0x1724: 0xb589, 0x1725: 0xb5a1, 0x1726: 0x89f5, 0x1727: 0x0040, 0x1728: 0x8a15, 0x1729: 0x8a35, -	0x172a: 0x8a55, 0x172b: 0x8a35, 0x172c: 0x8a75, 0x172d: 0x8a95, 0x172e: 0x8ab5, 0x172f: 0x0040, -	0x1730: 0x0040, 0x1731: 0x0040, 0x1732: 0x0040, 0x1733: 0x0040, 0x1734: 0x0040, 0x1735: 0x0040, -	0x1736: 0x0040, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0340, 0x173a: 0x0340, 0x173b: 0x0340, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x0a08, 0x1741: 0x0a08, 0x1742: 0x0a08, 0x1743: 0x0a08, 0x1744: 0x0a08, 0x1745: 0x0c08, -	0x1746: 0x0808, 0x1747: 0x0c08, 0x1748: 0x0818, 0x1749: 0x0c08, 0x174a: 0x0c08, 0x174b: 0x0808, -	0x174c: 0x0808, 0x174d: 0x0908, 0x174e: 0x0c08, 0x174f: 0x0c08, 0x1750: 0x0c08, 0x1751: 0x0c08, -	0x1752: 0x0c08, 0x1753: 0x0a08, 0x1754: 0x0a08, 0x1755: 0x0a08, 0x1756: 0x0a08, 0x1757: 0x0908, -	0x1758: 0x0a08, 0x1759: 0x0a08, 0x175a: 0x0a08, 0x175b: 0x0a08, 0x175c: 0x0a08, 0x175d: 0x0c08, -	0x175e: 0x0a08, 0x175f: 0x0a08, 0x1760: 0x0a08, 0x1761: 0x0c08, 0x1762: 0x0808, 0x1763: 0x0808, -	0x1764: 0x0c08, 0x1765: 0x3308, 0x1766: 0x3308, 0x1767: 0x0040, 0x1768: 0x0040, 0x1769: 0x0040, -	0x176a: 0x0040, 0x176b: 0x0a18, 0x176c: 0x0a18, 0x176d: 0x0a18, 0x176e: 0x0a18, 0x176f: 0x0c18, -	0x1770: 0x0818, 0x1771: 0x0818, 0x1772: 0x0818, 0x1773: 0x0818, 0x1774: 0x0818, 0x1775: 0x0818, -	0x1776: 0x0818, 0x1777: 0x0040, 0x1778: 0x0040, 0x1779: 0x0040, 0x177a: 0x0040, 0x177b: 0x0040, -	0x177c: 0x0040, 0x177d: 0x0040, 0x177e: 0x0040, 0x177f: 0x0040, -	// Block 0x5e, offset 0x1780 -	0x1780: 0x0a08, 0x1781: 0x0c08, 0x1782: 0x0a08, 0x1783: 0x0c08, 0x1784: 0x0c08, 0x1785: 0x0c08, -	0x1786: 0x0a08, 0x1787: 0x0a08, 0x1788: 0x0a08, 0x1789: 0x0c08, 0x178a: 0x0a08, 0x178b: 0x0a08, -	0x178c: 0x0c08, 0x178d: 0x0a08, 0x178e: 0x0c08, 0x178f: 0x0c08, 0x1790: 0x0a08, 0x1791: 0x0c08, -	0x1792: 0x0040, 0x1793: 0x0040, 0x1794: 0x0040, 0x1795: 0x0040, 0x1796: 0x0040, 0x1797: 0x0040, -	0x1798: 0x0040, 0x1799: 0x0818, 0x179a: 0x0818, 0x179b: 0x0818, 0x179c: 0x0818, 0x179d: 0x0040, -	0x179e: 0x0040, 0x179f: 0x0040, 0x17a0: 0x0040, 0x17a1: 0x0040, 0x17a2: 0x0040, 0x17a3: 0x0040, -	0x17a4: 0x0040, 0x17a5: 0x0040, 0x17a6: 0x0040, 0x17a7: 0x0040, 0x17a8: 0x0040, 0x17a9: 0x0c18, -	0x17aa: 0x0c18, 0x17ab: 0x0c18, 0x17ac: 0x0c18, 0x17ad: 0x0a18, 0x17ae: 0x0a18, 0x17af: 0x0818, -	0x17b0: 0x0040, 0x17b1: 0x0040, 0x17b2: 0x0040, 0x17b3: 0x0040, 0x17b4: 0x0040, 0x17b5: 0x0040, -	0x17b6: 0x0040, 0x17b7: 0x0040, 0x17b8: 0x0040, 0x17b9: 0x0040, 0x17ba: 0x0040, 0x17bb: 0x0040, -	0x17bc: 0x0040, 0x17bd: 0x0040, 0x17be: 0x0040, 0x17bf: 0x0040, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x3308, 0x17c1: 0x3308, 0x17c2: 0x3008, 0x17c3: 0x3008, 0x17c4: 0x0040, 0x17c5: 0x0008, -	0x17c6: 0x0008, 0x17c7: 0x0008, 0x17c8: 0x0008, 0x17c9: 0x0008, 0x17ca: 0x0008, 0x17cb: 0x0008, -	0x17cc: 0x0008, 0x17cd: 0x0040, 0x17ce: 0x0040, 0x17cf: 0x0008, 0x17d0: 0x0008, 0x17d1: 0x0040, -	0x17d2: 0x0040, 0x17d3: 0x0008, 0x17d4: 0x0008, 0x17d5: 0x0008, 0x17d6: 0x0008, 0x17d7: 0x0008, -	0x17d8: 0x0008, 0x17d9: 0x0008, 0x17da: 0x0008, 0x17db: 0x0008, 0x17dc: 0x0008, 0x17dd: 0x0008, -	0x17de: 0x0008, 0x17df: 0x0008, 0x17e0: 0x0008, 0x17e1: 0x0008, 0x17e2: 0x0008, 0x17e3: 0x0008, -	0x17e4: 0x0008, 0x17e5: 0x0008, 0x17e6: 0x0008, 0x17e7: 0x0008, 0x17e8: 0x0008, 0x17e9: 0x0040, -	0x17ea: 0x0008, 0x17eb: 0x0008, 0x17ec: 0x0008, 0x17ed: 0x0008, 0x17ee: 0x0008, 0x17ef: 0x0008, -	0x17f0: 0x0008, 0x17f1: 0x0040, 0x17f2: 0x0008, 0x17f3: 0x0008, 0x17f4: 0x0040, 0x17f5: 0x0008, -	0x17f6: 0x0008, 0x17f7: 0x0008, 0x17f8: 0x0008, 0x17f9: 0x0008, 0x17fa: 0x0040, 0x17fb: 0x0040, -	0x17fc: 0x3308, 0x17fd: 0x0008, 0x17fe: 0x3008, 0x17ff: 0x3008, -	// Block 0x60, offset 0x1800 -	0x1800: 0x3308, 0x1801: 0x3008, 0x1802: 0x3008, 0x1803: 0x3008, 0x1804: 0x3008, 0x1805: 0x0040, -	0x1806: 0x0040, 0x1807: 0x3008, 0x1808: 0x3008, 0x1809: 0x0040, 0x180a: 0x0040, 0x180b: 0x3008, -	0x180c: 0x3008, 0x180d: 0x3808, 0x180e: 0x0040, 0x180f: 0x0040, 0x1810: 0x0008, 0x1811: 0x0040, -	0x1812: 0x0040, 0x1813: 0x0040, 0x1814: 0x0040, 0x1815: 0x0040, 0x1816: 0x0040, 0x1817: 0x3008, -	0x1818: 0x0040, 0x1819: 0x0040, 0x181a: 0x0040, 0x181b: 0x0040, 0x181c: 0x0040, 0x181d: 0x0008, -	0x181e: 0x0008, 0x181f: 0x0008, 0x1820: 0x0008, 0x1821: 0x0008, 0x1822: 0x3008, 0x1823: 0x3008, -	0x1824: 0x0040, 0x1825: 0x0040, 0x1826: 0x3308, 0x1827: 0x3308, 0x1828: 0x3308, 0x1829: 0x3308, -	0x182a: 0x3308, 0x182b: 0x3308, 0x182c: 0x3308, 0x182d: 0x0040, 0x182e: 0x0040, 0x182f: 0x0040, -	0x1830: 0x3308, 0x1831: 0x3308, 0x1832: 0x3308, 0x1833: 0x3308, 0x1834: 0x3308, 0x1835: 0x0040, -	0x1836: 0x0040, 0x1837: 0x0040, 0x1838: 0x0040, 0x1839: 0x0040, 0x183a: 0x0040, 0x183b: 0x0040, -	0x183c: 0x0040, 0x183d: 0x0040, 0x183e: 0x0040, 0x183f: 0x0040, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0039, 0x1841: 0x0ee9, 0x1842: 0x1159, 0x1843: 0x0ef9, 0x1844: 0x0f09, 0x1845: 0x1199, -	0x1846: 0x0f31, 0x1847: 0x0249, 0x1848: 0x0f41, 0x1849: 0x0259, 0x184a: 0x0f51, 0x184b: 0x0359, -	0x184c: 0x0f61, 0x184d: 0x0f71, 0x184e: 0x00d9, 0x184f: 0x0f99, 0x1850: 0x2039, 0x1851: 0x0269, -	0x1852: 0x01d9, 0x1853: 0x0fa9, 0x1854: 0x0fb9, 0x1855: 0x1089, 0x1856: 0x0279, 0x1857: 0x0369, -	0x1858: 0x0289, 0x1859: 0x13d1, 0x185a: 0x0039, 0x185b: 0x0ee9, 0x185c: 0x1159, 0x185d: 0x0ef9, -	0x185e: 0x0f09, 0x185f: 0x1199, 0x1860: 0x0f31, 0x1861: 0x0249, 0x1862: 0x0f41, 0x1863: 0x0259, -	0x1864: 0x0f51, 0x1865: 0x0359, 0x1866: 0x0f61, 0x1867: 0x0f71, 0x1868: 0x00d9, 0x1869: 0x0f99, -	0x186a: 0x2039, 0x186b: 0x0269, 0x186c: 0x01d9, 0x186d: 0x0fa9, 0x186e: 0x0fb9, 0x186f: 0x1089, -	0x1870: 0x0279, 0x1871: 0x0369, 0x1872: 0x0289, 0x1873: 0x13d1, 0x1874: 0x0039, 0x1875: 0x0ee9, -	0x1876: 0x1159, 0x1877: 0x0ef9, 0x1878: 0x0f09, 0x1879: 0x1199, 0x187a: 0x0f31, 0x187b: 0x0249, -	0x187c: 0x0f41, 0x187d: 0x0259, 0x187e: 0x0f51, 0x187f: 0x0359, -	// Block 0x62, offset 0x1880 -	0x1880: 0x0f61, 0x1881: 0x0f71, 0x1882: 0x00d9, 0x1883: 0x0f99, 0x1884: 0x2039, 0x1885: 0x0269, -	0x1886: 0x01d9, 0x1887: 0x0fa9, 0x1888: 0x0fb9, 0x1889: 0x1089, 0x188a: 0x0279, 0x188b: 0x0369, -	0x188c: 0x0289, 0x188d: 0x13d1, 0x188e: 0x0039, 0x188f: 0x0ee9, 0x1890: 0x1159, 0x1891: 0x0ef9, -	0x1892: 0x0f09, 0x1893: 0x1199, 0x1894: 0x0f31, 0x1895: 0x0040, 0x1896: 0x0f41, 0x1897: 0x0259, -	0x1898: 0x0f51, 0x1899: 0x0359, 0x189a: 0x0f61, 0x189b: 0x0f71, 0x189c: 0x00d9, 0x189d: 0x0f99, -	0x189e: 0x2039, 0x189f: 0x0269, 0x18a0: 0x01d9, 0x18a1: 0x0fa9, 0x18a2: 0x0fb9, 0x18a3: 0x1089, -	0x18a4: 0x0279, 0x18a5: 0x0369, 0x18a6: 0x0289, 0x18a7: 0x13d1, 0x18a8: 0x0039, 0x18a9: 0x0ee9, -	0x18aa: 0x1159, 0x18ab: 0x0ef9, 0x18ac: 0x0f09, 0x18ad: 0x1199, 0x18ae: 0x0f31, 0x18af: 0x0249, -	0x18b0: 0x0f41, 0x18b1: 0x0259, 0x18b2: 0x0f51, 0x18b3: 0x0359, 0x18b4: 0x0f61, 0x18b5: 0x0f71, -	0x18b6: 0x00d9, 0x18b7: 0x0f99, 0x18b8: 0x2039, 0x18b9: 0x0269, 0x18ba: 0x01d9, 0x18bb: 0x0fa9, -	0x18bc: 0x0fb9, 0x18bd: 0x1089, 0x18be: 0x0279, 0x18bf: 0x0369, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x0289, 0x18c1: 0x13d1, 0x18c2: 0x0039, 0x18c3: 0x0ee9, 0x18c4: 0x1159, 0x18c5: 0x0ef9, -	0x18c6: 0x0f09, 0x18c7: 0x1199, 0x18c8: 0x0f31, 0x18c9: 0x0249, 0x18ca: 0x0f41, 0x18cb: 0x0259, -	0x18cc: 0x0f51, 0x18cd: 0x0359, 0x18ce: 0x0f61, 0x18cf: 0x0f71, 0x18d0: 0x00d9, 0x18d1: 0x0f99, -	0x18d2: 0x2039, 0x18d3: 0x0269, 0x18d4: 0x01d9, 0x18d5: 0x0fa9, 0x18d6: 0x0fb9, 0x18d7: 0x1089, -	0x18d8: 0x0279, 0x18d9: 0x0369, 0x18da: 0x0289, 0x18db: 0x13d1, 0x18dc: 0x0039, 0x18dd: 0x0040, -	0x18de: 0x1159, 0x18df: 0x0ef9, 0x18e0: 0x0040, 0x18e1: 0x0040, 0x18e2: 0x0f31, 0x18e3: 0x0040, -	0x18e4: 0x0040, 0x18e5: 0x0259, 0x18e6: 0x0f51, 0x18e7: 0x0040, 0x18e8: 0x0040, 0x18e9: 0x0f71, -	0x18ea: 0x00d9, 0x18eb: 0x0f99, 0x18ec: 0x2039, 0x18ed: 0x0040, 0x18ee: 0x01d9, 0x18ef: 0x0fa9, -	0x18f0: 0x0fb9, 0x18f1: 0x1089, 0x18f2: 0x0279, 0x18f3: 0x0369, 0x18f4: 0x0289, 0x18f5: 0x13d1, -	0x18f6: 0x0039, 0x18f7: 0x0ee9, 0x18f8: 0x1159, 0x18f9: 0x0ef9, 0x18fa: 0x0040, 0x18fb: 0x1199, -	0x18fc: 0x0040, 0x18fd: 0x0249, 0x18fe: 0x0f41, 0x18ff: 0x0259, -	// Block 0x64, offset 0x1900 -	0x1900: 0x0f51, 0x1901: 0x0359, 0x1902: 0x0f61, 0x1903: 0x0f71, 0x1904: 0x0040, 0x1905: 0x0f99, -	0x1906: 0x2039, 0x1907: 0x0269, 0x1908: 0x01d9, 0x1909: 0x0fa9, 0x190a: 0x0fb9, 0x190b: 0x1089, -	0x190c: 0x0279, 0x190d: 0x0369, 0x190e: 0x0289, 0x190f: 0x13d1, 0x1910: 0x0039, 0x1911: 0x0ee9, -	0x1912: 0x1159, 0x1913: 0x0ef9, 0x1914: 0x0f09, 0x1915: 0x1199, 0x1916: 0x0f31, 0x1917: 0x0249, -	0x1918: 0x0f41, 0x1919: 0x0259, 0x191a: 0x0f51, 0x191b: 0x0359, 0x191c: 0x0f61, 0x191d: 0x0f71, -	0x191e: 0x00d9, 0x191f: 0x0f99, 0x1920: 0x2039, 0x1921: 0x0269, 0x1922: 0x01d9, 0x1923: 0x0fa9, -	0x1924: 0x0fb9, 0x1925: 0x1089, 0x1926: 0x0279, 0x1927: 0x0369, 0x1928: 0x0289, 0x1929: 0x13d1, -	0x192a: 0x0039, 0x192b: 0x0ee9, 0x192c: 0x1159, 0x192d: 0x0ef9, 0x192e: 0x0f09, 0x192f: 0x1199, -	0x1930: 0x0f31, 0x1931: 0x0249, 0x1932: 0x0f41, 0x1933: 0x0259, 0x1934: 0x0f51, 0x1935: 0x0359, -	0x1936: 0x0f61, 0x1937: 0x0f71, 0x1938: 0x00d9, 0x1939: 0x0f99, 0x193a: 0x2039, 0x193b: 0x0269, -	0x193c: 0x01d9, 0x193d: 0x0fa9, 0x193e: 0x0fb9, 0x193f: 0x1089, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0279, 0x1941: 0x0369, 0x1942: 0x0289, 0x1943: 0x13d1, 0x1944: 0x0039, 0x1945: 0x0ee9, -	0x1946: 0x0040, 0x1947: 0x0ef9, 0x1948: 0x0f09, 0x1949: 0x1199, 0x194a: 0x0f31, 0x194b: 0x0040, -	0x194c: 0x0040, 0x194d: 0x0259, 0x194e: 0x0f51, 0x194f: 0x0359, 0x1950: 0x0f61, 0x1951: 0x0f71, -	0x1952: 0x00d9, 0x1953: 0x0f99, 0x1954: 0x2039, 0x1955: 0x0040, 0x1956: 0x01d9, 0x1957: 0x0fa9, -	0x1958: 0x0fb9, 0x1959: 0x1089, 0x195a: 0x0279, 0x195b: 0x0369, 0x195c: 0x0289, 0x195d: 0x0040, -	0x195e: 0x0039, 0x195f: 0x0ee9, 0x1960: 0x1159, 0x1961: 0x0ef9, 0x1962: 0x0f09, 0x1963: 0x1199, -	0x1964: 0x0f31, 0x1965: 0x0249, 0x1966: 0x0f41, 0x1967: 0x0259, 0x1968: 0x0f51, 0x1969: 0x0359, -	0x196a: 0x0f61, 0x196b: 0x0f71, 0x196c: 0x00d9, 0x196d: 0x0f99, 0x196e: 0x2039, 0x196f: 0x0269, -	0x1970: 0x01d9, 0x1971: 0x0fa9, 0x1972: 0x0fb9, 0x1973: 0x1089, 0x1974: 0x0279, 0x1975: 0x0369, -	0x1976: 0x0289, 0x1977: 0x13d1, 0x1978: 0x0039, 0x1979: 0x0ee9, 0x197a: 0x0040, 0x197b: 0x0ef9, -	0x197c: 0x0f09, 0x197d: 0x1199, 0x197e: 0x0f31, 0x197f: 0x0040, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0f41, 0x1981: 0x0259, 0x1982: 0x0f51, 0x1983: 0x0359, 0x1984: 0x0f61, 0x1985: 0x0040, -	0x1986: 0x00d9, 0x1987: 0x0040, 0x1988: 0x0040, 0x1989: 0x0040, 0x198a: 0x01d9, 0x198b: 0x0fa9, -	0x198c: 0x0fb9, 0x198d: 0x1089, 0x198e: 0x0279, 0x198f: 0x0369, 0x1990: 0x0289, 0x1991: 0x0040, -	0x1992: 0x0039, 0x1993: 0x0ee9, 0x1994: 0x1159, 0x1995: 0x0ef9, 0x1996: 0x0f09, 0x1997: 0x1199, -	0x1998: 0x0f31, 0x1999: 0x0249, 0x199a: 0x0f41, 0x199b: 0x0259, 0x199c: 0x0f51, 0x199d: 0x0359, -	0x199e: 0x0f61, 0x199f: 0x0f71, 0x19a0: 0x00d9, 0x19a1: 0x0f99, 0x19a2: 0x2039, 0x19a3: 0x0269, -	0x19a4: 0x01d9, 0x19a5: 0x0fa9, 0x19a6: 0x0fb9, 0x19a7: 0x1089, 0x19a8: 0x0279, 0x19a9: 0x0369, -	0x19aa: 0x0289, 0x19ab: 0x13d1, 0x19ac: 0x0039, 0x19ad: 0x0ee9, 0x19ae: 0x1159, 0x19af: 0x0ef9, -	0x19b0: 0x0f09, 0x19b1: 0x1199, 0x19b2: 0x0f31, 0x19b3: 0x0249, 0x19b4: 0x0f41, 0x19b5: 0x0259, -	0x19b6: 0x0f51, 0x19b7: 0x0359, 0x19b8: 0x0f61, 0x19b9: 0x0f71, 0x19ba: 0x00d9, 0x19bb: 0x0f99, -	0x19bc: 0x2039, 0x19bd: 0x0269, 0x19be: 0x01d9, 0x19bf: 0x0fa9, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x0fb9, 0x19c1: 0x1089, 0x19c2: 0x0279, 0x19c3: 0x0369, 0x19c4: 0x0289, 0x19c5: 0x13d1, -	0x19c6: 0x0039, 0x19c7: 0x0ee9, 0x19c8: 0x1159, 0x19c9: 0x0ef9, 0x19ca: 0x0f09, 0x19cb: 0x1199, -	0x19cc: 0x0f31, 0x19cd: 0x0249, 0x19ce: 0x0f41, 0x19cf: 0x0259, 0x19d0: 0x0f51, 0x19d1: 0x0359, -	0x19d2: 0x0f61, 0x19d3: 0x0f71, 0x19d4: 0x00d9, 0x19d5: 0x0f99, 0x19d6: 0x2039, 0x19d7: 0x0269, -	0x19d8: 0x01d9, 0x19d9: 0x0fa9, 0x19da: 0x0fb9, 0x19db: 0x1089, 0x19dc: 0x0279, 0x19dd: 0x0369, -	0x19de: 0x0289, 0x19df: 0x13d1, 0x19e0: 0x0039, 0x19e1: 0x0ee9, 0x19e2: 0x1159, 0x19e3: 0x0ef9, -	0x19e4: 0x0f09, 0x19e5: 0x1199, 0x19e6: 0x0f31, 0x19e7: 0x0249, 0x19e8: 0x0f41, 0x19e9: 0x0259, -	0x19ea: 0x0f51, 0x19eb: 0x0359, 0x19ec: 0x0f61, 0x19ed: 0x0f71, 0x19ee: 0x00d9, 0x19ef: 0x0f99, -	0x19f0: 0x2039, 0x19f1: 0x0269, 0x19f2: 0x01d9, 0x19f3: 0x0fa9, 0x19f4: 0x0fb9, 0x19f5: 0x1089, -	0x19f6: 0x0279, 0x19f7: 0x0369, 0x19f8: 0x0289, 0x19f9: 0x13d1, 0x19fa: 0x0039, 0x19fb: 0x0ee9, -	0x19fc: 0x1159, 0x19fd: 0x0ef9, 0x19fe: 0x0f09, 0x19ff: 0x1199, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x0f31, 0x1a01: 0x0249, 0x1a02: 0x0f41, 0x1a03: 0x0259, 0x1a04: 0x0f51, 0x1a05: 0x0359, -	0x1a06: 0x0f61, 0x1a07: 0x0f71, 0x1a08: 0x00d9, 0x1a09: 0x0f99, 0x1a0a: 0x2039, 0x1a0b: 0x0269, -	0x1a0c: 0x01d9, 0x1a0d: 0x0fa9, 0x1a0e: 0x0fb9, 0x1a0f: 0x1089, 0x1a10: 0x0279, 0x1a11: 0x0369, -	0x1a12: 0x0289, 0x1a13: 0x13d1, 0x1a14: 0x0039, 0x1a15: 0x0ee9, 0x1a16: 0x1159, 0x1a17: 0x0ef9, -	0x1a18: 0x0f09, 0x1a19: 0x1199, 0x1a1a: 0x0f31, 0x1a1b: 0x0249, 0x1a1c: 0x0f41, 0x1a1d: 0x0259, -	0x1a1e: 0x0f51, 0x1a1f: 0x0359, 0x1a20: 0x0f61, 0x1a21: 0x0f71, 0x1a22: 0x00d9, 0x1a23: 0x0f99, -	0x1a24: 0x2039, 0x1a25: 0x0269, 0x1a26: 0x01d9, 0x1a27: 0x0fa9, 0x1a28: 0x0fb9, 0x1a29: 0x1089, -	0x1a2a: 0x0279, 0x1a2b: 0x0369, 0x1a2c: 0x0289, 0x1a2d: 0x13d1, 0x1a2e: 0x0039, 0x1a2f: 0x0ee9, -	0x1a30: 0x1159, 0x1a31: 0x0ef9, 0x1a32: 0x0f09, 0x1a33: 0x1199, 0x1a34: 0x0f31, 0x1a35: 0x0249, -	0x1a36: 0x0f41, 0x1a37: 0x0259, 0x1a38: 0x0f51, 0x1a39: 0x0359, 0x1a3a: 0x0f61, 0x1a3b: 0x0f71, -	0x1a3c: 0x00d9, 0x1a3d: 0x0f99, 0x1a3e: 0x2039, 0x1a3f: 0x0269, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x01d9, 0x1a41: 0x0fa9, 0x1a42: 0x0fb9, 0x1a43: 0x1089, 0x1a44: 0x0279, 0x1a45: 0x0369, -	0x1a46: 0x0289, 0x1a47: 0x13d1, 0x1a48: 0x0039, 0x1a49: 0x0ee9, 0x1a4a: 0x1159, 0x1a4b: 0x0ef9, -	0x1a4c: 0x0f09, 0x1a4d: 0x1199, 0x1a4e: 0x0f31, 0x1a4f: 0x0249, 0x1a50: 0x0f41, 0x1a51: 0x0259, -	0x1a52: 0x0f51, 0x1a53: 0x0359, 0x1a54: 0x0f61, 0x1a55: 0x0f71, 0x1a56: 0x00d9, 0x1a57: 0x0f99, -	0x1a58: 0x2039, 0x1a59: 0x0269, 0x1a5a: 0x01d9, 0x1a5b: 0x0fa9, 0x1a5c: 0x0fb9, 0x1a5d: 0x1089, -	0x1a5e: 0x0279, 0x1a5f: 0x0369, 0x1a60: 0x0289, 0x1a61: 0x13d1, 0x1a62: 0x0039, 0x1a63: 0x0ee9, -	0x1a64: 0x1159, 0x1a65: 0x0ef9, 0x1a66: 0x0f09, 0x1a67: 0x1199, 0x1a68: 0x0f31, 0x1a69: 0x0249, -	0x1a6a: 0x0f41, 0x1a6b: 0x0259, 0x1a6c: 0x0f51, 0x1a6d: 0x0359, 0x1a6e: 0x0f61, 0x1a6f: 0x0f71, -	0x1a70: 0x00d9, 0x1a71: 0x0f99, 0x1a72: 0x2039, 0x1a73: 0x0269, 0x1a74: 0x01d9, 0x1a75: 0x0fa9, -	0x1a76: 0x0fb9, 0x1a77: 0x1089, 0x1a78: 0x0279, 0x1a79: 0x0369, 0x1a7a: 0x0289, 0x1a7b: 0x13d1, -	0x1a7c: 0x0039, 0x1a7d: 0x0ee9, 0x1a7e: 0x1159, 0x1a7f: 0x0ef9, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x0f09, 0x1a81: 0x1199, 0x1a82: 0x0f31, 0x1a83: 0x0249, 0x1a84: 0x0f41, 0x1a85: 0x0259, -	0x1a86: 0x0f51, 0x1a87: 0x0359, 0x1a88: 0x0f61, 0x1a89: 0x0f71, 0x1a8a: 0x00d9, 0x1a8b: 0x0f99, -	0x1a8c: 0x2039, 0x1a8d: 0x0269, 0x1a8e: 0x01d9, 0x1a8f: 0x0fa9, 0x1a90: 0x0fb9, 0x1a91: 0x1089, -	0x1a92: 0x0279, 0x1a93: 0x0369, 0x1a94: 0x0289, 0x1a95: 0x13d1, 0x1a96: 0x0039, 0x1a97: 0x0ee9, -	0x1a98: 0x1159, 0x1a99: 0x0ef9, 0x1a9a: 0x0f09, 0x1a9b: 0x1199, 0x1a9c: 0x0f31, 0x1a9d: 0x0249, -	0x1a9e: 0x0f41, 0x1a9f: 0x0259, 0x1aa0: 0x0f51, 0x1aa1: 0x0359, 0x1aa2: 0x0f61, 0x1aa3: 0x0f71, -	0x1aa4: 0x00d9, 0x1aa5: 0x0f99, 0x1aa6: 0x2039, 0x1aa7: 0x0269, 0x1aa8: 0x01d9, 0x1aa9: 0x0fa9, -	0x1aaa: 0x0fb9, 0x1aab: 0x1089, 0x1aac: 0x0279, 0x1aad: 0x0369, 0x1aae: 0x0289, 0x1aaf: 0x13d1, -	0x1ab0: 0x0039, 0x1ab1: 0x0ee9, 0x1ab2: 0x1159, 0x1ab3: 0x0ef9, 0x1ab4: 0x0f09, 0x1ab5: 0x1199, -	0x1ab6: 0x0f31, 0x1ab7: 0x0249, 0x1ab8: 0x0f41, 0x1ab9: 0x0259, 0x1aba: 0x0f51, 0x1abb: 0x0359, -	0x1abc: 0x0f61, 0x1abd: 0x0f71, 0x1abe: 0x00d9, 0x1abf: 0x0f99, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x2039, 0x1ac1: 0x0269, 0x1ac2: 0x01d9, 0x1ac3: 0x0fa9, 0x1ac4: 0x0fb9, 0x1ac5: 0x1089, -	0x1ac6: 0x0279, 0x1ac7: 0x0369, 0x1ac8: 0x0289, 0x1ac9: 0x13d1, 0x1aca: 0x0039, 0x1acb: 0x0ee9, -	0x1acc: 0x1159, 0x1acd: 0x0ef9, 0x1ace: 0x0f09, 0x1acf: 0x1199, 0x1ad0: 0x0f31, 0x1ad1: 0x0249, -	0x1ad2: 0x0f41, 0x1ad3: 0x0259, 0x1ad4: 0x0f51, 0x1ad5: 0x0359, 0x1ad6: 0x0f61, 0x1ad7: 0x0f71, -	0x1ad8: 0x00d9, 0x1ad9: 0x0f99, 0x1ada: 0x2039, 0x1adb: 0x0269, 0x1adc: 0x01d9, 0x1add: 0x0fa9, -	0x1ade: 0x0fb9, 0x1adf: 0x1089, 0x1ae0: 0x0279, 0x1ae1: 0x0369, 0x1ae2: 0x0289, 0x1ae3: 0x13d1, -	0x1ae4: 0xba81, 0x1ae5: 0xba99, 0x1ae6: 0x0040, 0x1ae7: 0x0040, 0x1ae8: 0xbab1, 0x1ae9: 0x1099, -	0x1aea: 0x10b1, 0x1aeb: 0x10c9, 0x1aec: 0xbac9, 0x1aed: 0xbae1, 0x1aee: 0xbaf9, 0x1aef: 0x1429, -	0x1af0: 0x1a31, 0x1af1: 0xbb11, 0x1af2: 0xbb29, 0x1af3: 0xbb41, 0x1af4: 0xbb59, 0x1af5: 0xbb71, -	0x1af6: 0xbb89, 0x1af7: 0x2109, 0x1af8: 0x1111, 0x1af9: 0x1429, 0x1afa: 0xbba1, 0x1afb: 0xbbb9, -	0x1afc: 0xbbd1, 0x1afd: 0x10e1, 0x1afe: 0x10f9, 0x1aff: 0xbbe9, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0x2079, 0x1b01: 0xbc01, 0x1b02: 0xbab1, 0x1b03: 0x1099, 0x1b04: 0x10b1, 0x1b05: 0x10c9, -	0x1b06: 0xbac9, 0x1b07: 0xbae1, 0x1b08: 0xbaf9, 0x1b09: 0x1429, 0x1b0a: 0x1a31, 0x1b0b: 0xbb11, -	0x1b0c: 0xbb29, 0x1b0d: 0xbb41, 0x1b0e: 0xbb59, 0x1b0f: 0xbb71, 0x1b10: 0xbb89, 0x1b11: 0x2109, -	0x1b12: 0x1111, 0x1b13: 0xbba1, 0x1b14: 0xbba1, 0x1b15: 0xbbb9, 0x1b16: 0xbbd1, 0x1b17: 0x10e1, -	0x1b18: 0x10f9, 0x1b19: 0xbbe9, 0x1b1a: 0x2079, 0x1b1b: 0xbc21, 0x1b1c: 0xbac9, 0x1b1d: 0x1429, -	0x1b1e: 0xbb11, 0x1b1f: 0x10e1, 0x1b20: 0x1111, 0x1b21: 0x2109, 0x1b22: 0xbab1, 0x1b23: 0x1099, -	0x1b24: 0x10b1, 0x1b25: 0x10c9, 0x1b26: 0xbac9, 0x1b27: 0xbae1, 0x1b28: 0xbaf9, 0x1b29: 0x1429, -	0x1b2a: 0x1a31, 0x1b2b: 0xbb11, 0x1b2c: 0xbb29, 0x1b2d: 0xbb41, 0x1b2e: 0xbb59, 0x1b2f: 0xbb71, -	0x1b30: 0xbb89, 0x1b31: 0x2109, 0x1b32: 0x1111, 0x1b33: 0x1429, 0x1b34: 0xbba1, 0x1b35: 0xbbb9, -	0x1b36: 0xbbd1, 0x1b37: 0x10e1, 0x1b38: 0x10f9, 0x1b39: 0xbbe9, 0x1b3a: 0x2079, 0x1b3b: 0xbc01, -	0x1b3c: 0xbab1, 0x1b3d: 0x1099, 0x1b3e: 0x10b1, 0x1b3f: 0x10c9, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0xbac9, 0x1b41: 0xbae1, 0x1b42: 0xbaf9, 0x1b43: 0x1429, 0x1b44: 0x1a31, 0x1b45: 0xbb11, -	0x1b46: 0xbb29, 0x1b47: 0xbb41, 0x1b48: 0xbb59, 0x1b49: 0xbb71, 0x1b4a: 0xbb89, 0x1b4b: 0x2109, -	0x1b4c: 0x1111, 0x1b4d: 0xbba1, 0x1b4e: 0xbba1, 0x1b4f: 0xbbb9, 0x1b50: 0xbbd1, 0x1b51: 0x10e1, -	0x1b52: 0x10f9, 0x1b53: 0xbbe9, 0x1b54: 0x2079, 0x1b55: 0xbc21, 0x1b56: 0xbac9, 0x1b57: 0x1429, -	0x1b58: 0xbb11, 0x1b59: 0x10e1, 0x1b5a: 0x1111, 0x1b5b: 0x2109, 0x1b5c: 0xbab1, 0x1b5d: 0x1099, -	0x1b5e: 0x10b1, 0x1b5f: 0x10c9, 0x1b60: 0xbac9, 0x1b61: 0xbae1, 0x1b62: 0xbaf9, 0x1b63: 0x1429, -	0x1b64: 0x1a31, 0x1b65: 0xbb11, 0x1b66: 0xbb29, 0x1b67: 0xbb41, 0x1b68: 0xbb59, 0x1b69: 0xbb71, -	0x1b6a: 0xbb89, 0x1b6b: 0x2109, 0x1b6c: 0x1111, 0x1b6d: 0x1429, 0x1b6e: 0xbba1, 0x1b6f: 0xbbb9, -	0x1b70: 0xbbd1, 0x1b71: 0x10e1, 0x1b72: 0x10f9, 0x1b73: 0xbbe9, 0x1b74: 0x2079, 0x1b75: 0xbc01, -	0x1b76: 0xbab1, 0x1b77: 0x1099, 0x1b78: 0x10b1, 0x1b79: 0x10c9, 0x1b7a: 0xbac9, 0x1b7b: 0xbae1, -	0x1b7c: 0xbaf9, 0x1b7d: 0x1429, 0x1b7e: 0x1a31, 0x1b7f: 0xbb11, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0xbb29, 0x1b81: 0xbb41, 0x1b82: 0xbb59, 0x1b83: 0xbb71, 0x1b84: 0xbb89, 0x1b85: 0x2109, -	0x1b86: 0x1111, 0x1b87: 0xbba1, 0x1b88: 0xbba1, 0x1b89: 0xbbb9, 0x1b8a: 0xbbd1, 0x1b8b: 0x10e1, -	0x1b8c: 0x10f9, 0x1b8d: 0xbbe9, 0x1b8e: 0x2079, 0x1b8f: 0xbc21, 0x1b90: 0xbac9, 0x1b91: 0x1429, -	0x1b92: 0xbb11, 0x1b93: 0x10e1, 0x1b94: 0x1111, 0x1b95: 0x2109, 0x1b96: 0xbab1, 0x1b97: 0x1099, -	0x1b98: 0x10b1, 0x1b99: 0x10c9, 0x1b9a: 0xbac9, 0x1b9b: 0xbae1, 0x1b9c: 0xbaf9, 0x1b9d: 0x1429, -	0x1b9e: 0x1a31, 0x1b9f: 0xbb11, 0x1ba0: 0xbb29, 0x1ba1: 0xbb41, 0x1ba2: 0xbb59, 0x1ba3: 0xbb71, -	0x1ba4: 0xbb89, 0x1ba5: 0x2109, 0x1ba6: 0x1111, 0x1ba7: 0x1429, 0x1ba8: 0xbba1, 0x1ba9: 0xbbb9, -	0x1baa: 0xbbd1, 0x1bab: 0x10e1, 0x1bac: 0x10f9, 0x1bad: 0xbbe9, 0x1bae: 0x2079, 0x1baf: 0xbc01, -	0x1bb0: 0xbab1, 0x1bb1: 0x1099, 0x1bb2: 0x10b1, 0x1bb3: 0x10c9, 0x1bb4: 0xbac9, 0x1bb5: 0xbae1, -	0x1bb6: 0xbaf9, 0x1bb7: 0x1429, 0x1bb8: 0x1a31, 0x1bb9: 0xbb11, 0x1bba: 0xbb29, 0x1bbb: 0xbb41, -	0x1bbc: 0xbb59, 0x1bbd: 0xbb71, 0x1bbe: 0xbb89, 0x1bbf: 0x2109, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x1111, 0x1bc1: 0xbba1, 0x1bc2: 0xbba1, 0x1bc3: 0xbbb9, 0x1bc4: 0xbbd1, 0x1bc5: 0x10e1, -	0x1bc6: 0x10f9, 0x1bc7: 0xbbe9, 0x1bc8: 0x2079, 0x1bc9: 0xbc21, 0x1bca: 0xbac9, 0x1bcb: 0x1429, -	0x1bcc: 0xbb11, 0x1bcd: 0x10e1, 0x1bce: 0x1111, 0x1bcf: 0x2109, 0x1bd0: 0xbab1, 0x1bd1: 0x1099, -	0x1bd2: 0x10b1, 0x1bd3: 0x10c9, 0x1bd4: 0xbac9, 0x1bd5: 0xbae1, 0x1bd6: 0xbaf9, 0x1bd7: 0x1429, -	0x1bd8: 0x1a31, 0x1bd9: 0xbb11, 0x1bda: 0xbb29, 0x1bdb: 0xbb41, 0x1bdc: 0xbb59, 0x1bdd: 0xbb71, -	0x1bde: 0xbb89, 0x1bdf: 0x2109, 0x1be0: 0x1111, 0x1be1: 0x1429, 0x1be2: 0xbba1, 0x1be3: 0xbbb9, -	0x1be4: 0xbbd1, 0x1be5: 0x10e1, 0x1be6: 0x10f9, 0x1be7: 0xbbe9, 0x1be8: 0x2079, 0x1be9: 0xbc01, -	0x1bea: 0xbab1, 0x1beb: 0x1099, 0x1bec: 0x10b1, 0x1bed: 0x10c9, 0x1bee: 0xbac9, 0x1bef: 0xbae1, -	0x1bf0: 0xbaf9, 0x1bf1: 0x1429, 0x1bf2: 0x1a31, 0x1bf3: 0xbb11, 0x1bf4: 0xbb29, 0x1bf5: 0xbb41, -	0x1bf6: 0xbb59, 0x1bf7: 0xbb71, 0x1bf8: 0xbb89, 0x1bf9: 0x2109, 0x1bfa: 0x1111, 0x1bfb: 0xbba1, -	0x1bfc: 0xbba1, 0x1bfd: 0xbbb9, 0x1bfe: 0xbbd1, 0x1bff: 0x10e1, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0x10f9, 0x1c01: 0xbbe9, 0x1c02: 0x2079, 0x1c03: 0xbc21, 0x1c04: 0xbac9, 0x1c05: 0x1429, -	0x1c06: 0xbb11, 0x1c07: 0x10e1, 0x1c08: 0x1111, 0x1c09: 0x2109, 0x1c0a: 0xbc41, 0x1c0b: 0xbc41, -	0x1c0c: 0x0040, 0x1c0d: 0x0040, 0x1c0e: 0x1f41, 0x1c0f: 0x00c9, 0x1c10: 0x0069, 0x1c11: 0x0079, -	0x1c12: 0x1f51, 0x1c13: 0x1f61, 0x1c14: 0x1f71, 0x1c15: 0x1f81, 0x1c16: 0x1f91, 0x1c17: 0x1fa1, -	0x1c18: 0x1f41, 0x1c19: 0x00c9, 0x1c1a: 0x0069, 0x1c1b: 0x0079, 0x1c1c: 0x1f51, 0x1c1d: 0x1f61, -	0x1c1e: 0x1f71, 0x1c1f: 0x1f81, 0x1c20: 0x1f91, 0x1c21: 0x1fa1, 0x1c22: 0x1f41, 0x1c23: 0x00c9, -	0x1c24: 0x0069, 0x1c25: 0x0079, 0x1c26: 0x1f51, 0x1c27: 0x1f61, 0x1c28: 0x1f71, 0x1c29: 0x1f81, -	0x1c2a: 0x1f91, 0x1c2b: 0x1fa1, 0x1c2c: 0x1f41, 0x1c2d: 0x00c9, 0x1c2e: 0x0069, 0x1c2f: 0x0079, -	0x1c30: 0x1f51, 0x1c31: 0x1f61, 0x1c32: 0x1f71, 0x1c33: 0x1f81, 0x1c34: 0x1f91, 0x1c35: 0x1fa1, -	0x1c36: 0x1f41, 0x1c37: 0x00c9, 0x1c38: 0x0069, 0x1c39: 0x0079, 0x1c3a: 0x1f51, 0x1c3b: 0x1f61, -	0x1c3c: 0x1f71, 0x1c3d: 0x1f81, 0x1c3e: 0x1f91, 0x1c3f: 0x1fa1, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0xe115, 0x1c41: 0xe115, 0x1c42: 0xe135, 0x1c43: 0xe135, 0x1c44: 0xe115, 0x1c45: 0xe115, -	0x1c46: 0xe175, 0x1c47: 0xe175, 0x1c48: 0xe115, 0x1c49: 0xe115, 0x1c4a: 0xe135, 0x1c4b: 0xe135, -	0x1c4c: 0xe115, 0x1c4d: 0xe115, 0x1c4e: 0xe1f5, 0x1c4f: 0xe1f5, 0x1c50: 0xe115, 0x1c51: 0xe115, -	0x1c52: 0xe135, 0x1c53: 0xe135, 0x1c54: 0xe115, 0x1c55: 0xe115, 0x1c56: 0xe175, 0x1c57: 0xe175, -	0x1c58: 0xe115, 0x1c59: 0xe115, 0x1c5a: 0xe135, 0x1c5b: 0xe135, 0x1c5c: 0xe115, 0x1c5d: 0xe115, -	0x1c5e: 0x8b05, 0x1c5f: 0x8b05, 0x1c60: 0x04b5, 0x1c61: 0x04b5, 0x1c62: 0x0a08, 0x1c63: 0x0a08, -	0x1c64: 0x0a08, 0x1c65: 0x0a08, 0x1c66: 0x0a08, 0x1c67: 0x0a08, 0x1c68: 0x0a08, 0x1c69: 0x0a08, -	0x1c6a: 0x0a08, 0x1c6b: 0x0a08, 0x1c6c: 0x0a08, 0x1c6d: 0x0a08, 0x1c6e: 0x0a08, 0x1c6f: 0x0a08, -	0x1c70: 0x0a08, 0x1c71: 0x0a08, 0x1c72: 0x0a08, 0x1c73: 0x0a08, 0x1c74: 0x0a08, 0x1c75: 0x0a08, -	0x1c76: 0x0a08, 0x1c77: 0x0a08, 0x1c78: 0x0a08, 0x1c79: 0x0a08, 0x1c7a: 0x0a08, 0x1c7b: 0x0a08, -	0x1c7c: 0x0a08, 0x1c7d: 0x0a08, 0x1c7e: 0x0a08, 0x1c7f: 0x0a08, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0xb189, 0x1c81: 0xb1a1, 0x1c82: 0xb201, 0x1c83: 0xb249, 0x1c84: 0x0040, 0x1c85: 0xb411, -	0x1c86: 0xb291, 0x1c87: 0xb219, 0x1c88: 0xb309, 0x1c89: 0xb429, 0x1c8a: 0xb399, 0x1c8b: 0xb3b1, -	0x1c8c: 0xb3c9, 0x1c8d: 0xb3e1, 0x1c8e: 0xb2a9, 0x1c8f: 0xb339, 0x1c90: 0xb369, 0x1c91: 0xb2d9, -	0x1c92: 0xb381, 0x1c93: 0xb279, 0x1c94: 0xb2c1, 0x1c95: 0xb1d1, 0x1c96: 0xb1e9, 0x1c97: 0xb231, -	0x1c98: 0xb261, 0x1c99: 0xb2f1, 0x1c9a: 0xb321, 0x1c9b: 0xb351, 0x1c9c: 0xbc59, 0x1c9d: 0x7949, -	0x1c9e: 0xbc71, 0x1c9f: 0xbc89, 0x1ca0: 0x0040, 0x1ca1: 0xb1a1, 0x1ca2: 0xb201, 0x1ca3: 0x0040, -	0x1ca4: 0xb3f9, 0x1ca5: 0x0040, 0x1ca6: 0x0040, 0x1ca7: 0xb219, 0x1ca8: 0x0040, 0x1ca9: 0xb429, -	0x1caa: 0xb399, 0x1cab: 0xb3b1, 0x1cac: 0xb3c9, 0x1cad: 0xb3e1, 0x1cae: 0xb2a9, 0x1caf: 0xb339, -	0x1cb0: 0xb369, 0x1cb1: 0xb2d9, 0x1cb2: 0xb381, 0x1cb3: 0x0040, 0x1cb4: 0xb2c1, 0x1cb5: 0xb1d1, -	0x1cb6: 0xb1e9, 0x1cb7: 0xb231, 0x1cb8: 0x0040, 0x1cb9: 0xb2f1, 0x1cba: 0x0040, 0x1cbb: 0xb351, -	0x1cbc: 0x0040, 0x1cbd: 0x0040, 0x1cbe: 0x0040, 0x1cbf: 0x0040, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0x0040, 0x1cc1: 0x0040, 0x1cc2: 0xb201, 0x1cc3: 0x0040, 0x1cc4: 0x0040, 0x1cc5: 0x0040, -	0x1cc6: 0x0040, 0x1cc7: 0xb219, 0x1cc8: 0x0040, 0x1cc9: 0xb429, 0x1cca: 0x0040, 0x1ccb: 0xb3b1, -	0x1ccc: 0x0040, 0x1ccd: 0xb3e1, 0x1cce: 0xb2a9, 0x1ccf: 0xb339, 0x1cd0: 0x0040, 0x1cd1: 0xb2d9, -	0x1cd2: 0xb381, 0x1cd3: 0x0040, 0x1cd4: 0xb2c1, 0x1cd5: 0x0040, 0x1cd6: 0x0040, 0x1cd7: 0xb231, -	0x1cd8: 0x0040, 0x1cd9: 0xb2f1, 0x1cda: 0x0040, 0x1cdb: 0xb351, 0x1cdc: 0x0040, 0x1cdd: 0x7949, -	0x1cde: 0x0040, 0x1cdf: 0xbc89, 0x1ce0: 0x0040, 0x1ce1: 0xb1a1, 0x1ce2: 0xb201, 0x1ce3: 0x0040, -	0x1ce4: 0xb3f9, 0x1ce5: 0x0040, 0x1ce6: 0x0040, 0x1ce7: 0xb219, 0x1ce8: 0xb309, 0x1ce9: 0xb429, -	0x1cea: 0xb399, 0x1ceb: 0x0040, 0x1cec: 0xb3c9, 0x1ced: 0xb3e1, 0x1cee: 0xb2a9, 0x1cef: 0xb339, -	0x1cf0: 0xb369, 0x1cf1: 0xb2d9, 0x1cf2: 0xb381, 0x1cf3: 0x0040, 0x1cf4: 0xb2c1, 0x1cf5: 0xb1d1, -	0x1cf6: 0xb1e9, 0x1cf7: 0xb231, 0x1cf8: 0x0040, 0x1cf9: 0xb2f1, 0x1cfa: 0xb321, 0x1cfb: 0xb351, -	0x1cfc: 0xbc59, 0x1cfd: 0x0040, 0x1cfe: 0xbc71, 0x1cff: 0x0040, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0xb189, 0x1d01: 0xb1a1, 0x1d02: 0xb201, 0x1d03: 0xb249, 0x1d04: 0xb3f9, 0x1d05: 0xb411, -	0x1d06: 0xb291, 0x1d07: 0xb219, 0x1d08: 0xb309, 0x1d09: 0xb429, 0x1d0a: 0x0040, 0x1d0b: 0xb3b1, -	0x1d0c: 0xb3c9, 0x1d0d: 0xb3e1, 0x1d0e: 0xb2a9, 0x1d0f: 0xb339, 0x1d10: 0xb369, 0x1d11: 0xb2d9, -	0x1d12: 0xb381, 0x1d13: 0xb279, 0x1d14: 0xb2c1, 0x1d15: 0xb1d1, 0x1d16: 0xb1e9, 0x1d17: 0xb231, -	0x1d18: 0xb261, 0x1d19: 0xb2f1, 0x1d1a: 0xb321, 0x1d1b: 0xb351, 0x1d1c: 0x0040, 0x1d1d: 0x0040, -	0x1d1e: 0x0040, 0x1d1f: 0x0040, 0x1d20: 0x0040, 0x1d21: 0xb1a1, 0x1d22: 0xb201, 0x1d23: 0xb249, -	0x1d24: 0x0040, 0x1d25: 0xb411, 0x1d26: 0xb291, 0x1d27: 0xb219, 0x1d28: 0xb309, 0x1d29: 0xb429, -	0x1d2a: 0x0040, 0x1d2b: 0xb3b1, 0x1d2c: 0xb3c9, 0x1d2d: 0xb3e1, 0x1d2e: 0xb2a9, 0x1d2f: 0xb339, -	0x1d30: 0xb369, 0x1d31: 0xb2d9, 0x1d32: 0xb381, 0x1d33: 0xb279, 0x1d34: 0xb2c1, 0x1d35: 0xb1d1, -	0x1d36: 0xb1e9, 0x1d37: 0xb231, 0x1d38: 0xb261, 0x1d39: 0xb2f1, 0x1d3a: 0xb321, 0x1d3b: 0xb351, -	0x1d3c: 0x0040, 0x1d3d: 0x0040, 0x1d3e: 0x0040, 0x1d3f: 0x0040, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x0040, 0x1d41: 0xbca2, 0x1d42: 0xbcba, 0x1d43: 0xbcd2, 0x1d44: 0xbcea, 0x1d45: 0xbd02, -	0x1d46: 0xbd1a, 0x1d47: 0xbd32, 0x1d48: 0xbd4a, 0x1d49: 0xbd62, 0x1d4a: 0xbd7a, 0x1d4b: 0x0018, -	0x1d4c: 0x0018, 0x1d4d: 0x0040, 0x1d4e: 0x0040, 0x1d4f: 0x0040, 0x1d50: 0xbd92, 0x1d51: 0xbdb2, -	0x1d52: 0xbdd2, 0x1d53: 0xbdf2, 0x1d54: 0xbe12, 0x1d55: 0xbe32, 0x1d56: 0xbe52, 0x1d57: 0xbe72, -	0x1d58: 0xbe92, 0x1d59: 0xbeb2, 0x1d5a: 0xbed2, 0x1d5b: 0xbef2, 0x1d5c: 0xbf12, 0x1d5d: 0xbf32, -	0x1d5e: 0xbf52, 0x1d5f: 0xbf72, 0x1d60: 0xbf92, 0x1d61: 0xbfb2, 0x1d62: 0xbfd2, 0x1d63: 0xbff2, -	0x1d64: 0xc012, 0x1d65: 0xc032, 0x1d66: 0xc052, 0x1d67: 0xc072, 0x1d68: 0xc092, 0x1d69: 0xc0b2, -	0x1d6a: 0xc0d1, 0x1d6b: 0x1159, 0x1d6c: 0x0269, 0x1d6d: 0x6671, 0x1d6e: 0xc111, 0x1d6f: 0x0040, -	0x1d70: 0x0039, 0x1d71: 0x0ee9, 0x1d72: 0x1159, 0x1d73: 0x0ef9, 0x1d74: 0x0f09, 0x1d75: 0x1199, -	0x1d76: 0x0f31, 0x1d77: 0x0249, 0x1d78: 0x0f41, 0x1d79: 0x0259, 0x1d7a: 0x0f51, 0x1d7b: 0x0359, -	0x1d7c: 0x0f61, 0x1d7d: 0x0f71, 0x1d7e: 0x00d9, 0x1d7f: 0x0f99, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0x2039, 0x1d81: 0x0269, 0x1d82: 0x01d9, 0x1d83: 0x0fa9, 0x1d84: 0x0fb9, 0x1d85: 0x1089, -	0x1d86: 0x0279, 0x1d87: 0x0369, 0x1d88: 0x0289, 0x1d89: 0x13d1, 0x1d8a: 0xc129, 0x1d8b: 0x65b1, -	0x1d8c: 0xc141, 0x1d8d: 0x1441, 0x1d8e: 0xc159, 0x1d8f: 0xc179, 0x1d90: 0x0018, 0x1d91: 0x0018, -	0x1d92: 0x0018, 0x1d93: 0x0018, 0x1d94: 0x0018, 0x1d95: 0x0018, 0x1d96: 0x0018, 0x1d97: 0x0018, -	0x1d98: 0x0018, 0x1d99: 0x0018, 0x1d9a: 0x0018, 0x1d9b: 0x0018, 0x1d9c: 0x0018, 0x1d9d: 0x0018, -	0x1d9e: 0x0018, 0x1d9f: 0x0018, 0x1da0: 0x0018, 0x1da1: 0x0018, 0x1da2: 0x0018, 0x1da3: 0x0018, -	0x1da4: 0x0018, 0x1da5: 0x0018, 0x1da6: 0x0018, 0x1da7: 0x0018, 0x1da8: 0x0018, 0x1da9: 0x0018, -	0x1daa: 0xc191, 0x1dab: 0xc1a9, 0x1dac: 0x0040, 0x1dad: 0x0040, 0x1dae: 0x0040, 0x1daf: 0x0040, -	0x1db0: 0x0018, 0x1db1: 0x0018, 0x1db2: 0x0018, 0x1db3: 0x0018, 0x1db4: 0x0018, 0x1db5: 0x0018, -	0x1db6: 0x0018, 0x1db7: 0x0018, 0x1db8: 0x0018, 0x1db9: 0x0018, 0x1dba: 0x0018, 0x1dbb: 0x0018, -	0x1dbc: 0x0018, 0x1dbd: 0x0018, 0x1dbe: 0x0018, 0x1dbf: 0x0018, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0xc1d9, 0x1dc1: 0xc211, 0x1dc2: 0xc249, 0x1dc3: 0x0040, 0x1dc4: 0x0040, 0x1dc5: 0x0040, -	0x1dc6: 0x0040, 0x1dc7: 0x0040, 0x1dc8: 0x0040, 0x1dc9: 0x0040, 0x1dca: 0x0040, 0x1dcb: 0x0040, -	0x1dcc: 0x0040, 0x1dcd: 0x0040, 0x1dce: 0x0040, 0x1dcf: 0x0040, 0x1dd0: 0xc269, 0x1dd1: 0xc289, -	0x1dd2: 0xc2a9, 0x1dd3: 0xc2c9, 0x1dd4: 0xc2e9, 0x1dd5: 0xc309, 0x1dd6: 0xc329, 0x1dd7: 0xc349, -	0x1dd8: 0xc369, 0x1dd9: 0xc389, 0x1dda: 0xc3a9, 0x1ddb: 0xc3c9, 0x1ddc: 0xc3e9, 0x1ddd: 0xc409, -	0x1dde: 0xc429, 0x1ddf: 0xc449, 0x1de0: 0xc469, 0x1de1: 0xc489, 0x1de2: 0xc4a9, 0x1de3: 0xc4c9, -	0x1de4: 0xc4e9, 0x1de5: 0xc509, 0x1de6: 0xc529, 0x1de7: 0xc549, 0x1de8: 0xc569, 0x1de9: 0xc589, -	0x1dea: 0xc5a9, 0x1deb: 0xc5c9, 0x1dec: 0xc5e9, 0x1ded: 0xc609, 0x1dee: 0xc629, 0x1def: 0xc649, -	0x1df0: 0xc669, 0x1df1: 0xc689, 0x1df2: 0xc6a9, 0x1df3: 0xc6c9, 0x1df4: 0xc6e9, 0x1df5: 0xc709, -	0x1df6: 0xc729, 0x1df7: 0xc749, 0x1df8: 0xc769, 0x1df9: 0xc789, 0x1dfa: 0xc7a9, 0x1dfb: 0xc7c9, -	0x1dfc: 0x0040, 0x1dfd: 0x0040, 0x1dfe: 0x0040, 0x1dff: 0x0040, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0xcaf9, 0x1e01: 0xcb19, 0x1e02: 0xcb39, 0x1e03: 0x8b1d, 0x1e04: 0xcb59, 0x1e05: 0xcb79, -	0x1e06: 0xcb99, 0x1e07: 0xcbb9, 0x1e08: 0xcbd9, 0x1e09: 0xcbf9, 0x1e0a: 0xcc19, 0x1e0b: 0xcc39, -	0x1e0c: 0xcc59, 0x1e0d: 0x8b3d, 0x1e0e: 0xcc79, 0x1e0f: 0xcc99, 0x1e10: 0xccb9, 0x1e11: 0xccd9, -	0x1e12: 0x8b5d, 0x1e13: 0xccf9, 0x1e14: 0xcd19, 0x1e15: 0xc429, 0x1e16: 0x8b7d, 0x1e17: 0xcd39, -	0x1e18: 0xcd59, 0x1e19: 0xcd79, 0x1e1a: 0xcd99, 0x1e1b: 0xcdb9, 0x1e1c: 0x8b9d, 0x1e1d: 0xcdd9, -	0x1e1e: 0xcdf9, 0x1e1f: 0xce19, 0x1e20: 0xce39, 0x1e21: 0xce59, 0x1e22: 0xc789, 0x1e23: 0xce79, -	0x1e24: 0xce99, 0x1e25: 0xceb9, 0x1e26: 0xced9, 0x1e27: 0xcef9, 0x1e28: 0xcf19, 0x1e29: 0xcf39, -	0x1e2a: 0xcf59, 0x1e2b: 0xcf79, 0x1e2c: 0xcf99, 0x1e2d: 0xcfb9, 0x1e2e: 0xcfd9, 0x1e2f: 0xcff9, -	0x1e30: 0xd019, 0x1e31: 0xd039, 0x1e32: 0xd039, 0x1e33: 0xd039, 0x1e34: 0x8bbd, 0x1e35: 0xd059, -	0x1e36: 0xd079, 0x1e37: 0xd099, 0x1e38: 0x8bdd, 0x1e39: 0xd0b9, 0x1e3a: 0xd0d9, 0x1e3b: 0xd0f9, -	0x1e3c: 0xd119, 0x1e3d: 0xd139, 0x1e3e: 0xd159, 0x1e3f: 0xd179, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0xd199, 0x1e41: 0xd1b9, 0x1e42: 0xd1d9, 0x1e43: 0xd1f9, 0x1e44: 0xd219, 0x1e45: 0xd239, -	0x1e46: 0xd239, 0x1e47: 0xd259, 0x1e48: 0xd279, 0x1e49: 0xd299, 0x1e4a: 0xd2b9, 0x1e4b: 0xd2d9, -	0x1e4c: 0xd2f9, 0x1e4d: 0xd319, 0x1e4e: 0xd339, 0x1e4f: 0xd359, 0x1e50: 0xd379, 0x1e51: 0xd399, -	0x1e52: 0xd3b9, 0x1e53: 0xd3d9, 0x1e54: 0xd3f9, 0x1e55: 0xd419, 0x1e56: 0xd439, 0x1e57: 0xd459, -	0x1e58: 0xd479, 0x1e59: 0x8bfd, 0x1e5a: 0xd499, 0x1e5b: 0xd4b9, 0x1e5c: 0xd4d9, 0x1e5d: 0xc309, -	0x1e5e: 0xd4f9, 0x1e5f: 0xd519, 0x1e60: 0x8c1d, 0x1e61: 0x8c3d, 0x1e62: 0xd539, 0x1e63: 0xd559, -	0x1e64: 0xd579, 0x1e65: 0xd599, 0x1e66: 0xd5b9, 0x1e67: 0xd5d9, 0x1e68: 0x2040, 0x1e69: 0xd5f9, -	0x1e6a: 0xd619, 0x1e6b: 0xd619, 0x1e6c: 0x8c5d, 0x1e6d: 0xd639, 0x1e6e: 0xd659, 0x1e6f: 0xd679, -	0x1e70: 0xd699, 0x1e71: 0x8c7d, 0x1e72: 0xd6b9, 0x1e73: 0xd6d9, 0x1e74: 0x2040, 0x1e75: 0xd6f9, -	0x1e76: 0xd719, 0x1e77: 0xd739, 0x1e78: 0xd759, 0x1e79: 0xd779, 0x1e7a: 0xd799, 0x1e7b: 0x8c9d, -	0x1e7c: 0xd7b9, 0x1e7d: 0x8cbd, 0x1e7e: 0xd7d9, 0x1e7f: 0xd7f9, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0xd819, 0x1e81: 0xd839, 0x1e82: 0xd859, 0x1e83: 0xd879, 0x1e84: 0xd899, 0x1e85: 0xd8b9, -	0x1e86: 0xd8d9, 0x1e87: 0xd8f9, 0x1e88: 0xd919, 0x1e89: 0x8cdd, 0x1e8a: 0xd939, 0x1e8b: 0xd959, -	0x1e8c: 0xd979, 0x1e8d: 0xd999, 0x1e8e: 0xd9b9, 0x1e8f: 0x8cfd, 0x1e90: 0xd9d9, 0x1e91: 0x8d1d, -	0x1e92: 0x8d3d, 0x1e93: 0xd9f9, 0x1e94: 0xda19, 0x1e95: 0xda19, 0x1e96: 0xda39, 0x1e97: 0x8d5d, -	0x1e98: 0x8d7d, 0x1e99: 0xda59, 0x1e9a: 0xda79, 0x1e9b: 0xda99, 0x1e9c: 0xdab9, 0x1e9d: 0xdad9, -	0x1e9e: 0xdaf9, 0x1e9f: 0xdb19, 0x1ea0: 0xdb39, 0x1ea1: 0xdb59, 0x1ea2: 0xdb79, 0x1ea3: 0xdb99, -	0x1ea4: 0x8d9d, 0x1ea5: 0xdbb9, 0x1ea6: 0xdbd9, 0x1ea7: 0xdbf9, 0x1ea8: 0xdc19, 0x1ea9: 0xdbf9, -	0x1eaa: 0xdc39, 0x1eab: 0xdc59, 0x1eac: 0xdc79, 0x1ead: 0xdc99, 0x1eae: 0xdcb9, 0x1eaf: 0xdcd9, -	0x1eb0: 0xdcf9, 0x1eb1: 0xdd19, 0x1eb2: 0xdd39, 0x1eb3: 0xdd59, 0x1eb4: 0xdd79, 0x1eb5: 0xdd99, -	0x1eb6: 0xddb9, 0x1eb7: 0xddd9, 0x1eb8: 0x8dbd, 0x1eb9: 0xddf9, 0x1eba: 0xde19, 0x1ebb: 0xde39, -	0x1ebc: 0xde59, 0x1ebd: 0xde79, 0x1ebe: 0x8ddd, 0x1ebf: 0xde99, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0xe599, 0x1ec1: 0xe5b9, 0x1ec2: 0xe5d9, 0x1ec3: 0xe5f9, 0x1ec4: 0xe619, 0x1ec5: 0xe639, -	0x1ec6: 0x8efd, 0x1ec7: 0xe659, 0x1ec8: 0xe679, 0x1ec9: 0xe699, 0x1eca: 0xe6b9, 0x1ecb: 0xe6d9, -	0x1ecc: 0xe6f9, 0x1ecd: 0x8f1d, 0x1ece: 0xe719, 0x1ecf: 0xe739, 0x1ed0: 0x8f3d, 0x1ed1: 0x8f5d, -	0x1ed2: 0xe759, 0x1ed3: 0xe779, 0x1ed4: 0xe799, 0x1ed5: 0xe7b9, 0x1ed6: 0xe7d9, 0x1ed7: 0xe7f9, -	0x1ed8: 0xe819, 0x1ed9: 0xe839, 0x1eda: 0xe859, 0x1edb: 0x8f7d, 0x1edc: 0xe879, 0x1edd: 0x8f9d, -	0x1ede: 0xe899, 0x1edf: 0x2040, 0x1ee0: 0xe8b9, 0x1ee1: 0xe8d9, 0x1ee2: 0xe8f9, 0x1ee3: 0x8fbd, -	0x1ee4: 0xe919, 0x1ee5: 0xe939, 0x1ee6: 0x8fdd, 0x1ee7: 0x8ffd, 0x1ee8: 0xe959, 0x1ee9: 0xe979, -	0x1eea: 0xe999, 0x1eeb: 0xe9b9, 0x1eec: 0xe9d9, 0x1eed: 0xe9d9, 0x1eee: 0xe9f9, 0x1eef: 0xea19, -	0x1ef0: 0xea39, 0x1ef1: 0xea59, 0x1ef2: 0xea79, 0x1ef3: 0xea99, 0x1ef4: 0xeab9, 0x1ef5: 0x901d, -	0x1ef6: 0xead9, 0x1ef7: 0x903d, 0x1ef8: 0xeaf9, 0x1ef9: 0x905d, 0x1efa: 0xeb19, 0x1efb: 0x907d, -	0x1efc: 0x909d, 0x1efd: 0x90bd, 0x1efe: 0xeb39, 0x1eff: 0xeb59, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0xeb79, 0x1f01: 0x90dd, 0x1f02: 0x90fd, 0x1f03: 0x911d, 0x1f04: 0x913d, 0x1f05: 0xeb99, -	0x1f06: 0xebb9, 0x1f07: 0xebb9, 0x1f08: 0xebd9, 0x1f09: 0xebf9, 0x1f0a: 0xec19, 0x1f0b: 0xec39, -	0x1f0c: 0xec59, 0x1f0d: 0x915d, 0x1f0e: 0xec79, 0x1f0f: 0xec99, 0x1f10: 0xecb9, 0x1f11: 0xecd9, -	0x1f12: 0x917d, 0x1f13: 0xecf9, 0x1f14: 0x919d, 0x1f15: 0x91bd, 0x1f16: 0xed19, 0x1f17: 0xed39, -	0x1f18: 0xed59, 0x1f19: 0xed79, 0x1f1a: 0xed99, 0x1f1b: 0xedb9, 0x1f1c: 0x91dd, 0x1f1d: 0x91fd, -	0x1f1e: 0x921d, 0x1f1f: 0x2040, 0x1f20: 0xedd9, 0x1f21: 0x923d, 0x1f22: 0xedf9, 0x1f23: 0xee19, -	0x1f24: 0xee39, 0x1f25: 0x925d, 0x1f26: 0xee59, 0x1f27: 0xee79, 0x1f28: 0xee99, 0x1f29: 0xeeb9, -	0x1f2a: 0xeed9, 0x1f2b: 0x927d, 0x1f2c: 0xeef9, 0x1f2d: 0xef19, 0x1f2e: 0xef39, 0x1f2f: 0xef59, -	0x1f30: 0xef79, 0x1f31: 0xef99, 0x1f32: 0x929d, 0x1f33: 0x92bd, 0x1f34: 0xefb9, 0x1f35: 0x92dd, -	0x1f36: 0xefd9, 0x1f37: 0x92fd, 0x1f38: 0xeff9, 0x1f39: 0xf019, 0x1f3a: 0xf039, 0x1f3b: 0x931d, -	0x1f3c: 0x933d, 0x1f3d: 0xf059, 0x1f3e: 0x935d, 0x1f3f: 0xf079, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0xf6b9, 0x1f41: 0xf6d9, 0x1f42: 0xf6f9, 0x1f43: 0xf719, 0x1f44: 0xf739, 0x1f45: 0x951d, -	0x1f46: 0xf759, 0x1f47: 0xf779, 0x1f48: 0xf799, 0x1f49: 0xf7b9, 0x1f4a: 0xf7d9, 0x1f4b: 0x953d, -	0x1f4c: 0x955d, 0x1f4d: 0xf7f9, 0x1f4e: 0xf819, 0x1f4f: 0xf839, 0x1f50: 0xf859, 0x1f51: 0xf879, -	0x1f52: 0xf899, 0x1f53: 0x957d, 0x1f54: 0xf8b9, 0x1f55: 0xf8d9, 0x1f56: 0xf8f9, 0x1f57: 0xf919, -	0x1f58: 0x959d, 0x1f59: 0x95bd, 0x1f5a: 0xf939, 0x1f5b: 0xf959, 0x1f5c: 0xf979, 0x1f5d: 0x95dd, -	0x1f5e: 0xf999, 0x1f5f: 0xf9b9, 0x1f60: 0x6815, 0x1f61: 0x95fd, 0x1f62: 0xf9d9, 0x1f63: 0xf9f9, -	0x1f64: 0xfa19, 0x1f65: 0x961d, 0x1f66: 0xfa39, 0x1f67: 0xfa59, 0x1f68: 0xfa79, 0x1f69: 0xfa99, -	0x1f6a: 0xfab9, 0x1f6b: 0xfad9, 0x1f6c: 0xfaf9, 0x1f6d: 0x963d, 0x1f6e: 0xfb19, 0x1f6f: 0xfb39, -	0x1f70: 0xfb59, 0x1f71: 0x965d, 0x1f72: 0xfb79, 0x1f73: 0xfb99, 0x1f74: 0xfbb9, 0x1f75: 0xfbd9, -	0x1f76: 0x7b35, 0x1f77: 0x967d, 0x1f78: 0xfbf9, 0x1f79: 0xfc19, 0x1f7a: 0xfc39, 0x1f7b: 0x969d, -	0x1f7c: 0xfc59, 0x1f7d: 0x96bd, 0x1f7e: 0xfc79, 0x1f7f: 0xfc79, -	// Block 0x7e, offset 0x1f80 -	0x1f80: 0xfc99, 0x1f81: 0x96dd, 0x1f82: 0xfcb9, 0x1f83: 0xfcd9, 0x1f84: 0xfcf9, 0x1f85: 0xfd19, -	0x1f86: 0xfd39, 0x1f87: 0xfd59, 0x1f88: 0xfd79, 0x1f89: 0x96fd, 0x1f8a: 0xfd99, 0x1f8b: 0xfdb9, -	0x1f8c: 0xfdd9, 0x1f8d: 0xfdf9, 0x1f8e: 0xfe19, 0x1f8f: 0xfe39, 0x1f90: 0x971d, 0x1f91: 0xfe59, -	0x1f92: 0x973d, 0x1f93: 0x975d, 0x1f94: 0x977d, 0x1f95: 0xfe79, 0x1f96: 0xfe99, 0x1f97: 0xfeb9, -	0x1f98: 0xfed9, 0x1f99: 0xfef9, 0x1f9a: 0xff19, 0x1f9b: 0xff39, 0x1f9c: 0xff59, 0x1f9d: 0x979d, -	0x1f9e: 0x0040, 0x1f9f: 0x0040, 0x1fa0: 0x0040, 0x1fa1: 0x0040, 0x1fa2: 0x0040, 0x1fa3: 0x0040, -	0x1fa4: 0x0040, 0x1fa5: 0x0040, 0x1fa6: 0x0040, 0x1fa7: 0x0040, 0x1fa8: 0x0040, 0x1fa9: 0x0040, -	0x1faa: 0x0040, 0x1fab: 0x0040, 0x1fac: 0x0040, 0x1fad: 0x0040, 0x1fae: 0x0040, 0x1faf: 0x0040, -	0x1fb0: 0x0040, 0x1fb1: 0x0040, 0x1fb2: 0x0040, 0x1fb3: 0x0040, 0x1fb4: 0x0040, 0x1fb5: 0x0040, -	0x1fb6: 0x0040, 0x1fb7: 0x0040, 0x1fb8: 0x0040, 0x1fb9: 0x0040, 0x1fba: 0x0040, 0x1fbb: 0x0040, -	0x1fbc: 0x0040, 0x1fbd: 0x0040, 0x1fbe: 0x0040, 0x1fbf: 0x0040, -} - -// idnaIndex: 36 blocks, 2304 entries, 4608 bytes -// Block 0 is the zero block. -var idnaIndex = [2304]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x7d, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x7e, 0xca: 0x7f, 0xcb: 0x07, 0xcc: 0x80, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x81, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x82, 0xd6: 0x83, 0xd7: 0x84, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x85, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x86, 0xde: 0x87, 0xdf: 0x88, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x08, 0xea: 0x09, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x0a, 0xee: 0x0b, 0xef: 0x0c, -	0xf0: 0x1d, 0xf1: 0x1e, 0xf2: 0x1e, 0xf3: 0x20, 0xf4: 0x21, -	// Block 0x4, offset 0x100 -	0x120: 0x89, 0x121: 0x13, 0x122: 0x8a, 0x123: 0x8b, 0x124: 0x8c, 0x125: 0x14, 0x126: 0x15, 0x127: 0x16, -	0x128: 0x17, 0x129: 0x18, 0x12a: 0x19, 0x12b: 0x1a, 0x12c: 0x1b, 0x12d: 0x1c, 0x12e: 0x1d, 0x12f: 0x8d, -	0x130: 0x8e, 0x131: 0x1e, 0x132: 0x1f, 0x133: 0x20, 0x134: 0x8f, 0x135: 0x21, 0x136: 0x90, 0x137: 0x91, -	0x138: 0x92, 0x139: 0x93, 0x13a: 0x22, 0x13b: 0x94, 0x13c: 0x95, 0x13d: 0x23, 0x13e: 0x24, 0x13f: 0x96, -	// Block 0x5, offset 0x140 -	0x140: 0x97, 0x141: 0x98, 0x142: 0x99, 0x143: 0x9a, 0x144: 0x9b, 0x145: 0x9c, 0x146: 0x9d, 0x147: 0x9e, -	0x148: 0x9f, 0x149: 0xa0, 0x14a: 0xa1, 0x14b: 0xa2, 0x14c: 0xa3, 0x14d: 0xa4, 0x14e: 0xa5, 0x14f: 0xa6, -	0x150: 0xa7, 0x151: 0x9f, 0x152: 0x9f, 0x153: 0x9f, 0x154: 0x9f, 0x155: 0x9f, 0x156: 0x9f, 0x157: 0x9f, -	0x158: 0x9f, 0x159: 0xa8, 0x15a: 0xa9, 0x15b: 0xaa, 0x15c: 0xab, 0x15d: 0xac, 0x15e: 0xad, 0x15f: 0xae, -	0x160: 0xaf, 0x161: 0xb0, 0x162: 0xb1, 0x163: 0xb2, 0x164: 0xb3, 0x165: 0xb4, 0x166: 0xb5, 0x167: 0xb6, -	0x168: 0xb7, 0x169: 0xb8, 0x16a: 0xb9, 0x16b: 0xba, 0x16c: 0xbb, 0x16d: 0xbc, 0x16e: 0xbd, 0x16f: 0xbe, -	0x170: 0xbf, 0x171: 0xc0, 0x172: 0xc1, 0x173: 0xc2, 0x174: 0x25, 0x175: 0x26, 0x176: 0x27, 0x177: 0xc3, -	0x178: 0x28, 0x179: 0x28, 0x17a: 0x29, 0x17b: 0x28, 0x17c: 0xc4, 0x17d: 0x2a, 0x17e: 0x2b, 0x17f: 0x2c, -	// Block 0x6, offset 0x180 -	0x180: 0x2d, 0x181: 0x2e, 0x182: 0x2f, 0x183: 0xc5, 0x184: 0x30, 0x185: 0x31, 0x186: 0xc6, 0x187: 0x9b, -	0x188: 0xc7, 0x189: 0xc8, 0x18a: 0x9b, 0x18b: 0x9b, 0x18c: 0xc9, 0x18d: 0x9b, 0x18e: 0x9b, 0x18f: 0x9b, -	0x190: 0xca, 0x191: 0x32, 0x192: 0x33, 0x193: 0x34, 0x194: 0x9b, 0x195: 0x9b, 0x196: 0x9b, 0x197: 0x9b, -	0x198: 0x9b, 0x199: 0x9b, 0x19a: 0x9b, 0x19b: 0x9b, 0x19c: 0x9b, 0x19d: 0x9b, 0x19e: 0x9b, 0x19f: 0x9b, -	0x1a0: 0x9b, 0x1a1: 0x9b, 0x1a2: 0x9b, 0x1a3: 0x9b, 0x1a4: 0x9b, 0x1a5: 0x9b, 0x1a6: 0x9b, 0x1a7: 0x9b, -	0x1a8: 0xcb, 0x1a9: 0xcc, 0x1aa: 0x9b, 0x1ab: 0xcd, 0x1ac: 0x9b, 0x1ad: 0xce, 0x1ae: 0xcf, 0x1af: 0xd0, -	0x1b0: 0xd1, 0x1b1: 0x35, 0x1b2: 0x28, 0x1b3: 0x36, 0x1b4: 0xd2, 0x1b5: 0xd3, 0x1b6: 0xd4, 0x1b7: 0xd5, -	0x1b8: 0xd6, 0x1b9: 0xd7, 0x1ba: 0xd8, 0x1bb: 0xd9, 0x1bc: 0xda, 0x1bd: 0xdb, 0x1be: 0xdc, 0x1bf: 0x37, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x38, 0x1c1: 0xdd, 0x1c2: 0xde, 0x1c3: 0xdf, 0x1c4: 0xe0, 0x1c5: 0x39, 0x1c6: 0x3a, 0x1c7: 0xe1, -	0x1c8: 0xe2, 0x1c9: 0x3b, 0x1ca: 0x3c, 0x1cb: 0x3d, 0x1cc: 0x3e, 0x1cd: 0x3f, 0x1ce: 0x40, 0x1cf: 0x41, -	0x1d0: 0x9f, 0x1d1: 0x9f, 0x1d2: 0x9f, 0x1d3: 0x9f, 0x1d4: 0x9f, 0x1d5: 0x9f, 0x1d6: 0x9f, 0x1d7: 0x9f, -	0x1d8: 0x9f, 0x1d9: 0x9f, 0x1da: 0x9f, 0x1db: 0x9f, 0x1dc: 0x9f, 0x1dd: 0x9f, 0x1de: 0x9f, 0x1df: 0x9f, -	0x1e0: 0x9f, 0x1e1: 0x9f, 0x1e2: 0x9f, 0x1e3: 0x9f, 0x1e4: 0x9f, 0x1e5: 0x9f, 0x1e6: 0x9f, 0x1e7: 0x9f, -	0x1e8: 0x9f, 0x1e9: 0x9f, 0x1ea: 0x9f, 0x1eb: 0x9f, 0x1ec: 0x9f, 0x1ed: 0x9f, 0x1ee: 0x9f, 0x1ef: 0x9f, -	0x1f0: 0x9f, 0x1f1: 0x9f, 0x1f2: 0x9f, 0x1f3: 0x9f, 0x1f4: 0x9f, 0x1f5: 0x9f, 0x1f6: 0x9f, 0x1f7: 0x9f, -	0x1f8: 0x9f, 0x1f9: 0x9f, 0x1fa: 0x9f, 0x1fb: 0x9f, 0x1fc: 0x9f, 0x1fd: 0x9f, 0x1fe: 0x9f, 0x1ff: 0x9f, -	// Block 0x8, offset 0x200 -	0x200: 0x9f, 0x201: 0x9f, 0x202: 0x9f, 0x203: 0x9f, 0x204: 0x9f, 0x205: 0x9f, 0x206: 0x9f, 0x207: 0x9f, -	0x208: 0x9f, 0x209: 0x9f, 0x20a: 0x9f, 0x20b: 0x9f, 0x20c: 0x9f, 0x20d: 0x9f, 0x20e: 0x9f, 0x20f: 0x9f, -	0x210: 0x9f, 0x211: 0x9f, 0x212: 0x9f, 0x213: 0x9f, 0x214: 0x9f, 0x215: 0x9f, 0x216: 0x9f, 0x217: 0x9f, -	0x218: 0x9f, 0x219: 0x9f, 0x21a: 0x9f, 0x21b: 0x9f, 0x21c: 0x9f, 0x21d: 0x9f, 0x21e: 0x9f, 0x21f: 0x9f, -	0x220: 0x9f, 0x221: 0x9f, 0x222: 0x9f, 0x223: 0x9f, 0x224: 0x9f, 0x225: 0x9f, 0x226: 0x9f, 0x227: 0x9f, -	0x228: 0x9f, 0x229: 0x9f, 0x22a: 0x9f, 0x22b: 0x9f, 0x22c: 0x9f, 0x22d: 0x9f, 0x22e: 0x9f, 0x22f: 0x9f, -	0x230: 0x9f, 0x231: 0x9f, 0x232: 0x9f, 0x233: 0x9f, 0x234: 0x9f, 0x235: 0x9f, 0x236: 0xb2, 0x237: 0x9b, -	0x238: 0x9f, 0x239: 0x9f, 0x23a: 0x9f, 0x23b: 0x9f, 0x23c: 0x9f, 0x23d: 0x9f, 0x23e: 0x9f, 0x23f: 0x9f, -	// Block 0x9, offset 0x240 -	0x240: 0x9f, 0x241: 0x9f, 0x242: 0x9f, 0x243: 0x9f, 0x244: 0x9f, 0x245: 0x9f, 0x246: 0x9f, 0x247: 0x9f, -	0x248: 0x9f, 0x249: 0x9f, 0x24a: 0x9f, 0x24b: 0x9f, 0x24c: 0x9f, 0x24d: 0x9f, 0x24e: 0x9f, 0x24f: 0x9f, -	0x250: 0x9f, 0x251: 0x9f, 0x252: 0x9f, 0x253: 0x9f, 0x254: 0x9f, 0x255: 0x9f, 0x256: 0x9f, 0x257: 0x9f, -	0x258: 0x9f, 0x259: 0x9f, 0x25a: 0x9f, 0x25b: 0x9f, 0x25c: 0x9f, 0x25d: 0x9f, 0x25e: 0x9f, 0x25f: 0x9f, -	0x260: 0x9f, 0x261: 0x9f, 0x262: 0x9f, 0x263: 0x9f, 0x264: 0x9f, 0x265: 0x9f, 0x266: 0x9f, 0x267: 0x9f, -	0x268: 0x9f, 0x269: 0x9f, 0x26a: 0x9f, 0x26b: 0x9f, 0x26c: 0x9f, 0x26d: 0x9f, 0x26e: 0x9f, 0x26f: 0x9f, -	0x270: 0x9f, 0x271: 0x9f, 0x272: 0x9f, 0x273: 0x9f, 0x274: 0x9f, 0x275: 0x9f, 0x276: 0x9f, 0x277: 0x9f, -	0x278: 0x9f, 0x279: 0x9f, 0x27a: 0x9f, 0x27b: 0x9f, 0x27c: 0x9f, 0x27d: 0x9f, 0x27e: 0x9f, 0x27f: 0x9f, -	// Block 0xa, offset 0x280 -	0x280: 0x9f, 0x281: 0x9f, 0x282: 0x9f, 0x283: 0x9f, 0x284: 0x9f, 0x285: 0x9f, 0x286: 0x9f, 0x287: 0x9f, -	0x288: 0x9f, 0x289: 0x9f, 0x28a: 0x9f, 0x28b: 0x9f, 0x28c: 0x9f, 0x28d: 0x9f, 0x28e: 0x9f, 0x28f: 0x9f, -	0x290: 0x9f, 0x291: 0x9f, 0x292: 0x9f, 0x293: 0x9f, 0x294: 0x9f, 0x295: 0x9f, 0x296: 0x9f, 0x297: 0x9f, -	0x298: 0x9f, 0x299: 0x9f, 0x29a: 0x9f, 0x29b: 0x9f, 0x29c: 0x9f, 0x29d: 0x9f, 0x29e: 0x9f, 0x29f: 0x9f, -	0x2a0: 0x9f, 0x2a1: 0x9f, 0x2a2: 0x9f, 0x2a3: 0x9f, 0x2a4: 0x9f, 0x2a5: 0x9f, 0x2a6: 0x9f, 0x2a7: 0x9f, -	0x2a8: 0x9f, 0x2a9: 0x9f, 0x2aa: 0x9f, 0x2ab: 0x9f, 0x2ac: 0x9f, 0x2ad: 0x9f, 0x2ae: 0x9f, 0x2af: 0x9f, -	0x2b0: 0x9f, 0x2b1: 0x9f, 0x2b2: 0x9f, 0x2b3: 0x9f, 0x2b4: 0x9f, 0x2b5: 0x9f, 0x2b6: 0x9f, 0x2b7: 0x9f, -	0x2b8: 0x9f, 0x2b9: 0x9f, 0x2ba: 0x9f, 0x2bb: 0x9f, 0x2bc: 0x9f, 0x2bd: 0x9f, 0x2be: 0x9f, 0x2bf: 0xe3, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x9f, 0x2c1: 0x9f, 0x2c2: 0x9f, 0x2c3: 0x9f, 0x2c4: 0x9f, 0x2c5: 0x9f, 0x2c6: 0x9f, 0x2c7: 0x9f, -	0x2c8: 0x9f, 0x2c9: 0x9f, 0x2ca: 0x9f, 0x2cb: 0x9f, 0x2cc: 0x9f, 0x2cd: 0x9f, 0x2ce: 0x9f, 0x2cf: 0x9f, -	0x2d0: 0x9f, 0x2d1: 0x9f, 0x2d2: 0xe4, 0x2d3: 0xe5, 0x2d4: 0x9f, 0x2d5: 0x9f, 0x2d6: 0x9f, 0x2d7: 0x9f, -	0x2d8: 0xe6, 0x2d9: 0x42, 0x2da: 0x43, 0x2db: 0xe7, 0x2dc: 0x44, 0x2dd: 0x45, 0x2de: 0x46, 0x2df: 0xe8, -	0x2e0: 0xe9, 0x2e1: 0xea, 0x2e2: 0xeb, 0x2e3: 0xec, 0x2e4: 0xed, 0x2e5: 0xee, 0x2e6: 0xef, 0x2e7: 0xf0, -	0x2e8: 0xf1, 0x2e9: 0xf2, 0x2ea: 0xf3, 0x2eb: 0xf4, 0x2ec: 0xf5, 0x2ed: 0xf6, 0x2ee: 0xf7, 0x2ef: 0xf8, -	0x2f0: 0x9f, 0x2f1: 0x9f, 0x2f2: 0x9f, 0x2f3: 0x9f, 0x2f4: 0x9f, 0x2f5: 0x9f, 0x2f6: 0x9f, 0x2f7: 0x9f, -	0x2f8: 0x9f, 0x2f9: 0x9f, 0x2fa: 0x9f, 0x2fb: 0x9f, 0x2fc: 0x9f, 0x2fd: 0x9f, 0x2fe: 0x9f, 0x2ff: 0x9f, -	// Block 0xc, offset 0x300 -	0x300: 0x9f, 0x301: 0x9f, 0x302: 0x9f, 0x303: 0x9f, 0x304: 0x9f, 0x305: 0x9f, 0x306: 0x9f, 0x307: 0x9f, -	0x308: 0x9f, 0x309: 0x9f, 0x30a: 0x9f, 0x30b: 0x9f, 0x30c: 0x9f, 0x30d: 0x9f, 0x30e: 0x9f, 0x30f: 0x9f, -	0x310: 0x9f, 0x311: 0x9f, 0x312: 0x9f, 0x313: 0x9f, 0x314: 0x9f, 0x315: 0x9f, 0x316: 0x9f, 0x317: 0x9f, -	0x318: 0x9f, 0x319: 0x9f, 0x31a: 0x9f, 0x31b: 0x9f, 0x31c: 0x9f, 0x31d: 0x9f, 0x31e: 0xf9, 0x31f: 0xfa, -	// Block 0xd, offset 0x340 -	0x340: 0xba, 0x341: 0xba, 0x342: 0xba, 0x343: 0xba, 0x344: 0xba, 0x345: 0xba, 0x346: 0xba, 0x347: 0xba, -	0x348: 0xba, 0x349: 0xba, 0x34a: 0xba, 0x34b: 0xba, 0x34c: 0xba, 0x34d: 0xba, 0x34e: 0xba, 0x34f: 0xba, -	0x350: 0xba, 0x351: 0xba, 0x352: 0xba, 0x353: 0xba, 0x354: 0xba, 0x355: 0xba, 0x356: 0xba, 0x357: 0xba, -	0x358: 0xba, 0x359: 0xba, 0x35a: 0xba, 0x35b: 0xba, 0x35c: 0xba, 0x35d: 0xba, 0x35e: 0xba, 0x35f: 0xba, -	0x360: 0xba, 0x361: 0xba, 0x362: 0xba, 0x363: 0xba, 0x364: 0xba, 0x365: 0xba, 0x366: 0xba, 0x367: 0xba, -	0x368: 0xba, 0x369: 0xba, 0x36a: 0xba, 0x36b: 0xba, 0x36c: 0xba, 0x36d: 0xba, 0x36e: 0xba, 0x36f: 0xba, -	0x370: 0xba, 0x371: 0xba, 0x372: 0xba, 0x373: 0xba, 0x374: 0xba, 0x375: 0xba, 0x376: 0xba, 0x377: 0xba, -	0x378: 0xba, 0x379: 0xba, 0x37a: 0xba, 0x37b: 0xba, 0x37c: 0xba, 0x37d: 0xba, 0x37e: 0xba, 0x37f: 0xba, -	// Block 0xe, offset 0x380 -	0x380: 0xba, 0x381: 0xba, 0x382: 0xba, 0x383: 0xba, 0x384: 0xba, 0x385: 0xba, 0x386: 0xba, 0x387: 0xba, -	0x388: 0xba, 0x389: 0xba, 0x38a: 0xba, 0x38b: 0xba, 0x38c: 0xba, 0x38d: 0xba, 0x38e: 0xba, 0x38f: 0xba, -	0x390: 0xba, 0x391: 0xba, 0x392: 0xba, 0x393: 0xba, 0x394: 0xba, 0x395: 0xba, 0x396: 0xba, 0x397: 0xba, -	0x398: 0xba, 0x399: 0xba, 0x39a: 0xba, 0x39b: 0xba, 0x39c: 0xba, 0x39d: 0xba, 0x39e: 0xba, 0x39f: 0xba, -	0x3a0: 0xba, 0x3a1: 0xba, 0x3a2: 0xba, 0x3a3: 0xba, 0x3a4: 0xfb, 0x3a5: 0xfc, 0x3a6: 0xfd, 0x3a7: 0xfe, -	0x3a8: 0x47, 0x3a9: 0xff, 0x3aa: 0x100, 0x3ab: 0x48, 0x3ac: 0x49, 0x3ad: 0x4a, 0x3ae: 0x4b, 0x3af: 0x4c, -	0x3b0: 0x101, 0x3b1: 0x4d, 0x3b2: 0x4e, 0x3b3: 0x4f, 0x3b4: 0x50, 0x3b5: 0x51, 0x3b6: 0x102, 0x3b7: 0x52, -	0x3b8: 0x53, 0x3b9: 0x54, 0x3ba: 0x55, 0x3bb: 0x56, 0x3bc: 0x57, 0x3bd: 0x58, 0x3be: 0x59, 0x3bf: 0x5a, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x103, 0x3c1: 0x104, 0x3c2: 0x9f, 0x3c3: 0x105, 0x3c4: 0x106, 0x3c5: 0x9b, 0x3c6: 0x107, 0x3c7: 0x108, -	0x3c8: 0xba, 0x3c9: 0xba, 0x3ca: 0x109, 0x3cb: 0x10a, 0x3cc: 0x10b, 0x3cd: 0x10c, 0x3ce: 0x10d, 0x3cf: 0x10e, -	0x3d0: 0x10f, 0x3d1: 0x9f, 0x3d2: 0x110, 0x3d3: 0x111, 0x3d4: 0x112, 0x3d5: 0x113, 0x3d6: 0xba, 0x3d7: 0xba, -	0x3d8: 0x9f, 0x3d9: 0x9f, 0x3da: 0x9f, 0x3db: 0x9f, 0x3dc: 0x114, 0x3dd: 0x115, 0x3de: 0xba, 0x3df: 0xba, -	0x3e0: 0x116, 0x3e1: 0x117, 0x3e2: 0x118, 0x3e3: 0x119, 0x3e4: 0x11a, 0x3e5: 0xba, 0x3e6: 0x11b, 0x3e7: 0x11c, -	0x3e8: 0x11d, 0x3e9: 0x11e, 0x3ea: 0x11f, 0x3eb: 0x5b, 0x3ec: 0x120, 0x3ed: 0x121, 0x3ee: 0x5c, 0x3ef: 0xba, -	0x3f0: 0x122, 0x3f1: 0x123, 0x3f2: 0x124, 0x3f3: 0x125, 0x3f4: 0xba, 0x3f5: 0xba, 0x3f6: 0xba, 0x3f7: 0xba, -	0x3f8: 0xba, 0x3f9: 0x126, 0x3fa: 0xba, 0x3fb: 0xba, 0x3fc: 0xba, 0x3fd: 0xba, 0x3fe: 0xba, 0x3ff: 0xba, -	// Block 0x10, offset 0x400 -	0x400: 0x127, 0x401: 0x128, 0x402: 0x129, 0x403: 0x12a, 0x404: 0x12b, 0x405: 0x12c, 0x406: 0x12d, 0x407: 0x12e, -	0x408: 0x12f, 0x409: 0xba, 0x40a: 0x130, 0x40b: 0x131, 0x40c: 0x5d, 0x40d: 0x5e, 0x40e: 0xba, 0x40f: 0xba, -	0x410: 0x132, 0x411: 0x133, 0x412: 0x134, 0x413: 0x135, 0x414: 0xba, 0x415: 0xba, 0x416: 0x136, 0x417: 0x137, -	0x418: 0x138, 0x419: 0x139, 0x41a: 0x13a, 0x41b: 0x13b, 0x41c: 0x13c, 0x41d: 0xba, 0x41e: 0xba, 0x41f: 0xba, -	0x420: 0xba, 0x421: 0xba, 0x422: 0x13d, 0x423: 0x13e, 0x424: 0xba, 0x425: 0xba, 0x426: 0xba, 0x427: 0xba, -	0x428: 0x13f, 0x429: 0x140, 0x42a: 0x141, 0x42b: 0x142, 0x42c: 0xba, 0x42d: 0xba, 0x42e: 0xba, 0x42f: 0xba, -	0x430: 0x143, 0x431: 0x144, 0x432: 0x145, 0x433: 0xba, 0x434: 0x146, 0x435: 0x147, 0x436: 0xba, 0x437: 0xba, -	0x438: 0xba, 0x439: 0xba, 0x43a: 0xba, 0x43b: 0xba, 0x43c: 0xba, 0x43d: 0xba, 0x43e: 0xba, 0x43f: 0xba, -	// Block 0x11, offset 0x440 -	0x440: 0x9f, 0x441: 0x9f, 0x442: 0x9f, 0x443: 0x9f, 0x444: 0x9f, 0x445: 0x9f, 0x446: 0x9f, 0x447: 0x9f, -	0x448: 0x9f, 0x449: 0x9f, 0x44a: 0x9f, 0x44b: 0x9f, 0x44c: 0x9f, 0x44d: 0x9f, 0x44e: 0x148, 0x44f: 0xba, -	0x450: 0x9b, 0x451: 0x149, 0x452: 0x9f, 0x453: 0x9f, 0x454: 0x9f, 0x455: 0x14a, 0x456: 0xba, 0x457: 0xba, -	0x458: 0xba, 0x459: 0xba, 0x45a: 0xba, 0x45b: 0xba, 0x45c: 0xba, 0x45d: 0xba, 0x45e: 0xba, 0x45f: 0xba, -	0x460: 0xba, 0x461: 0xba, 0x462: 0xba, 0x463: 0xba, 0x464: 0xba, 0x465: 0xba, 0x466: 0xba, 0x467: 0xba, -	0x468: 0xba, 0x469: 0xba, 0x46a: 0xba, 0x46b: 0xba, 0x46c: 0xba, 0x46d: 0xba, 0x46e: 0xba, 0x46f: 0xba, -	0x470: 0xba, 0x471: 0xba, 0x472: 0xba, 0x473: 0xba, 0x474: 0xba, 0x475: 0xba, 0x476: 0xba, 0x477: 0xba, -	0x478: 0xba, 0x479: 0xba, 0x47a: 0xba, 0x47b: 0xba, 0x47c: 0xba, 0x47d: 0xba, 0x47e: 0xba, 0x47f: 0xba, -	// Block 0x12, offset 0x480 -	0x480: 0x9f, 0x481: 0x9f, 0x482: 0x9f, 0x483: 0x9f, 0x484: 0x9f, 0x485: 0x9f, 0x486: 0x9f, 0x487: 0x9f, -	0x488: 0x9f, 0x489: 0x9f, 0x48a: 0x9f, 0x48b: 0x9f, 0x48c: 0x9f, 0x48d: 0x9f, 0x48e: 0x9f, 0x48f: 0x9f, -	0x490: 0x14b, 0x491: 0xba, 0x492: 0xba, 0x493: 0xba, 0x494: 0xba, 0x495: 0xba, 0x496: 0xba, 0x497: 0xba, -	0x498: 0xba, 0x499: 0xba, 0x49a: 0xba, 0x49b: 0xba, 0x49c: 0xba, 0x49d: 0xba, 0x49e: 0xba, 0x49f: 0xba, -	0x4a0: 0xba, 0x4a1: 0xba, 0x4a2: 0xba, 0x4a3: 0xba, 0x4a4: 0xba, 0x4a5: 0xba, 0x4a6: 0xba, 0x4a7: 0xba, -	0x4a8: 0xba, 0x4a9: 0xba, 0x4aa: 0xba, 0x4ab: 0xba, 0x4ac: 0xba, 0x4ad: 0xba, 0x4ae: 0xba, 0x4af: 0xba, -	0x4b0: 0xba, 0x4b1: 0xba, 0x4b2: 0xba, 0x4b3: 0xba, 0x4b4: 0xba, 0x4b5: 0xba, 0x4b6: 0xba, 0x4b7: 0xba, -	0x4b8: 0xba, 0x4b9: 0xba, 0x4ba: 0xba, 0x4bb: 0xba, 0x4bc: 0xba, 0x4bd: 0xba, 0x4be: 0xba, 0x4bf: 0xba, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0xba, 0x4c1: 0xba, 0x4c2: 0xba, 0x4c3: 0xba, 0x4c4: 0xba, 0x4c5: 0xba, 0x4c6: 0xba, 0x4c7: 0xba, -	0x4c8: 0xba, 0x4c9: 0xba, 0x4ca: 0xba, 0x4cb: 0xba, 0x4cc: 0xba, 0x4cd: 0xba, 0x4ce: 0xba, 0x4cf: 0xba, -	0x4d0: 0x9f, 0x4d1: 0x9f, 0x4d2: 0x9f, 0x4d3: 0x9f, 0x4d4: 0x9f, 0x4d5: 0x9f, 0x4d6: 0x9f, 0x4d7: 0x9f, -	0x4d8: 0x9f, 0x4d9: 0x14c, 0x4da: 0xba, 0x4db: 0xba, 0x4dc: 0xba, 0x4dd: 0xba, 0x4de: 0xba, 0x4df: 0xba, -	0x4e0: 0xba, 0x4e1: 0xba, 0x4e2: 0xba, 0x4e3: 0xba, 0x4e4: 0xba, 0x4e5: 0xba, 0x4e6: 0xba, 0x4e7: 0xba, -	0x4e8: 0xba, 0x4e9: 0xba, 0x4ea: 0xba, 0x4eb: 0xba, 0x4ec: 0xba, 0x4ed: 0xba, 0x4ee: 0xba, 0x4ef: 0xba, -	0x4f0: 0xba, 0x4f1: 0xba, 0x4f2: 0xba, 0x4f3: 0xba, 0x4f4: 0xba, 0x4f5: 0xba, 0x4f6: 0xba, 0x4f7: 0xba, -	0x4f8: 0xba, 0x4f9: 0xba, 0x4fa: 0xba, 0x4fb: 0xba, 0x4fc: 0xba, 0x4fd: 0xba, 0x4fe: 0xba, 0x4ff: 0xba, -	// Block 0x14, offset 0x500 -	0x500: 0xba, 0x501: 0xba, 0x502: 0xba, 0x503: 0xba, 0x504: 0xba, 0x505: 0xba, 0x506: 0xba, 0x507: 0xba, -	0x508: 0xba, 0x509: 0xba, 0x50a: 0xba, 0x50b: 0xba, 0x50c: 0xba, 0x50d: 0xba, 0x50e: 0xba, 0x50f: 0xba, -	0x510: 0xba, 0x511: 0xba, 0x512: 0xba, 0x513: 0xba, 0x514: 0xba, 0x515: 0xba, 0x516: 0xba, 0x517: 0xba, -	0x518: 0xba, 0x519: 0xba, 0x51a: 0xba, 0x51b: 0xba, 0x51c: 0xba, 0x51d: 0xba, 0x51e: 0xba, 0x51f: 0xba, -	0x520: 0x9f, 0x521: 0x9f, 0x522: 0x9f, 0x523: 0x9f, 0x524: 0x9f, 0x525: 0x9f, 0x526: 0x9f, 0x527: 0x9f, -	0x528: 0x142, 0x529: 0x14d, 0x52a: 0xba, 0x52b: 0x14e, 0x52c: 0x14f, 0x52d: 0x150, 0x52e: 0x151, 0x52f: 0xba, -	0x530: 0xba, 0x531: 0xba, 0x532: 0xba, 0x533: 0xba, 0x534: 0xba, 0x535: 0xba, 0x536: 0xba, 0x537: 0xba, -	0x538: 0xba, 0x539: 0xba, 0x53a: 0xba, 0x53b: 0xba, 0x53c: 0x9f, 0x53d: 0x152, 0x53e: 0x153, 0x53f: 0x154, -	// Block 0x15, offset 0x540 -	0x540: 0x9f, 0x541: 0x9f, 0x542: 0x9f, 0x543: 0x9f, 0x544: 0x9f, 0x545: 0x9f, 0x546: 0x9f, 0x547: 0x9f, -	0x548: 0x9f, 0x549: 0x9f, 0x54a: 0x9f, 0x54b: 0x9f, 0x54c: 0x9f, 0x54d: 0x9f, 0x54e: 0x9f, 0x54f: 0x9f, -	0x550: 0x9f, 0x551: 0x9f, 0x552: 0x9f, 0x553: 0x9f, 0x554: 0x9f, 0x555: 0x9f, 0x556: 0x9f, 0x557: 0x9f, -	0x558: 0x9f, 0x559: 0x9f, 0x55a: 0x9f, 0x55b: 0x9f, 0x55c: 0x9f, 0x55d: 0x9f, 0x55e: 0x9f, 0x55f: 0x155, -	0x560: 0x9f, 0x561: 0x9f, 0x562: 0x9f, 0x563: 0x9f, 0x564: 0x9f, 0x565: 0x9f, 0x566: 0x9f, 0x567: 0x9f, -	0x568: 0x9f, 0x569: 0x9f, 0x56a: 0x9f, 0x56b: 0x156, 0x56c: 0xba, 0x56d: 0xba, 0x56e: 0xba, 0x56f: 0xba, -	0x570: 0xba, 0x571: 0xba, 0x572: 0xba, 0x573: 0xba, 0x574: 0xba, 0x575: 0xba, 0x576: 0xba, 0x577: 0xba, -	0x578: 0xba, 0x579: 0xba, 0x57a: 0xba, 0x57b: 0xba, 0x57c: 0xba, 0x57d: 0xba, 0x57e: 0xba, 0x57f: 0xba, -	// Block 0x16, offset 0x580 -	0x580: 0x9f, 0x581: 0x9f, 0x582: 0x9f, 0x583: 0x9f, 0x584: 0x157, 0x585: 0x158, 0x586: 0x9f, 0x587: 0x9f, -	0x588: 0x9f, 0x589: 0x9f, 0x58a: 0x9f, 0x58b: 0x159, 0x58c: 0xba, 0x58d: 0xba, 0x58e: 0xba, 0x58f: 0xba, -	0x590: 0xba, 0x591: 0xba, 0x592: 0xba, 0x593: 0xba, 0x594: 0xba, 0x595: 0xba, 0x596: 0xba, 0x597: 0xba, -	0x598: 0xba, 0x599: 0xba, 0x59a: 0xba, 0x59b: 0xba, 0x59c: 0xba, 0x59d: 0xba, 0x59e: 0xba, 0x59f: 0xba, -	0x5a0: 0xba, 0x5a1: 0xba, 0x5a2: 0xba, 0x5a3: 0xba, 0x5a4: 0xba, 0x5a5: 0xba, 0x5a6: 0xba, 0x5a7: 0xba, -	0x5a8: 0xba, 0x5a9: 0xba, 0x5aa: 0xba, 0x5ab: 0xba, 0x5ac: 0xba, 0x5ad: 0xba, 0x5ae: 0xba, 0x5af: 0xba, -	0x5b0: 0x9f, 0x5b1: 0x15a, 0x5b2: 0x15b, 0x5b3: 0xba, 0x5b4: 0xba, 0x5b5: 0xba, 0x5b6: 0xba, 0x5b7: 0xba, -	0x5b8: 0xba, 0x5b9: 0xba, 0x5ba: 0xba, 0x5bb: 0xba, 0x5bc: 0xba, 0x5bd: 0xba, 0x5be: 0xba, 0x5bf: 0xba, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x9b, 0x5c1: 0x9b, 0x5c2: 0x9b, 0x5c3: 0x15c, 0x5c4: 0x15d, 0x5c5: 0x15e, 0x5c6: 0x15f, 0x5c7: 0x160, -	0x5c8: 0x9b, 0x5c9: 0x161, 0x5ca: 0xba, 0x5cb: 0xba, 0x5cc: 0x9b, 0x5cd: 0x162, 0x5ce: 0xba, 0x5cf: 0xba, -	0x5d0: 0x5f, 0x5d1: 0x60, 0x5d2: 0x61, 0x5d3: 0x62, 0x5d4: 0x63, 0x5d5: 0x64, 0x5d6: 0x65, 0x5d7: 0x66, -	0x5d8: 0x67, 0x5d9: 0x68, 0x5da: 0x69, 0x5db: 0x6a, 0x5dc: 0x6b, 0x5dd: 0x6c, 0x5de: 0x6d, 0x5df: 0x6e, -	0x5e0: 0x9b, 0x5e1: 0x9b, 0x5e2: 0x9b, 0x5e3: 0x9b, 0x5e4: 0x9b, 0x5e5: 0x9b, 0x5e6: 0x9b, 0x5e7: 0x9b, -	0x5e8: 0x163, 0x5e9: 0x164, 0x5ea: 0x165, 0x5eb: 0xba, 0x5ec: 0xba, 0x5ed: 0xba, 0x5ee: 0xba, 0x5ef: 0xba, -	0x5f0: 0xba, 0x5f1: 0xba, 0x5f2: 0xba, 0x5f3: 0xba, 0x5f4: 0xba, 0x5f5: 0xba, 0x5f6: 0xba, 0x5f7: 0xba, -	0x5f8: 0xba, 0x5f9: 0xba, 0x5fa: 0xba, 0x5fb: 0xba, 0x5fc: 0xba, 0x5fd: 0xba, 0x5fe: 0xba, 0x5ff: 0xba, -	// Block 0x18, offset 0x600 -	0x600: 0x166, 0x601: 0xba, 0x602: 0xba, 0x603: 0xba, 0x604: 0xba, 0x605: 0xba, 0x606: 0xba, 0x607: 0xba, -	0x608: 0xba, 0x609: 0xba, 0x60a: 0xba, 0x60b: 0xba, 0x60c: 0xba, 0x60d: 0xba, 0x60e: 0xba, 0x60f: 0xba, -	0x610: 0xba, 0x611: 0xba, 0x612: 0xba, 0x613: 0xba, 0x614: 0xba, 0x615: 0xba, 0x616: 0xba, 0x617: 0xba, -	0x618: 0xba, 0x619: 0xba, 0x61a: 0xba, 0x61b: 0xba, 0x61c: 0xba, 0x61d: 0xba, 0x61e: 0xba, 0x61f: 0xba, -	0x620: 0x122, 0x621: 0x122, 0x622: 0x122, 0x623: 0x167, 0x624: 0x6f, 0x625: 0x168, 0x626: 0xba, 0x627: 0xba, -	0x628: 0xba, 0x629: 0xba, 0x62a: 0xba, 0x62b: 0xba, 0x62c: 0xba, 0x62d: 0xba, 0x62e: 0xba, 0x62f: 0xba, -	0x630: 0xba, 0x631: 0xba, 0x632: 0xba, 0x633: 0xba, 0x634: 0xba, 0x635: 0xba, 0x636: 0xba, 0x637: 0xba, -	0x638: 0x70, 0x639: 0x71, 0x63a: 0x72, 0x63b: 0x169, 0x63c: 0xba, 0x63d: 0xba, 0x63e: 0xba, 0x63f: 0xba, -	// Block 0x19, offset 0x640 -	0x640: 0x16a, 0x641: 0x9b, 0x642: 0x16b, 0x643: 0x16c, 0x644: 0x73, 0x645: 0x74, 0x646: 0x16d, 0x647: 0x16e, -	0x648: 0x75, 0x649: 0x16f, 0x64a: 0xba, 0x64b: 0xba, 0x64c: 0x9b, 0x64d: 0x9b, 0x64e: 0x9b, 0x64f: 0x9b, -	0x650: 0x9b, 0x651: 0x9b, 0x652: 0x9b, 0x653: 0x9b, 0x654: 0x9b, 0x655: 0x9b, 0x656: 0x9b, 0x657: 0x9b, -	0x658: 0x9b, 0x659: 0x9b, 0x65a: 0x9b, 0x65b: 0x170, 0x65c: 0x9b, 0x65d: 0x171, 0x65e: 0x9b, 0x65f: 0x172, -	0x660: 0x173, 0x661: 0x174, 0x662: 0x175, 0x663: 0xba, 0x664: 0x176, 0x665: 0x177, 0x666: 0x178, 0x667: 0x179, -	0x668: 0xba, 0x669: 0xba, 0x66a: 0xba, 0x66b: 0xba, 0x66c: 0xba, 0x66d: 0xba, 0x66e: 0xba, 0x66f: 0xba, -	0x670: 0xba, 0x671: 0xba, 0x672: 0xba, 0x673: 0xba, 0x674: 0xba, 0x675: 0xba, 0x676: 0xba, 0x677: 0xba, -	0x678: 0xba, 0x679: 0xba, 0x67a: 0xba, 0x67b: 0xba, 0x67c: 0xba, 0x67d: 0xba, 0x67e: 0xba, 0x67f: 0xba, -	// Block 0x1a, offset 0x680 -	0x680: 0x9f, 0x681: 0x9f, 0x682: 0x9f, 0x683: 0x9f, 0x684: 0x9f, 0x685: 0x9f, 0x686: 0x9f, 0x687: 0x9f, -	0x688: 0x9f, 0x689: 0x9f, 0x68a: 0x9f, 0x68b: 0x9f, 0x68c: 0x9f, 0x68d: 0x9f, 0x68e: 0x9f, 0x68f: 0x9f, -	0x690: 0x9f, 0x691: 0x9f, 0x692: 0x9f, 0x693: 0x9f, 0x694: 0x9f, 0x695: 0x9f, 0x696: 0x9f, 0x697: 0x9f, -	0x698: 0x9f, 0x699: 0x9f, 0x69a: 0x9f, 0x69b: 0x17a, 0x69c: 0x9f, 0x69d: 0x9f, 0x69e: 0x9f, 0x69f: 0x9f, -	0x6a0: 0x9f, 0x6a1: 0x9f, 0x6a2: 0x9f, 0x6a3: 0x9f, 0x6a4: 0x9f, 0x6a5: 0x9f, 0x6a6: 0x9f, 0x6a7: 0x9f, -	0x6a8: 0x9f, 0x6a9: 0x9f, 0x6aa: 0x9f, 0x6ab: 0x9f, 0x6ac: 0x9f, 0x6ad: 0x9f, 0x6ae: 0x9f, 0x6af: 0x9f, -	0x6b0: 0x9f, 0x6b1: 0x9f, 0x6b2: 0x9f, 0x6b3: 0x9f, 0x6b4: 0x9f, 0x6b5: 0x9f, 0x6b6: 0x9f, 0x6b7: 0x9f, -	0x6b8: 0x9f, 0x6b9: 0x9f, 0x6ba: 0x9f, 0x6bb: 0x9f, 0x6bc: 0x9f, 0x6bd: 0x9f, 0x6be: 0x9f, 0x6bf: 0x9f, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x9f, 0x6c1: 0x9f, 0x6c2: 0x9f, 0x6c3: 0x9f, 0x6c4: 0x9f, 0x6c5: 0x9f, 0x6c6: 0x9f, 0x6c7: 0x9f, -	0x6c8: 0x9f, 0x6c9: 0x9f, 0x6ca: 0x9f, 0x6cb: 0x9f, 0x6cc: 0x9f, 0x6cd: 0x9f, 0x6ce: 0x9f, 0x6cf: 0x9f, -	0x6d0: 0x9f, 0x6d1: 0x9f, 0x6d2: 0x9f, 0x6d3: 0x9f, 0x6d4: 0x9f, 0x6d5: 0x9f, 0x6d6: 0x9f, 0x6d7: 0x9f, -	0x6d8: 0x9f, 0x6d9: 0x9f, 0x6da: 0x9f, 0x6db: 0x9f, 0x6dc: 0x17b, 0x6dd: 0x9f, 0x6de: 0x9f, 0x6df: 0x9f, -	0x6e0: 0x17c, 0x6e1: 0x9f, 0x6e2: 0x9f, 0x6e3: 0x9f, 0x6e4: 0x9f, 0x6e5: 0x9f, 0x6e6: 0x9f, 0x6e7: 0x9f, -	0x6e8: 0x9f, 0x6e9: 0x9f, 0x6ea: 0x9f, 0x6eb: 0x9f, 0x6ec: 0x9f, 0x6ed: 0x9f, 0x6ee: 0x9f, 0x6ef: 0x9f, -	0x6f0: 0x9f, 0x6f1: 0x9f, 0x6f2: 0x9f, 0x6f3: 0x9f, 0x6f4: 0x9f, 0x6f5: 0x9f, 0x6f6: 0x9f, 0x6f7: 0x9f, -	0x6f8: 0x9f, 0x6f9: 0x9f, 0x6fa: 0x9f, 0x6fb: 0x9f, 0x6fc: 0x9f, 0x6fd: 0x9f, 0x6fe: 0x9f, 0x6ff: 0x9f, -	// Block 0x1c, offset 0x700 -	0x700: 0x9f, 0x701: 0x9f, 0x702: 0x9f, 0x703: 0x9f, 0x704: 0x9f, 0x705: 0x9f, 0x706: 0x9f, 0x707: 0x9f, -	0x708: 0x9f, 0x709: 0x9f, 0x70a: 0x9f, 0x70b: 0x9f, 0x70c: 0x9f, 0x70d: 0x9f, 0x70e: 0x9f, 0x70f: 0x9f, -	0x710: 0x9f, 0x711: 0x9f, 0x712: 0x9f, 0x713: 0x9f, 0x714: 0x9f, 0x715: 0x9f, 0x716: 0x9f, 0x717: 0x9f, -	0x718: 0x9f, 0x719: 0x9f, 0x71a: 0x9f, 0x71b: 0x9f, 0x71c: 0x9f, 0x71d: 0x9f, 0x71e: 0x9f, 0x71f: 0x9f, -	0x720: 0x9f, 0x721: 0x9f, 0x722: 0x9f, 0x723: 0x9f, 0x724: 0x9f, 0x725: 0x9f, 0x726: 0x9f, 0x727: 0x9f, -	0x728: 0x9f, 0x729: 0x9f, 0x72a: 0x9f, 0x72b: 0x9f, 0x72c: 0x9f, 0x72d: 0x9f, 0x72e: 0x9f, 0x72f: 0x9f, -	0x730: 0x9f, 0x731: 0x9f, 0x732: 0x9f, 0x733: 0x9f, 0x734: 0x9f, 0x735: 0x9f, 0x736: 0x9f, 0x737: 0x9f, -	0x738: 0x9f, 0x739: 0x9f, 0x73a: 0x17d, 0x73b: 0x9f, 0x73c: 0x9f, 0x73d: 0x9f, 0x73e: 0x9f, 0x73f: 0x9f, -	// Block 0x1d, offset 0x740 -	0x740: 0x9f, 0x741: 0x9f, 0x742: 0x9f, 0x743: 0x9f, 0x744: 0x9f, 0x745: 0x9f, 0x746: 0x9f, 0x747: 0x9f, -	0x748: 0x9f, 0x749: 0x9f, 0x74a: 0x9f, 0x74b: 0x9f, 0x74c: 0x9f, 0x74d: 0x9f, 0x74e: 0x9f, 0x74f: 0x9f, -	0x750: 0x9f, 0x751: 0x9f, 0x752: 0x9f, 0x753: 0x9f, 0x754: 0x9f, 0x755: 0x9f, 0x756: 0x9f, 0x757: 0x9f, -	0x758: 0x9f, 0x759: 0x9f, 0x75a: 0x9f, 0x75b: 0x9f, 0x75c: 0x9f, 0x75d: 0x9f, 0x75e: 0x9f, 0x75f: 0x9f, -	0x760: 0x9f, 0x761: 0x9f, 0x762: 0x9f, 0x763: 0x9f, 0x764: 0x9f, 0x765: 0x9f, 0x766: 0x9f, 0x767: 0x9f, -	0x768: 0x9f, 0x769: 0x9f, 0x76a: 0x9f, 0x76b: 0x9f, 0x76c: 0x9f, 0x76d: 0x9f, 0x76e: 0x9f, 0x76f: 0x17e, -	0x770: 0xba, 0x771: 0xba, 0x772: 0xba, 0x773: 0xba, 0x774: 0xba, 0x775: 0xba, 0x776: 0xba, 0x777: 0xba, -	0x778: 0xba, 0x779: 0xba, 0x77a: 0xba, 0x77b: 0xba, 0x77c: 0xba, 0x77d: 0xba, 0x77e: 0xba, 0x77f: 0xba, -	// Block 0x1e, offset 0x780 -	0x780: 0xba, 0x781: 0xba, 0x782: 0xba, 0x783: 0xba, 0x784: 0xba, 0x785: 0xba, 0x786: 0xba, 0x787: 0xba, -	0x788: 0xba, 0x789: 0xba, 0x78a: 0xba, 0x78b: 0xba, 0x78c: 0xba, 0x78d: 0xba, 0x78e: 0xba, 0x78f: 0xba, -	0x790: 0xba, 0x791: 0xba, 0x792: 0xba, 0x793: 0xba, 0x794: 0xba, 0x795: 0xba, 0x796: 0xba, 0x797: 0xba, -	0x798: 0xba, 0x799: 0xba, 0x79a: 0xba, 0x79b: 0xba, 0x79c: 0xba, 0x79d: 0xba, 0x79e: 0xba, 0x79f: 0xba, -	0x7a0: 0x76, 0x7a1: 0x77, 0x7a2: 0x78, 0x7a3: 0x17f, 0x7a4: 0x79, 0x7a5: 0x7a, 0x7a6: 0x180, 0x7a7: 0x7b, -	0x7a8: 0x7c, 0x7a9: 0xba, 0x7aa: 0xba, 0x7ab: 0xba, 0x7ac: 0xba, 0x7ad: 0xba, 0x7ae: 0xba, 0x7af: 0xba, -	0x7b0: 0xba, 0x7b1: 0xba, 0x7b2: 0xba, 0x7b3: 0xba, 0x7b4: 0xba, 0x7b5: 0xba, 0x7b6: 0xba, 0x7b7: 0xba, -	0x7b8: 0xba, 0x7b9: 0xba, 0x7ba: 0xba, 0x7bb: 0xba, 0x7bc: 0xba, 0x7bd: 0xba, 0x7be: 0xba, 0x7bf: 0xba, -	// Block 0x1f, offset 0x7c0 -	0x7d0: 0x0d, 0x7d1: 0x0e, 0x7d2: 0x0f, 0x7d3: 0x10, 0x7d4: 0x11, 0x7d5: 0x0b, 0x7d6: 0x12, 0x7d7: 0x07, -	0x7d8: 0x13, 0x7d9: 0x0b, 0x7da: 0x0b, 0x7db: 0x14, 0x7dc: 0x0b, 0x7dd: 0x15, 0x7de: 0x16, 0x7df: 0x17, -	0x7e0: 0x07, 0x7e1: 0x07, 0x7e2: 0x07, 0x7e3: 0x07, 0x7e4: 0x07, 0x7e5: 0x07, 0x7e6: 0x07, 0x7e7: 0x07, -	0x7e8: 0x07, 0x7e9: 0x07, 0x7ea: 0x18, 0x7eb: 0x19, 0x7ec: 0x1a, 0x7ed: 0x07, 0x7ee: 0x1b, 0x7ef: 0x1c, -	0x7f0: 0x0b, 0x7f1: 0x0b, 0x7f2: 0x0b, 0x7f3: 0x0b, 0x7f4: 0x0b, 0x7f5: 0x0b, 0x7f6: 0x0b, 0x7f7: 0x0b, -	0x7f8: 0x0b, 0x7f9: 0x0b, 0x7fa: 0x0b, 0x7fb: 0x0b, 0x7fc: 0x0b, 0x7fd: 0x0b, 0x7fe: 0x0b, 0x7ff: 0x0b, -	// Block 0x20, offset 0x800 -	0x800: 0x0b, 0x801: 0x0b, 0x802: 0x0b, 0x803: 0x0b, 0x804: 0x0b, 0x805: 0x0b, 0x806: 0x0b, 0x807: 0x0b, -	0x808: 0x0b, 0x809: 0x0b, 0x80a: 0x0b, 0x80b: 0x0b, 0x80c: 0x0b, 0x80d: 0x0b, 0x80e: 0x0b, 0x80f: 0x0b, -	0x810: 0x0b, 0x811: 0x0b, 0x812: 0x0b, 0x813: 0x0b, 0x814: 0x0b, 0x815: 0x0b, 0x816: 0x0b, 0x817: 0x0b, -	0x818: 0x0b, 0x819: 0x0b, 0x81a: 0x0b, 0x81b: 0x0b, 0x81c: 0x0b, 0x81d: 0x0b, 0x81e: 0x0b, 0x81f: 0x0b, -	0x820: 0x0b, 0x821: 0x0b, 0x822: 0x0b, 0x823: 0x0b, 0x824: 0x0b, 0x825: 0x0b, 0x826: 0x0b, 0x827: 0x0b, -	0x828: 0x0b, 0x829: 0x0b, 0x82a: 0x0b, 0x82b: 0x0b, 0x82c: 0x0b, 0x82d: 0x0b, 0x82e: 0x0b, 0x82f: 0x0b, -	0x830: 0x0b, 0x831: 0x0b, 0x832: 0x0b, 0x833: 0x0b, 0x834: 0x0b, 0x835: 0x0b, 0x836: 0x0b, 0x837: 0x0b, -	0x838: 0x0b, 0x839: 0x0b, 0x83a: 0x0b, 0x83b: 0x0b, 0x83c: 0x0b, 0x83d: 0x0b, 0x83e: 0x0b, 0x83f: 0x0b, -	// Block 0x21, offset 0x840 -	0x840: 0x181, 0x841: 0x182, 0x842: 0xba, 0x843: 0xba, 0x844: 0x183, 0x845: 0x183, 0x846: 0x183, 0x847: 0x184, -	0x848: 0xba, 0x849: 0xba, 0x84a: 0xba, 0x84b: 0xba, 0x84c: 0xba, 0x84d: 0xba, 0x84e: 0xba, 0x84f: 0xba, -	0x850: 0xba, 0x851: 0xba, 0x852: 0xba, 0x853: 0xba, 0x854: 0xba, 0x855: 0xba, 0x856: 0xba, 0x857: 0xba, -	0x858: 0xba, 0x859: 0xba, 0x85a: 0xba, 0x85b: 0xba, 0x85c: 0xba, 0x85d: 0xba, 0x85e: 0xba, 0x85f: 0xba, -	0x860: 0xba, 0x861: 0xba, 0x862: 0xba, 0x863: 0xba, 0x864: 0xba, 0x865: 0xba, 0x866: 0xba, 0x867: 0xba, -	0x868: 0xba, 0x869: 0xba, 0x86a: 0xba, 0x86b: 0xba, 0x86c: 0xba, 0x86d: 0xba, 0x86e: 0xba, 0x86f: 0xba, -	0x870: 0xba, 0x871: 0xba, 0x872: 0xba, 0x873: 0xba, 0x874: 0xba, 0x875: 0xba, 0x876: 0xba, 0x877: 0xba, -	0x878: 0xba, 0x879: 0xba, 0x87a: 0xba, 0x87b: 0xba, 0x87c: 0xba, 0x87d: 0xba, 0x87e: 0xba, 0x87f: 0xba, -	// Block 0x22, offset 0x880 -	0x880: 0x0b, 0x881: 0x0b, 0x882: 0x0b, 0x883: 0x0b, 0x884: 0x0b, 0x885: 0x0b, 0x886: 0x0b, 0x887: 0x0b, -	0x888: 0x0b, 0x889: 0x0b, 0x88a: 0x0b, 0x88b: 0x0b, 0x88c: 0x0b, 0x88d: 0x0b, 0x88e: 0x0b, 0x88f: 0x0b, -	0x890: 0x0b, 0x891: 0x0b, 0x892: 0x0b, 0x893: 0x0b, 0x894: 0x0b, 0x895: 0x0b, 0x896: 0x0b, 0x897: 0x0b, -	0x898: 0x0b, 0x899: 0x0b, 0x89a: 0x0b, 0x89b: 0x0b, 0x89c: 0x0b, 0x89d: 0x0b, 0x89e: 0x0b, 0x89f: 0x0b, -	0x8a0: 0x1f, 0x8a1: 0x0b, 0x8a2: 0x0b, 0x8a3: 0x0b, 0x8a4: 0x0b, 0x8a5: 0x0b, 0x8a6: 0x0b, 0x8a7: 0x0b, -	0x8a8: 0x0b, 0x8a9: 0x0b, 0x8aa: 0x0b, 0x8ab: 0x0b, 0x8ac: 0x0b, 0x8ad: 0x0b, 0x8ae: 0x0b, 0x8af: 0x0b, -	0x8b0: 0x0b, 0x8b1: 0x0b, 0x8b2: 0x0b, 0x8b3: 0x0b, 0x8b4: 0x0b, 0x8b5: 0x0b, 0x8b6: 0x0b, 0x8b7: 0x0b, -	0x8b8: 0x0b, 0x8b9: 0x0b, 0x8ba: 0x0b, 0x8bb: 0x0b, 0x8bc: 0x0b, 0x8bd: 0x0b, 0x8be: 0x0b, 0x8bf: 0x0b, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0b, 0x8c1: 0x0b, 0x8c2: 0x0b, 0x8c3: 0x0b, 0x8c4: 0x0b, 0x8c5: 0x0b, 0x8c6: 0x0b, 0x8c7: 0x0b, -	0x8c8: 0x0b, 0x8c9: 0x0b, 0x8ca: 0x0b, 0x8cb: 0x0b, 0x8cc: 0x0b, 0x8cd: 0x0b, 0x8ce: 0x0b, 0x8cf: 0x0b, -} - -// idnaSparseOffset: 264 entries, 528 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x34, 0x3f, 0x4b, 0x4f, 0x5e, 0x63, 0x6b, 0x77, 0x85, 0x8a, 0x93, 0xa3, 0xb1, 0xbd, 0xc9, 0xda, 0xe4, 0xeb, 0xf8, 0x109, 0x110, 0x11b, 0x12a, 0x138, 0x142, 0x144, 0x149, 0x14c, 0x14f, 0x151, 0x15d, 0x168, 0x170, 0x176, 0x17c, 0x181, 0x186, 0x189, 0x18d, 0x193, 0x198, 0x1a4, 0x1ae, 0x1b4, 0x1c5, 0x1cf, 0x1d2, 0x1da, 0x1dd, 0x1ea, 0x1f2, 0x1f6, 0x1fd, 0x205, 0x215, 0x221, 0x223, 0x22d, 0x239, 0x245, 0x251, 0x259, 0x25e, 0x268, 0x279, 0x27d, 0x288, 0x28c, 0x295, 0x29d, 0x2a3, 0x2a8, 0x2ab, 0x2af, 0x2b5, 0x2b9, 0x2bd, 0x2c3, 0x2ca, 0x2d0, 0x2d8, 0x2df, 0x2ea, 0x2f4, 0x2f8, 0x2fb, 0x301, 0x305, 0x307, 0x30a, 0x30c, 0x30f, 0x319, 0x31c, 0x32b, 0x32f, 0x334, 0x337, 0x33b, 0x340, 0x345, 0x34b, 0x351, 0x360, 0x366, 0x36a, 0x379, 0x37e, 0x386, 0x390, 0x39b, 0x3a3, 0x3b4, 0x3bd, 0x3cd, 0x3da, 0x3e4, 0x3e9, 0x3f6, 0x3fa, 0x3ff, 0x401, 0x405, 0x407, 0x40b, 0x414, 0x41a, 0x41e, 0x42e, 0x438, 0x43d, 0x440, 0x446, 0x44d, 0x452, 0x456, 0x45c, 0x461, 0x46a, 0x46f, 0x475, 0x47c, 0x483, 0x48a, 0x48e, 0x493, 0x496, 0x49b, 0x4a7, 0x4ad, 0x4b2, 0x4b9, 0x4c1, 0x4c6, 0x4ca, 0x4da, 0x4e1, 0x4e5, 0x4e9, 0x4f0, 0x4f2, 0x4f5, 0x4f8, 0x4fc, 0x500, 0x506, 0x50f, 0x51b, 0x522, 0x52b, 0x533, 0x53a, 0x548, 0x555, 0x562, 0x56b, 0x56f, 0x57d, 0x585, 0x590, 0x599, 0x59f, 0x5a7, 0x5b0, 0x5ba, 0x5bd, 0x5c9, 0x5cc, 0x5d1, 0x5de, 0x5e7, 0x5f3, 0x5f6, 0x600, 0x609, 0x615, 0x622, 0x62a, 0x62d, 0x632, 0x635, 0x638, 0x63b, 0x642, 0x649, 0x64d, 0x658, 0x65b, 0x661, 0x666, 0x66a, 0x66d, 0x670, 0x673, 0x676, 0x679, 0x67e, 0x688, 0x68b, 0x68f, 0x69e, 0x6aa, 0x6ae, 0x6b3, 0x6b8, 0x6bc, 0x6c1, 0x6ca, 0x6d5, 0x6db, 0x6e3, 0x6e7, 0x6eb, 0x6f1, 0x6f7, 0x6fc, 0x6ff, 0x70f, 0x716, 0x719, 0x71c, 0x720, 0x726, 0x72b, 0x730, 0x735, 0x738, 0x73d, 0x740, 0x743, 0x747, 0x74b, 0x74e, 0x75e, 0x76f, 0x774, 0x776, 0x778} - -// idnaSparseValues: 1915 entries, 7660 bytes -var idnaSparseValues = [1915]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0249, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x0259, lo: 0xb2, hi: 0xb2}, -	{value: 0x0269, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x0279, lo: 0xb7, hi: 0xb7}, -	{value: 0x0289, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x07}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x6, offset 0x34 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0401, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4f -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x63 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0xc, offset 0x6b -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x77 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0a08, lo: 0xa0, hi: 0xa9}, -	{value: 0x0c08, lo: 0xaa, hi: 0xac}, -	{value: 0x0808, lo: 0xad, hi: 0xad}, -	{value: 0x0c08, lo: 0xae, hi: 0xae}, -	{value: 0x0a08, lo: 0xaf, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb2}, -	{value: 0x0a08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xe, offset 0x85 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0xf, offset 0x8a -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x10, offset 0x93 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x11, offset 0xa3 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x12, offset 0xb1 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x3b08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbd -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x14, offset 0xc9 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x15, offset 0xda -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x08f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x16, offset 0xe4 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x17, offset 0xeb -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0961, lo: 0x9c, hi: 0x9c}, -	{value: 0x0999, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x18, offset 0xf8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x19, offset 0x109 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x1a, offset 0x110 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1b, offset 0x11b -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1c, offset 0x12a -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1d, offset 0x138 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1e, offset 0x142 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x1f, offset 0x144 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x20, offset 0x149 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x21, offset 0x14c -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x22, offset 0x14f -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x23, offset 0x151 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x24, offset 0x15d -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x25, offset 0x168 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x26, offset 0x170 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x27, offset 0x176 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x28, offset 0x17c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x29, offset 0x181 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x2a, offset 0x186 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2b, offset 0x189 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2c, offset 0x18d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2d, offset 0x193 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2e, offset 0x198 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x2f, offset 0x1a4 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x30, offset 0x1ae -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x31, offset 0x1b4 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x32, offset 0x1c5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x33, offset 0x1cf -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x34, offset 0x1d2 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x35, offset 0x1da -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x36, offset 0x1dd -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x37, offset 0x1ea -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x38, offset 0x1f2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x39, offset 0x1f6 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x3a, offset 0x1fd -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3b, offset 0x205 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3c, offset 0x215 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x3d, offset 0x221 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x3e, offset 0x223 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x3f, offset 0x22d -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x40, offset 0x239 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x41, offset 0x245 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x42, offset 0x251 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x43, offset 0x259 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x44, offset 0x25e -	{value: 0x0000, lo: 0x09}, -	{value: 0x0e29, lo: 0x80, hi: 0x80}, -	{value: 0x0e41, lo: 0x81, hi: 0x81}, -	{value: 0x0e59, lo: 0x82, hi: 0x82}, -	{value: 0x0e71, lo: 0x83, hi: 0x83}, -	{value: 0x0e89, lo: 0x84, hi: 0x85}, -	{value: 0x0ea1, lo: 0x86, hi: 0x86}, -	{value: 0x0eb9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0x45, offset 0x268 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x46, offset 0x279 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x47, offset 0x27d -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x48, offset 0x288 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x49, offset 0x28c -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x24c1, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x4a, offset 0x295 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x24f1, lo: 0xac, hi: 0xac}, -	{value: 0x2529, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x2579, lo: 0xaf, hi: 0xaf}, -	{value: 0x25b1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x4b, offset 0x29d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4c, offset 0x2a3 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09c5, lo: 0xa9, hi: 0xa9}, -	{value: 0x09e5, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4d, offset 0x2a8 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x4e, offset 0x2ab -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x28c1, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x4f, offset 0x2af -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e66, lo: 0xb4, hi: 0xb4}, -	{value: 0x292a, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e86, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x50, offset 0x2b5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x2941, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x51, offset 0x2b9 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x52, offset 0x2bd -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0018, lo: 0xbd, hi: 0xbf}, -	// Block 0x53, offset 0x2c3 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0xab}, -	{value: 0x0018, lo: 0xac, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x54, offset 0x2ca -	{value: 0x0000, lo: 0x05}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ea5, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x55, offset 0x2d0 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x56, offset 0x2d8 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x57, offset 0x2df -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x58, offset 0x2ea -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x59, offset 0x2f4 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x5a, offset 0x2f8 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0x5b, offset 0x2fb -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0edd, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x5c, offset 0x301 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0efd, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5d, offset 0x305 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f1d, lo: 0x80, hi: 0xbf}, -	// Block 0x5e, offset 0x307 -	{value: 0x0020, lo: 0x02}, -	{value: 0x171d, lo: 0x80, hi: 0x8f}, -	{value: 0x18fd, lo: 0x90, hi: 0xbf}, -	// Block 0x5f, offset 0x30a -	{value: 0x0020, lo: 0x01}, -	{value: 0x1efd, lo: 0x80, hi: 0xbf}, -	// Block 0x60, offset 0x30c -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x61, offset 0x30f -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x29e2, lo: 0x9b, hi: 0x9b}, -	{value: 0x2a0a, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x2a31, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x62, offset 0x319 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x2a69, lo: 0xbf, hi: 0xbf}, -	// Block 0x63, offset 0x31c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x2a1d, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a3d, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a5d, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a7d, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a5d, lo: 0xb5, hi: 0xb5}, -	{value: 0x2a9d, lo: 0xb6, hi: 0xb6}, -	{value: 0x2abd, lo: 0xb7, hi: 0xb7}, -	{value: 0x2add, lo: 0xb8, hi: 0xb9}, -	{value: 0x2afd, lo: 0xba, hi: 0xbb}, -	{value: 0x2b1d, lo: 0xbc, hi: 0xbd}, -	{value: 0x2afd, lo: 0xbe, hi: 0xbf}, -	// Block 0x64, offset 0x32b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x65, offset 0x32f -	{value: 0x0030, lo: 0x04}, -	{value: 0x2aa2, lo: 0x80, hi: 0x9d}, -	{value: 0x305a, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x30a2, lo: 0xa0, hi: 0xbf}, -	// Block 0x66, offset 0x334 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0x67, offset 0x337 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x68, offset 0x33b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x69, offset 0x340 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x6a, offset 0x345 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6b, offset 0x34b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xb7}, -	{value: 0x2009, lo: 0xb8, hi: 0xb8}, -	{value: 0x6e89, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xbf}, -	// Block 0x6c, offset 0x351 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6d, offset 0x360 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6e, offset 0x366 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x6f, offset 0x36a -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x70, offset 0x379 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x71, offset 0x37e -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x72, offset 0x386 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x73, offset 0x390 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x74, offset 0x39b -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x75, offset 0x3a3 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x76, offset 0x3b4 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x77, offset 0x3bd -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x78, offset 0x3cd -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x79, offset 0x3da -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x4465, lo: 0x9c, hi: 0x9c}, -	{value: 0x447d, lo: 0x9d, hi: 0x9d}, -	{value: 0x2971, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xaf}, -	{value: 0x4495, lo: 0xb0, hi: 0xbf}, -	// Block 0x7a, offset 0x3e4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44b5, lo: 0x80, hi: 0x8f}, -	{value: 0x44d5, lo: 0x90, hi: 0x9f}, -	{value: 0x44f5, lo: 0xa0, hi: 0xaf}, -	{value: 0x44d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x7b, offset 0x3e9 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x7c, offset 0x3f6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7d, offset 0x3fa -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x7e, offset 0x3ff -	{value: 0x0020, lo: 0x01}, -	{value: 0x4515, lo: 0x80, hi: 0xbf}, -	// Block 0x7f, offset 0x401 -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d15, lo: 0x80, hi: 0x94}, -	{value: 0x4ad5, lo: 0x95, hi: 0x95}, -	{value: 0x4fb5, lo: 0x96, hi: 0xbf}, -	// Block 0x80, offset 0x405 -	{value: 0x0020, lo: 0x01}, -	{value: 0x54f5, lo: 0x80, hi: 0xbf}, -	// Block 0x81, offset 0x407 -	{value: 0x0020, lo: 0x03}, -	{value: 0x5cf5, lo: 0x80, hi: 0x84}, -	{value: 0x5655, lo: 0x85, hi: 0x85}, -	{value: 0x5d95, lo: 0x86, hi: 0xbf}, -	// Block 0x82, offset 0x40b -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b55, lo: 0x80, hi: 0x8f}, -	{value: 0x6d15, lo: 0x90, hi: 0x90}, -	{value: 0x6d55, lo: 0x91, hi: 0xab}, -	{value: 0x6ea1, lo: 0xac, hi: 0xac}, -	{value: 0x70b5, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x70d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x83, offset 0x414 -	{value: 0x0020, lo: 0x05}, -	{value: 0x72d5, lo: 0x80, hi: 0xad}, -	{value: 0x6535, lo: 0xae, hi: 0xae}, -	{value: 0x7895, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f55, lo: 0xb6, hi: 0xb6}, -	{value: 0x7975, lo: 0xb7, hi: 0xbf}, -	// Block 0x84, offset 0x41a -	{value: 0x0028, lo: 0x03}, -	{value: 0x7c21, lo: 0x80, hi: 0x82}, -	{value: 0x7be1, lo: 0x83, hi: 0x83}, -	{value: 0x7c99, lo: 0x84, hi: 0xbf}, -	// Block 0x85, offset 0x41e -	{value: 0x0038, lo: 0x0f}, -	{value: 0x9db1, lo: 0x80, hi: 0x83}, -	{value: 0x9e59, lo: 0x84, hi: 0x85}, -	{value: 0x9e91, lo: 0x86, hi: 0x87}, -	{value: 0x9ec9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0xa089, lo: 0x92, hi: 0x97}, -	{value: 0xa1a1, lo: 0x98, hi: 0x9c}, -	{value: 0xa281, lo: 0x9d, hi: 0xb3}, -	{value: 0x9d41, lo: 0xb4, hi: 0xb4}, -	{value: 0x9db1, lo: 0xb5, hi: 0xb5}, -	{value: 0xa789, lo: 0xb6, hi: 0xbb}, -	{value: 0xa869, lo: 0xbc, hi: 0xbc}, -	{value: 0xa7f9, lo: 0xbd, hi: 0xbd}, -	{value: 0xa8d9, lo: 0xbe, hi: 0xbf}, -	// Block 0x86, offset 0x42e -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x87, offset 0x438 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x88, offset 0x43d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x89, offset 0x440 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x8a, offset 0x446 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x8b, offset 0x44d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8c, offset 0x452 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8d, offset 0x456 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x8e, offset 0x45c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xbf}, -	// Block 0x8f, offset 0x461 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x90, offset 0x46a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x91, offset 0x46f -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x92, offset 0x475 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8ad5, lo: 0x98, hi: 0x9f}, -	{value: 0x8aed, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x93, offset 0x47c -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8aed, lo: 0xb0, hi: 0xb7}, -	{value: 0x8ad5, lo: 0xb8, hi: 0xbf}, -	// Block 0x94, offset 0x483 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x95, offset 0x48a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x96, offset 0x48e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xae}, -	{value: 0x0018, lo: 0xaf, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x97, offset 0x493 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x98, offset 0x496 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x99, offset 0x49b -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x9a, offset 0x4a7 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x9b, offset 0x4ad -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x9c, offset 0x4b2 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9d, offset 0x4b9 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0x9e, offset 0x4c1 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0x9f, offset 0x4c6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0xa0, offset 0x4ca -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xa1, offset 0x4da -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0xa2, offset 0x4e1 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa3, offset 0x4e5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa4, offset 0x4e9 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa5, offset 0x4f0 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa6, offset 0x4f2 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa7, offset 0x4f5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xa8, offset 0x4f8 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xa9, offset 0x4fc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xaa, offset 0x500 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xab, offset 0x506 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xac, offset 0x50f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0340, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xad, offset 0x51b -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xae, offset 0x522 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xaf, offset 0x52b -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb0, offset 0x533 -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb1, offset 0x53a -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xb2, offset 0x548 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xb3, offset 0x555 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xb4, offset 0x562 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb5, offset 0x56b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xb6, offset 0x56f -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xb7, offset 0x57d -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xb8, offset 0x585 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xb9, offset 0x590 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xba, offset 0x599 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xbb, offset 0x59f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbc, offset 0x5a7 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xbd, offset 0x5b0 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xbe, offset 0x5ba -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xbf, offset 0x5bd -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc0, offset 0x5c9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xc1, offset 0x5cc -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xc2, offset 0x5d1 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xc3, offset 0x5de -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x3b08, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0xbf}, -	// Block 0xc4, offset 0x5e7 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x98}, -	{value: 0x3b08, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xbf}, -	// Block 0xc5, offset 0x5f3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xc6, offset 0x5f6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xc7, offset 0x600 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xc8, offset 0x609 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xc9, offset 0x615 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xca, offset 0x622 -	{value: 0x0000, lo: 0x07}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xcb, offset 0x62a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xcc, offset 0x62d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xcd, offset 0x632 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xce, offset 0x635 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xbf}, -	// Block 0xcf, offset 0x638 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xd0, offset 0x63b -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xd1, offset 0x642 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xd2, offset 0x649 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xd3, offset 0x64d -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xd4, offset 0x658 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xd5, offset 0x65b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd6, offset 0x661 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xd7, offset 0x666 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xbf}, -	// Block 0xd8, offset 0x66a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xd9, offset 0x66d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xda, offset 0x670 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xdb, offset 0x673 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xdc, offset 0x676 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xdd, offset 0x679 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xde, offset 0x67e -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xdf, offset 0x688 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xe0, offset 0x68b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xe1, offset 0x68f -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0xb5b9, lo: 0x9e, hi: 0x9e}, -	{value: 0xb601, lo: 0x9f, hi: 0x9f}, -	{value: 0xb649, lo: 0xa0, hi: 0xa0}, -	{value: 0xb6b1, lo: 0xa1, hi: 0xa1}, -	{value: 0xb719, lo: 0xa2, hi: 0xa2}, -	{value: 0xb781, lo: 0xa3, hi: 0xa3}, -	{value: 0xb7e9, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xe2, offset 0x69e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0xb851, lo: 0xbb, hi: 0xbb}, -	{value: 0xb899, lo: 0xbc, hi: 0xbc}, -	{value: 0xb8e1, lo: 0xbd, hi: 0xbd}, -	{value: 0xb949, lo: 0xbe, hi: 0xbe}, -	{value: 0xb9b1, lo: 0xbf, hi: 0xbf}, -	// Block 0xe3, offset 0x6aa -	{value: 0x0000, lo: 0x03}, -	{value: 0xba19, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xbf}, -	// Block 0xe4, offset 0x6ae -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0xe5, offset 0x6b3 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xe6, offset 0x6b8 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0xe7, offset 0x6bc -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0xe8, offset 0x6c1 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xe9, offset 0x6ca -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xea, offset 0x6d5 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xeb, offset 0x6db -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xec, offset 0x6e3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xed, offset 0x6e7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0xee, offset 0x6eb -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0xef, offset 0x6f1 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xf0, offset 0x6f7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0xc1c1, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xf1, offset 0x6fc -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0xf2, offset 0x6ff -	{value: 0x0000, lo: 0x0f}, -	{value: 0xc7e9, lo: 0x80, hi: 0x80}, -	{value: 0xc839, lo: 0x81, hi: 0x81}, -	{value: 0xc889, lo: 0x82, hi: 0x82}, -	{value: 0xc8d9, lo: 0x83, hi: 0x83}, -	{value: 0xc929, lo: 0x84, hi: 0x84}, -	{value: 0xc979, lo: 0x85, hi: 0x85}, -	{value: 0xc9c9, lo: 0x86, hi: 0x86}, -	{value: 0xca19, lo: 0x87, hi: 0x87}, -	{value: 0xca69, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0xcab9, lo: 0x90, hi: 0x90}, -	{value: 0xcad9, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xbf}, -	// Block 0xf3, offset 0x70f -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xf4, offset 0x716 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0xf5, offset 0x719 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0xbf}, -	// Block 0xf6, offset 0x71c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0xf7, offset 0x720 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0xf8, offset 0x726 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0xf9, offset 0x72b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xfa, offset 0x730 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0xfb, offset 0x735 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xbf}, -	// Block 0xfc, offset 0x738 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0xfd, offset 0x73d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xfe, offset 0x740 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xff, offset 0x743 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x100, offset 0x747 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x101, offset 0x74b -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x102, offset 0x74e -	{value: 0x0020, lo: 0x0f}, -	{value: 0xdeb9, lo: 0x80, hi: 0x89}, -	{value: 0x8dfd, lo: 0x8a, hi: 0x8a}, -	{value: 0xdff9, lo: 0x8b, hi: 0x9c}, -	{value: 0x8e1d, lo: 0x9d, hi: 0x9d}, -	{value: 0xe239, lo: 0x9e, hi: 0xa2}, -	{value: 0x8e3d, lo: 0xa3, hi: 0xa3}, -	{value: 0xe2d9, lo: 0xa4, hi: 0xab}, -	{value: 0x7ed5, lo: 0xac, hi: 0xac}, -	{value: 0xe3d9, lo: 0xad, hi: 0xaf}, -	{value: 0x8e5d, lo: 0xb0, hi: 0xb0}, -	{value: 0xe439, lo: 0xb1, hi: 0xb6}, -	{value: 0x8e7d, lo: 0xb7, hi: 0xb9}, -	{value: 0xe4f9, lo: 0xba, hi: 0xba}, -	{value: 0x8edd, lo: 0xbb, hi: 0xbb}, -	{value: 0xe519, lo: 0xbc, hi: 0xbf}, -	// Block 0x103, offset 0x75e -	{value: 0x0020, lo: 0x10}, -	{value: 0x937d, lo: 0x80, hi: 0x80}, -	{value: 0xf099, lo: 0x81, hi: 0x86}, -	{value: 0x939d, lo: 0x87, hi: 0x8a}, -	{value: 0xd9f9, lo: 0x8b, hi: 0x8b}, -	{value: 0xf159, lo: 0x8c, hi: 0x96}, -	{value: 0x941d, lo: 0x97, hi: 0x97}, -	{value: 0xf2b9, lo: 0x98, hi: 0xa3}, -	{value: 0x943d, lo: 0xa4, hi: 0xa6}, -	{value: 0xf439, lo: 0xa7, hi: 0xaa}, -	{value: 0x949d, lo: 0xab, hi: 0xab}, -	{value: 0xf4b9, lo: 0xac, hi: 0xac}, -	{value: 0x94bd, lo: 0xad, hi: 0xad}, -	{value: 0xf4d9, lo: 0xae, hi: 0xaf}, -	{value: 0x94dd, lo: 0xb0, hi: 0xb1}, -	{value: 0xf519, lo: 0xb2, hi: 0xbe}, -	{value: 0x2040, lo: 0xbf, hi: 0xbf}, -	// Block 0x104, offset 0x76f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0x105, offset 0x774 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x106, offset 0x776 -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x107, offset 0x778 -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 42114 bytes (41KiB); checksum: 355A58A4 diff --git a/vendor/golang.org/x/net/idna/tables11.0.0.go b/vendor/golang.org/x/net/idna/tables11.0.0.go deleted file mode 100644 index 76789393c..000000000 --- a/vendor/golang.org/x/net/idna/tables11.0.0.go +++ /dev/null @@ -1,4653 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build go1.13 && !go1.14 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "11.0.0" - -var mappings string = "" + // Size: 8175 bytes -	"\x00\x01 \x03 ̈\x01a\x03 ̄\x012\x013\x03 ́\x03 ̧\x011\x01o\x051⁄4\x051⁄2" + -	"\x053⁄4\x03i̇\x03l·\x03ʼn\x01s\x03dž\x03ⱥ\x03ⱦ\x01h\x01j\x01r\x01w\x01y" + -	"\x03 ̆\x03 ̇\x03 ̊\x03 ̨\x03 ̃\x03 ̋\x01l\x01x\x04̈́\x03 ι\x01;\x05 ̈́" + -	"\x04եւ\x04اٴ\x04وٴ\x04ۇٴ\x04يٴ\x06क़\x06ख़\x06ग़\x06ज़\x06ड़\x06ढ़\x06फ़" + -	"\x06य़\x06ড়\x06ঢ়\x06য়\x06ਲ਼\x06ਸ਼\x06ਖ਼\x06ਗ਼\x06ਜ਼\x06ਫ਼\x06ଡ଼\x06ଢ଼" + -	"\x06ํา\x06ໍາ\x06ຫນ\x06ຫມ\x06གྷ\x06ཌྷ\x06དྷ\x06བྷ\x06ཛྷ\x06ཀྵ\x06ཱི\x06ཱུ" + -	"\x06ྲྀ\x09ྲཱྀ\x06ླྀ\x09ླཱྀ\x06ཱྀ\x06ྒྷ\x06ྜྷ\x06ྡྷ\x06ྦྷ\x06ྫྷ\x06ྐྵ\x02" + -	"в\x02д\x02о\x02с\x02т\x02ъ\x02ѣ\x02æ\x01b\x01d\x01e\x02ǝ\x01g\x01i\x01k" + -	"\x01m\x01n\x02ȣ\x01p\x01t\x01u\x02ɐ\x02ɑ\x02ə\x02ɛ\x02ɜ\x02ŋ\x02ɔ\x02ɯ" + -	"\x01v\x02β\x02γ\x02δ\x02φ\x02χ\x02ρ\x02н\x02ɒ\x01c\x02ɕ\x02ð\x01f\x02ɟ" + -	"\x02ɡ\x02ɥ\x02ɨ\x02ɩ\x02ɪ\x02ʝ\x02ɭ\x02ʟ\x02ɱ\x02ɰ\x02ɲ\x02ɳ\x02ɴ\x02ɵ" + -	"\x02ɸ\x02ʂ\x02ʃ\x02ƫ\x02ʉ\x02ʊ\x02ʋ\x02ʌ\x01z\x02ʐ\x02ʑ\x02ʒ\x02θ\x02ss" + -	"\x02ά\x02έ\x02ή\x02ί\x02ό\x02ύ\x02ώ\x05ἀι\x05ἁι\x05ἂι\x05ἃι\x05ἄι\x05ἅι" + -	"\x05ἆι\x05ἇι\x05ἠι\x05ἡι\x05ἢι\x05ἣι\x05ἤι\x05ἥι\x05ἦι\x05ἧι\x05ὠι\x05ὡι" + -	"\x05ὢι\x05ὣι\x05ὤι\x05ὥι\x05ὦι\x05ὧι\x05ὰι\x04αι\x04άι\x05ᾶι\x02ι\x05 ̈͂" + -	"\x05ὴι\x04ηι\x04ήι\x05ῆι\x05 ̓̀\x05 ̓́\x05 ̓͂\x02ΐ\x05 ̔̀\x05 ̔́\x05 ̔͂" + -	"\x02ΰ\x05 ̈̀\x01`\x05ὼι\x04ωι\x04ώι\x05ῶι\x06′′\x09′′′\x06‵‵\x09‵‵‵\x02!" + -	"!\x02??\x02?!\x02!?\x0c′′′′\x010\x014\x015\x016\x017\x018\x019\x01+\x01=" + -	"\x01(\x01)\x02rs\x02ħ\x02no\x01q\x02sm\x02tm\x02ω\x02å\x02א\x02ב\x02ג" + -	"\x02ד\x02π\x051⁄7\x051⁄9\x061⁄10\x051⁄3\x052⁄3\x051⁄5\x052⁄5\x053⁄5\x054" + -	"⁄5\x051⁄6\x055⁄6\x051⁄8\x053⁄8\x055⁄8\x057⁄8\x041⁄\x02ii\x02iv\x02vi" + -	"\x04viii\x02ix\x02xi\x050⁄3\x06∫∫\x09∫∫∫\x06∮∮\x09∮∮∮\x0210\x0211\x0212" + -	"\x0213\x0214\x0215\x0216\x0217\x0218\x0219\x0220\x04(10)\x04(11)\x04(12)" + -	"\x04(13)\x04(14)\x04(15)\x04(16)\x04(17)\x04(18)\x04(19)\x04(20)\x0c∫∫∫∫" + -	"\x02==\x05⫝̸\x02ɫ\x02ɽ\x02ȿ\x02ɀ\x01.\x04 ゙\x04 ゚\x06より\x06コト\x05(ᄀ)\x05" + -	"(ᄂ)\x05(ᄃ)\x05(ᄅ)\x05(ᄆ)\x05(ᄇ)\x05(ᄉ)\x05(ᄋ)\x05(ᄌ)\x05(ᄎ)\x05(ᄏ)\x05(ᄐ" + -	")\x05(ᄑ)\x05(ᄒ)\x05(가)\x05(나)\x05(다)\x05(라)\x05(마)\x05(바)\x05(사)\x05(아)" + -	"\x05(자)\x05(차)\x05(카)\x05(타)\x05(파)\x05(하)\x05(주)\x08(오전)\x08(오후)\x05(一)" + -	"\x05(二)\x05(三)\x05(四)\x05(五)\x05(六)\x05(七)\x05(八)\x05(九)\x05(十)\x05(月)" + -	"\x05(火)\x05(水)\x05(木)\x05(金)\x05(土)\x05(日)\x05(株)\x05(有)\x05(社)\x05(名)" + -	"\x05(特)\x05(財)\x05(祝)\x05(労)\x05(代)\x05(呼)\x05(学)\x05(監)\x05(企)\x05(資)" + -	"\x05(協)\x05(祭)\x05(休)\x05(自)\x05(至)\x0221\x0222\x0223\x0224\x0225\x0226" + -	"\x0227\x0228\x0229\x0230\x0231\x0232\x0233\x0234\x0235\x06참고\x06주의\x0236" + -	"\x0237\x0238\x0239\x0240\x0241\x0242\x0243\x0244\x0245\x0246\x0247\x0248" + -	"\x0249\x0250\x041月\x042月\x043月\x044月\x045月\x046月\x047月\x048月\x049月\x0510" + -	"月\x0511月\x0512月\x02hg\x02ev\x0cアパート\x0cアルファ\x0cアンペア\x09アール\x0cイニング\x09" + -	"インチ\x09ウォン\x0fエスクード\x0cエーカー\x09オンス\x09オーム\x09カイリ\x0cカラット\x0cカロリー\x09ガロ" + -	"ン\x09ガンマ\x06ギガ\x09ギニー\x0cキュリー\x0cギルダー\x06キロ\x0fキログラム\x12キロメートル\x0fキロワッ" + -	"ト\x09グラム\x0fグラムトン\x0fクルゼイロ\x0cクローネ\x09ケース\x09コルナ\x09コーポ\x0cサイクル\x0fサンチ" + -	"ーム\x0cシリング\x09センチ\x09セント\x09ダース\x06デシ\x06ドル\x06トン\x06ナノ\x09ノット\x09ハイツ" + -	"\x0fパーセント\x09パーツ\x0cバーレル\x0fピアストル\x09ピクル\x06ピコ\x06ビル\x0fファラッド\x0cフィート" + -	"\x0fブッシェル\x09フラン\x0fヘクタール\x06ペソ\x09ペニヒ\x09ヘルツ\x09ペンス\x09ページ\x09ベータ\x0cポイ" + -	"ント\x09ボルト\x06ホン\x09ポンド\x09ホール\x09ホーン\x0cマイクロ\x09マイル\x09マッハ\x09マルク\x0fマ" + -	"ンション\x0cミクロン\x06ミリ\x0fミリバール\x06メガ\x0cメガトン\x0cメートル\x09ヤード\x09ヤール\x09ユアン" + -	"\x0cリットル\x06リラ\x09ルピー\x0cルーブル\x06レム\x0fレントゲン\x09ワット\x040点\x041点\x042点" + -	"\x043点\x044点\x045点\x046点\x047点\x048点\x049点\x0510点\x0511点\x0512点\x0513点" + -	"\x0514点\x0515点\x0516点\x0517点\x0518点\x0519点\x0520点\x0521点\x0522点\x0523点" + -	"\x0524点\x02da\x02au\x02ov\x02pc\x02dm\x02iu\x06平成\x06昭和\x06大正\x06明治\x0c株" + -	"式会社\x02pa\x02na\x02ma\x02ka\x02kb\x02mb\x02gb\x04kcal\x02pf\x02nf\x02m" + -	"g\x02kg\x02hz\x02ml\x02dl\x02kl\x02fm\x02nm\x02mm\x02cm\x02km\x02m2\x02m" + -	"3\x05m∕s\x06m∕s2\x07rad∕s\x08rad∕s2\x02ps\x02ns\x02ms\x02pv\x02nv\x02mv" + -	"\x02kv\x02pw\x02nw\x02mw\x02kw\x02bq\x02cc\x02cd\x06c∕kg\x02db\x02gy\x02" + -	"ha\x02hp\x02in\x02kk\x02kt\x02lm\x02ln\x02lx\x02ph\x02pr\x02sr\x02sv\x02" + -	"wb\x05v∕m\x05a∕m\x041日\x042日\x043日\x044日\x045日\x046日\x047日\x048日\x049日" + -	"\x0510日\x0511日\x0512日\x0513日\x0514日\x0515日\x0516日\x0517日\x0518日\x0519日" + -	"\x0520日\x0521日\x0522日\x0523日\x0524日\x0525日\x0526日\x0527日\x0528日\x0529日" + -	"\x0530日\x0531日\x02ь\x02ɦ\x02ɬ\x02ʞ\x02ʇ\x02œ\x04𤋮\x04𢡊\x04𢡄\x04𣏕\x04𥉉" + -	"\x04𥳐\x04𧻓\x02ff\x02fi\x02fl\x02st\x04մն\x04մե\x04մի\x04վն\x04մխ\x04יִ" + -	"\x04ײַ\x02ע\x02ה\x02כ\x02ל\x02ם\x02ר\x02ת\x04שׁ\x04שׂ\x06שּׁ\x06שּׂ\x04א" + -	"ַ\x04אָ\x04אּ\x04בּ\x04גּ\x04דּ\x04הּ\x04וּ\x04זּ\x04טּ\x04יּ\x04ךּ\x04" + -	"כּ\x04לּ\x04מּ\x04נּ\x04סּ\x04ףּ\x04פּ\x04צּ\x04קּ\x04רּ\x04שּ\x04תּ" + -	"\x04וֹ\x04בֿ\x04כֿ\x04פֿ\x04אל\x02ٱ\x02ٻ\x02پ\x02ڀ\x02ٺ\x02ٿ\x02ٹ\x02ڤ" + -	"\x02ڦ\x02ڄ\x02ڃ\x02چ\x02ڇ\x02ڍ\x02ڌ\x02ڎ\x02ڈ\x02ژ\x02ڑ\x02ک\x02گ\x02ڳ" + -	"\x02ڱ\x02ں\x02ڻ\x02ۀ\x02ہ\x02ھ\x02ے\x02ۓ\x02ڭ\x02ۇ\x02ۆ\x02ۈ\x02ۋ\x02ۅ" + -	"\x02ۉ\x02ې\x02ى\x04ئا\x04ئە\x04ئو\x04ئۇ\x04ئۆ\x04ئۈ\x04ئې\x04ئى\x02ی\x04" + -	"ئج\x04ئح\x04ئم\x04ئي\x04بج\x04بح\x04بخ\x04بم\x04بى\x04بي\x04تج\x04تح" + -	"\x04تخ\x04تم\x04تى\x04تي\x04ثج\x04ثم\x04ثى\x04ثي\x04جح\x04جم\x04حج\x04حم" + -	"\x04خج\x04خح\x04خم\x04سج\x04سح\x04سخ\x04سم\x04صح\x04صم\x04ضج\x04ضح\x04ضخ" + -	"\x04ضم\x04طح\x04طم\x04ظم\x04عج\x04عم\x04غج\x04غم\x04فج\x04فح\x04فخ\x04فم" + -	"\x04فى\x04في\x04قح\x04قم\x04قى\x04قي\x04كا\x04كج\x04كح\x04كخ\x04كل\x04كم" + -	"\x04كى\x04كي\x04لج\x04لح\x04لخ\x04لم\x04لى\x04لي\x04مج\x04مح\x04مخ\x04مم" + -	"\x04مى\x04مي\x04نج\x04نح\x04نخ\x04نم\x04نى\x04ني\x04هج\x04هم\x04هى\x04هي" + -	"\x04يج\x04يح\x04يخ\x04يم\x04يى\x04يي\x04ذٰ\x04رٰ\x04ىٰ\x05 ٌّ\x05 ٍّ\x05" + -	" َّ\x05 ُّ\x05 ِّ\x05 ّٰ\x04ئر\x04ئز\x04ئن\x04بر\x04بز\x04بن\x04تر\x04تز" + -	"\x04تن\x04ثر\x04ثز\x04ثن\x04ما\x04نر\x04نز\x04نن\x04ير\x04يز\x04ين\x04ئخ" + -	"\x04ئه\x04به\x04ته\x04صخ\x04له\x04نه\x04هٰ\x04يه\x04ثه\x04سه\x04شم\x04شه" + -	"\x06ـَّ\x06ـُّ\x06ـِّ\x04طى\x04طي\x04عى\x04عي\x04غى\x04غي\x04سى\x04سي" + -	"\x04شى\x04شي\x04حى\x04حي\x04جى\x04جي\x04خى\x04خي\x04صى\x04صي\x04ضى\x04ضي" + -	"\x04شج\x04شح\x04شخ\x04شر\x04سر\x04صر\x04ضر\x04اً\x06تجم\x06تحج\x06تحم" + -	"\x06تخم\x06تمج\x06تمح\x06تمخ\x06جمح\x06حمي\x06حمى\x06سحج\x06سجح\x06سجى" + -	"\x06سمح\x06سمج\x06سمم\x06صحح\x06صمم\x06شحم\x06شجي\x06شمخ\x06شمم\x06ضحى" + -	"\x06ضخم\x06طمح\x06طمم\x06طمي\x06عجم\x06عمم\x06عمى\x06غمم\x06غمي\x06غمى" + -	"\x06فخم\x06قمح\x06قمم\x06لحم\x06لحي\x06لحى\x06لجج\x06لخم\x06لمح\x06محج" + -	"\x06محم\x06محي\x06مجح\x06مجم\x06مخج\x06مخم\x06مجخ\x06همج\x06همم\x06نحم" + -	"\x06نحى\x06نجم\x06نجى\x06نمي\x06نمى\x06يمم\x06بخي\x06تجي\x06تجى\x06تخي" + -	"\x06تخى\x06تمي\x06تمى\x06جمي\x06جحى\x06جمى\x06سخى\x06صحي\x06شحي\x06ضحي" + -	"\x06لجي\x06لمي\x06يحي\x06يجي\x06يمي\x06ممي\x06قمي\x06نحي\x06عمي\x06كمي" + -	"\x06نجح\x06مخي\x06لجم\x06كمم\x06جحي\x06حجي\x06مجي\x06فمي\x06بحي\x06سخي" + -	"\x06نجي\x06صلے\x06قلے\x08الله\x08اكبر\x08محمد\x08صلعم\x08رسول\x08عليه" + -	"\x08وسلم\x06صلى!صلى الله عليه وسلم\x0fجل جلاله\x08ریال\x01,\x01:\x01!" + -	"\x01?\x01_\x01{\x01}\x01[\x01]\x01#\x01&\x01*\x01-\x01<\x01>\x01\\\x01$" + -	"\x01%\x01@\x04ـً\x04ـَ\x04ـُ\x04ـِ\x04ـّ\x04ـْ\x02ء\x02آ\x02أ\x02ؤ\x02إ" + -	"\x02ئ\x02ا\x02ب\x02ة\x02ت\x02ث\x02ج\x02ح\x02خ\x02د\x02ذ\x02ر\x02ز\x02س" + -	"\x02ش\x02ص\x02ض\x02ط\x02ظ\x02ع\x02غ\x02ف\x02ق\x02ك\x02ل\x02م\x02ن\x02ه" + -	"\x02و\x02ي\x04لآ\x04لأ\x04لإ\x04لا\x01\x22\x01'\x01/\x01^\x01|\x01~\x02¢" + -	"\x02£\x02¬\x02¦\x02¥\x08𝅗𝅥\x08𝅘𝅥\x0c𝅘𝅥𝅮\x0c𝅘𝅥𝅯\x0c𝅘𝅥𝅰\x0c𝅘𝅥𝅱\x0c𝅘𝅥𝅲\x08𝆹" + -	"𝅥\x08𝆺𝅥\x0c𝆹𝅥𝅮\x0c𝆺𝅥𝅮\x0c𝆹𝅥𝅯\x0c𝆺𝅥𝅯\x02ı\x02ȷ\x02α\x02ε\x02ζ\x02η\x02" + -	"κ\x02λ\x02μ\x02ν\x02ξ\x02ο\x02σ\x02τ\x02υ\x02ψ\x03∇\x03∂\x02ϝ\x02ٮ\x02ڡ" + -	"\x02ٯ\x020,\x021,\x022,\x023,\x024,\x025,\x026,\x027,\x028,\x029,\x03(a)" + -	"\x03(b)\x03(c)\x03(d)\x03(e)\x03(f)\x03(g)\x03(h)\x03(i)\x03(j)\x03(k)" + -	"\x03(l)\x03(m)\x03(n)\x03(o)\x03(p)\x03(q)\x03(r)\x03(s)\x03(t)\x03(u)" + -	"\x03(v)\x03(w)\x03(x)\x03(y)\x03(z)\x07〔s〕\x02wz\x02hv\x02sd\x03ppv\x02w" + -	"c\x02mc\x02md\x02dj\x06ほか\x06ココ\x03サ\x03手\x03字\x03双\x03デ\x03二\x03多\x03解" + -	"\x03天\x03交\x03映\x03無\x03料\x03前\x03後\x03再\x03新\x03初\x03終\x03生\x03販\x03声" + -	"\x03吹\x03演\x03投\x03捕\x03一\x03三\x03遊\x03左\x03中\x03右\x03指\x03走\x03打\x03禁" + -	"\x03空\x03合\x03満\x03有\x03月\x03申\x03割\x03営\x03配\x09〔本〕\x09〔三〕\x09〔二〕\x09〔安" + -	"〕\x09〔点〕\x09〔打〕\x09〔盗〕\x09〔勝〕\x09〔敗〕\x03得\x03可\x03丽\x03丸\x03乁\x03你\x03" + -	"侮\x03侻\x03倂\x03偺\x03備\x03僧\x03像\x03㒞\x03免\x03兔\x03兤\x03具\x03㒹\x03內\x03" + -	"冗\x03冤\x03仌\x03冬\x03况\x03凵\x03刃\x03㓟\x03刻\x03剆\x03剷\x03㔕\x03勇\x03勉\x03" + -	"勤\x03勺\x03包\x03匆\x03北\x03卉\x03卑\x03博\x03即\x03卽\x03卿\x03灰\x03及\x03叟\x03" + -	"叫\x03叱\x03吆\x03咞\x03吸\x03呈\x03周\x03咢\x03哶\x03唐\x03啓\x03啣\x03善\x03喙\x03" + -	"喫\x03喳\x03嗂\x03圖\x03嘆\x03圗\x03噑\x03噴\x03切\x03壮\x03城\x03埴\x03堍\x03型\x03" + -	"堲\x03報\x03墬\x03売\x03壷\x03夆\x03夢\x03奢\x03姬\x03娛\x03娧\x03姘\x03婦\x03㛮\x03" + -	"嬈\x03嬾\x03寃\x03寘\x03寧\x03寳\x03寿\x03将\x03尢\x03㞁\x03屠\x03屮\x03峀\x03岍\x03" + -	"嵃\x03嵮\x03嵫\x03嵼\x03巡\x03巢\x03㠯\x03巽\x03帨\x03帽\x03幩\x03㡢\x03㡼\x03庰\x03" + -	"庳\x03庶\x03廊\x03廾\x03舁\x03弢\x03㣇\x03形\x03彫\x03㣣\x03徚\x03忍\x03志\x03忹\x03" + -	"悁\x03㤺\x03㤜\x03悔\x03惇\x03慈\x03慌\x03慎\x03慺\x03憎\x03憲\x03憤\x03憯\x03懞\x03" + -	"懲\x03懶\x03成\x03戛\x03扝\x03抱\x03拔\x03捐\x03挽\x03拼\x03捨\x03掃\x03揤\x03搢\x03" + -	"揅\x03掩\x03㨮\x03摩\x03摾\x03撝\x03摷\x03㩬\x03敏\x03敬\x03旣\x03書\x03晉\x03㬙\x03" + -	"暑\x03㬈\x03㫤\x03冒\x03冕\x03最\x03暜\x03肭\x03䏙\x03朗\x03望\x03朡\x03杞\x03杓\x03" + -	"㭉\x03柺\x03枅\x03桒\x03梅\x03梎\x03栟\x03椔\x03㮝\x03楂\x03榣\x03槪\x03檨\x03櫛\x03" + -	"㰘\x03次\x03歔\x03㱎\x03歲\x03殟\x03殺\x03殻\x03汎\x03沿\x03泍\x03汧\x03洖\x03派\x03" + -	"海\x03流\x03浩\x03浸\x03涅\x03洴\x03港\x03湮\x03㴳\x03滋\x03滇\x03淹\x03潮\x03濆\x03" + -	"瀹\x03瀞\x03瀛\x03㶖\x03灊\x03災\x03灷\x03炭\x03煅\x03熜\x03爨\x03爵\x03牐\x03犀\x03" + -	"犕\x03獺\x03王\x03㺬\x03玥\x03㺸\x03瑇\x03瑜\x03瑱\x03璅\x03瓊\x03㼛\x03甤\x03甾\x03" + -	"異\x03瘐\x03㿼\x03䀈\x03直\x03眞\x03真\x03睊\x03䀹\x03瞋\x03䁆\x03䂖\x03硎\x03碌\x03" + -	"磌\x03䃣\x03祖\x03福\x03秫\x03䄯\x03穀\x03穊\x03穏\x03䈂\x03篆\x03築\x03䈧\x03糒\x03" + -	"䊠\x03糨\x03糣\x03紀\x03絣\x03䌁\x03緇\x03縂\x03繅\x03䌴\x03䍙\x03罺\x03羕\x03翺\x03" + -	"者\x03聠\x03聰\x03䏕\x03育\x03脃\x03䐋\x03脾\x03媵\x03舄\x03辞\x03䑫\x03芑\x03芋\x03" + -	"芝\x03劳\x03花\x03芳\x03芽\x03苦\x03若\x03茝\x03荣\x03莭\x03茣\x03莽\x03菧\x03著\x03" + -	"荓\x03菊\x03菌\x03菜\x03䔫\x03蓱\x03蓳\x03蔖\x03蕤\x03䕝\x03䕡\x03䕫\x03虐\x03虜\x03" + -	"虧\x03虩\x03蚩\x03蚈\x03蜎\x03蛢\x03蝹\x03蜨\x03蝫\x03螆\x03蟡\x03蠁\x03䗹\x03衠\x03" + -	"衣\x03裗\x03裞\x03䘵\x03裺\x03㒻\x03䚾\x03䛇\x03誠\x03諭\x03變\x03豕\x03貫\x03賁\x03" + -	"贛\x03起\x03跋\x03趼\x03跰\x03軔\x03輸\x03邔\x03郱\x03鄑\x03鄛\x03鈸\x03鋗\x03鋘\x03" + -	"鉼\x03鏹\x03鐕\x03開\x03䦕\x03閷\x03䧦\x03雃\x03嶲\x03霣\x03䩮\x03䩶\x03韠\x03䪲\x03" + -	"頋\x03頩\x03飢\x03䬳\x03餩\x03馧\x03駂\x03駾\x03䯎\x03鬒\x03鱀\x03鳽\x03䳎\x03䳭\x03" + -	"鵧\x03䳸\x03麻\x03䵖\x03黹\x03黾\x03鼅\x03鼏\x03鼖\x03鼻" - -var xorData string = "" + // Size: 4855 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x02\x01\x04\x02\x01\x02\x02\x019\x02\x03\x1c\x02" + -	"\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03\xc1r\x02" + -	"\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<\x03\xc1s*" + -	"\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03\x83\xab" + -	"\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96\xe1\xcd" + -	"\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03\x9a\xec" + -	"\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c!\x03" + -	"\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03ʦ\x93" + -	"\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7\x03" + -	"\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca\xfa" + -	"\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e\x03" + -	"\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca\xe3" + -	"\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99\x03" + -	"\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca\xe8" + -	"\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03\x0b" + -	"\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06\x05" + -	"\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03\x0786" + -	"\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/\x03" + -	"\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f\x03" + -	"\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-\x03" + -	"\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03\x07" + -	"\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03\x07" + -	"\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03\x07" + -	"\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b\x0a" + -	"\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03\x07" + -	"\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+\x03" + -	"\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03\x04" + -	"4\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03\x04+ " + -	"\x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!\x22" + -	"\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04\x03" + -	"\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>\x03" + -	"\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03\x054" + -	"\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03\x05)" + -	":\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$\x1e" + -	"\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226\x03" + -	"\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05\x1b" + -	"\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05\x03" + -	"\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03\x06" + -	"\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08\x03" + -	"\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03\x0a6" + -	"\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a\x1f" + -	"\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03\x0a" + -	"\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f\x02" + -	"\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/\x03" + -	"\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a\x00" + -	"\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+\x10" + -	"\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#<" + -	"\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!\x00" + -	"\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18.\x03" + -	"\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15\x22" + -	"\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b\x12" + -	"\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05<" + -	"\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!\x10\x03\x0b!0" + -	"\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b\x03\x09\x1f" + -	"\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14\x03\x0a\x01" + -	"\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03\x08='\x03" + -	"\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03\x09\x0c" + -	"\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06!3\x03" + -	"\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05\x03\x07" + -	"<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07\x01\x00" + -	"\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03\x09\x11" + -	"\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03\x0a/1" + -	"\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03\x07<3" + -	"\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06\x13\x00" + -	"\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(;\x03" + -	"\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08\x14$" + -	"\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03\x0a" + -	"\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19\x01" + -	"\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18\x03" + -	"\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03\x07" + -	"\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03\x0a" + -	"\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03\x0b" + -	"\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03\x08" + -	"\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05\x03" + -	"\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11\x03" + -	"\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03\x09" + -	"\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a." + -	"\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x01\x1e\x03\x0f$!\x03" + -	"\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08\x18\x03\x0f" + -	"\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$\x03\x0e\x0d)" + -	"\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d\x03\x0d. \x03" + -	"\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03\x0d\x0d\x0f\x03" + -	"\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03\x0c\x09:\x03\x0e" + -	"\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18\x03\x0c\x1f\x1c" + -	"\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03\x0b<+\x03\x0b8" + -	"\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d\x22&\x03\x0b\x1a" + -	"\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03\x0a!\x1a\x03\x0a!" + -	"7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03\x0a\x00 \x03\x0a" + -	"\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a\x1b-\x03\x09-" + -	"\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091\x1f\x03\x093" + -	"\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(\x16\x03\x09" + -	"\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!\x03\x09\x1a" + -	"\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03\x08\x02*" + -	"\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03\x070\x0c" + -	"\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x0671\x03" + -	"\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 \x1d\x03" + -	"\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 29404 bytes (28.71 KiB). Checksum: 848c45acb5f7991c. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 125: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 125 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 127 blocks, 8128 entries, 16256 bytes -// The third block is the zero block. -var idnaValues = [8128]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x001a, 0xe9: 0x0018, -	0xea: 0x0039, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x004a, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0069, 0xf3: 0x0079, 0xf4: 0x008a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x00aa, 0xf9: 0x00c9, 0xfa: 0x00d9, 0xfb: 0x0018, -	0xfc: 0x00e9, 0xfd: 0x0119, 0xfe: 0x0149, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0179, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0199, -	// Block 0x5, offset 0x140 -	0x140: 0x0199, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x01b9, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x01d9, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x01e9, 0x1c5: 0x01e9, -	0x1c6: 0x01e9, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0209, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x0229, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x029a, 0x259: 0x02ba, 0x25a: 0x02da, 0x25b: 0x02fa, 0x25c: 0x031a, 0x25d: 0x033a, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0359, 0x262: 0x01d9, 0x263: 0x0369, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0379, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x03a2, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x03c2, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x008a, 0x2c5: 0x03d2, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0040, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0429, -	0x4b6: 0x0451, 0x4b7: 0x0479, 0x4b8: 0x04a1, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x0c08, 0x541: 0x0a08, 0x542: 0x0a08, 0x543: 0x0a08, 0x544: 0x0a08, 0x545: 0x0a08, -	0x546: 0x0c08, 0x547: 0x0c08, 0x548: 0x0a08, 0x549: 0x0c08, 0x54a: 0x0a08, 0x54b: 0x0a08, -	0x54c: 0x0a08, 0x54d: 0x0a08, 0x54e: 0x0a08, 0x54f: 0x0a08, 0x550: 0x0a08, 0x551: 0x0a08, -	0x552: 0x0a08, 0x553: 0x0a08, 0x554: 0x0c08, 0x555: 0x0a08, 0x556: 0x0808, 0x557: 0x0808, -	0x558: 0x0808, 0x559: 0x3308, 0x55a: 0x3308, 0x55b: 0x3308, 0x55c: 0x0040, 0x55d: 0x0040, -	0x55e: 0x0818, 0x55f: 0x0040, 0x560: 0x0a08, 0x561: 0x0808, 0x562: 0x0a08, 0x563: 0x0a08, -	0x564: 0x0a08, 0x565: 0x0a08, 0x566: 0x0808, 0x567: 0x0c08, 0x568: 0x0a08, 0x569: 0x0c08, -	0x56a: 0x0c08, 0x56b: 0x0040, 0x56c: 0x0040, 0x56d: 0x0040, 0x56e: 0x0040, 0x56f: 0x0040, -	0x570: 0x0040, 0x571: 0x0040, 0x572: 0x0040, 0x573: 0x0040, 0x574: 0x0040, 0x575: 0x0040, -	0x576: 0x0040, 0x577: 0x0040, 0x578: 0x0040, 0x579: 0x0040, 0x57a: 0x0040, 0x57b: 0x0040, -	0x57c: 0x0040, 0x57d: 0x0040, 0x57e: 0x0040, 0x57f: 0x0040, -	// Block 0x16, offset 0x580 -	0x580: 0x3008, 0x581: 0x3308, 0x582: 0x3308, 0x583: 0x3308, 0x584: 0x3308, 0x585: 0x3308, -	0x586: 0x3308, 0x587: 0x3308, 0x588: 0x3308, 0x589: 0x3008, 0x58a: 0x3008, 0x58b: 0x3008, -	0x58c: 0x3008, 0x58d: 0x3b08, 0x58e: 0x3008, 0x58f: 0x3008, 0x590: 0x0008, 0x591: 0x3308, -	0x592: 0x3308, 0x593: 0x3308, 0x594: 0x3308, 0x595: 0x3308, 0x596: 0x3308, 0x597: 0x3308, -	0x598: 0x04c9, 0x599: 0x0501, 0x59a: 0x0539, 0x59b: 0x0571, 0x59c: 0x05a9, 0x59d: 0x05e1, -	0x59e: 0x0619, 0x59f: 0x0651, 0x5a0: 0x0008, 0x5a1: 0x0008, 0x5a2: 0x3308, 0x5a3: 0x3308, -	0x5a4: 0x0018, 0x5a5: 0x0018, 0x5a6: 0x0008, 0x5a7: 0x0008, 0x5a8: 0x0008, 0x5a9: 0x0008, -	0x5aa: 0x0008, 0x5ab: 0x0008, 0x5ac: 0x0008, 0x5ad: 0x0008, 0x5ae: 0x0008, 0x5af: 0x0008, -	0x5b0: 0x0018, 0x5b1: 0x0008, 0x5b2: 0x0008, 0x5b3: 0x0008, 0x5b4: 0x0008, 0x5b5: 0x0008, -	0x5b6: 0x0008, 0x5b7: 0x0008, 0x5b8: 0x0008, 0x5b9: 0x0008, 0x5ba: 0x0008, 0x5bb: 0x0008, -	0x5bc: 0x0008, 0x5bd: 0x0008, 0x5be: 0x0008, 0x5bf: 0x0008, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x0008, 0x5c1: 0x3308, 0x5c2: 0x3008, 0x5c3: 0x3008, 0x5c4: 0x0040, 0x5c5: 0x0008, -	0x5c6: 0x0008, 0x5c7: 0x0008, 0x5c8: 0x0008, 0x5c9: 0x0008, 0x5ca: 0x0008, 0x5cb: 0x0008, -	0x5cc: 0x0008, 0x5cd: 0x0040, 0x5ce: 0x0040, 0x5cf: 0x0008, 0x5d0: 0x0008, 0x5d1: 0x0040, -	0x5d2: 0x0040, 0x5d3: 0x0008, 0x5d4: 0x0008, 0x5d5: 0x0008, 0x5d6: 0x0008, 0x5d7: 0x0008, -	0x5d8: 0x0008, 0x5d9: 0x0008, 0x5da: 0x0008, 0x5db: 0x0008, 0x5dc: 0x0008, 0x5dd: 0x0008, -	0x5de: 0x0008, 0x5df: 0x0008, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x0008, 0x5e3: 0x0008, -	0x5e4: 0x0008, 0x5e5: 0x0008, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0040, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0008, 0x5f1: 0x0040, 0x5f2: 0x0008, 0x5f3: 0x0040, 0x5f4: 0x0040, 0x5f5: 0x0040, -	0x5f6: 0x0008, 0x5f7: 0x0008, 0x5f8: 0x0008, 0x5f9: 0x0008, 0x5fa: 0x0040, 0x5fb: 0x0040, -	0x5fc: 0x3308, 0x5fd: 0x0008, 0x5fe: 0x3008, 0x5ff: 0x3008, -	// Block 0x18, offset 0x600 -	0x600: 0x3008, 0x601: 0x3308, 0x602: 0x3308, 0x603: 0x3308, 0x604: 0x3308, 0x605: 0x0040, -	0x606: 0x0040, 0x607: 0x3008, 0x608: 0x3008, 0x609: 0x0040, 0x60a: 0x0040, 0x60b: 0x3008, -	0x60c: 0x3008, 0x60d: 0x3b08, 0x60e: 0x0008, 0x60f: 0x0040, 0x610: 0x0040, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0040, 0x614: 0x0040, 0x615: 0x0040, 0x616: 0x0040, 0x617: 0x3008, -	0x618: 0x0040, 0x619: 0x0040, 0x61a: 0x0040, 0x61b: 0x0040, 0x61c: 0x0689, 0x61d: 0x06c1, -	0x61e: 0x0040, 0x61f: 0x06f9, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x3308, 0x623: 0x3308, -	0x624: 0x0040, 0x625: 0x0040, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0008, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0008, 0x632: 0x0018, 0x633: 0x0018, 0x634: 0x0018, 0x635: 0x0018, -	0x636: 0x0018, 0x637: 0x0018, 0x638: 0x0018, 0x639: 0x0018, 0x63a: 0x0018, 0x63b: 0x0018, -	0x63c: 0x0008, 0x63d: 0x0018, 0x63e: 0x3308, 0x63f: 0x0040, -	// Block 0x19, offset 0x640 -	0x640: 0x0040, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x3008, 0x644: 0x0040, 0x645: 0x0008, -	0x646: 0x0008, 0x647: 0x0008, 0x648: 0x0008, 0x649: 0x0008, 0x64a: 0x0008, 0x64b: 0x0040, -	0x64c: 0x0040, 0x64d: 0x0040, 0x64e: 0x0040, 0x64f: 0x0008, 0x650: 0x0008, 0x651: 0x0040, -	0x652: 0x0040, 0x653: 0x0008, 0x654: 0x0008, 0x655: 0x0008, 0x656: 0x0008, 0x657: 0x0008, -	0x658: 0x0008, 0x659: 0x0008, 0x65a: 0x0008, 0x65b: 0x0008, 0x65c: 0x0008, 0x65d: 0x0008, -	0x65e: 0x0008, 0x65f: 0x0008, 0x660: 0x0008, 0x661: 0x0008, 0x662: 0x0008, 0x663: 0x0008, -	0x664: 0x0008, 0x665: 0x0008, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0040, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x0008, 0x671: 0x0040, 0x672: 0x0008, 0x673: 0x0731, 0x674: 0x0040, 0x675: 0x0008, -	0x676: 0x0769, 0x677: 0x0040, 0x678: 0x0008, 0x679: 0x0008, 0x67a: 0x0040, 0x67b: 0x0040, -	0x67c: 0x3308, 0x67d: 0x0040, 0x67e: 0x3008, 0x67f: 0x3008, -	// Block 0x1a, offset 0x680 -	0x680: 0x3008, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x0040, 0x684: 0x0040, 0x685: 0x0040, -	0x686: 0x0040, 0x687: 0x3308, 0x688: 0x3308, 0x689: 0x0040, 0x68a: 0x0040, 0x68b: 0x3308, -	0x68c: 0x3308, 0x68d: 0x3b08, 0x68e: 0x0040, 0x68f: 0x0040, 0x690: 0x0040, 0x691: 0x3308, -	0x692: 0x0040, 0x693: 0x0040, 0x694: 0x0040, 0x695: 0x0040, 0x696: 0x0040, 0x697: 0x0040, -	0x698: 0x0040, 0x699: 0x07a1, 0x69a: 0x07d9, 0x69b: 0x0811, 0x69c: 0x0008, 0x69d: 0x0040, -	0x69e: 0x0849, 0x69f: 0x0040, 0x6a0: 0x0040, 0x6a1: 0x0040, 0x6a2: 0x0040, 0x6a3: 0x0040, -	0x6a4: 0x0040, 0x6a5: 0x0040, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0008, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x3308, 0x6b1: 0x3308, 0x6b2: 0x0008, 0x6b3: 0x0008, 0x6b4: 0x0008, 0x6b5: 0x3308, -	0x6b6: 0x0018, 0x6b7: 0x0040, 0x6b8: 0x0040, 0x6b9: 0x0040, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x0040, 0x6bd: 0x0040, 0x6be: 0x0040, 0x6bf: 0x0040, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x0040, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x3008, 0x6c4: 0x0040, 0x6c5: 0x0008, -	0x6c6: 0x0008, 0x6c7: 0x0008, 0x6c8: 0x0008, 0x6c9: 0x0008, 0x6ca: 0x0008, 0x6cb: 0x0008, -	0x6cc: 0x0008, 0x6cd: 0x0008, 0x6ce: 0x0040, 0x6cf: 0x0008, 0x6d0: 0x0008, 0x6d1: 0x0008, -	0x6d2: 0x0040, 0x6d3: 0x0008, 0x6d4: 0x0008, 0x6d5: 0x0008, 0x6d6: 0x0008, 0x6d7: 0x0008, -	0x6d8: 0x0008, 0x6d9: 0x0008, 0x6da: 0x0008, 0x6db: 0x0008, 0x6dc: 0x0008, 0x6dd: 0x0008, -	0x6de: 0x0008, 0x6df: 0x0008, 0x6e0: 0x0008, 0x6e1: 0x0008, 0x6e2: 0x0008, 0x6e3: 0x0008, -	0x6e4: 0x0008, 0x6e5: 0x0008, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0040, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x0008, 0x6f1: 0x0040, 0x6f2: 0x0008, 0x6f3: 0x0008, 0x6f4: 0x0040, 0x6f5: 0x0008, -	0x6f6: 0x0008, 0x6f7: 0x0008, 0x6f8: 0x0008, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x3308, 0x6fd: 0x0008, 0x6fe: 0x3008, 0x6ff: 0x3008, -	// Block 0x1c, offset 0x700 -	0x700: 0x3008, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3308, 0x704: 0x3308, 0x705: 0x3308, -	0x706: 0x0040, 0x707: 0x3308, 0x708: 0x3308, 0x709: 0x3008, 0x70a: 0x0040, 0x70b: 0x3008, -	0x70c: 0x3008, 0x70d: 0x3b08, 0x70e: 0x0040, 0x70f: 0x0040, 0x710: 0x0008, 0x711: 0x0040, -	0x712: 0x0040, 0x713: 0x0040, 0x714: 0x0040, 0x715: 0x0040, 0x716: 0x0040, 0x717: 0x0040, -	0x718: 0x0040, 0x719: 0x0040, 0x71a: 0x0040, 0x71b: 0x0040, 0x71c: 0x0040, 0x71d: 0x0040, -	0x71e: 0x0040, 0x71f: 0x0040, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x3308, 0x723: 0x3308, -	0x724: 0x0040, 0x725: 0x0040, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0008, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0018, 0x731: 0x0018, 0x732: 0x0040, 0x733: 0x0040, 0x734: 0x0040, 0x735: 0x0040, -	0x736: 0x0040, 0x737: 0x0040, 0x738: 0x0040, 0x739: 0x0008, 0x73a: 0x3308, 0x73b: 0x3308, -	0x73c: 0x3308, 0x73d: 0x3308, 0x73e: 0x3308, 0x73f: 0x3308, -	// Block 0x1d, offset 0x740 -	0x740: 0x0040, 0x741: 0x3308, 0x742: 0x3008, 0x743: 0x3008, 0x744: 0x0040, 0x745: 0x0008, -	0x746: 0x0008, 0x747: 0x0008, 0x748: 0x0008, 0x749: 0x0008, 0x74a: 0x0008, 0x74b: 0x0008, -	0x74c: 0x0008, 0x74d: 0x0040, 0x74e: 0x0040, 0x74f: 0x0008, 0x750: 0x0008, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0008, 0x754: 0x0008, 0x755: 0x0008, 0x756: 0x0008, 0x757: 0x0008, -	0x758: 0x0008, 0x759: 0x0008, 0x75a: 0x0008, 0x75b: 0x0008, 0x75c: 0x0008, 0x75d: 0x0008, -	0x75e: 0x0008, 0x75f: 0x0008, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x0008, 0x763: 0x0008, -	0x764: 0x0008, 0x765: 0x0008, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0040, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0008, 0x771: 0x0040, 0x772: 0x0008, 0x773: 0x0008, 0x774: 0x0040, 0x775: 0x0008, -	0x776: 0x0008, 0x777: 0x0008, 0x778: 0x0008, 0x779: 0x0008, 0x77a: 0x0040, 0x77b: 0x0040, -	0x77c: 0x3308, 0x77d: 0x0008, 0x77e: 0x3008, 0x77f: 0x3308, -	// Block 0x1e, offset 0x780 -	0x780: 0x3008, 0x781: 0x3308, 0x782: 0x3308, 0x783: 0x3308, 0x784: 0x3308, 0x785: 0x0040, -	0x786: 0x0040, 0x787: 0x3008, 0x788: 0x3008, 0x789: 0x0040, 0x78a: 0x0040, 0x78b: 0x3008, -	0x78c: 0x3008, 0x78d: 0x3b08, 0x78e: 0x0040, 0x78f: 0x0040, 0x790: 0x0040, 0x791: 0x0040, -	0x792: 0x0040, 0x793: 0x0040, 0x794: 0x0040, 0x795: 0x0040, 0x796: 0x3308, 0x797: 0x3008, -	0x798: 0x0040, 0x799: 0x0040, 0x79a: 0x0040, 0x79b: 0x0040, 0x79c: 0x0881, 0x79d: 0x08b9, -	0x79e: 0x0040, 0x79f: 0x0008, 0x7a0: 0x0008, 0x7a1: 0x0008, 0x7a2: 0x3308, 0x7a3: 0x3308, -	0x7a4: 0x0040, 0x7a5: 0x0040, 0x7a6: 0x0008, 0x7a7: 0x0008, 0x7a8: 0x0008, 0x7a9: 0x0008, -	0x7aa: 0x0008, 0x7ab: 0x0008, 0x7ac: 0x0008, 0x7ad: 0x0008, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0018, 0x7b1: 0x0008, 0x7b2: 0x0018, 0x7b3: 0x0018, 0x7b4: 0x0018, 0x7b5: 0x0018, -	0x7b6: 0x0018, 0x7b7: 0x0018, 0x7b8: 0x0040, 0x7b9: 0x0040, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x0040, 0x7bd: 0x0040, 0x7be: 0x0040, 0x7bf: 0x0040, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x0040, 0x7c1: 0x0040, 0x7c2: 0x3308, 0x7c3: 0x0008, 0x7c4: 0x0040, 0x7c5: 0x0008, -	0x7c6: 0x0008, 0x7c7: 0x0008, 0x7c8: 0x0008, 0x7c9: 0x0008, 0x7ca: 0x0008, 0x7cb: 0x0040, -	0x7cc: 0x0040, 0x7cd: 0x0040, 0x7ce: 0x0008, 0x7cf: 0x0008, 0x7d0: 0x0008, 0x7d1: 0x0040, -	0x7d2: 0x0008, 0x7d3: 0x0008, 0x7d4: 0x0008, 0x7d5: 0x0008, 0x7d6: 0x0040, 0x7d7: 0x0040, -	0x7d8: 0x0040, 0x7d9: 0x0008, 0x7da: 0x0008, 0x7db: 0x0040, 0x7dc: 0x0008, 0x7dd: 0x0040, -	0x7de: 0x0008, 0x7df: 0x0008, 0x7e0: 0x0040, 0x7e1: 0x0040, 0x7e2: 0x0040, 0x7e3: 0x0008, -	0x7e4: 0x0008, 0x7e5: 0x0040, 0x7e6: 0x0040, 0x7e7: 0x0040, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0040, 0x7ec: 0x0040, 0x7ed: 0x0040, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0008, 0x7f1: 0x0008, 0x7f2: 0x0008, 0x7f3: 0x0008, 0x7f4: 0x0008, 0x7f5: 0x0008, -	0x7f6: 0x0008, 0x7f7: 0x0008, 0x7f8: 0x0008, 0x7f9: 0x0008, 0x7fa: 0x0040, 0x7fb: 0x0040, -	0x7fc: 0x0040, 0x7fd: 0x0040, 0x7fe: 0x3008, 0x7ff: 0x3008, -	// Block 0x20, offset 0x800 -	0x800: 0x3308, 0x801: 0x3008, 0x802: 0x3008, 0x803: 0x3008, 0x804: 0x3008, 0x805: 0x0040, -	0x806: 0x3308, 0x807: 0x3308, 0x808: 0x3308, 0x809: 0x0040, 0x80a: 0x3308, 0x80b: 0x3308, -	0x80c: 0x3308, 0x80d: 0x3b08, 0x80e: 0x0040, 0x80f: 0x0040, 0x810: 0x0040, 0x811: 0x0040, -	0x812: 0x0040, 0x813: 0x0040, 0x814: 0x0040, 0x815: 0x3308, 0x816: 0x3308, 0x817: 0x0040, -	0x818: 0x0008, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0040, 0x81c: 0x0040, 0x81d: 0x0040, -	0x81e: 0x0040, 0x81f: 0x0040, 0x820: 0x0008, 0x821: 0x0008, 0x822: 0x3308, 0x823: 0x3308, -	0x824: 0x0040, 0x825: 0x0040, 0x826: 0x0008, 0x827: 0x0008, 0x828: 0x0008, 0x829: 0x0008, -	0x82a: 0x0008, 0x82b: 0x0008, 0x82c: 0x0008, 0x82d: 0x0008, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0040, 0x831: 0x0040, 0x832: 0x0040, 0x833: 0x0040, 0x834: 0x0040, 0x835: 0x0040, -	0x836: 0x0040, 0x837: 0x0040, 0x838: 0x0018, 0x839: 0x0018, 0x83a: 0x0018, 0x83b: 0x0018, -	0x83c: 0x0018, 0x83d: 0x0018, 0x83e: 0x0018, 0x83f: 0x0018, -	// Block 0x21, offset 0x840 -	0x840: 0x0008, 0x841: 0x3308, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x0018, 0x845: 0x0008, -	0x846: 0x0008, 0x847: 0x0008, 0x848: 0x0008, 0x849: 0x0008, 0x84a: 0x0008, 0x84b: 0x0008, -	0x84c: 0x0008, 0x84d: 0x0040, 0x84e: 0x0008, 0x84f: 0x0008, 0x850: 0x0008, 0x851: 0x0040, -	0x852: 0x0008, 0x853: 0x0008, 0x854: 0x0008, 0x855: 0x0008, 0x856: 0x0008, 0x857: 0x0008, -	0x858: 0x0008, 0x859: 0x0008, 0x85a: 0x0008, 0x85b: 0x0008, 0x85c: 0x0008, 0x85d: 0x0008, -	0x85e: 0x0008, 0x85f: 0x0008, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x0008, 0x863: 0x0008, -	0x864: 0x0008, 0x865: 0x0008, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0040, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0008, 0x871: 0x0008, 0x872: 0x0008, 0x873: 0x0008, 0x874: 0x0040, 0x875: 0x0008, -	0x876: 0x0008, 0x877: 0x0008, 0x878: 0x0008, 0x879: 0x0008, 0x87a: 0x0040, 0x87b: 0x0040, -	0x87c: 0x3308, 0x87d: 0x0008, 0x87e: 0x3008, 0x87f: 0x3308, -	// Block 0x22, offset 0x880 -	0x880: 0x3008, 0x881: 0x3008, 0x882: 0x3008, 0x883: 0x3008, 0x884: 0x3008, 0x885: 0x0040, -	0x886: 0x3308, 0x887: 0x3008, 0x888: 0x3008, 0x889: 0x0040, 0x88a: 0x3008, 0x88b: 0x3008, -	0x88c: 0x3308, 0x88d: 0x3b08, 0x88e: 0x0040, 0x88f: 0x0040, 0x890: 0x0040, 0x891: 0x0040, -	0x892: 0x0040, 0x893: 0x0040, 0x894: 0x0040, 0x895: 0x3008, 0x896: 0x3008, 0x897: 0x0040, -	0x898: 0x0040, 0x899: 0x0040, 0x89a: 0x0040, 0x89b: 0x0040, 0x89c: 0x0040, 0x89d: 0x0040, -	0x89e: 0x0008, 0x89f: 0x0040, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x3308, 0x8a3: 0x3308, -	0x8a4: 0x0040, 0x8a5: 0x0040, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0008, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0040, 0x8b1: 0x0008, 0x8b2: 0x0008, 0x8b3: 0x0040, 0x8b4: 0x0040, 0x8b5: 0x0040, -	0x8b6: 0x0040, 0x8b7: 0x0040, 0x8b8: 0x0040, 0x8b9: 0x0040, 0x8ba: 0x0040, 0x8bb: 0x0040, -	0x8bc: 0x0040, 0x8bd: 0x0040, 0x8be: 0x0040, 0x8bf: 0x0040, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x3008, 0x8c1: 0x3308, 0x8c2: 0x3308, 0x8c3: 0x3308, 0x8c4: 0x3308, 0x8c5: 0x0040, -	0x8c6: 0x3008, 0x8c7: 0x3008, 0x8c8: 0x3008, 0x8c9: 0x0040, 0x8ca: 0x3008, 0x8cb: 0x3008, -	0x8cc: 0x3008, 0x8cd: 0x3b08, 0x8ce: 0x0008, 0x8cf: 0x0018, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0008, 0x8d5: 0x0008, 0x8d6: 0x0008, 0x8d7: 0x3008, -	0x8d8: 0x0018, 0x8d9: 0x0018, 0x8da: 0x0018, 0x8db: 0x0018, 0x8dc: 0x0018, 0x8dd: 0x0018, -	0x8de: 0x0018, 0x8df: 0x0008, 0x8e0: 0x0008, 0x8e1: 0x0008, 0x8e2: 0x3308, 0x8e3: 0x3308, -	0x8e4: 0x0040, 0x8e5: 0x0040, 0x8e6: 0x0008, 0x8e7: 0x0008, 0x8e8: 0x0008, 0x8e9: 0x0008, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0008, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0018, 0x8f1: 0x0018, 0x8f2: 0x0018, 0x8f3: 0x0018, 0x8f4: 0x0018, 0x8f5: 0x0018, -	0x8f6: 0x0018, 0x8f7: 0x0018, 0x8f8: 0x0018, 0x8f9: 0x0018, 0x8fa: 0x0008, 0x8fb: 0x0008, -	0x8fc: 0x0008, 0x8fd: 0x0008, 0x8fe: 0x0008, 0x8ff: 0x0008, -	// Block 0x24, offset 0x900 -	0x900: 0x0040, 0x901: 0x0008, 0x902: 0x0008, 0x903: 0x0040, 0x904: 0x0008, 0x905: 0x0040, -	0x906: 0x0040, 0x907: 0x0008, 0x908: 0x0008, 0x909: 0x0040, 0x90a: 0x0008, 0x90b: 0x0040, -	0x90c: 0x0040, 0x90d: 0x0008, 0x90e: 0x0040, 0x90f: 0x0040, 0x910: 0x0040, 0x911: 0x0040, -	0x912: 0x0040, 0x913: 0x0040, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x0008, -	0x918: 0x0040, 0x919: 0x0008, 0x91a: 0x0008, 0x91b: 0x0008, 0x91c: 0x0008, 0x91d: 0x0008, -	0x91e: 0x0008, 0x91f: 0x0008, 0x920: 0x0040, 0x921: 0x0008, 0x922: 0x0008, 0x923: 0x0008, -	0x924: 0x0040, 0x925: 0x0008, 0x926: 0x0040, 0x927: 0x0008, 0x928: 0x0040, 0x929: 0x0040, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0040, 0x92d: 0x0008, 0x92e: 0x0008, 0x92f: 0x0008, -	0x930: 0x0008, 0x931: 0x3308, 0x932: 0x0008, 0x933: 0x0929, 0x934: 0x3308, 0x935: 0x3308, -	0x936: 0x3308, 0x937: 0x3308, 0x938: 0x3308, 0x939: 0x3308, 0x93a: 0x0040, 0x93b: 0x3308, -	0x93c: 0x3308, 0x93d: 0x0008, 0x93e: 0x0040, 0x93f: 0x0040, -	// Block 0x25, offset 0x940 -	0x940: 0x0008, 0x941: 0x0008, 0x942: 0x0008, 0x943: 0x09d1, 0x944: 0x0008, 0x945: 0x0008, -	0x946: 0x0008, 0x947: 0x0008, 0x948: 0x0040, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0008, -	0x94c: 0x0008, 0x94d: 0x0a09, 0x94e: 0x0008, 0x94f: 0x0008, 0x950: 0x0008, 0x951: 0x0008, -	0x952: 0x0a41, 0x953: 0x0008, 0x954: 0x0008, 0x955: 0x0008, 0x956: 0x0008, 0x957: 0x0a79, -	0x958: 0x0008, 0x959: 0x0008, 0x95a: 0x0008, 0x95b: 0x0008, 0x95c: 0x0ab1, 0x95d: 0x0008, -	0x95e: 0x0008, 0x95f: 0x0008, 0x960: 0x0008, 0x961: 0x0008, 0x962: 0x0008, 0x963: 0x0008, -	0x964: 0x0008, 0x965: 0x0008, 0x966: 0x0008, 0x967: 0x0008, 0x968: 0x0008, 0x969: 0x0ae9, -	0x96a: 0x0008, 0x96b: 0x0008, 0x96c: 0x0008, 0x96d: 0x0040, 0x96e: 0x0040, 0x96f: 0x0040, -	0x970: 0x0040, 0x971: 0x3308, 0x972: 0x3308, 0x973: 0x0b21, 0x974: 0x3308, 0x975: 0x0b59, -	0x976: 0x0b91, 0x977: 0x0bc9, 0x978: 0x0c19, 0x979: 0x0c51, 0x97a: 0x3308, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x3308, 0x97e: 0x3308, 0x97f: 0x3008, -	// Block 0x26, offset 0x980 -	0x980: 0x3308, 0x981: 0x0ca1, 0x982: 0x3308, 0x983: 0x3308, 0x984: 0x3b08, 0x985: 0x0018, -	0x986: 0x3308, 0x987: 0x3308, 0x988: 0x0008, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x3308, 0x98e: 0x3308, 0x98f: 0x3308, 0x990: 0x3308, 0x991: 0x3308, -	0x992: 0x3308, 0x993: 0x0cd9, 0x994: 0x3308, 0x995: 0x3308, 0x996: 0x3308, 0x997: 0x3308, -	0x998: 0x0040, 0x999: 0x3308, 0x99a: 0x3308, 0x99b: 0x3308, 0x99c: 0x3308, 0x99d: 0x0d11, -	0x99e: 0x3308, 0x99f: 0x3308, 0x9a0: 0x3308, 0x9a1: 0x3308, 0x9a2: 0x0d49, 0x9a3: 0x3308, -	0x9a4: 0x3308, 0x9a5: 0x3308, 0x9a6: 0x3308, 0x9a7: 0x0d81, 0x9a8: 0x3308, 0x9a9: 0x3308, -	0x9aa: 0x3308, 0x9ab: 0x3308, 0x9ac: 0x0db9, 0x9ad: 0x3308, 0x9ae: 0x3308, 0x9af: 0x3308, -	0x9b0: 0x3308, 0x9b1: 0x3308, 0x9b2: 0x3308, 0x9b3: 0x3308, 0x9b4: 0x3308, 0x9b5: 0x3308, -	0x9b6: 0x3308, 0x9b7: 0x3308, 0x9b8: 0x3308, 0x9b9: 0x0df1, 0x9ba: 0x3308, 0x9bb: 0x3308, -	0x9bc: 0x3308, 0x9bd: 0x0040, 0x9be: 0x0018, 0x9bf: 0x0018, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x0008, 0x9c1: 0x0008, 0x9c2: 0x0008, 0x9c3: 0x0008, 0x9c4: 0x0008, 0x9c5: 0x0008, -	0x9c6: 0x0008, 0x9c7: 0x0008, 0x9c8: 0x0008, 0x9c9: 0x0008, 0x9ca: 0x0008, 0x9cb: 0x0008, -	0x9cc: 0x0008, 0x9cd: 0x0008, 0x9ce: 0x0008, 0x9cf: 0x0008, 0x9d0: 0x0008, 0x9d1: 0x0008, -	0x9d2: 0x0008, 0x9d3: 0x0008, 0x9d4: 0x0008, 0x9d5: 0x0008, 0x9d6: 0x0008, 0x9d7: 0x0008, -	0x9d8: 0x0008, 0x9d9: 0x0008, 0x9da: 0x0008, 0x9db: 0x0008, 0x9dc: 0x0008, 0x9dd: 0x0008, -	0x9de: 0x0008, 0x9df: 0x0008, 0x9e0: 0x0008, 0x9e1: 0x0008, 0x9e2: 0x0008, 0x9e3: 0x0008, -	0x9e4: 0x0008, 0x9e5: 0x0008, 0x9e6: 0x0008, 0x9e7: 0x0008, 0x9e8: 0x0008, 0x9e9: 0x0008, -	0x9ea: 0x0008, 0x9eb: 0x0008, 0x9ec: 0x0039, 0x9ed: 0x0ed1, 0x9ee: 0x0ee9, 0x9ef: 0x0008, -	0x9f0: 0x0ef9, 0x9f1: 0x0f09, 0x9f2: 0x0f19, 0x9f3: 0x0f31, 0x9f4: 0x0249, 0x9f5: 0x0f41, -	0x9f6: 0x0259, 0x9f7: 0x0f51, 0x9f8: 0x0359, 0x9f9: 0x0f61, 0x9fa: 0x0f71, 0x9fb: 0x0008, -	0x9fc: 0x00d9, 0x9fd: 0x0f81, 0x9fe: 0x0f99, 0x9ff: 0x0269, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0fa9, 0xa01: 0x0fb9, 0xa02: 0x0279, 0xa03: 0x0039, 0xa04: 0x0fc9, 0xa05: 0x0fe1, -	0xa06: 0x059d, 0xa07: 0x0ee9, 0xa08: 0x0ef9, 0xa09: 0x0f09, 0xa0a: 0x0ff9, 0xa0b: 0x1011, -	0xa0c: 0x1029, 0xa0d: 0x0f31, 0xa0e: 0x0008, 0xa0f: 0x0f51, 0xa10: 0x0f61, 0xa11: 0x1041, -	0xa12: 0x00d9, 0xa13: 0x1059, 0xa14: 0x05b5, 0xa15: 0x05b5, 0xa16: 0x0f99, 0xa17: 0x0fa9, -	0xa18: 0x0fb9, 0xa19: 0x059d, 0xa1a: 0x1071, 0xa1b: 0x1089, 0xa1c: 0x05cd, 0xa1d: 0x1099, -	0xa1e: 0x10b1, 0xa1f: 0x10c9, 0xa20: 0x10e1, 0xa21: 0x10f9, 0xa22: 0x0f41, 0xa23: 0x0269, -	0xa24: 0x0fb9, 0xa25: 0x1089, 0xa26: 0x1099, 0xa27: 0x10b1, 0xa28: 0x1111, 0xa29: 0x10e1, -	0xa2a: 0x10f9, 0xa2b: 0x0008, 0xa2c: 0x0008, 0xa2d: 0x0008, 0xa2e: 0x0008, 0xa2f: 0x0008, -	0xa30: 0x0008, 0xa31: 0x0008, 0xa32: 0x0008, 0xa33: 0x0008, 0xa34: 0x0008, 0xa35: 0x0008, -	0xa36: 0x0008, 0xa37: 0x0008, 0xa38: 0x1129, 0xa39: 0x0008, 0xa3a: 0x0008, 0xa3b: 0x0008, -	0xa3c: 0x0008, 0xa3d: 0x0008, 0xa3e: 0x0008, 0xa3f: 0x0008, -	// Block 0x29, offset 0xa40 -	0xa40: 0x0008, 0xa41: 0x0008, 0xa42: 0x0008, 0xa43: 0x0008, 0xa44: 0x0008, 0xa45: 0x0008, -	0xa46: 0x0008, 0xa47: 0x0008, 0xa48: 0x0008, 0xa49: 0x0008, 0xa4a: 0x0008, 0xa4b: 0x0008, -	0xa4c: 0x0008, 0xa4d: 0x0008, 0xa4e: 0x0008, 0xa4f: 0x0008, 0xa50: 0x0008, 0xa51: 0x0008, -	0xa52: 0x0008, 0xa53: 0x0008, 0xa54: 0x0008, 0xa55: 0x0008, 0xa56: 0x0008, 0xa57: 0x0008, -	0xa58: 0x0008, 0xa59: 0x0008, 0xa5a: 0x0008, 0xa5b: 0x1141, 0xa5c: 0x1159, 0xa5d: 0x1169, -	0xa5e: 0x1181, 0xa5f: 0x1029, 0xa60: 0x1199, 0xa61: 0x11a9, 0xa62: 0x11c1, 0xa63: 0x11d9, -	0xa64: 0x11f1, 0xa65: 0x1209, 0xa66: 0x1221, 0xa67: 0x05e5, 0xa68: 0x1239, 0xa69: 0x1251, -	0xa6a: 0xe17d, 0xa6b: 0x1269, 0xa6c: 0x1281, 0xa6d: 0x1299, 0xa6e: 0x12b1, 0xa6f: 0x12c9, -	0xa70: 0x12e1, 0xa71: 0x12f9, 0xa72: 0x1311, 0xa73: 0x1329, 0xa74: 0x1341, 0xa75: 0x1359, -	0xa76: 0x1371, 0xa77: 0x1389, 0xa78: 0x05fd, 0xa79: 0x13a1, 0xa7a: 0x13b9, 0xa7b: 0x13d1, -	0xa7c: 0x13e1, 0xa7d: 0x13f9, 0xa7e: 0x1411, 0xa7f: 0x1429, -	// Block 0x2a, offset 0xa80 -	0xa80: 0xe00d, 0xa81: 0x0008, 0xa82: 0xe00d, 0xa83: 0x0008, 0xa84: 0xe00d, 0xa85: 0x0008, -	0xa86: 0xe00d, 0xa87: 0x0008, 0xa88: 0xe00d, 0xa89: 0x0008, 0xa8a: 0xe00d, 0xa8b: 0x0008, -	0xa8c: 0xe00d, 0xa8d: 0x0008, 0xa8e: 0xe00d, 0xa8f: 0x0008, 0xa90: 0xe00d, 0xa91: 0x0008, -	0xa92: 0xe00d, 0xa93: 0x0008, 0xa94: 0xe00d, 0xa95: 0x0008, 0xa96: 0xe00d, 0xa97: 0x0008, -	0xa98: 0xe00d, 0xa99: 0x0008, 0xa9a: 0xe00d, 0xa9b: 0x0008, 0xa9c: 0xe00d, 0xa9d: 0x0008, -	0xa9e: 0xe00d, 0xa9f: 0x0008, 0xaa0: 0xe00d, 0xaa1: 0x0008, 0xaa2: 0xe00d, 0xaa3: 0x0008, -	0xaa4: 0xe00d, 0xaa5: 0x0008, 0xaa6: 0xe00d, 0xaa7: 0x0008, 0xaa8: 0xe00d, 0xaa9: 0x0008, -	0xaaa: 0xe00d, 0xaab: 0x0008, 0xaac: 0xe00d, 0xaad: 0x0008, 0xaae: 0xe00d, 0xaaf: 0x0008, -	0xab0: 0xe00d, 0xab1: 0x0008, 0xab2: 0xe00d, 0xab3: 0x0008, 0xab4: 0xe00d, 0xab5: 0x0008, -	0xab6: 0xe00d, 0xab7: 0x0008, 0xab8: 0xe00d, 0xab9: 0x0008, 0xaba: 0xe00d, 0xabb: 0x0008, -	0xabc: 0xe00d, 0xabd: 0x0008, 0xabe: 0xe00d, 0xabf: 0x0008, -	// Block 0x2b, offset 0xac0 -	0xac0: 0xe00d, 0xac1: 0x0008, 0xac2: 0xe00d, 0xac3: 0x0008, 0xac4: 0xe00d, 0xac5: 0x0008, -	0xac6: 0xe00d, 0xac7: 0x0008, 0xac8: 0xe00d, 0xac9: 0x0008, 0xaca: 0xe00d, 0xacb: 0x0008, -	0xacc: 0xe00d, 0xacd: 0x0008, 0xace: 0xe00d, 0xacf: 0x0008, 0xad0: 0xe00d, 0xad1: 0x0008, -	0xad2: 0xe00d, 0xad3: 0x0008, 0xad4: 0xe00d, 0xad5: 0x0008, 0xad6: 0x0008, 0xad7: 0x0008, -	0xad8: 0x0008, 0xad9: 0x0008, 0xada: 0x0615, 0xadb: 0x0635, 0xadc: 0x0008, 0xadd: 0x0008, -	0xade: 0x1441, 0xadf: 0x0008, 0xae0: 0xe00d, 0xae1: 0x0008, 0xae2: 0xe00d, 0xae3: 0x0008, -	0xae4: 0xe00d, 0xae5: 0x0008, 0xae6: 0xe00d, 0xae7: 0x0008, 0xae8: 0xe00d, 0xae9: 0x0008, -	0xaea: 0xe00d, 0xaeb: 0x0008, 0xaec: 0xe00d, 0xaed: 0x0008, 0xaee: 0xe00d, 0xaef: 0x0008, -	0xaf0: 0xe00d, 0xaf1: 0x0008, 0xaf2: 0xe00d, 0xaf3: 0x0008, 0xaf4: 0xe00d, 0xaf5: 0x0008, -	0xaf6: 0xe00d, 0xaf7: 0x0008, 0xaf8: 0xe00d, 0xaf9: 0x0008, 0xafa: 0xe00d, 0xafb: 0x0008, -	0xafc: 0xe00d, 0xafd: 0x0008, 0xafe: 0xe00d, 0xaff: 0x0008, -	// Block 0x2c, offset 0xb00 -	0xb00: 0x0008, 0xb01: 0x0008, 0xb02: 0x0008, 0xb03: 0x0008, 0xb04: 0x0008, 0xb05: 0x0008, -	0xb06: 0x0040, 0xb07: 0x0040, 0xb08: 0xe045, 0xb09: 0xe045, 0xb0a: 0xe045, 0xb0b: 0xe045, -	0xb0c: 0xe045, 0xb0d: 0xe045, 0xb0e: 0x0040, 0xb0f: 0x0040, 0xb10: 0x0008, 0xb11: 0x0008, -	0xb12: 0x0008, 0xb13: 0x0008, 0xb14: 0x0008, 0xb15: 0x0008, 0xb16: 0x0008, 0xb17: 0x0008, -	0xb18: 0x0040, 0xb19: 0xe045, 0xb1a: 0x0040, 0xb1b: 0xe045, 0xb1c: 0x0040, 0xb1d: 0xe045, -	0xb1e: 0x0040, 0xb1f: 0xe045, 0xb20: 0x0008, 0xb21: 0x0008, 0xb22: 0x0008, 0xb23: 0x0008, -	0xb24: 0x0008, 0xb25: 0x0008, 0xb26: 0x0008, 0xb27: 0x0008, 0xb28: 0xe045, 0xb29: 0xe045, -	0xb2a: 0xe045, 0xb2b: 0xe045, 0xb2c: 0xe045, 0xb2d: 0xe045, 0xb2e: 0xe045, 0xb2f: 0xe045, -	0xb30: 0x0008, 0xb31: 0x1459, 0xb32: 0x0008, 0xb33: 0x1471, 0xb34: 0x0008, 0xb35: 0x1489, -	0xb36: 0x0008, 0xb37: 0x14a1, 0xb38: 0x0008, 0xb39: 0x14b9, 0xb3a: 0x0008, 0xb3b: 0x14d1, -	0xb3c: 0x0008, 0xb3d: 0x14e9, 0xb3e: 0x0040, 0xb3f: 0x0040, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x1501, 0xb41: 0x1531, 0xb42: 0x1561, 0xb43: 0x1591, 0xb44: 0x15c1, 0xb45: 0x15f1, -	0xb46: 0x1621, 0xb47: 0x1651, 0xb48: 0x1501, 0xb49: 0x1531, 0xb4a: 0x1561, 0xb4b: 0x1591, -	0xb4c: 0x15c1, 0xb4d: 0x15f1, 0xb4e: 0x1621, 0xb4f: 0x1651, 0xb50: 0x1681, 0xb51: 0x16b1, -	0xb52: 0x16e1, 0xb53: 0x1711, 0xb54: 0x1741, 0xb55: 0x1771, 0xb56: 0x17a1, 0xb57: 0x17d1, -	0xb58: 0x1681, 0xb59: 0x16b1, 0xb5a: 0x16e1, 0xb5b: 0x1711, 0xb5c: 0x1741, 0xb5d: 0x1771, -	0xb5e: 0x17a1, 0xb5f: 0x17d1, 0xb60: 0x1801, 0xb61: 0x1831, 0xb62: 0x1861, 0xb63: 0x1891, -	0xb64: 0x18c1, 0xb65: 0x18f1, 0xb66: 0x1921, 0xb67: 0x1951, 0xb68: 0x1801, 0xb69: 0x1831, -	0xb6a: 0x1861, 0xb6b: 0x1891, 0xb6c: 0x18c1, 0xb6d: 0x18f1, 0xb6e: 0x1921, 0xb6f: 0x1951, -	0xb70: 0x0008, 0xb71: 0x0008, 0xb72: 0x1981, 0xb73: 0x19b1, 0xb74: 0x19d9, 0xb75: 0x0040, -	0xb76: 0x0008, 0xb77: 0x1a01, 0xb78: 0xe045, 0xb79: 0xe045, 0xb7a: 0x064d, 0xb7b: 0x1459, -	0xb7c: 0x19b1, 0xb7d: 0x0666, 0xb7e: 0x1a31, 0xb7f: 0x0686, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x06a6, 0xb81: 0x1a4a, 0xb82: 0x1a79, 0xb83: 0x1aa9, 0xb84: 0x1ad1, 0xb85: 0x0040, -	0xb86: 0x0008, 0xb87: 0x1af9, 0xb88: 0x06c5, 0xb89: 0x1471, 0xb8a: 0x06dd, 0xb8b: 0x1489, -	0xb8c: 0x1aa9, 0xb8d: 0x1b2a, 0xb8e: 0x1b5a, 0xb8f: 0x1b8a, 0xb90: 0x0008, 0xb91: 0x0008, -	0xb92: 0x0008, 0xb93: 0x1bb9, 0xb94: 0x0040, 0xb95: 0x0040, 0xb96: 0x0008, 0xb97: 0x0008, -	0xb98: 0xe045, 0xb99: 0xe045, 0xb9a: 0x06f5, 0xb9b: 0x14a1, 0xb9c: 0x0040, 0xb9d: 0x1bd2, -	0xb9e: 0x1c02, 0xb9f: 0x1c32, 0xba0: 0x0008, 0xba1: 0x0008, 0xba2: 0x0008, 0xba3: 0x1c61, -	0xba4: 0x0008, 0xba5: 0x0008, 0xba6: 0x0008, 0xba7: 0x0008, 0xba8: 0xe045, 0xba9: 0xe045, -	0xbaa: 0x070d, 0xbab: 0x14d1, 0xbac: 0xe04d, 0xbad: 0x1c7a, 0xbae: 0x03d2, 0xbaf: 0x1caa, -	0xbb0: 0x0040, 0xbb1: 0x0040, 0xbb2: 0x1cb9, 0xbb3: 0x1ce9, 0xbb4: 0x1d11, 0xbb5: 0x0040, -	0xbb6: 0x0008, 0xbb7: 0x1d39, 0xbb8: 0x0725, 0xbb9: 0x14b9, 0xbba: 0x0515, 0xbbb: 0x14e9, -	0xbbc: 0x1ce9, 0xbbd: 0x073e, 0xbbe: 0x075e, 0xbbf: 0x0040, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x000a, 0xbc1: 0x000a, 0xbc2: 0x000a, 0xbc3: 0x000a, 0xbc4: 0x000a, 0xbc5: 0x000a, -	0xbc6: 0x000a, 0xbc7: 0x000a, 0xbc8: 0x000a, 0xbc9: 0x000a, 0xbca: 0x000a, 0xbcb: 0x03c0, -	0xbcc: 0x0003, 0xbcd: 0x0003, 0xbce: 0x0340, 0xbcf: 0x0b40, 0xbd0: 0x0018, 0xbd1: 0xe00d, -	0xbd2: 0x0018, 0xbd3: 0x0018, 0xbd4: 0x0018, 0xbd5: 0x0018, 0xbd6: 0x0018, 0xbd7: 0x077e, -	0xbd8: 0x0018, 0xbd9: 0x0018, 0xbda: 0x0018, 0xbdb: 0x0018, 0xbdc: 0x0018, 0xbdd: 0x0018, -	0xbde: 0x0018, 0xbdf: 0x0018, 0xbe0: 0x0018, 0xbe1: 0x0018, 0xbe2: 0x0018, 0xbe3: 0x0018, -	0xbe4: 0x0040, 0xbe5: 0x0040, 0xbe6: 0x0040, 0xbe7: 0x0018, 0xbe8: 0x0040, 0xbe9: 0x0040, -	0xbea: 0x0340, 0xbeb: 0x0340, 0xbec: 0x0340, 0xbed: 0x0340, 0xbee: 0x0340, 0xbef: 0x000a, -	0xbf0: 0x0018, 0xbf1: 0x0018, 0xbf2: 0x0018, 0xbf3: 0x1d69, 0xbf4: 0x1da1, 0xbf5: 0x0018, -	0xbf6: 0x1df1, 0xbf7: 0x1e29, 0xbf8: 0x0018, 0xbf9: 0x0018, 0xbfa: 0x0018, 0xbfb: 0x0018, -	0xbfc: 0x1e7a, 0xbfd: 0x0018, 0xbfe: 0x079e, 0xbff: 0x0018, -	// Block 0x30, offset 0xc00 -	0xc00: 0x0018, 0xc01: 0x0018, 0xc02: 0x0018, 0xc03: 0x0018, 0xc04: 0x0018, 0xc05: 0x0018, -	0xc06: 0x0018, 0xc07: 0x1e92, 0xc08: 0x1eaa, 0xc09: 0x1ec2, 0xc0a: 0x0018, 0xc0b: 0x0018, -	0xc0c: 0x0018, 0xc0d: 0x0018, 0xc0e: 0x0018, 0xc0f: 0x0018, 0xc10: 0x0018, 0xc11: 0x0018, -	0xc12: 0x0018, 0xc13: 0x0018, 0xc14: 0x0018, 0xc15: 0x0018, 0xc16: 0x0018, 0xc17: 0x1ed9, -	0xc18: 0x0018, 0xc19: 0x0018, 0xc1a: 0x0018, 0xc1b: 0x0018, 0xc1c: 0x0018, 0xc1d: 0x0018, -	0xc1e: 0x0018, 0xc1f: 0x000a, 0xc20: 0x03c0, 0xc21: 0x0340, 0xc22: 0x0340, 0xc23: 0x0340, -	0xc24: 0x03c0, 0xc25: 0x0040, 0xc26: 0x0040, 0xc27: 0x0040, 0xc28: 0x0040, 0xc29: 0x0040, -	0xc2a: 0x0340, 0xc2b: 0x0340, 0xc2c: 0x0340, 0xc2d: 0x0340, 0xc2e: 0x0340, 0xc2f: 0x0340, -	0xc30: 0x1f41, 0xc31: 0x0f41, 0xc32: 0x0040, 0xc33: 0x0040, 0xc34: 0x1f51, 0xc35: 0x1f61, -	0xc36: 0x1f71, 0xc37: 0x1f81, 0xc38: 0x1f91, 0xc39: 0x1fa1, 0xc3a: 0x1fb2, 0xc3b: 0x07bd, -	0xc3c: 0x1fc2, 0xc3d: 0x1fd2, 0xc3e: 0x1fe2, 0xc3f: 0x0f71, -	// Block 0x31, offset 0xc40 -	0xc40: 0x1f41, 0xc41: 0x00c9, 0xc42: 0x0069, 0xc43: 0x0079, 0xc44: 0x1f51, 0xc45: 0x1f61, -	0xc46: 0x1f71, 0xc47: 0x1f81, 0xc48: 0x1f91, 0xc49: 0x1fa1, 0xc4a: 0x1fb2, 0xc4b: 0x07d5, -	0xc4c: 0x1fc2, 0xc4d: 0x1fd2, 0xc4e: 0x1fe2, 0xc4f: 0x0040, 0xc50: 0x0039, 0xc51: 0x0f09, -	0xc52: 0x00d9, 0xc53: 0x0369, 0xc54: 0x0ff9, 0xc55: 0x0249, 0xc56: 0x0f51, 0xc57: 0x0359, -	0xc58: 0x0f61, 0xc59: 0x0f71, 0xc5a: 0x0f99, 0xc5b: 0x01d9, 0xc5c: 0x0fa9, 0xc5d: 0x0040, -	0xc5e: 0x0040, 0xc5f: 0x0040, 0xc60: 0x0018, 0xc61: 0x0018, 0xc62: 0x0018, 0xc63: 0x0018, -	0xc64: 0x0018, 0xc65: 0x0018, 0xc66: 0x0018, 0xc67: 0x0018, 0xc68: 0x1ff1, 0xc69: 0x0018, -	0xc6a: 0x0018, 0xc6b: 0x0018, 0xc6c: 0x0018, 0xc6d: 0x0018, 0xc6e: 0x0018, 0xc6f: 0x0018, -	0xc70: 0x0018, 0xc71: 0x0018, 0xc72: 0x0018, 0xc73: 0x0018, 0xc74: 0x0018, 0xc75: 0x0018, -	0xc76: 0x0018, 0xc77: 0x0018, 0xc78: 0x0018, 0xc79: 0x0018, 0xc7a: 0x0018, 0xc7b: 0x0018, -	0xc7c: 0x0018, 0xc7d: 0x0018, 0xc7e: 0x0018, 0xc7f: 0x0018, -	// Block 0x32, offset 0xc80 -	0xc80: 0x07ee, 0xc81: 0x080e, 0xc82: 0x1159, 0xc83: 0x082d, 0xc84: 0x0018, 0xc85: 0x084e, -	0xc86: 0x086e, 0xc87: 0x1011, 0xc88: 0x0018, 0xc89: 0x088d, 0xc8a: 0x0f31, 0xc8b: 0x0249, -	0xc8c: 0x0249, 0xc8d: 0x0249, 0xc8e: 0x0249, 0xc8f: 0x2009, 0xc90: 0x0f41, 0xc91: 0x0f41, -	0xc92: 0x0359, 0xc93: 0x0359, 0xc94: 0x0018, 0xc95: 0x0f71, 0xc96: 0x2021, 0xc97: 0x0018, -	0xc98: 0x0018, 0xc99: 0x0f99, 0xc9a: 0x2039, 0xc9b: 0x0269, 0xc9c: 0x0269, 0xc9d: 0x0269, -	0xc9e: 0x0018, 0xc9f: 0x0018, 0xca0: 0x2049, 0xca1: 0x08ad, 0xca2: 0x2061, 0xca3: 0x0018, -	0xca4: 0x13d1, 0xca5: 0x0018, 0xca6: 0x2079, 0xca7: 0x0018, 0xca8: 0x13d1, 0xca9: 0x0018, -	0xcaa: 0x0f51, 0xcab: 0x2091, 0xcac: 0x0ee9, 0xcad: 0x1159, 0xcae: 0x0018, 0xcaf: 0x0f09, -	0xcb0: 0x0f09, 0xcb1: 0x1199, 0xcb2: 0x0040, 0xcb3: 0x0f61, 0xcb4: 0x00d9, 0xcb5: 0x20a9, -	0xcb6: 0x20c1, 0xcb7: 0x20d9, 0xcb8: 0x20f1, 0xcb9: 0x0f41, 0xcba: 0x0018, 0xcbb: 0x08cd, -	0xcbc: 0x2109, 0xcbd: 0x10b1, 0xcbe: 0x10b1, 0xcbf: 0x2109, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x08ed, 0xcc1: 0x0018, 0xcc2: 0x0018, 0xcc3: 0x0018, 0xcc4: 0x0018, 0xcc5: 0x0ef9, -	0xcc6: 0x0ef9, 0xcc7: 0x0f09, 0xcc8: 0x0f41, 0xcc9: 0x0259, 0xcca: 0x0018, 0xccb: 0x0018, -	0xccc: 0x0018, 0xccd: 0x0018, 0xcce: 0x0008, 0xccf: 0x0018, 0xcd0: 0x2121, 0xcd1: 0x2151, -	0xcd2: 0x2181, 0xcd3: 0x21b9, 0xcd4: 0x21e9, 0xcd5: 0x2219, 0xcd6: 0x2249, 0xcd7: 0x2279, -	0xcd8: 0x22a9, 0xcd9: 0x22d9, 0xcda: 0x2309, 0xcdb: 0x2339, 0xcdc: 0x2369, 0xcdd: 0x2399, -	0xcde: 0x23c9, 0xcdf: 0x23f9, 0xce0: 0x0f41, 0xce1: 0x2421, 0xce2: 0x0905, 0xce3: 0x2439, -	0xce4: 0x1089, 0xce5: 0x2451, 0xce6: 0x0925, 0xce7: 0x2469, 0xce8: 0x2491, 0xce9: 0x0369, -	0xcea: 0x24a9, 0xceb: 0x0945, 0xcec: 0x0359, 0xced: 0x1159, 0xcee: 0x0ef9, 0xcef: 0x0f61, -	0xcf0: 0x0f41, 0xcf1: 0x2421, 0xcf2: 0x0965, 0xcf3: 0x2439, 0xcf4: 0x1089, 0xcf5: 0x2451, -	0xcf6: 0x0985, 0xcf7: 0x2469, 0xcf8: 0x2491, 0xcf9: 0x0369, 0xcfa: 0x24a9, 0xcfb: 0x09a5, -	0xcfc: 0x0359, 0xcfd: 0x1159, 0xcfe: 0x0ef9, 0xcff: 0x0f61, -	// Block 0x34, offset 0xd00 -	0xd00: 0x0018, 0xd01: 0x0018, 0xd02: 0x0018, 0xd03: 0x0018, 0xd04: 0x0018, 0xd05: 0x0018, -	0xd06: 0x0018, 0xd07: 0x0018, 0xd08: 0x0018, 0xd09: 0x0018, 0xd0a: 0x0018, 0xd0b: 0x0040, -	0xd0c: 0x0040, 0xd0d: 0x0040, 0xd0e: 0x0040, 0xd0f: 0x0040, 0xd10: 0x0040, 0xd11: 0x0040, -	0xd12: 0x0040, 0xd13: 0x0040, 0xd14: 0x0040, 0xd15: 0x0040, 0xd16: 0x0040, 0xd17: 0x0040, -	0xd18: 0x0040, 0xd19: 0x0040, 0xd1a: 0x0040, 0xd1b: 0x0040, 0xd1c: 0x0040, 0xd1d: 0x0040, -	0xd1e: 0x0040, 0xd1f: 0x0040, 0xd20: 0x00c9, 0xd21: 0x0069, 0xd22: 0x0079, 0xd23: 0x1f51, -	0xd24: 0x1f61, 0xd25: 0x1f71, 0xd26: 0x1f81, 0xd27: 0x1f91, 0xd28: 0x1fa1, 0xd29: 0x2601, -	0xd2a: 0x2619, 0xd2b: 0x2631, 0xd2c: 0x2649, 0xd2d: 0x2661, 0xd2e: 0x2679, 0xd2f: 0x2691, -	0xd30: 0x26a9, 0xd31: 0x26c1, 0xd32: 0x26d9, 0xd33: 0x26f1, 0xd34: 0x0a06, 0xd35: 0x0a26, -	0xd36: 0x0a46, 0xd37: 0x0a66, 0xd38: 0x0a86, 0xd39: 0x0aa6, 0xd3a: 0x0ac6, 0xd3b: 0x0ae6, -	0xd3c: 0x0b06, 0xd3d: 0x270a, 0xd3e: 0x2732, 0xd3f: 0x275a, -	// Block 0x35, offset 0xd40 -	0xd40: 0x2782, 0xd41: 0x27aa, 0xd42: 0x27d2, 0xd43: 0x27fa, 0xd44: 0x2822, 0xd45: 0x284a, -	0xd46: 0x2872, 0xd47: 0x289a, 0xd48: 0x0040, 0xd49: 0x0040, 0xd4a: 0x0040, 0xd4b: 0x0040, -	0xd4c: 0x0040, 0xd4d: 0x0040, 0xd4e: 0x0040, 0xd4f: 0x0040, 0xd50: 0x0040, 0xd51: 0x0040, -	0xd52: 0x0040, 0xd53: 0x0040, 0xd54: 0x0040, 0xd55: 0x0040, 0xd56: 0x0040, 0xd57: 0x0040, -	0xd58: 0x0040, 0xd59: 0x0040, 0xd5a: 0x0040, 0xd5b: 0x0040, 0xd5c: 0x0b26, 0xd5d: 0x0b46, -	0xd5e: 0x0b66, 0xd5f: 0x0b86, 0xd60: 0x0ba6, 0xd61: 0x0bc6, 0xd62: 0x0be6, 0xd63: 0x0c06, -	0xd64: 0x0c26, 0xd65: 0x0c46, 0xd66: 0x0c66, 0xd67: 0x0c86, 0xd68: 0x0ca6, 0xd69: 0x0cc6, -	0xd6a: 0x0ce6, 0xd6b: 0x0d06, 0xd6c: 0x0d26, 0xd6d: 0x0d46, 0xd6e: 0x0d66, 0xd6f: 0x0d86, -	0xd70: 0x0da6, 0xd71: 0x0dc6, 0xd72: 0x0de6, 0xd73: 0x0e06, 0xd74: 0x0e26, 0xd75: 0x0e46, -	0xd76: 0x0039, 0xd77: 0x0ee9, 0xd78: 0x1159, 0xd79: 0x0ef9, 0xd7a: 0x0f09, 0xd7b: 0x1199, -	0xd7c: 0x0f31, 0xd7d: 0x0249, 0xd7e: 0x0f41, 0xd7f: 0x0259, -	// Block 0x36, offset 0xd80 -	0xd80: 0x0f51, 0xd81: 0x0359, 0xd82: 0x0f61, 0xd83: 0x0f71, 0xd84: 0x00d9, 0xd85: 0x0f99, -	0xd86: 0x2039, 0xd87: 0x0269, 0xd88: 0x01d9, 0xd89: 0x0fa9, 0xd8a: 0x0fb9, 0xd8b: 0x1089, -	0xd8c: 0x0279, 0xd8d: 0x0369, 0xd8e: 0x0289, 0xd8f: 0x13d1, 0xd90: 0x0039, 0xd91: 0x0ee9, -	0xd92: 0x1159, 0xd93: 0x0ef9, 0xd94: 0x0f09, 0xd95: 0x1199, 0xd96: 0x0f31, 0xd97: 0x0249, -	0xd98: 0x0f41, 0xd99: 0x0259, 0xd9a: 0x0f51, 0xd9b: 0x0359, 0xd9c: 0x0f61, 0xd9d: 0x0f71, -	0xd9e: 0x00d9, 0xd9f: 0x0f99, 0xda0: 0x2039, 0xda1: 0x0269, 0xda2: 0x01d9, 0xda3: 0x0fa9, -	0xda4: 0x0fb9, 0xda5: 0x1089, 0xda6: 0x0279, 0xda7: 0x0369, 0xda8: 0x0289, 0xda9: 0x13d1, -	0xdaa: 0x1f41, 0xdab: 0x0018, 0xdac: 0x0018, 0xdad: 0x0018, 0xdae: 0x0018, 0xdaf: 0x0018, -	0xdb0: 0x0018, 0xdb1: 0x0018, 0xdb2: 0x0018, 0xdb3: 0x0018, 0xdb4: 0x0018, 0xdb5: 0x0018, -	0xdb6: 0x0018, 0xdb7: 0x0018, 0xdb8: 0x0018, 0xdb9: 0x0018, 0xdba: 0x0018, 0xdbb: 0x0018, -	0xdbc: 0x0018, 0xdbd: 0x0018, 0xdbe: 0x0018, 0xdbf: 0x0018, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0x0008, 0xdc1: 0x0008, 0xdc2: 0x0008, 0xdc3: 0x0008, 0xdc4: 0x0008, 0xdc5: 0x0008, -	0xdc6: 0x0008, 0xdc7: 0x0008, 0xdc8: 0x0008, 0xdc9: 0x0008, 0xdca: 0x0008, 0xdcb: 0x0008, -	0xdcc: 0x0008, 0xdcd: 0x0008, 0xdce: 0x0008, 0xdcf: 0x0008, 0xdd0: 0x0008, 0xdd1: 0x0008, -	0xdd2: 0x0008, 0xdd3: 0x0008, 0xdd4: 0x0008, 0xdd5: 0x0008, 0xdd6: 0x0008, 0xdd7: 0x0008, -	0xdd8: 0x0008, 0xdd9: 0x0008, 0xdda: 0x0008, 0xddb: 0x0008, 0xddc: 0x0008, 0xddd: 0x0008, -	0xdde: 0x0008, 0xddf: 0x0040, 0xde0: 0xe00d, 0xde1: 0x0008, 0xde2: 0x2971, 0xde3: 0x0ebd, -	0xde4: 0x2989, 0xde5: 0x0008, 0xde6: 0x0008, 0xde7: 0xe07d, 0xde8: 0x0008, 0xde9: 0xe01d, -	0xdea: 0x0008, 0xdeb: 0xe03d, 0xdec: 0x0008, 0xded: 0x0fe1, 0xdee: 0x1281, 0xdef: 0x0fc9, -	0xdf0: 0x1141, 0xdf1: 0x0008, 0xdf2: 0xe00d, 0xdf3: 0x0008, 0xdf4: 0x0008, 0xdf5: 0xe01d, -	0xdf6: 0x0008, 0xdf7: 0x0008, 0xdf8: 0x0008, 0xdf9: 0x0008, 0xdfa: 0x0008, 0xdfb: 0x0008, -	0xdfc: 0x0259, 0xdfd: 0x1089, 0xdfe: 0x29a1, 0xdff: 0x29b9, -	// Block 0x38, offset 0xe00 -	0xe00: 0xe00d, 0xe01: 0x0008, 0xe02: 0xe00d, 0xe03: 0x0008, 0xe04: 0xe00d, 0xe05: 0x0008, -	0xe06: 0xe00d, 0xe07: 0x0008, 0xe08: 0xe00d, 0xe09: 0x0008, 0xe0a: 0xe00d, 0xe0b: 0x0008, -	0xe0c: 0xe00d, 0xe0d: 0x0008, 0xe0e: 0xe00d, 0xe0f: 0x0008, 0xe10: 0xe00d, 0xe11: 0x0008, -	0xe12: 0xe00d, 0xe13: 0x0008, 0xe14: 0xe00d, 0xe15: 0x0008, 0xe16: 0xe00d, 0xe17: 0x0008, -	0xe18: 0xe00d, 0xe19: 0x0008, 0xe1a: 0xe00d, 0xe1b: 0x0008, 0xe1c: 0xe00d, 0xe1d: 0x0008, -	0xe1e: 0xe00d, 0xe1f: 0x0008, 0xe20: 0xe00d, 0xe21: 0x0008, 0xe22: 0xe00d, 0xe23: 0x0008, -	0xe24: 0x0008, 0xe25: 0x0018, 0xe26: 0x0018, 0xe27: 0x0018, 0xe28: 0x0018, 0xe29: 0x0018, -	0xe2a: 0x0018, 0xe2b: 0xe03d, 0xe2c: 0x0008, 0xe2d: 0xe01d, 0xe2e: 0x0008, 0xe2f: 0x3308, -	0xe30: 0x3308, 0xe31: 0x3308, 0xe32: 0xe00d, 0xe33: 0x0008, 0xe34: 0x0040, 0xe35: 0x0040, -	0xe36: 0x0040, 0xe37: 0x0040, 0xe38: 0x0040, 0xe39: 0x0018, 0xe3a: 0x0018, 0xe3b: 0x0018, -	0xe3c: 0x0018, 0xe3d: 0x0018, 0xe3e: 0x0018, 0xe3f: 0x0018, -	// Block 0x39, offset 0xe40 -	0xe40: 0x26fd, 0xe41: 0x271d, 0xe42: 0x273d, 0xe43: 0x275d, 0xe44: 0x277d, 0xe45: 0x279d, -	0xe46: 0x27bd, 0xe47: 0x27dd, 0xe48: 0x27fd, 0xe49: 0x281d, 0xe4a: 0x283d, 0xe4b: 0x285d, -	0xe4c: 0x287d, 0xe4d: 0x289d, 0xe4e: 0x28bd, 0xe4f: 0x28dd, 0xe50: 0x28fd, 0xe51: 0x291d, -	0xe52: 0x293d, 0xe53: 0x295d, 0xe54: 0x297d, 0xe55: 0x299d, 0xe56: 0x0040, 0xe57: 0x0040, -	0xe58: 0x0040, 0xe59: 0x0040, 0xe5a: 0x0040, 0xe5b: 0x0040, 0xe5c: 0x0040, 0xe5d: 0x0040, -	0xe5e: 0x0040, 0xe5f: 0x0040, 0xe60: 0x0040, 0xe61: 0x0040, 0xe62: 0x0040, 0xe63: 0x0040, -	0xe64: 0x0040, 0xe65: 0x0040, 0xe66: 0x0040, 0xe67: 0x0040, 0xe68: 0x0040, 0xe69: 0x0040, -	0xe6a: 0x0040, 0xe6b: 0x0040, 0xe6c: 0x0040, 0xe6d: 0x0040, 0xe6e: 0x0040, 0xe6f: 0x0040, -	0xe70: 0x0040, 0xe71: 0x0040, 0xe72: 0x0040, 0xe73: 0x0040, 0xe74: 0x0040, 0xe75: 0x0040, -	0xe76: 0x0040, 0xe77: 0x0040, 0xe78: 0x0040, 0xe79: 0x0040, 0xe7a: 0x0040, 0xe7b: 0x0040, -	0xe7c: 0x0040, 0xe7d: 0x0040, 0xe7e: 0x0040, 0xe7f: 0x0040, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x000a, 0xe81: 0x0018, 0xe82: 0x29d1, 0xe83: 0x0018, 0xe84: 0x0018, 0xe85: 0x0008, -	0xe86: 0x0008, 0xe87: 0x0008, 0xe88: 0x0018, 0xe89: 0x0018, 0xe8a: 0x0018, 0xe8b: 0x0018, -	0xe8c: 0x0018, 0xe8d: 0x0018, 0xe8e: 0x0018, 0xe8f: 0x0018, 0xe90: 0x0018, 0xe91: 0x0018, -	0xe92: 0x0018, 0xe93: 0x0018, 0xe94: 0x0018, 0xe95: 0x0018, 0xe96: 0x0018, 0xe97: 0x0018, -	0xe98: 0x0018, 0xe99: 0x0018, 0xe9a: 0x0018, 0xe9b: 0x0018, 0xe9c: 0x0018, 0xe9d: 0x0018, -	0xe9e: 0x0018, 0xe9f: 0x0018, 0xea0: 0x0018, 0xea1: 0x0018, 0xea2: 0x0018, 0xea3: 0x0018, -	0xea4: 0x0018, 0xea5: 0x0018, 0xea6: 0x0018, 0xea7: 0x0018, 0xea8: 0x0018, 0xea9: 0x0018, -	0xeaa: 0x3308, 0xeab: 0x3308, 0xeac: 0x3308, 0xead: 0x3308, 0xeae: 0x3018, 0xeaf: 0x3018, -	0xeb0: 0x0018, 0xeb1: 0x0018, 0xeb2: 0x0018, 0xeb3: 0x0018, 0xeb4: 0x0018, 0xeb5: 0x0018, -	0xeb6: 0xe125, 0xeb7: 0x0018, 0xeb8: 0x29bd, 0xeb9: 0x29dd, 0xeba: 0x29fd, 0xebb: 0x0018, -	0xebc: 0x0008, 0xebd: 0x0018, 0xebe: 0x0018, 0xebf: 0x0018, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x2b3d, 0xec1: 0x2b5d, 0xec2: 0x2b7d, 0xec3: 0x2b9d, 0xec4: 0x2bbd, 0xec5: 0x2bdd, -	0xec6: 0x2bdd, 0xec7: 0x2bdd, 0xec8: 0x2bfd, 0xec9: 0x2bfd, 0xeca: 0x2bfd, 0xecb: 0x2bfd, -	0xecc: 0x2c1d, 0xecd: 0x2c1d, 0xece: 0x2c1d, 0xecf: 0x2c3d, 0xed0: 0x2c5d, 0xed1: 0x2c5d, -	0xed2: 0x2a7d, 0xed3: 0x2a7d, 0xed4: 0x2c5d, 0xed5: 0x2c5d, 0xed6: 0x2c7d, 0xed7: 0x2c7d, -	0xed8: 0x2c5d, 0xed9: 0x2c5d, 0xeda: 0x2a7d, 0xedb: 0x2a7d, 0xedc: 0x2c5d, 0xedd: 0x2c5d, -	0xede: 0x2c3d, 0xedf: 0x2c3d, 0xee0: 0x2c9d, 0xee1: 0x2c9d, 0xee2: 0x2cbd, 0xee3: 0x2cbd, -	0xee4: 0x0040, 0xee5: 0x2cdd, 0xee6: 0x2cfd, 0xee7: 0x2d1d, 0xee8: 0x2d1d, 0xee9: 0x2d3d, -	0xeea: 0x2d5d, 0xeeb: 0x2d7d, 0xeec: 0x2d9d, 0xeed: 0x2dbd, 0xeee: 0x2ddd, 0xeef: 0x2dfd, -	0xef0: 0x2e1d, 0xef1: 0x2e3d, 0xef2: 0x2e3d, 0xef3: 0x2e5d, 0xef4: 0x2e7d, 0xef5: 0x2e7d, -	0xef6: 0x2e9d, 0xef7: 0x2ebd, 0xef8: 0x2e5d, 0xef9: 0x2edd, 0xefa: 0x2efd, 0xefb: 0x2edd, -	0xefc: 0x2e5d, 0xefd: 0x2f1d, 0xefe: 0x2f3d, 0xeff: 0x2f5d, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x2f7d, 0xf01: 0x2f9d, 0xf02: 0x2cfd, 0xf03: 0x2cdd, 0xf04: 0x2fbd, 0xf05: 0x2fdd, -	0xf06: 0x2ffd, 0xf07: 0x301d, 0xf08: 0x303d, 0xf09: 0x305d, 0xf0a: 0x307d, 0xf0b: 0x309d, -	0xf0c: 0x30bd, 0xf0d: 0x30dd, 0xf0e: 0x30fd, 0xf0f: 0x0040, 0xf10: 0x0018, 0xf11: 0x0018, -	0xf12: 0x311d, 0xf13: 0x313d, 0xf14: 0x315d, 0xf15: 0x317d, 0xf16: 0x319d, 0xf17: 0x31bd, -	0xf18: 0x31dd, 0xf19: 0x31fd, 0xf1a: 0x321d, 0xf1b: 0x323d, 0xf1c: 0x315d, 0xf1d: 0x325d, -	0xf1e: 0x327d, 0xf1f: 0x329d, 0xf20: 0x0008, 0xf21: 0x0008, 0xf22: 0x0008, 0xf23: 0x0008, -	0xf24: 0x0008, 0xf25: 0x0008, 0xf26: 0x0008, 0xf27: 0x0008, 0xf28: 0x0008, 0xf29: 0x0008, -	0xf2a: 0x0008, 0xf2b: 0x0008, 0xf2c: 0x0008, 0xf2d: 0x0008, 0xf2e: 0x0008, 0xf2f: 0x0008, -	0xf30: 0x0008, 0xf31: 0x0008, 0xf32: 0x0008, 0xf33: 0x0008, 0xf34: 0x0008, 0xf35: 0x0008, -	0xf36: 0x0008, 0xf37: 0x0008, 0xf38: 0x0008, 0xf39: 0x0008, 0xf3a: 0x0008, 0xf3b: 0x0040, -	0xf3c: 0x0040, 0xf3d: 0x0040, 0xf3e: 0x0040, 0xf3f: 0x0040, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x36a2, 0xf41: 0x36d2, 0xf42: 0x3702, 0xf43: 0x3732, 0xf44: 0x32bd, 0xf45: 0x32dd, -	0xf46: 0x32fd, 0xf47: 0x331d, 0xf48: 0x0018, 0xf49: 0x0018, 0xf4a: 0x0018, 0xf4b: 0x0018, -	0xf4c: 0x0018, 0xf4d: 0x0018, 0xf4e: 0x0018, 0xf4f: 0x0018, 0xf50: 0x333d, 0xf51: 0x3761, -	0xf52: 0x3779, 0xf53: 0x3791, 0xf54: 0x37a9, 0xf55: 0x37c1, 0xf56: 0x37d9, 0xf57: 0x37f1, -	0xf58: 0x3809, 0xf59: 0x3821, 0xf5a: 0x3839, 0xf5b: 0x3851, 0xf5c: 0x3869, 0xf5d: 0x3881, -	0xf5e: 0x3899, 0xf5f: 0x38b1, 0xf60: 0x335d, 0xf61: 0x337d, 0xf62: 0x339d, 0xf63: 0x33bd, -	0xf64: 0x33dd, 0xf65: 0x33dd, 0xf66: 0x33fd, 0xf67: 0x341d, 0xf68: 0x343d, 0xf69: 0x345d, -	0xf6a: 0x347d, 0xf6b: 0x349d, 0xf6c: 0x34bd, 0xf6d: 0x34dd, 0xf6e: 0x34fd, 0xf6f: 0x351d, -	0xf70: 0x353d, 0xf71: 0x355d, 0xf72: 0x357d, 0xf73: 0x359d, 0xf74: 0x35bd, 0xf75: 0x35dd, -	0xf76: 0x35fd, 0xf77: 0x361d, 0xf78: 0x363d, 0xf79: 0x365d, 0xf7a: 0x367d, 0xf7b: 0x369d, -	0xf7c: 0x38c9, 0xf7d: 0x3901, 0xf7e: 0x36bd, 0xf7f: 0x0018, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x36dd, 0xf81: 0x36fd, 0xf82: 0x371d, 0xf83: 0x373d, 0xf84: 0x375d, 0xf85: 0x377d, -	0xf86: 0x379d, 0xf87: 0x37bd, 0xf88: 0x37dd, 0xf89: 0x37fd, 0xf8a: 0x381d, 0xf8b: 0x383d, -	0xf8c: 0x385d, 0xf8d: 0x387d, 0xf8e: 0x389d, 0xf8f: 0x38bd, 0xf90: 0x38dd, 0xf91: 0x38fd, -	0xf92: 0x391d, 0xf93: 0x393d, 0xf94: 0x395d, 0xf95: 0x397d, 0xf96: 0x399d, 0xf97: 0x39bd, -	0xf98: 0x39dd, 0xf99: 0x39fd, 0xf9a: 0x3a1d, 0xf9b: 0x3a3d, 0xf9c: 0x3a5d, 0xf9d: 0x3a7d, -	0xf9e: 0x3a9d, 0xf9f: 0x3abd, 0xfa0: 0x3add, 0xfa1: 0x3afd, 0xfa2: 0x3b1d, 0xfa3: 0x3b3d, -	0xfa4: 0x3b5d, 0xfa5: 0x3b7d, 0xfa6: 0x127d, 0xfa7: 0x3b9d, 0xfa8: 0x3bbd, 0xfa9: 0x3bdd, -	0xfaa: 0x3bfd, 0xfab: 0x3c1d, 0xfac: 0x3c3d, 0xfad: 0x3c5d, 0xfae: 0x239d, 0xfaf: 0x3c7d, -	0xfb0: 0x3c9d, 0xfb1: 0x3939, 0xfb2: 0x3951, 0xfb3: 0x3969, 0xfb4: 0x3981, 0xfb5: 0x3999, -	0xfb6: 0x39b1, 0xfb7: 0x39c9, 0xfb8: 0x39e1, 0xfb9: 0x39f9, 0xfba: 0x3a11, 0xfbb: 0x3a29, -	0xfbc: 0x3a41, 0xfbd: 0x3a59, 0xfbe: 0x3a71, 0xfbf: 0x3a89, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x3aa1, 0xfc1: 0x3ac9, 0xfc2: 0x3af1, 0xfc3: 0x3b19, 0xfc4: 0x3b41, 0xfc5: 0x3b69, -	0xfc6: 0x3b91, 0xfc7: 0x3bb9, 0xfc8: 0x3be1, 0xfc9: 0x3c09, 0xfca: 0x3c39, 0xfcb: 0x3c69, -	0xfcc: 0x3c99, 0xfcd: 0x3cbd, 0xfce: 0x3cb1, 0xfcf: 0x3cdd, 0xfd0: 0x3cfd, 0xfd1: 0x3d15, -	0xfd2: 0x3d2d, 0xfd3: 0x3d45, 0xfd4: 0x3d5d, 0xfd5: 0x3d5d, 0xfd6: 0x3d45, 0xfd7: 0x3d75, -	0xfd8: 0x07bd, 0xfd9: 0x3d8d, 0xfda: 0x3da5, 0xfdb: 0x3dbd, 0xfdc: 0x3dd5, 0xfdd: 0x3ded, -	0xfde: 0x3e05, 0xfdf: 0x3e1d, 0xfe0: 0x3e35, 0xfe1: 0x3e4d, 0xfe2: 0x3e65, 0xfe3: 0x3e7d, -	0xfe4: 0x3e95, 0xfe5: 0x3e95, 0xfe6: 0x3ead, 0xfe7: 0x3ead, 0xfe8: 0x3ec5, 0xfe9: 0x3ec5, -	0xfea: 0x3edd, 0xfeb: 0x3ef5, 0xfec: 0x3f0d, 0xfed: 0x3f25, 0xfee: 0x3f3d, 0xfef: 0x3f3d, -	0xff0: 0x3f55, 0xff1: 0x3f55, 0xff2: 0x3f55, 0xff3: 0x3f6d, 0xff4: 0x3f85, 0xff5: 0x3f9d, -	0xff6: 0x3fb5, 0xff7: 0x3f9d, 0xff8: 0x3fcd, 0xff9: 0x3fe5, 0xffa: 0x3f6d, 0xffb: 0x3ffd, -	0xffc: 0x4015, 0xffd: 0x4015, 0xffe: 0x4015, 0xfff: 0x0040, -	// Block 0x40, offset 0x1000 -	0x1000: 0x3cc9, 0x1001: 0x3d31, 0x1002: 0x3d99, 0x1003: 0x3e01, 0x1004: 0x3e51, 0x1005: 0x3eb9, -	0x1006: 0x3f09, 0x1007: 0x3f59, 0x1008: 0x3fd9, 0x1009: 0x4041, 0x100a: 0x4091, 0x100b: 0x40e1, -	0x100c: 0x4131, 0x100d: 0x4199, 0x100e: 0x4201, 0x100f: 0x4251, 0x1010: 0x42a1, 0x1011: 0x42d9, -	0x1012: 0x4329, 0x1013: 0x4391, 0x1014: 0x43f9, 0x1015: 0x4431, 0x1016: 0x44b1, 0x1017: 0x4549, -	0x1018: 0x45c9, 0x1019: 0x4619, 0x101a: 0x4699, 0x101b: 0x4719, 0x101c: 0x4781, 0x101d: 0x47d1, -	0x101e: 0x4821, 0x101f: 0x4871, 0x1020: 0x48d9, 0x1021: 0x4959, 0x1022: 0x49c1, 0x1023: 0x4a11, -	0x1024: 0x4a61, 0x1025: 0x4ab1, 0x1026: 0x4ae9, 0x1027: 0x4b21, 0x1028: 0x4b59, 0x1029: 0x4b91, -	0x102a: 0x4be1, 0x102b: 0x4c31, 0x102c: 0x4cb1, 0x102d: 0x4d01, 0x102e: 0x4d69, 0x102f: 0x4de9, -	0x1030: 0x4e39, 0x1031: 0x4e71, 0x1032: 0x4ea9, 0x1033: 0x4f29, 0x1034: 0x4f91, 0x1035: 0x5011, -	0x1036: 0x5061, 0x1037: 0x50e1, 0x1038: 0x5119, 0x1039: 0x5169, 0x103a: 0x51b9, 0x103b: 0x5209, -	0x103c: 0x5259, 0x103d: 0x52a9, 0x103e: 0x5311, 0x103f: 0x5361, -	// Block 0x41, offset 0x1040 -	0x1040: 0x5399, 0x1041: 0x53e9, 0x1042: 0x5439, 0x1043: 0x5489, 0x1044: 0x54f1, 0x1045: 0x5541, -	0x1046: 0x5591, 0x1047: 0x55e1, 0x1048: 0x5661, 0x1049: 0x56c9, 0x104a: 0x5701, 0x104b: 0x5781, -	0x104c: 0x57b9, 0x104d: 0x5821, 0x104e: 0x5889, 0x104f: 0x58d9, 0x1050: 0x5929, 0x1051: 0x5979, -	0x1052: 0x59e1, 0x1053: 0x5a19, 0x1054: 0x5a69, 0x1055: 0x5ad1, 0x1056: 0x5b09, 0x1057: 0x5b89, -	0x1058: 0x5bd9, 0x1059: 0x5c01, 0x105a: 0x5c29, 0x105b: 0x5c51, 0x105c: 0x5c79, 0x105d: 0x5ca1, -	0x105e: 0x5cc9, 0x105f: 0x5cf1, 0x1060: 0x5d19, 0x1061: 0x5d41, 0x1062: 0x5d69, 0x1063: 0x5d99, -	0x1064: 0x5dc9, 0x1065: 0x5df9, 0x1066: 0x5e29, 0x1067: 0x5e59, 0x1068: 0x5e89, 0x1069: 0x5eb9, -	0x106a: 0x5ee9, 0x106b: 0x5f19, 0x106c: 0x5f49, 0x106d: 0x5f79, 0x106e: 0x5fa9, 0x106f: 0x5fd9, -	0x1070: 0x6009, 0x1071: 0x402d, 0x1072: 0x6039, 0x1073: 0x6051, 0x1074: 0x404d, 0x1075: 0x6069, -	0x1076: 0x6081, 0x1077: 0x6099, 0x1078: 0x406d, 0x1079: 0x406d, 0x107a: 0x60b1, 0x107b: 0x60c9, -	0x107c: 0x6101, 0x107d: 0x6139, 0x107e: 0x6171, 0x107f: 0x61a9, -	// Block 0x42, offset 0x1080 -	0x1080: 0x6211, 0x1081: 0x6229, 0x1082: 0x408d, 0x1083: 0x6241, 0x1084: 0x6259, 0x1085: 0x6271, -	0x1086: 0x6289, 0x1087: 0x62a1, 0x1088: 0x40ad, 0x1089: 0x62b9, 0x108a: 0x62e1, 0x108b: 0x62f9, -	0x108c: 0x40cd, 0x108d: 0x40cd, 0x108e: 0x6311, 0x108f: 0x6329, 0x1090: 0x6341, 0x1091: 0x40ed, -	0x1092: 0x410d, 0x1093: 0x412d, 0x1094: 0x414d, 0x1095: 0x416d, 0x1096: 0x6359, 0x1097: 0x6371, -	0x1098: 0x6389, 0x1099: 0x63a1, 0x109a: 0x63b9, 0x109b: 0x418d, 0x109c: 0x63d1, 0x109d: 0x63e9, -	0x109e: 0x6401, 0x109f: 0x41ad, 0x10a0: 0x41cd, 0x10a1: 0x6419, 0x10a2: 0x41ed, 0x10a3: 0x420d, -	0x10a4: 0x422d, 0x10a5: 0x6431, 0x10a6: 0x424d, 0x10a7: 0x6449, 0x10a8: 0x6479, 0x10a9: 0x6211, -	0x10aa: 0x426d, 0x10ab: 0x428d, 0x10ac: 0x42ad, 0x10ad: 0x42cd, 0x10ae: 0x64b1, 0x10af: 0x64f1, -	0x10b0: 0x6539, 0x10b1: 0x6551, 0x10b2: 0x42ed, 0x10b3: 0x6569, 0x10b4: 0x6581, 0x10b5: 0x6599, -	0x10b6: 0x430d, 0x10b7: 0x65b1, 0x10b8: 0x65c9, 0x10b9: 0x65b1, 0x10ba: 0x65e1, 0x10bb: 0x65f9, -	0x10bc: 0x432d, 0x10bd: 0x6611, 0x10be: 0x6629, 0x10bf: 0x6611, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0x434d, 0x10c1: 0x436d, 0x10c2: 0x0040, 0x10c3: 0x6641, 0x10c4: 0x6659, 0x10c5: 0x6671, -	0x10c6: 0x6689, 0x10c7: 0x0040, 0x10c8: 0x66c1, 0x10c9: 0x66d9, 0x10ca: 0x66f1, 0x10cb: 0x6709, -	0x10cc: 0x6721, 0x10cd: 0x6739, 0x10ce: 0x6401, 0x10cf: 0x6751, 0x10d0: 0x6769, 0x10d1: 0x6781, -	0x10d2: 0x438d, 0x10d3: 0x6799, 0x10d4: 0x6289, 0x10d5: 0x43ad, 0x10d6: 0x43cd, 0x10d7: 0x67b1, -	0x10d8: 0x0040, 0x10d9: 0x43ed, 0x10da: 0x67c9, 0x10db: 0x67e1, 0x10dc: 0x67f9, 0x10dd: 0x6811, -	0x10de: 0x6829, 0x10df: 0x6859, 0x10e0: 0x6889, 0x10e1: 0x68b1, 0x10e2: 0x68d9, 0x10e3: 0x6901, -	0x10e4: 0x6929, 0x10e5: 0x6951, 0x10e6: 0x6979, 0x10e7: 0x69a1, 0x10e8: 0x69c9, 0x10e9: 0x69f1, -	0x10ea: 0x6a21, 0x10eb: 0x6a51, 0x10ec: 0x6a81, 0x10ed: 0x6ab1, 0x10ee: 0x6ae1, 0x10ef: 0x6b11, -	0x10f0: 0x6b41, 0x10f1: 0x6b71, 0x10f2: 0x6ba1, 0x10f3: 0x6bd1, 0x10f4: 0x6c01, 0x10f5: 0x6c31, -	0x10f6: 0x6c61, 0x10f7: 0x6c91, 0x10f8: 0x6cc1, 0x10f9: 0x6cf1, 0x10fa: 0x6d21, 0x10fb: 0x6d51, -	0x10fc: 0x6d81, 0x10fd: 0x6db1, 0x10fe: 0x6de1, 0x10ff: 0x440d, -	// Block 0x44, offset 0x1100 -	0x1100: 0xe00d, 0x1101: 0x0008, 0x1102: 0xe00d, 0x1103: 0x0008, 0x1104: 0xe00d, 0x1105: 0x0008, -	0x1106: 0xe00d, 0x1107: 0x0008, 0x1108: 0xe00d, 0x1109: 0x0008, 0x110a: 0xe00d, 0x110b: 0x0008, -	0x110c: 0xe00d, 0x110d: 0x0008, 0x110e: 0xe00d, 0x110f: 0x0008, 0x1110: 0xe00d, 0x1111: 0x0008, -	0x1112: 0xe00d, 0x1113: 0x0008, 0x1114: 0xe00d, 0x1115: 0x0008, 0x1116: 0xe00d, 0x1117: 0x0008, -	0x1118: 0xe00d, 0x1119: 0x0008, 0x111a: 0xe00d, 0x111b: 0x0008, 0x111c: 0xe00d, 0x111d: 0x0008, -	0x111e: 0xe00d, 0x111f: 0x0008, 0x1120: 0xe00d, 0x1121: 0x0008, 0x1122: 0xe00d, 0x1123: 0x0008, -	0x1124: 0xe00d, 0x1125: 0x0008, 0x1126: 0xe00d, 0x1127: 0x0008, 0x1128: 0xe00d, 0x1129: 0x0008, -	0x112a: 0xe00d, 0x112b: 0x0008, 0x112c: 0xe00d, 0x112d: 0x0008, 0x112e: 0x0008, 0x112f: 0x3308, -	0x1130: 0x3318, 0x1131: 0x3318, 0x1132: 0x3318, 0x1133: 0x0018, 0x1134: 0x3308, 0x1135: 0x3308, -	0x1136: 0x3308, 0x1137: 0x3308, 0x1138: 0x3308, 0x1139: 0x3308, 0x113a: 0x3308, 0x113b: 0x3308, -	0x113c: 0x3308, 0x113d: 0x3308, 0x113e: 0x0018, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0xe00d, 0x1141: 0x0008, 0x1142: 0xe00d, 0x1143: 0x0008, 0x1144: 0xe00d, 0x1145: 0x0008, -	0x1146: 0xe00d, 0x1147: 0x0008, 0x1148: 0xe00d, 0x1149: 0x0008, 0x114a: 0xe00d, 0x114b: 0x0008, -	0x114c: 0xe00d, 0x114d: 0x0008, 0x114e: 0xe00d, 0x114f: 0x0008, 0x1150: 0xe00d, 0x1151: 0x0008, -	0x1152: 0xe00d, 0x1153: 0x0008, 0x1154: 0xe00d, 0x1155: 0x0008, 0x1156: 0xe00d, 0x1157: 0x0008, -	0x1158: 0xe00d, 0x1159: 0x0008, 0x115a: 0xe00d, 0x115b: 0x0008, 0x115c: 0x0ea1, 0x115d: 0x6e11, -	0x115e: 0x3308, 0x115f: 0x3308, 0x1160: 0x0008, 0x1161: 0x0008, 0x1162: 0x0008, 0x1163: 0x0008, -	0x1164: 0x0008, 0x1165: 0x0008, 0x1166: 0x0008, 0x1167: 0x0008, 0x1168: 0x0008, 0x1169: 0x0008, -	0x116a: 0x0008, 0x116b: 0x0008, 0x116c: 0x0008, 0x116d: 0x0008, 0x116e: 0x0008, 0x116f: 0x0008, -	0x1170: 0x0008, 0x1171: 0x0008, 0x1172: 0x0008, 0x1173: 0x0008, 0x1174: 0x0008, 0x1175: 0x0008, -	0x1176: 0x0008, 0x1177: 0x0008, 0x1178: 0x0008, 0x1179: 0x0008, 0x117a: 0x0008, 0x117b: 0x0008, -	0x117c: 0x0008, 0x117d: 0x0008, 0x117e: 0x0008, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0x0018, 0x1181: 0x0018, 0x1182: 0x0018, 0x1183: 0x0018, 0x1184: 0x0018, 0x1185: 0x0018, -	0x1186: 0x0018, 0x1187: 0x0018, 0x1188: 0x0018, 0x1189: 0x0018, 0x118a: 0x0018, 0x118b: 0x0018, -	0x118c: 0x0018, 0x118d: 0x0018, 0x118e: 0x0018, 0x118f: 0x0018, 0x1190: 0x0018, 0x1191: 0x0018, -	0x1192: 0x0018, 0x1193: 0x0018, 0x1194: 0x0018, 0x1195: 0x0018, 0x1196: 0x0018, 0x1197: 0x0008, -	0x1198: 0x0008, 0x1199: 0x0008, 0x119a: 0x0008, 0x119b: 0x0008, 0x119c: 0x0008, 0x119d: 0x0008, -	0x119e: 0x0008, 0x119f: 0x0008, 0x11a0: 0x0018, 0x11a1: 0x0018, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0xe00d, 0x11ab: 0x0008, 0x11ac: 0xe00d, 0x11ad: 0x0008, 0x11ae: 0xe00d, 0x11af: 0x0008, -	0x11b0: 0x0008, 0x11b1: 0x0008, 0x11b2: 0xe00d, 0x11b3: 0x0008, 0x11b4: 0xe00d, 0x11b5: 0x0008, -	0x11b6: 0xe00d, 0x11b7: 0x0008, 0x11b8: 0xe00d, 0x11b9: 0x0008, 0x11ba: 0xe00d, 0x11bb: 0x0008, -	0x11bc: 0xe00d, 0x11bd: 0x0008, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0xe00d, 0x11c1: 0x0008, 0x11c2: 0xe00d, 0x11c3: 0x0008, 0x11c4: 0xe00d, 0x11c5: 0x0008, -	0x11c6: 0xe00d, 0x11c7: 0x0008, 0x11c8: 0xe00d, 0x11c9: 0x0008, 0x11ca: 0xe00d, 0x11cb: 0x0008, -	0x11cc: 0xe00d, 0x11cd: 0x0008, 0x11ce: 0xe00d, 0x11cf: 0x0008, 0x11d0: 0xe00d, 0x11d1: 0x0008, -	0x11d2: 0xe00d, 0x11d3: 0x0008, 0x11d4: 0xe00d, 0x11d5: 0x0008, 0x11d6: 0xe00d, 0x11d7: 0x0008, -	0x11d8: 0xe00d, 0x11d9: 0x0008, 0x11da: 0xe00d, 0x11db: 0x0008, 0x11dc: 0xe00d, 0x11dd: 0x0008, -	0x11de: 0xe00d, 0x11df: 0x0008, 0x11e0: 0xe00d, 0x11e1: 0x0008, 0x11e2: 0xe00d, 0x11e3: 0x0008, -	0x11e4: 0xe00d, 0x11e5: 0x0008, 0x11e6: 0xe00d, 0x11e7: 0x0008, 0x11e8: 0xe00d, 0x11e9: 0x0008, -	0x11ea: 0xe00d, 0x11eb: 0x0008, 0x11ec: 0xe00d, 0x11ed: 0x0008, 0x11ee: 0xe00d, 0x11ef: 0x0008, -	0x11f0: 0xe0fd, 0x11f1: 0x0008, 0x11f2: 0x0008, 0x11f3: 0x0008, 0x11f4: 0x0008, 0x11f5: 0x0008, -	0x11f6: 0x0008, 0x11f7: 0x0008, 0x11f8: 0x0008, 0x11f9: 0xe01d, 0x11fa: 0x0008, 0x11fb: 0xe03d, -	0x11fc: 0x0008, 0x11fd: 0x442d, 0x11fe: 0xe00d, 0x11ff: 0x0008, -	// Block 0x48, offset 0x1200 -	0x1200: 0xe00d, 0x1201: 0x0008, 0x1202: 0xe00d, 0x1203: 0x0008, 0x1204: 0xe00d, 0x1205: 0x0008, -	0x1206: 0xe00d, 0x1207: 0x0008, 0x1208: 0x0008, 0x1209: 0x0018, 0x120a: 0x0018, 0x120b: 0xe03d, -	0x120c: 0x0008, 0x120d: 0x11d9, 0x120e: 0x0008, 0x120f: 0x0008, 0x1210: 0xe00d, 0x1211: 0x0008, -	0x1212: 0xe00d, 0x1213: 0x0008, 0x1214: 0x0008, 0x1215: 0x0008, 0x1216: 0xe00d, 0x1217: 0x0008, -	0x1218: 0xe00d, 0x1219: 0x0008, 0x121a: 0xe00d, 0x121b: 0x0008, 0x121c: 0xe00d, 0x121d: 0x0008, -	0x121e: 0xe00d, 0x121f: 0x0008, 0x1220: 0xe00d, 0x1221: 0x0008, 0x1222: 0xe00d, 0x1223: 0x0008, -	0x1224: 0xe00d, 0x1225: 0x0008, 0x1226: 0xe00d, 0x1227: 0x0008, 0x1228: 0xe00d, 0x1229: 0x0008, -	0x122a: 0x6e29, 0x122b: 0x1029, 0x122c: 0x11c1, 0x122d: 0x6e41, 0x122e: 0x1221, 0x122f: 0x0008, -	0x1230: 0x6e59, 0x1231: 0x6e71, 0x1232: 0x1239, 0x1233: 0x444d, 0x1234: 0xe00d, 0x1235: 0x0008, -	0x1236: 0xe00d, 0x1237: 0x0008, 0x1238: 0x0040, 0x1239: 0x0008, 0x123a: 0x0040, 0x123b: 0x0040, -	0x123c: 0x0040, 0x123d: 0x0040, 0x123e: 0x0040, 0x123f: 0x0040, -	// Block 0x49, offset 0x1240 -	0x1240: 0x64d5, 0x1241: 0x64f5, 0x1242: 0x6515, 0x1243: 0x6535, 0x1244: 0x6555, 0x1245: 0x6575, -	0x1246: 0x6595, 0x1247: 0x65b5, 0x1248: 0x65d5, 0x1249: 0x65f5, 0x124a: 0x6615, 0x124b: 0x6635, -	0x124c: 0x6655, 0x124d: 0x6675, 0x124e: 0x0008, 0x124f: 0x0008, 0x1250: 0x6695, 0x1251: 0x0008, -	0x1252: 0x66b5, 0x1253: 0x0008, 0x1254: 0x0008, 0x1255: 0x66d5, 0x1256: 0x66f5, 0x1257: 0x6715, -	0x1258: 0x6735, 0x1259: 0x6755, 0x125a: 0x6775, 0x125b: 0x6795, 0x125c: 0x67b5, 0x125d: 0x67d5, -	0x125e: 0x67f5, 0x125f: 0x0008, 0x1260: 0x6815, 0x1261: 0x0008, 0x1262: 0x6835, 0x1263: 0x0008, -	0x1264: 0x0008, 0x1265: 0x6855, 0x1266: 0x6875, 0x1267: 0x0008, 0x1268: 0x0008, 0x1269: 0x0008, -	0x126a: 0x6895, 0x126b: 0x68b5, 0x126c: 0x68d5, 0x126d: 0x68f5, 0x126e: 0x6915, 0x126f: 0x6935, -	0x1270: 0x6955, 0x1271: 0x6975, 0x1272: 0x6995, 0x1273: 0x69b5, 0x1274: 0x69d5, 0x1275: 0x69f5, -	0x1276: 0x6a15, 0x1277: 0x6a35, 0x1278: 0x6a55, 0x1279: 0x6a75, 0x127a: 0x6a95, 0x127b: 0x6ab5, -	0x127c: 0x6ad5, 0x127d: 0x6af5, 0x127e: 0x6b15, 0x127f: 0x6b35, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x7a95, 0x1281: 0x7ab5, 0x1282: 0x7ad5, 0x1283: 0x7af5, 0x1284: 0x7b15, 0x1285: 0x7b35, -	0x1286: 0x7b55, 0x1287: 0x7b75, 0x1288: 0x7b95, 0x1289: 0x7bb5, 0x128a: 0x7bd5, 0x128b: 0x7bf5, -	0x128c: 0x7c15, 0x128d: 0x7c35, 0x128e: 0x7c55, 0x128f: 0x6ec9, 0x1290: 0x6ef1, 0x1291: 0x6f19, -	0x1292: 0x7c75, 0x1293: 0x7c95, 0x1294: 0x7cb5, 0x1295: 0x6f41, 0x1296: 0x6f69, 0x1297: 0x6f91, -	0x1298: 0x7cd5, 0x1299: 0x7cf5, 0x129a: 0x0040, 0x129b: 0x0040, 0x129c: 0x0040, 0x129d: 0x0040, -	0x129e: 0x0040, 0x129f: 0x0040, 0x12a0: 0x0040, 0x12a1: 0x0040, 0x12a2: 0x0040, 0x12a3: 0x0040, -	0x12a4: 0x0040, 0x12a5: 0x0040, 0x12a6: 0x0040, 0x12a7: 0x0040, 0x12a8: 0x0040, 0x12a9: 0x0040, -	0x12aa: 0x0040, 0x12ab: 0x0040, 0x12ac: 0x0040, 0x12ad: 0x0040, 0x12ae: 0x0040, 0x12af: 0x0040, -	0x12b0: 0x0040, 0x12b1: 0x0040, 0x12b2: 0x0040, 0x12b3: 0x0040, 0x12b4: 0x0040, 0x12b5: 0x0040, -	0x12b6: 0x0040, 0x12b7: 0x0040, 0x12b8: 0x0040, 0x12b9: 0x0040, 0x12ba: 0x0040, 0x12bb: 0x0040, -	0x12bc: 0x0040, 0x12bd: 0x0040, 0x12be: 0x0040, 0x12bf: 0x0040, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x6fb9, 0x12c1: 0x6fd1, 0x12c2: 0x6fe9, 0x12c3: 0x7d15, 0x12c4: 0x7d35, 0x12c5: 0x7001, -	0x12c6: 0x7001, 0x12c7: 0x0040, 0x12c8: 0x0040, 0x12c9: 0x0040, 0x12ca: 0x0040, 0x12cb: 0x0040, -	0x12cc: 0x0040, 0x12cd: 0x0040, 0x12ce: 0x0040, 0x12cf: 0x0040, 0x12d0: 0x0040, 0x12d1: 0x0040, -	0x12d2: 0x0040, 0x12d3: 0x7019, 0x12d4: 0x7041, 0x12d5: 0x7069, 0x12d6: 0x7091, 0x12d7: 0x70b9, -	0x12d8: 0x0040, 0x12d9: 0x0040, 0x12da: 0x0040, 0x12db: 0x0040, 0x12dc: 0x0040, 0x12dd: 0x70e1, -	0x12de: 0x3308, 0x12df: 0x7109, 0x12e0: 0x7131, 0x12e1: 0x20a9, 0x12e2: 0x20f1, 0x12e3: 0x7149, -	0x12e4: 0x7161, 0x12e5: 0x7179, 0x12e6: 0x7191, 0x12e7: 0x71a9, 0x12e8: 0x71c1, 0x12e9: 0x1fb2, -	0x12ea: 0x71d9, 0x12eb: 0x7201, 0x12ec: 0x7229, 0x12ed: 0x7261, 0x12ee: 0x7299, 0x12ef: 0x72c1, -	0x12f0: 0x72e9, 0x12f1: 0x7311, 0x12f2: 0x7339, 0x12f3: 0x7361, 0x12f4: 0x7389, 0x12f5: 0x73b1, -	0x12f6: 0x73d9, 0x12f7: 0x0040, 0x12f8: 0x7401, 0x12f9: 0x7429, 0x12fa: 0x7451, 0x12fb: 0x7479, -	0x12fc: 0x74a1, 0x12fd: 0x0040, 0x12fe: 0x74c9, 0x12ff: 0x0040, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x74f1, 0x1301: 0x7519, 0x1302: 0x0040, 0x1303: 0x7541, 0x1304: 0x7569, 0x1305: 0x0040, -	0x1306: 0x7591, 0x1307: 0x75b9, 0x1308: 0x75e1, 0x1309: 0x7609, 0x130a: 0x7631, 0x130b: 0x7659, -	0x130c: 0x7681, 0x130d: 0x76a9, 0x130e: 0x76d1, 0x130f: 0x76f9, 0x1310: 0x7721, 0x1311: 0x7721, -	0x1312: 0x7739, 0x1313: 0x7739, 0x1314: 0x7739, 0x1315: 0x7739, 0x1316: 0x7751, 0x1317: 0x7751, -	0x1318: 0x7751, 0x1319: 0x7751, 0x131a: 0x7769, 0x131b: 0x7769, 0x131c: 0x7769, 0x131d: 0x7769, -	0x131e: 0x7781, 0x131f: 0x7781, 0x1320: 0x7781, 0x1321: 0x7781, 0x1322: 0x7799, 0x1323: 0x7799, -	0x1324: 0x7799, 0x1325: 0x7799, 0x1326: 0x77b1, 0x1327: 0x77b1, 0x1328: 0x77b1, 0x1329: 0x77b1, -	0x132a: 0x77c9, 0x132b: 0x77c9, 0x132c: 0x77c9, 0x132d: 0x77c9, 0x132e: 0x77e1, 0x132f: 0x77e1, -	0x1330: 0x77e1, 0x1331: 0x77e1, 0x1332: 0x77f9, 0x1333: 0x77f9, 0x1334: 0x77f9, 0x1335: 0x77f9, -	0x1336: 0x7811, 0x1337: 0x7811, 0x1338: 0x7811, 0x1339: 0x7811, 0x133a: 0x7829, 0x133b: 0x7829, -	0x133c: 0x7829, 0x133d: 0x7829, 0x133e: 0x7841, 0x133f: 0x7841, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x7841, 0x1341: 0x7841, 0x1342: 0x7859, 0x1343: 0x7859, 0x1344: 0x7871, 0x1345: 0x7871, -	0x1346: 0x7889, 0x1347: 0x7889, 0x1348: 0x78a1, 0x1349: 0x78a1, 0x134a: 0x78b9, 0x134b: 0x78b9, -	0x134c: 0x78d1, 0x134d: 0x78d1, 0x134e: 0x78e9, 0x134f: 0x78e9, 0x1350: 0x78e9, 0x1351: 0x78e9, -	0x1352: 0x7901, 0x1353: 0x7901, 0x1354: 0x7901, 0x1355: 0x7901, 0x1356: 0x7919, 0x1357: 0x7919, -	0x1358: 0x7919, 0x1359: 0x7919, 0x135a: 0x7931, 0x135b: 0x7931, 0x135c: 0x7931, 0x135d: 0x7931, -	0x135e: 0x7949, 0x135f: 0x7949, 0x1360: 0x7961, 0x1361: 0x7961, 0x1362: 0x7961, 0x1363: 0x7961, -	0x1364: 0x7979, 0x1365: 0x7979, 0x1366: 0x7991, 0x1367: 0x7991, 0x1368: 0x7991, 0x1369: 0x7991, -	0x136a: 0x79a9, 0x136b: 0x79a9, 0x136c: 0x79a9, 0x136d: 0x79a9, 0x136e: 0x79c1, 0x136f: 0x79c1, -	0x1370: 0x79d9, 0x1371: 0x79d9, 0x1372: 0x0818, 0x1373: 0x0818, 0x1374: 0x0818, 0x1375: 0x0818, -	0x1376: 0x0818, 0x1377: 0x0818, 0x1378: 0x0818, 0x1379: 0x0818, 0x137a: 0x0818, 0x137b: 0x0818, -	0x137c: 0x0818, 0x137d: 0x0818, 0x137e: 0x0818, 0x137f: 0x0818, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x0818, 0x1381: 0x0818, 0x1382: 0x0040, 0x1383: 0x0040, 0x1384: 0x0040, 0x1385: 0x0040, -	0x1386: 0x0040, 0x1387: 0x0040, 0x1388: 0x0040, 0x1389: 0x0040, 0x138a: 0x0040, 0x138b: 0x0040, -	0x138c: 0x0040, 0x138d: 0x0040, 0x138e: 0x0040, 0x138f: 0x0040, 0x1390: 0x0040, 0x1391: 0x0040, -	0x1392: 0x0040, 0x1393: 0x79f1, 0x1394: 0x79f1, 0x1395: 0x79f1, 0x1396: 0x79f1, 0x1397: 0x7a09, -	0x1398: 0x7a09, 0x1399: 0x7a21, 0x139a: 0x7a21, 0x139b: 0x7a39, 0x139c: 0x7a39, 0x139d: 0x0479, -	0x139e: 0x7a51, 0x139f: 0x7a51, 0x13a0: 0x7a69, 0x13a1: 0x7a69, 0x13a2: 0x7a81, 0x13a3: 0x7a81, -	0x13a4: 0x7a99, 0x13a5: 0x7a99, 0x13a6: 0x7a99, 0x13a7: 0x7a99, 0x13a8: 0x7ab1, 0x13a9: 0x7ab1, -	0x13aa: 0x7ac9, 0x13ab: 0x7ac9, 0x13ac: 0x7af1, 0x13ad: 0x7af1, 0x13ae: 0x7b19, 0x13af: 0x7b19, -	0x13b0: 0x7b41, 0x13b1: 0x7b41, 0x13b2: 0x7b69, 0x13b3: 0x7b69, 0x13b4: 0x7b91, 0x13b5: 0x7b91, -	0x13b6: 0x7bb9, 0x13b7: 0x7bb9, 0x13b8: 0x7bb9, 0x13b9: 0x7be1, 0x13ba: 0x7be1, 0x13bb: 0x7be1, -	0x13bc: 0x7c09, 0x13bd: 0x7c09, 0x13be: 0x7c09, 0x13bf: 0x7c09, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x85f9, 0x13c1: 0x8621, 0x13c2: 0x8649, 0x13c3: 0x8671, 0x13c4: 0x8699, 0x13c5: 0x86c1, -	0x13c6: 0x86e9, 0x13c7: 0x8711, 0x13c8: 0x8739, 0x13c9: 0x8761, 0x13ca: 0x8789, 0x13cb: 0x87b1, -	0x13cc: 0x87d9, 0x13cd: 0x8801, 0x13ce: 0x8829, 0x13cf: 0x8851, 0x13d0: 0x8879, 0x13d1: 0x88a1, -	0x13d2: 0x88c9, 0x13d3: 0x88f1, 0x13d4: 0x8919, 0x13d5: 0x8941, 0x13d6: 0x8969, 0x13d7: 0x8991, -	0x13d8: 0x89b9, 0x13d9: 0x89e1, 0x13da: 0x8a09, 0x13db: 0x8a31, 0x13dc: 0x8a59, 0x13dd: 0x8a81, -	0x13de: 0x8aaa, 0x13df: 0x8ada, 0x13e0: 0x8b0a, 0x13e1: 0x8b3a, 0x13e2: 0x8b6a, 0x13e3: 0x8b9a, -	0x13e4: 0x8bc9, 0x13e5: 0x8bf1, 0x13e6: 0x7c71, 0x13e7: 0x8c19, 0x13e8: 0x7be1, 0x13e9: 0x7c99, -	0x13ea: 0x8c41, 0x13eb: 0x8c69, 0x13ec: 0x7d39, 0x13ed: 0x8c91, 0x13ee: 0x7d61, 0x13ef: 0x7d89, -	0x13f0: 0x8cb9, 0x13f1: 0x8ce1, 0x13f2: 0x7e29, 0x13f3: 0x8d09, 0x13f4: 0x7e51, 0x13f5: 0x7e79, -	0x13f6: 0x8d31, 0x13f7: 0x8d59, 0x13f8: 0x7ec9, 0x13f9: 0x8d81, 0x13fa: 0x7ef1, 0x13fb: 0x7f19, -	0x13fc: 0x83a1, 0x13fd: 0x83c9, 0x13fe: 0x8441, 0x13ff: 0x8469, -	// Block 0x50, offset 0x1400 -	0x1400: 0x8491, 0x1401: 0x8531, 0x1402: 0x8559, 0x1403: 0x8581, 0x1404: 0x85a9, 0x1405: 0x8649, -	0x1406: 0x8671, 0x1407: 0x8699, 0x1408: 0x8da9, 0x1409: 0x8739, 0x140a: 0x8dd1, 0x140b: 0x8df9, -	0x140c: 0x8829, 0x140d: 0x8e21, 0x140e: 0x8851, 0x140f: 0x8879, 0x1410: 0x8a81, 0x1411: 0x8e49, -	0x1412: 0x8e71, 0x1413: 0x89b9, 0x1414: 0x8e99, 0x1415: 0x89e1, 0x1416: 0x8a09, 0x1417: 0x7c21, -	0x1418: 0x7c49, 0x1419: 0x8ec1, 0x141a: 0x7c71, 0x141b: 0x8ee9, 0x141c: 0x7cc1, 0x141d: 0x7ce9, -	0x141e: 0x7d11, 0x141f: 0x7d39, 0x1420: 0x8f11, 0x1421: 0x7db1, 0x1422: 0x7dd9, 0x1423: 0x7e01, -	0x1424: 0x7e29, 0x1425: 0x8f39, 0x1426: 0x7ec9, 0x1427: 0x7f41, 0x1428: 0x7f69, 0x1429: 0x7f91, -	0x142a: 0x7fb9, 0x142b: 0x7fe1, 0x142c: 0x8031, 0x142d: 0x8059, 0x142e: 0x8081, 0x142f: 0x80a9, -	0x1430: 0x80d1, 0x1431: 0x80f9, 0x1432: 0x8f61, 0x1433: 0x8121, 0x1434: 0x8149, 0x1435: 0x8171, -	0x1436: 0x8199, 0x1437: 0x81c1, 0x1438: 0x81e9, 0x1439: 0x8239, 0x143a: 0x8261, 0x143b: 0x8289, -	0x143c: 0x82b1, 0x143d: 0x82d9, 0x143e: 0x8301, 0x143f: 0x8329, -	// Block 0x51, offset 0x1440 -	0x1440: 0x8351, 0x1441: 0x8379, 0x1442: 0x83f1, 0x1443: 0x8419, 0x1444: 0x84b9, 0x1445: 0x84e1, -	0x1446: 0x8509, 0x1447: 0x8531, 0x1448: 0x8559, 0x1449: 0x85d1, 0x144a: 0x85f9, 0x144b: 0x8621, -	0x144c: 0x8649, 0x144d: 0x8f89, 0x144e: 0x86c1, 0x144f: 0x86e9, 0x1450: 0x8711, 0x1451: 0x8739, -	0x1452: 0x87b1, 0x1453: 0x87d9, 0x1454: 0x8801, 0x1455: 0x8829, 0x1456: 0x8fb1, 0x1457: 0x88a1, -	0x1458: 0x88c9, 0x1459: 0x8fd9, 0x145a: 0x8941, 0x145b: 0x8969, 0x145c: 0x8991, 0x145d: 0x89b9, -	0x145e: 0x9001, 0x145f: 0x7c71, 0x1460: 0x8ee9, 0x1461: 0x7d39, 0x1462: 0x8f11, 0x1463: 0x7e29, -	0x1464: 0x8f39, 0x1465: 0x7ec9, 0x1466: 0x9029, 0x1467: 0x80d1, 0x1468: 0x9051, 0x1469: 0x9079, -	0x146a: 0x90a1, 0x146b: 0x8531, 0x146c: 0x8559, 0x146d: 0x8649, 0x146e: 0x8829, 0x146f: 0x8fb1, -	0x1470: 0x89b9, 0x1471: 0x9001, 0x1472: 0x90c9, 0x1473: 0x9101, 0x1474: 0x9139, 0x1475: 0x9171, -	0x1476: 0x9199, 0x1477: 0x91c1, 0x1478: 0x91e9, 0x1479: 0x9211, 0x147a: 0x9239, 0x147b: 0x9261, -	0x147c: 0x9289, 0x147d: 0x92b1, 0x147e: 0x92d9, 0x147f: 0x9301, -	// Block 0x52, offset 0x1480 -	0x1480: 0x9329, 0x1481: 0x9351, 0x1482: 0x9379, 0x1483: 0x93a1, 0x1484: 0x93c9, 0x1485: 0x93f1, -	0x1486: 0x9419, 0x1487: 0x9441, 0x1488: 0x9469, 0x1489: 0x9491, 0x148a: 0x94b9, 0x148b: 0x94e1, -	0x148c: 0x9079, 0x148d: 0x9509, 0x148e: 0x9531, 0x148f: 0x9559, 0x1490: 0x9581, 0x1491: 0x9171, -	0x1492: 0x9199, 0x1493: 0x91c1, 0x1494: 0x91e9, 0x1495: 0x9211, 0x1496: 0x9239, 0x1497: 0x9261, -	0x1498: 0x9289, 0x1499: 0x92b1, 0x149a: 0x92d9, 0x149b: 0x9301, 0x149c: 0x9329, 0x149d: 0x9351, -	0x149e: 0x9379, 0x149f: 0x93a1, 0x14a0: 0x93c9, 0x14a1: 0x93f1, 0x14a2: 0x9419, 0x14a3: 0x9441, -	0x14a4: 0x9469, 0x14a5: 0x9491, 0x14a6: 0x94b9, 0x14a7: 0x94e1, 0x14a8: 0x9079, 0x14a9: 0x9509, -	0x14aa: 0x9531, 0x14ab: 0x9559, 0x14ac: 0x9581, 0x14ad: 0x9491, 0x14ae: 0x94b9, 0x14af: 0x94e1, -	0x14b0: 0x9079, 0x14b1: 0x9051, 0x14b2: 0x90a1, 0x14b3: 0x8211, 0x14b4: 0x8059, 0x14b5: 0x8081, -	0x14b6: 0x80a9, 0x14b7: 0x9491, 0x14b8: 0x94b9, 0x14b9: 0x94e1, 0x14ba: 0x8211, 0x14bb: 0x8239, -	0x14bc: 0x95a9, 0x14bd: 0x95a9, 0x14be: 0x0018, 0x14bf: 0x0018, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0x0040, 0x14c1: 0x0040, 0x14c2: 0x0040, 0x14c3: 0x0040, 0x14c4: 0x0040, 0x14c5: 0x0040, -	0x14c6: 0x0040, 0x14c7: 0x0040, 0x14c8: 0x0040, 0x14c9: 0x0040, 0x14ca: 0x0040, 0x14cb: 0x0040, -	0x14cc: 0x0040, 0x14cd: 0x0040, 0x14ce: 0x0040, 0x14cf: 0x0040, 0x14d0: 0x95d1, 0x14d1: 0x9609, -	0x14d2: 0x9609, 0x14d3: 0x9641, 0x14d4: 0x9679, 0x14d5: 0x96b1, 0x14d6: 0x96e9, 0x14d7: 0x9721, -	0x14d8: 0x9759, 0x14d9: 0x9759, 0x14da: 0x9791, 0x14db: 0x97c9, 0x14dc: 0x9801, 0x14dd: 0x9839, -	0x14de: 0x9871, 0x14df: 0x98a9, 0x14e0: 0x98a9, 0x14e1: 0x98e1, 0x14e2: 0x9919, 0x14e3: 0x9919, -	0x14e4: 0x9951, 0x14e5: 0x9951, 0x14e6: 0x9989, 0x14e7: 0x99c1, 0x14e8: 0x99c1, 0x14e9: 0x99f9, -	0x14ea: 0x9a31, 0x14eb: 0x9a31, 0x14ec: 0x9a69, 0x14ed: 0x9a69, 0x14ee: 0x9aa1, 0x14ef: 0x9ad9, -	0x14f0: 0x9ad9, 0x14f1: 0x9b11, 0x14f2: 0x9b11, 0x14f3: 0x9b49, 0x14f4: 0x9b81, 0x14f5: 0x9bb9, -	0x14f6: 0x9bf1, 0x14f7: 0x9bf1, 0x14f8: 0x9c29, 0x14f9: 0x9c61, 0x14fa: 0x9c99, 0x14fb: 0x9cd1, -	0x14fc: 0x9d09, 0x14fd: 0x9d09, 0x14fe: 0x9d41, 0x14ff: 0x9d79, -	// Block 0x54, offset 0x1500 -	0x1500: 0xa949, 0x1501: 0xa981, 0x1502: 0xa9b9, 0x1503: 0xa8a1, 0x1504: 0x9bb9, 0x1505: 0x9989, -	0x1506: 0xa9f1, 0x1507: 0xaa29, 0x1508: 0x0040, 0x1509: 0x0040, 0x150a: 0x0040, 0x150b: 0x0040, -	0x150c: 0x0040, 0x150d: 0x0040, 0x150e: 0x0040, 0x150f: 0x0040, 0x1510: 0x0040, 0x1511: 0x0040, -	0x1512: 0x0040, 0x1513: 0x0040, 0x1514: 0x0040, 0x1515: 0x0040, 0x1516: 0x0040, 0x1517: 0x0040, -	0x1518: 0x0040, 0x1519: 0x0040, 0x151a: 0x0040, 0x151b: 0x0040, 0x151c: 0x0040, 0x151d: 0x0040, -	0x151e: 0x0040, 0x151f: 0x0040, 0x1520: 0x0040, 0x1521: 0x0040, 0x1522: 0x0040, 0x1523: 0x0040, -	0x1524: 0x0040, 0x1525: 0x0040, 0x1526: 0x0040, 0x1527: 0x0040, 0x1528: 0x0040, 0x1529: 0x0040, -	0x152a: 0x0040, 0x152b: 0x0040, 0x152c: 0x0040, 0x152d: 0x0040, 0x152e: 0x0040, 0x152f: 0x0040, -	0x1530: 0xaa61, 0x1531: 0xaa99, 0x1532: 0xaad1, 0x1533: 0xab19, 0x1534: 0xab61, 0x1535: 0xaba9, -	0x1536: 0xabf1, 0x1537: 0xac39, 0x1538: 0xac81, 0x1539: 0xacc9, 0x153a: 0xad02, 0x153b: 0xae12, -	0x153c: 0xae91, 0x153d: 0x0018, 0x153e: 0x0040, 0x153f: 0x0040, -	// Block 0x55, offset 0x1540 -	0x1540: 0x33c0, 0x1541: 0x33c0, 0x1542: 0x33c0, 0x1543: 0x33c0, 0x1544: 0x33c0, 0x1545: 0x33c0, -	0x1546: 0x33c0, 0x1547: 0x33c0, 0x1548: 0x33c0, 0x1549: 0x33c0, 0x154a: 0x33c0, 0x154b: 0x33c0, -	0x154c: 0x33c0, 0x154d: 0x33c0, 0x154e: 0x33c0, 0x154f: 0x33c0, 0x1550: 0xaeda, 0x1551: 0x7d55, -	0x1552: 0x0040, 0x1553: 0xaeea, 0x1554: 0x03c2, 0x1555: 0xaefa, 0x1556: 0xaf0a, 0x1557: 0x7d75, -	0x1558: 0x7d95, 0x1559: 0x0040, 0x155a: 0x0040, 0x155b: 0x0040, 0x155c: 0x0040, 0x155d: 0x0040, -	0x155e: 0x0040, 0x155f: 0x0040, 0x1560: 0x3308, 0x1561: 0x3308, 0x1562: 0x3308, 0x1563: 0x3308, -	0x1564: 0x3308, 0x1565: 0x3308, 0x1566: 0x3308, 0x1567: 0x3308, 0x1568: 0x3308, 0x1569: 0x3308, -	0x156a: 0x3308, 0x156b: 0x3308, 0x156c: 0x3308, 0x156d: 0x3308, 0x156e: 0x3308, 0x156f: 0x3308, -	0x1570: 0x0040, 0x1571: 0x7db5, 0x1572: 0x7dd5, 0x1573: 0xaf1a, 0x1574: 0xaf1a, 0x1575: 0x1fd2, -	0x1576: 0x1fe2, 0x1577: 0xaf2a, 0x1578: 0xaf3a, 0x1579: 0x7df5, 0x157a: 0x7e15, 0x157b: 0x7e35, -	0x157c: 0x7df5, 0x157d: 0x7e55, 0x157e: 0x7e75, 0x157f: 0x7e55, -	// Block 0x56, offset 0x1580 -	0x1580: 0x7e95, 0x1581: 0x7eb5, 0x1582: 0x7ed5, 0x1583: 0x7eb5, 0x1584: 0x7ef5, 0x1585: 0x0018, -	0x1586: 0x0018, 0x1587: 0xaf4a, 0x1588: 0xaf5a, 0x1589: 0x7f16, 0x158a: 0x7f36, 0x158b: 0x7f56, -	0x158c: 0x7f76, 0x158d: 0xaf1a, 0x158e: 0xaf1a, 0x158f: 0xaf1a, 0x1590: 0xaeda, 0x1591: 0x7f95, -	0x1592: 0x0040, 0x1593: 0x0040, 0x1594: 0x03c2, 0x1595: 0xaeea, 0x1596: 0xaf0a, 0x1597: 0xaefa, -	0x1598: 0x7fb5, 0x1599: 0x1fd2, 0x159a: 0x1fe2, 0x159b: 0xaf2a, 0x159c: 0xaf3a, 0x159d: 0x7e95, -	0x159e: 0x7ef5, 0x159f: 0xaf6a, 0x15a0: 0xaf7a, 0x15a1: 0xaf8a, 0x15a2: 0x1fb2, 0x15a3: 0xaf99, -	0x15a4: 0xafaa, 0x15a5: 0xafba, 0x15a6: 0x1fc2, 0x15a7: 0x0040, 0x15a8: 0xafca, 0x15a9: 0xafda, -	0x15aa: 0xafea, 0x15ab: 0xaffa, 0x15ac: 0x0040, 0x15ad: 0x0040, 0x15ae: 0x0040, 0x15af: 0x0040, -	0x15b0: 0x7fd6, 0x15b1: 0xb009, 0x15b2: 0x7ff6, 0x15b3: 0x0808, 0x15b4: 0x8016, 0x15b5: 0x0040, -	0x15b6: 0x8036, 0x15b7: 0xb031, 0x15b8: 0x8056, 0x15b9: 0xb059, 0x15ba: 0x8076, 0x15bb: 0xb081, -	0x15bc: 0x8096, 0x15bd: 0xb0a9, 0x15be: 0x80b6, 0x15bf: 0xb0d1, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0xb0f9, 0x15c1: 0xb111, 0x15c2: 0xb111, 0x15c3: 0xb129, 0x15c4: 0xb129, 0x15c5: 0xb141, -	0x15c6: 0xb141, 0x15c7: 0xb159, 0x15c8: 0xb159, 0x15c9: 0xb171, 0x15ca: 0xb171, 0x15cb: 0xb171, -	0x15cc: 0xb171, 0x15cd: 0xb189, 0x15ce: 0xb189, 0x15cf: 0xb1a1, 0x15d0: 0xb1a1, 0x15d1: 0xb1a1, -	0x15d2: 0xb1a1, 0x15d3: 0xb1b9, 0x15d4: 0xb1b9, 0x15d5: 0xb1d1, 0x15d6: 0xb1d1, 0x15d7: 0xb1d1, -	0x15d8: 0xb1d1, 0x15d9: 0xb1e9, 0x15da: 0xb1e9, 0x15db: 0xb1e9, 0x15dc: 0xb1e9, 0x15dd: 0xb201, -	0x15de: 0xb201, 0x15df: 0xb201, 0x15e0: 0xb201, 0x15e1: 0xb219, 0x15e2: 0xb219, 0x15e3: 0xb219, -	0x15e4: 0xb219, 0x15e5: 0xb231, 0x15e6: 0xb231, 0x15e7: 0xb231, 0x15e8: 0xb231, 0x15e9: 0xb249, -	0x15ea: 0xb249, 0x15eb: 0xb261, 0x15ec: 0xb261, 0x15ed: 0xb279, 0x15ee: 0xb279, 0x15ef: 0xb291, -	0x15f0: 0xb291, 0x15f1: 0xb2a9, 0x15f2: 0xb2a9, 0x15f3: 0xb2a9, 0x15f4: 0xb2a9, 0x15f5: 0xb2c1, -	0x15f6: 0xb2c1, 0x15f7: 0xb2c1, 0x15f8: 0xb2c1, 0x15f9: 0xb2d9, 0x15fa: 0xb2d9, 0x15fb: 0xb2d9, -	0x15fc: 0xb2d9, 0x15fd: 0xb2f1, 0x15fe: 0xb2f1, 0x15ff: 0xb2f1, -	// Block 0x58, offset 0x1600 -	0x1600: 0xb2f1, 0x1601: 0xb309, 0x1602: 0xb309, 0x1603: 0xb309, 0x1604: 0xb309, 0x1605: 0xb321, -	0x1606: 0xb321, 0x1607: 0xb321, 0x1608: 0xb321, 0x1609: 0xb339, 0x160a: 0xb339, 0x160b: 0xb339, -	0x160c: 0xb339, 0x160d: 0xb351, 0x160e: 0xb351, 0x160f: 0xb351, 0x1610: 0xb351, 0x1611: 0xb369, -	0x1612: 0xb369, 0x1613: 0xb369, 0x1614: 0xb369, 0x1615: 0xb381, 0x1616: 0xb381, 0x1617: 0xb381, -	0x1618: 0xb381, 0x1619: 0xb399, 0x161a: 0xb399, 0x161b: 0xb399, 0x161c: 0xb399, 0x161d: 0xb3b1, -	0x161e: 0xb3b1, 0x161f: 0xb3b1, 0x1620: 0xb3b1, 0x1621: 0xb3c9, 0x1622: 0xb3c9, 0x1623: 0xb3c9, -	0x1624: 0xb3c9, 0x1625: 0xb3e1, 0x1626: 0xb3e1, 0x1627: 0xb3e1, 0x1628: 0xb3e1, 0x1629: 0xb3f9, -	0x162a: 0xb3f9, 0x162b: 0xb3f9, 0x162c: 0xb3f9, 0x162d: 0xb411, 0x162e: 0xb411, 0x162f: 0x7ab1, -	0x1630: 0x7ab1, 0x1631: 0xb429, 0x1632: 0xb429, 0x1633: 0xb429, 0x1634: 0xb429, 0x1635: 0xb441, -	0x1636: 0xb441, 0x1637: 0xb469, 0x1638: 0xb469, 0x1639: 0xb491, 0x163a: 0xb491, 0x163b: 0xb4b9, -	0x163c: 0xb4b9, 0x163d: 0x0040, 0x163e: 0x0040, 0x163f: 0x03c0, -	// Block 0x59, offset 0x1640 -	0x1640: 0x0040, 0x1641: 0xaefa, 0x1642: 0xb4e2, 0x1643: 0xaf6a, 0x1644: 0xafda, 0x1645: 0xafea, -	0x1646: 0xaf7a, 0x1647: 0xb4f2, 0x1648: 0x1fd2, 0x1649: 0x1fe2, 0x164a: 0xaf8a, 0x164b: 0x1fb2, -	0x164c: 0xaeda, 0x164d: 0xaf99, 0x164e: 0x29d1, 0x164f: 0xb502, 0x1650: 0x1f41, 0x1651: 0x00c9, -	0x1652: 0x0069, 0x1653: 0x0079, 0x1654: 0x1f51, 0x1655: 0x1f61, 0x1656: 0x1f71, 0x1657: 0x1f81, -	0x1658: 0x1f91, 0x1659: 0x1fa1, 0x165a: 0xaeea, 0x165b: 0x03c2, 0x165c: 0xafaa, 0x165d: 0x1fc2, -	0x165e: 0xafba, 0x165f: 0xaf0a, 0x1660: 0xaffa, 0x1661: 0x0039, 0x1662: 0x0ee9, 0x1663: 0x1159, -	0x1664: 0x0ef9, 0x1665: 0x0f09, 0x1666: 0x1199, 0x1667: 0x0f31, 0x1668: 0x0249, 0x1669: 0x0f41, -	0x166a: 0x0259, 0x166b: 0x0f51, 0x166c: 0x0359, 0x166d: 0x0f61, 0x166e: 0x0f71, 0x166f: 0x00d9, -	0x1670: 0x0f99, 0x1671: 0x2039, 0x1672: 0x0269, 0x1673: 0x01d9, 0x1674: 0x0fa9, 0x1675: 0x0fb9, -	0x1676: 0x1089, 0x1677: 0x0279, 0x1678: 0x0369, 0x1679: 0x0289, 0x167a: 0x13d1, 0x167b: 0xaf4a, -	0x167c: 0xafca, 0x167d: 0xaf5a, 0x167e: 0xb512, 0x167f: 0xaf1a, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x1caa, 0x1681: 0x0039, 0x1682: 0x0ee9, 0x1683: 0x1159, 0x1684: 0x0ef9, 0x1685: 0x0f09, -	0x1686: 0x1199, 0x1687: 0x0f31, 0x1688: 0x0249, 0x1689: 0x0f41, 0x168a: 0x0259, 0x168b: 0x0f51, -	0x168c: 0x0359, 0x168d: 0x0f61, 0x168e: 0x0f71, 0x168f: 0x00d9, 0x1690: 0x0f99, 0x1691: 0x2039, -	0x1692: 0x0269, 0x1693: 0x01d9, 0x1694: 0x0fa9, 0x1695: 0x0fb9, 0x1696: 0x1089, 0x1697: 0x0279, -	0x1698: 0x0369, 0x1699: 0x0289, 0x169a: 0x13d1, 0x169b: 0xaf2a, 0x169c: 0xb522, 0x169d: 0xaf3a, -	0x169e: 0xb532, 0x169f: 0x80d5, 0x16a0: 0x80f5, 0x16a1: 0x29d1, 0x16a2: 0x8115, 0x16a3: 0x8115, -	0x16a4: 0x8135, 0x16a5: 0x8155, 0x16a6: 0x8175, 0x16a7: 0x8195, 0x16a8: 0x81b5, 0x16a9: 0x81d5, -	0x16aa: 0x81f5, 0x16ab: 0x8215, 0x16ac: 0x8235, 0x16ad: 0x8255, 0x16ae: 0x8275, 0x16af: 0x8295, -	0x16b0: 0x82b5, 0x16b1: 0x82d5, 0x16b2: 0x82f5, 0x16b3: 0x8315, 0x16b4: 0x8335, 0x16b5: 0x8355, -	0x16b6: 0x8375, 0x16b7: 0x8395, 0x16b8: 0x83b5, 0x16b9: 0x83d5, 0x16ba: 0x83f5, 0x16bb: 0x8415, -	0x16bc: 0x81b5, 0x16bd: 0x8435, 0x16be: 0x8455, 0x16bf: 0x8215, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x8475, 0x16c1: 0x8495, 0x16c2: 0x84b5, 0x16c3: 0x84d5, 0x16c4: 0x84f5, 0x16c5: 0x8515, -	0x16c6: 0x8535, 0x16c7: 0x8555, 0x16c8: 0x84d5, 0x16c9: 0x8575, 0x16ca: 0x84d5, 0x16cb: 0x8595, -	0x16cc: 0x8595, 0x16cd: 0x85b5, 0x16ce: 0x85b5, 0x16cf: 0x85d5, 0x16d0: 0x8515, 0x16d1: 0x85f5, -	0x16d2: 0x8615, 0x16d3: 0x85f5, 0x16d4: 0x8635, 0x16d5: 0x8615, 0x16d6: 0x8655, 0x16d7: 0x8655, -	0x16d8: 0x8675, 0x16d9: 0x8675, 0x16da: 0x8695, 0x16db: 0x8695, 0x16dc: 0x8615, 0x16dd: 0x8115, -	0x16de: 0x86b5, 0x16df: 0x86d5, 0x16e0: 0x0040, 0x16e1: 0x86f5, 0x16e2: 0x8715, 0x16e3: 0x8735, -	0x16e4: 0x8755, 0x16e5: 0x8735, 0x16e6: 0x8775, 0x16e7: 0x8795, 0x16e8: 0x87b5, 0x16e9: 0x87b5, -	0x16ea: 0x87d5, 0x16eb: 0x87d5, 0x16ec: 0x87f5, 0x16ed: 0x87f5, 0x16ee: 0x87d5, 0x16ef: 0x87d5, -	0x16f0: 0x8815, 0x16f1: 0x8835, 0x16f2: 0x8855, 0x16f3: 0x8875, 0x16f4: 0x8895, 0x16f5: 0x88b5, -	0x16f6: 0x88b5, 0x16f7: 0x88b5, 0x16f8: 0x88d5, 0x16f9: 0x88d5, 0x16fa: 0x88d5, 0x16fb: 0x88d5, -	0x16fc: 0x87b5, 0x16fd: 0x87b5, 0x16fe: 0x87b5, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0040, 0x1701: 0x0040, 0x1702: 0x8715, 0x1703: 0x86f5, 0x1704: 0x88f5, 0x1705: 0x86f5, -	0x1706: 0x8715, 0x1707: 0x86f5, 0x1708: 0x0040, 0x1709: 0x0040, 0x170a: 0x8915, 0x170b: 0x8715, -	0x170c: 0x8935, 0x170d: 0x88f5, 0x170e: 0x8935, 0x170f: 0x8715, 0x1710: 0x0040, 0x1711: 0x0040, -	0x1712: 0x8955, 0x1713: 0x8975, 0x1714: 0x8875, 0x1715: 0x8935, 0x1716: 0x88f5, 0x1717: 0x8935, -	0x1718: 0x0040, 0x1719: 0x0040, 0x171a: 0x8995, 0x171b: 0x89b5, 0x171c: 0x8995, 0x171d: 0x0040, -	0x171e: 0x0040, 0x171f: 0x0040, 0x1720: 0xb541, 0x1721: 0xb559, 0x1722: 0xb571, 0x1723: 0x89d6, -	0x1724: 0xb589, 0x1725: 0xb5a1, 0x1726: 0x89f5, 0x1727: 0x0040, 0x1728: 0x8a15, 0x1729: 0x8a35, -	0x172a: 0x8a55, 0x172b: 0x8a35, 0x172c: 0x8a75, 0x172d: 0x8a95, 0x172e: 0x8ab5, 0x172f: 0x0040, -	0x1730: 0x0040, 0x1731: 0x0040, 0x1732: 0x0040, 0x1733: 0x0040, 0x1734: 0x0040, 0x1735: 0x0040, -	0x1736: 0x0040, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0340, 0x173a: 0x0340, 0x173b: 0x0340, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x0a08, 0x1741: 0x0a08, 0x1742: 0x0a08, 0x1743: 0x0a08, 0x1744: 0x0a08, 0x1745: 0x0c08, -	0x1746: 0x0808, 0x1747: 0x0c08, 0x1748: 0x0818, 0x1749: 0x0c08, 0x174a: 0x0c08, 0x174b: 0x0808, -	0x174c: 0x0808, 0x174d: 0x0908, 0x174e: 0x0c08, 0x174f: 0x0c08, 0x1750: 0x0c08, 0x1751: 0x0c08, -	0x1752: 0x0c08, 0x1753: 0x0a08, 0x1754: 0x0a08, 0x1755: 0x0a08, 0x1756: 0x0a08, 0x1757: 0x0908, -	0x1758: 0x0a08, 0x1759: 0x0a08, 0x175a: 0x0a08, 0x175b: 0x0a08, 0x175c: 0x0a08, 0x175d: 0x0c08, -	0x175e: 0x0a08, 0x175f: 0x0a08, 0x1760: 0x0a08, 0x1761: 0x0c08, 0x1762: 0x0808, 0x1763: 0x0808, -	0x1764: 0x0c08, 0x1765: 0x3308, 0x1766: 0x3308, 0x1767: 0x0040, 0x1768: 0x0040, 0x1769: 0x0040, -	0x176a: 0x0040, 0x176b: 0x0a18, 0x176c: 0x0a18, 0x176d: 0x0a18, 0x176e: 0x0a18, 0x176f: 0x0c18, -	0x1770: 0x0818, 0x1771: 0x0818, 0x1772: 0x0818, 0x1773: 0x0818, 0x1774: 0x0818, 0x1775: 0x0818, -	0x1776: 0x0818, 0x1777: 0x0040, 0x1778: 0x0040, 0x1779: 0x0040, 0x177a: 0x0040, 0x177b: 0x0040, -	0x177c: 0x0040, 0x177d: 0x0040, 0x177e: 0x0040, 0x177f: 0x0040, -	// Block 0x5e, offset 0x1780 -	0x1780: 0x0a08, 0x1781: 0x0c08, 0x1782: 0x0a08, 0x1783: 0x0c08, 0x1784: 0x0c08, 0x1785: 0x0c08, -	0x1786: 0x0a08, 0x1787: 0x0a08, 0x1788: 0x0a08, 0x1789: 0x0c08, 0x178a: 0x0a08, 0x178b: 0x0a08, -	0x178c: 0x0c08, 0x178d: 0x0a08, 0x178e: 0x0c08, 0x178f: 0x0c08, 0x1790: 0x0a08, 0x1791: 0x0c08, -	0x1792: 0x0040, 0x1793: 0x0040, 0x1794: 0x0040, 0x1795: 0x0040, 0x1796: 0x0040, 0x1797: 0x0040, -	0x1798: 0x0040, 0x1799: 0x0818, 0x179a: 0x0818, 0x179b: 0x0818, 0x179c: 0x0818, 0x179d: 0x0040, -	0x179e: 0x0040, 0x179f: 0x0040, 0x17a0: 0x0040, 0x17a1: 0x0040, 0x17a2: 0x0040, 0x17a3: 0x0040, -	0x17a4: 0x0040, 0x17a5: 0x0040, 0x17a6: 0x0040, 0x17a7: 0x0040, 0x17a8: 0x0040, 0x17a9: 0x0c18, -	0x17aa: 0x0c18, 0x17ab: 0x0c18, 0x17ac: 0x0c18, 0x17ad: 0x0a18, 0x17ae: 0x0a18, 0x17af: 0x0818, -	0x17b0: 0x0040, 0x17b1: 0x0040, 0x17b2: 0x0040, 0x17b3: 0x0040, 0x17b4: 0x0040, 0x17b5: 0x0040, -	0x17b6: 0x0040, 0x17b7: 0x0040, 0x17b8: 0x0040, 0x17b9: 0x0040, 0x17ba: 0x0040, 0x17bb: 0x0040, -	0x17bc: 0x0040, 0x17bd: 0x0040, 0x17be: 0x0040, 0x17bf: 0x0040, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x3308, 0x17c1: 0x3308, 0x17c2: 0x3008, 0x17c3: 0x3008, 0x17c4: 0x0040, 0x17c5: 0x0008, -	0x17c6: 0x0008, 0x17c7: 0x0008, 0x17c8: 0x0008, 0x17c9: 0x0008, 0x17ca: 0x0008, 0x17cb: 0x0008, -	0x17cc: 0x0008, 0x17cd: 0x0040, 0x17ce: 0x0040, 0x17cf: 0x0008, 0x17d0: 0x0008, 0x17d1: 0x0040, -	0x17d2: 0x0040, 0x17d3: 0x0008, 0x17d4: 0x0008, 0x17d5: 0x0008, 0x17d6: 0x0008, 0x17d7: 0x0008, -	0x17d8: 0x0008, 0x17d9: 0x0008, 0x17da: 0x0008, 0x17db: 0x0008, 0x17dc: 0x0008, 0x17dd: 0x0008, -	0x17de: 0x0008, 0x17df: 0x0008, 0x17e0: 0x0008, 0x17e1: 0x0008, 0x17e2: 0x0008, 0x17e3: 0x0008, -	0x17e4: 0x0008, 0x17e5: 0x0008, 0x17e6: 0x0008, 0x17e7: 0x0008, 0x17e8: 0x0008, 0x17e9: 0x0040, -	0x17ea: 0x0008, 0x17eb: 0x0008, 0x17ec: 0x0008, 0x17ed: 0x0008, 0x17ee: 0x0008, 0x17ef: 0x0008, -	0x17f0: 0x0008, 0x17f1: 0x0040, 0x17f2: 0x0008, 0x17f3: 0x0008, 0x17f4: 0x0040, 0x17f5: 0x0008, -	0x17f6: 0x0008, 0x17f7: 0x0008, 0x17f8: 0x0008, 0x17f9: 0x0008, 0x17fa: 0x0040, 0x17fb: 0x3308, -	0x17fc: 0x3308, 0x17fd: 0x0008, 0x17fe: 0x3008, 0x17ff: 0x3008, -	// Block 0x60, offset 0x1800 -	0x1800: 0x3308, 0x1801: 0x3008, 0x1802: 0x3008, 0x1803: 0x3008, 0x1804: 0x3008, 0x1805: 0x0040, -	0x1806: 0x0040, 0x1807: 0x3008, 0x1808: 0x3008, 0x1809: 0x0040, 0x180a: 0x0040, 0x180b: 0x3008, -	0x180c: 0x3008, 0x180d: 0x3808, 0x180e: 0x0040, 0x180f: 0x0040, 0x1810: 0x0008, 0x1811: 0x0040, -	0x1812: 0x0040, 0x1813: 0x0040, 0x1814: 0x0040, 0x1815: 0x0040, 0x1816: 0x0040, 0x1817: 0x3008, -	0x1818: 0x0040, 0x1819: 0x0040, 0x181a: 0x0040, 0x181b: 0x0040, 0x181c: 0x0040, 0x181d: 0x0008, -	0x181e: 0x0008, 0x181f: 0x0008, 0x1820: 0x0008, 0x1821: 0x0008, 0x1822: 0x3008, 0x1823: 0x3008, -	0x1824: 0x0040, 0x1825: 0x0040, 0x1826: 0x3308, 0x1827: 0x3308, 0x1828: 0x3308, 0x1829: 0x3308, -	0x182a: 0x3308, 0x182b: 0x3308, 0x182c: 0x3308, 0x182d: 0x0040, 0x182e: 0x0040, 0x182f: 0x0040, -	0x1830: 0x3308, 0x1831: 0x3308, 0x1832: 0x3308, 0x1833: 0x3308, 0x1834: 0x3308, 0x1835: 0x0040, -	0x1836: 0x0040, 0x1837: 0x0040, 0x1838: 0x0040, 0x1839: 0x0040, 0x183a: 0x0040, 0x183b: 0x0040, -	0x183c: 0x0040, 0x183d: 0x0040, 0x183e: 0x0040, 0x183f: 0x0040, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0039, 0x1841: 0x0ee9, 0x1842: 0x1159, 0x1843: 0x0ef9, 0x1844: 0x0f09, 0x1845: 0x1199, -	0x1846: 0x0f31, 0x1847: 0x0249, 0x1848: 0x0f41, 0x1849: 0x0259, 0x184a: 0x0f51, 0x184b: 0x0359, -	0x184c: 0x0f61, 0x184d: 0x0f71, 0x184e: 0x00d9, 0x184f: 0x0f99, 0x1850: 0x2039, 0x1851: 0x0269, -	0x1852: 0x01d9, 0x1853: 0x0fa9, 0x1854: 0x0fb9, 0x1855: 0x1089, 0x1856: 0x0279, 0x1857: 0x0369, -	0x1858: 0x0289, 0x1859: 0x13d1, 0x185a: 0x0039, 0x185b: 0x0ee9, 0x185c: 0x1159, 0x185d: 0x0ef9, -	0x185e: 0x0f09, 0x185f: 0x1199, 0x1860: 0x0f31, 0x1861: 0x0249, 0x1862: 0x0f41, 0x1863: 0x0259, -	0x1864: 0x0f51, 0x1865: 0x0359, 0x1866: 0x0f61, 0x1867: 0x0f71, 0x1868: 0x00d9, 0x1869: 0x0f99, -	0x186a: 0x2039, 0x186b: 0x0269, 0x186c: 0x01d9, 0x186d: 0x0fa9, 0x186e: 0x0fb9, 0x186f: 0x1089, -	0x1870: 0x0279, 0x1871: 0x0369, 0x1872: 0x0289, 0x1873: 0x13d1, 0x1874: 0x0039, 0x1875: 0x0ee9, -	0x1876: 0x1159, 0x1877: 0x0ef9, 0x1878: 0x0f09, 0x1879: 0x1199, 0x187a: 0x0f31, 0x187b: 0x0249, -	0x187c: 0x0f41, 0x187d: 0x0259, 0x187e: 0x0f51, 0x187f: 0x0359, -	// Block 0x62, offset 0x1880 -	0x1880: 0x0f61, 0x1881: 0x0f71, 0x1882: 0x00d9, 0x1883: 0x0f99, 0x1884: 0x2039, 0x1885: 0x0269, -	0x1886: 0x01d9, 0x1887: 0x0fa9, 0x1888: 0x0fb9, 0x1889: 0x1089, 0x188a: 0x0279, 0x188b: 0x0369, -	0x188c: 0x0289, 0x188d: 0x13d1, 0x188e: 0x0039, 0x188f: 0x0ee9, 0x1890: 0x1159, 0x1891: 0x0ef9, -	0x1892: 0x0f09, 0x1893: 0x1199, 0x1894: 0x0f31, 0x1895: 0x0040, 0x1896: 0x0f41, 0x1897: 0x0259, -	0x1898: 0x0f51, 0x1899: 0x0359, 0x189a: 0x0f61, 0x189b: 0x0f71, 0x189c: 0x00d9, 0x189d: 0x0f99, -	0x189e: 0x2039, 0x189f: 0x0269, 0x18a0: 0x01d9, 0x18a1: 0x0fa9, 0x18a2: 0x0fb9, 0x18a3: 0x1089, -	0x18a4: 0x0279, 0x18a5: 0x0369, 0x18a6: 0x0289, 0x18a7: 0x13d1, 0x18a8: 0x0039, 0x18a9: 0x0ee9, -	0x18aa: 0x1159, 0x18ab: 0x0ef9, 0x18ac: 0x0f09, 0x18ad: 0x1199, 0x18ae: 0x0f31, 0x18af: 0x0249, -	0x18b0: 0x0f41, 0x18b1: 0x0259, 0x18b2: 0x0f51, 0x18b3: 0x0359, 0x18b4: 0x0f61, 0x18b5: 0x0f71, -	0x18b6: 0x00d9, 0x18b7: 0x0f99, 0x18b8: 0x2039, 0x18b9: 0x0269, 0x18ba: 0x01d9, 0x18bb: 0x0fa9, -	0x18bc: 0x0fb9, 0x18bd: 0x1089, 0x18be: 0x0279, 0x18bf: 0x0369, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x0289, 0x18c1: 0x13d1, 0x18c2: 0x0039, 0x18c3: 0x0ee9, 0x18c4: 0x1159, 0x18c5: 0x0ef9, -	0x18c6: 0x0f09, 0x18c7: 0x1199, 0x18c8: 0x0f31, 0x18c9: 0x0249, 0x18ca: 0x0f41, 0x18cb: 0x0259, -	0x18cc: 0x0f51, 0x18cd: 0x0359, 0x18ce: 0x0f61, 0x18cf: 0x0f71, 0x18d0: 0x00d9, 0x18d1: 0x0f99, -	0x18d2: 0x2039, 0x18d3: 0x0269, 0x18d4: 0x01d9, 0x18d5: 0x0fa9, 0x18d6: 0x0fb9, 0x18d7: 0x1089, -	0x18d8: 0x0279, 0x18d9: 0x0369, 0x18da: 0x0289, 0x18db: 0x13d1, 0x18dc: 0x0039, 0x18dd: 0x0040, -	0x18de: 0x1159, 0x18df: 0x0ef9, 0x18e0: 0x0040, 0x18e1: 0x0040, 0x18e2: 0x0f31, 0x18e3: 0x0040, -	0x18e4: 0x0040, 0x18e5: 0x0259, 0x18e6: 0x0f51, 0x18e7: 0x0040, 0x18e8: 0x0040, 0x18e9: 0x0f71, -	0x18ea: 0x00d9, 0x18eb: 0x0f99, 0x18ec: 0x2039, 0x18ed: 0x0040, 0x18ee: 0x01d9, 0x18ef: 0x0fa9, -	0x18f0: 0x0fb9, 0x18f1: 0x1089, 0x18f2: 0x0279, 0x18f3: 0x0369, 0x18f4: 0x0289, 0x18f5: 0x13d1, -	0x18f6: 0x0039, 0x18f7: 0x0ee9, 0x18f8: 0x1159, 0x18f9: 0x0ef9, 0x18fa: 0x0040, 0x18fb: 0x1199, -	0x18fc: 0x0040, 0x18fd: 0x0249, 0x18fe: 0x0f41, 0x18ff: 0x0259, -	// Block 0x64, offset 0x1900 -	0x1900: 0x0f51, 0x1901: 0x0359, 0x1902: 0x0f61, 0x1903: 0x0f71, 0x1904: 0x0040, 0x1905: 0x0f99, -	0x1906: 0x2039, 0x1907: 0x0269, 0x1908: 0x01d9, 0x1909: 0x0fa9, 0x190a: 0x0fb9, 0x190b: 0x1089, -	0x190c: 0x0279, 0x190d: 0x0369, 0x190e: 0x0289, 0x190f: 0x13d1, 0x1910: 0x0039, 0x1911: 0x0ee9, -	0x1912: 0x1159, 0x1913: 0x0ef9, 0x1914: 0x0f09, 0x1915: 0x1199, 0x1916: 0x0f31, 0x1917: 0x0249, -	0x1918: 0x0f41, 0x1919: 0x0259, 0x191a: 0x0f51, 0x191b: 0x0359, 0x191c: 0x0f61, 0x191d: 0x0f71, -	0x191e: 0x00d9, 0x191f: 0x0f99, 0x1920: 0x2039, 0x1921: 0x0269, 0x1922: 0x01d9, 0x1923: 0x0fa9, -	0x1924: 0x0fb9, 0x1925: 0x1089, 0x1926: 0x0279, 0x1927: 0x0369, 0x1928: 0x0289, 0x1929: 0x13d1, -	0x192a: 0x0039, 0x192b: 0x0ee9, 0x192c: 0x1159, 0x192d: 0x0ef9, 0x192e: 0x0f09, 0x192f: 0x1199, -	0x1930: 0x0f31, 0x1931: 0x0249, 0x1932: 0x0f41, 0x1933: 0x0259, 0x1934: 0x0f51, 0x1935: 0x0359, -	0x1936: 0x0f61, 0x1937: 0x0f71, 0x1938: 0x00d9, 0x1939: 0x0f99, 0x193a: 0x2039, 0x193b: 0x0269, -	0x193c: 0x01d9, 0x193d: 0x0fa9, 0x193e: 0x0fb9, 0x193f: 0x1089, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0279, 0x1941: 0x0369, 0x1942: 0x0289, 0x1943: 0x13d1, 0x1944: 0x0039, 0x1945: 0x0ee9, -	0x1946: 0x0040, 0x1947: 0x0ef9, 0x1948: 0x0f09, 0x1949: 0x1199, 0x194a: 0x0f31, 0x194b: 0x0040, -	0x194c: 0x0040, 0x194d: 0x0259, 0x194e: 0x0f51, 0x194f: 0x0359, 0x1950: 0x0f61, 0x1951: 0x0f71, -	0x1952: 0x00d9, 0x1953: 0x0f99, 0x1954: 0x2039, 0x1955: 0x0040, 0x1956: 0x01d9, 0x1957: 0x0fa9, -	0x1958: 0x0fb9, 0x1959: 0x1089, 0x195a: 0x0279, 0x195b: 0x0369, 0x195c: 0x0289, 0x195d: 0x0040, -	0x195e: 0x0039, 0x195f: 0x0ee9, 0x1960: 0x1159, 0x1961: 0x0ef9, 0x1962: 0x0f09, 0x1963: 0x1199, -	0x1964: 0x0f31, 0x1965: 0x0249, 0x1966: 0x0f41, 0x1967: 0x0259, 0x1968: 0x0f51, 0x1969: 0x0359, -	0x196a: 0x0f61, 0x196b: 0x0f71, 0x196c: 0x00d9, 0x196d: 0x0f99, 0x196e: 0x2039, 0x196f: 0x0269, -	0x1970: 0x01d9, 0x1971: 0x0fa9, 0x1972: 0x0fb9, 0x1973: 0x1089, 0x1974: 0x0279, 0x1975: 0x0369, -	0x1976: 0x0289, 0x1977: 0x13d1, 0x1978: 0x0039, 0x1979: 0x0ee9, 0x197a: 0x0040, 0x197b: 0x0ef9, -	0x197c: 0x0f09, 0x197d: 0x1199, 0x197e: 0x0f31, 0x197f: 0x0040, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0f41, 0x1981: 0x0259, 0x1982: 0x0f51, 0x1983: 0x0359, 0x1984: 0x0f61, 0x1985: 0x0040, -	0x1986: 0x00d9, 0x1987: 0x0040, 0x1988: 0x0040, 0x1989: 0x0040, 0x198a: 0x01d9, 0x198b: 0x0fa9, -	0x198c: 0x0fb9, 0x198d: 0x1089, 0x198e: 0x0279, 0x198f: 0x0369, 0x1990: 0x0289, 0x1991: 0x0040, -	0x1992: 0x0039, 0x1993: 0x0ee9, 0x1994: 0x1159, 0x1995: 0x0ef9, 0x1996: 0x0f09, 0x1997: 0x1199, -	0x1998: 0x0f31, 0x1999: 0x0249, 0x199a: 0x0f41, 0x199b: 0x0259, 0x199c: 0x0f51, 0x199d: 0x0359, -	0x199e: 0x0f61, 0x199f: 0x0f71, 0x19a0: 0x00d9, 0x19a1: 0x0f99, 0x19a2: 0x2039, 0x19a3: 0x0269, -	0x19a4: 0x01d9, 0x19a5: 0x0fa9, 0x19a6: 0x0fb9, 0x19a7: 0x1089, 0x19a8: 0x0279, 0x19a9: 0x0369, -	0x19aa: 0x0289, 0x19ab: 0x13d1, 0x19ac: 0x0039, 0x19ad: 0x0ee9, 0x19ae: 0x1159, 0x19af: 0x0ef9, -	0x19b0: 0x0f09, 0x19b1: 0x1199, 0x19b2: 0x0f31, 0x19b3: 0x0249, 0x19b4: 0x0f41, 0x19b5: 0x0259, -	0x19b6: 0x0f51, 0x19b7: 0x0359, 0x19b8: 0x0f61, 0x19b9: 0x0f71, 0x19ba: 0x00d9, 0x19bb: 0x0f99, -	0x19bc: 0x2039, 0x19bd: 0x0269, 0x19be: 0x01d9, 0x19bf: 0x0fa9, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x0fb9, 0x19c1: 0x1089, 0x19c2: 0x0279, 0x19c3: 0x0369, 0x19c4: 0x0289, 0x19c5: 0x13d1, -	0x19c6: 0x0039, 0x19c7: 0x0ee9, 0x19c8: 0x1159, 0x19c9: 0x0ef9, 0x19ca: 0x0f09, 0x19cb: 0x1199, -	0x19cc: 0x0f31, 0x19cd: 0x0249, 0x19ce: 0x0f41, 0x19cf: 0x0259, 0x19d0: 0x0f51, 0x19d1: 0x0359, -	0x19d2: 0x0f61, 0x19d3: 0x0f71, 0x19d4: 0x00d9, 0x19d5: 0x0f99, 0x19d6: 0x2039, 0x19d7: 0x0269, -	0x19d8: 0x01d9, 0x19d9: 0x0fa9, 0x19da: 0x0fb9, 0x19db: 0x1089, 0x19dc: 0x0279, 0x19dd: 0x0369, -	0x19de: 0x0289, 0x19df: 0x13d1, 0x19e0: 0x0039, 0x19e1: 0x0ee9, 0x19e2: 0x1159, 0x19e3: 0x0ef9, -	0x19e4: 0x0f09, 0x19e5: 0x1199, 0x19e6: 0x0f31, 0x19e7: 0x0249, 0x19e8: 0x0f41, 0x19e9: 0x0259, -	0x19ea: 0x0f51, 0x19eb: 0x0359, 0x19ec: 0x0f61, 0x19ed: 0x0f71, 0x19ee: 0x00d9, 0x19ef: 0x0f99, -	0x19f0: 0x2039, 0x19f1: 0x0269, 0x19f2: 0x01d9, 0x19f3: 0x0fa9, 0x19f4: 0x0fb9, 0x19f5: 0x1089, -	0x19f6: 0x0279, 0x19f7: 0x0369, 0x19f8: 0x0289, 0x19f9: 0x13d1, 0x19fa: 0x0039, 0x19fb: 0x0ee9, -	0x19fc: 0x1159, 0x19fd: 0x0ef9, 0x19fe: 0x0f09, 0x19ff: 0x1199, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x0f31, 0x1a01: 0x0249, 0x1a02: 0x0f41, 0x1a03: 0x0259, 0x1a04: 0x0f51, 0x1a05: 0x0359, -	0x1a06: 0x0f61, 0x1a07: 0x0f71, 0x1a08: 0x00d9, 0x1a09: 0x0f99, 0x1a0a: 0x2039, 0x1a0b: 0x0269, -	0x1a0c: 0x01d9, 0x1a0d: 0x0fa9, 0x1a0e: 0x0fb9, 0x1a0f: 0x1089, 0x1a10: 0x0279, 0x1a11: 0x0369, -	0x1a12: 0x0289, 0x1a13: 0x13d1, 0x1a14: 0x0039, 0x1a15: 0x0ee9, 0x1a16: 0x1159, 0x1a17: 0x0ef9, -	0x1a18: 0x0f09, 0x1a19: 0x1199, 0x1a1a: 0x0f31, 0x1a1b: 0x0249, 0x1a1c: 0x0f41, 0x1a1d: 0x0259, -	0x1a1e: 0x0f51, 0x1a1f: 0x0359, 0x1a20: 0x0f61, 0x1a21: 0x0f71, 0x1a22: 0x00d9, 0x1a23: 0x0f99, -	0x1a24: 0x2039, 0x1a25: 0x0269, 0x1a26: 0x01d9, 0x1a27: 0x0fa9, 0x1a28: 0x0fb9, 0x1a29: 0x1089, -	0x1a2a: 0x0279, 0x1a2b: 0x0369, 0x1a2c: 0x0289, 0x1a2d: 0x13d1, 0x1a2e: 0x0039, 0x1a2f: 0x0ee9, -	0x1a30: 0x1159, 0x1a31: 0x0ef9, 0x1a32: 0x0f09, 0x1a33: 0x1199, 0x1a34: 0x0f31, 0x1a35: 0x0249, -	0x1a36: 0x0f41, 0x1a37: 0x0259, 0x1a38: 0x0f51, 0x1a39: 0x0359, 0x1a3a: 0x0f61, 0x1a3b: 0x0f71, -	0x1a3c: 0x00d9, 0x1a3d: 0x0f99, 0x1a3e: 0x2039, 0x1a3f: 0x0269, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x01d9, 0x1a41: 0x0fa9, 0x1a42: 0x0fb9, 0x1a43: 0x1089, 0x1a44: 0x0279, 0x1a45: 0x0369, -	0x1a46: 0x0289, 0x1a47: 0x13d1, 0x1a48: 0x0039, 0x1a49: 0x0ee9, 0x1a4a: 0x1159, 0x1a4b: 0x0ef9, -	0x1a4c: 0x0f09, 0x1a4d: 0x1199, 0x1a4e: 0x0f31, 0x1a4f: 0x0249, 0x1a50: 0x0f41, 0x1a51: 0x0259, -	0x1a52: 0x0f51, 0x1a53: 0x0359, 0x1a54: 0x0f61, 0x1a55: 0x0f71, 0x1a56: 0x00d9, 0x1a57: 0x0f99, -	0x1a58: 0x2039, 0x1a59: 0x0269, 0x1a5a: 0x01d9, 0x1a5b: 0x0fa9, 0x1a5c: 0x0fb9, 0x1a5d: 0x1089, -	0x1a5e: 0x0279, 0x1a5f: 0x0369, 0x1a60: 0x0289, 0x1a61: 0x13d1, 0x1a62: 0x0039, 0x1a63: 0x0ee9, -	0x1a64: 0x1159, 0x1a65: 0x0ef9, 0x1a66: 0x0f09, 0x1a67: 0x1199, 0x1a68: 0x0f31, 0x1a69: 0x0249, -	0x1a6a: 0x0f41, 0x1a6b: 0x0259, 0x1a6c: 0x0f51, 0x1a6d: 0x0359, 0x1a6e: 0x0f61, 0x1a6f: 0x0f71, -	0x1a70: 0x00d9, 0x1a71: 0x0f99, 0x1a72: 0x2039, 0x1a73: 0x0269, 0x1a74: 0x01d9, 0x1a75: 0x0fa9, -	0x1a76: 0x0fb9, 0x1a77: 0x1089, 0x1a78: 0x0279, 0x1a79: 0x0369, 0x1a7a: 0x0289, 0x1a7b: 0x13d1, -	0x1a7c: 0x0039, 0x1a7d: 0x0ee9, 0x1a7e: 0x1159, 0x1a7f: 0x0ef9, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x0f09, 0x1a81: 0x1199, 0x1a82: 0x0f31, 0x1a83: 0x0249, 0x1a84: 0x0f41, 0x1a85: 0x0259, -	0x1a86: 0x0f51, 0x1a87: 0x0359, 0x1a88: 0x0f61, 0x1a89: 0x0f71, 0x1a8a: 0x00d9, 0x1a8b: 0x0f99, -	0x1a8c: 0x2039, 0x1a8d: 0x0269, 0x1a8e: 0x01d9, 0x1a8f: 0x0fa9, 0x1a90: 0x0fb9, 0x1a91: 0x1089, -	0x1a92: 0x0279, 0x1a93: 0x0369, 0x1a94: 0x0289, 0x1a95: 0x13d1, 0x1a96: 0x0039, 0x1a97: 0x0ee9, -	0x1a98: 0x1159, 0x1a99: 0x0ef9, 0x1a9a: 0x0f09, 0x1a9b: 0x1199, 0x1a9c: 0x0f31, 0x1a9d: 0x0249, -	0x1a9e: 0x0f41, 0x1a9f: 0x0259, 0x1aa0: 0x0f51, 0x1aa1: 0x0359, 0x1aa2: 0x0f61, 0x1aa3: 0x0f71, -	0x1aa4: 0x00d9, 0x1aa5: 0x0f99, 0x1aa6: 0x2039, 0x1aa7: 0x0269, 0x1aa8: 0x01d9, 0x1aa9: 0x0fa9, -	0x1aaa: 0x0fb9, 0x1aab: 0x1089, 0x1aac: 0x0279, 0x1aad: 0x0369, 0x1aae: 0x0289, 0x1aaf: 0x13d1, -	0x1ab0: 0x0039, 0x1ab1: 0x0ee9, 0x1ab2: 0x1159, 0x1ab3: 0x0ef9, 0x1ab4: 0x0f09, 0x1ab5: 0x1199, -	0x1ab6: 0x0f31, 0x1ab7: 0x0249, 0x1ab8: 0x0f41, 0x1ab9: 0x0259, 0x1aba: 0x0f51, 0x1abb: 0x0359, -	0x1abc: 0x0f61, 0x1abd: 0x0f71, 0x1abe: 0x00d9, 0x1abf: 0x0f99, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x2039, 0x1ac1: 0x0269, 0x1ac2: 0x01d9, 0x1ac3: 0x0fa9, 0x1ac4: 0x0fb9, 0x1ac5: 0x1089, -	0x1ac6: 0x0279, 0x1ac7: 0x0369, 0x1ac8: 0x0289, 0x1ac9: 0x13d1, 0x1aca: 0x0039, 0x1acb: 0x0ee9, -	0x1acc: 0x1159, 0x1acd: 0x0ef9, 0x1ace: 0x0f09, 0x1acf: 0x1199, 0x1ad0: 0x0f31, 0x1ad1: 0x0249, -	0x1ad2: 0x0f41, 0x1ad3: 0x0259, 0x1ad4: 0x0f51, 0x1ad5: 0x0359, 0x1ad6: 0x0f61, 0x1ad7: 0x0f71, -	0x1ad8: 0x00d9, 0x1ad9: 0x0f99, 0x1ada: 0x2039, 0x1adb: 0x0269, 0x1adc: 0x01d9, 0x1add: 0x0fa9, -	0x1ade: 0x0fb9, 0x1adf: 0x1089, 0x1ae0: 0x0279, 0x1ae1: 0x0369, 0x1ae2: 0x0289, 0x1ae3: 0x13d1, -	0x1ae4: 0xba81, 0x1ae5: 0xba99, 0x1ae6: 0x0040, 0x1ae7: 0x0040, 0x1ae8: 0xbab1, 0x1ae9: 0x1099, -	0x1aea: 0x10b1, 0x1aeb: 0x10c9, 0x1aec: 0xbac9, 0x1aed: 0xbae1, 0x1aee: 0xbaf9, 0x1aef: 0x1429, -	0x1af0: 0x1a31, 0x1af1: 0xbb11, 0x1af2: 0xbb29, 0x1af3: 0xbb41, 0x1af4: 0xbb59, 0x1af5: 0xbb71, -	0x1af6: 0xbb89, 0x1af7: 0x2109, 0x1af8: 0x1111, 0x1af9: 0x1429, 0x1afa: 0xbba1, 0x1afb: 0xbbb9, -	0x1afc: 0xbbd1, 0x1afd: 0x10e1, 0x1afe: 0x10f9, 0x1aff: 0xbbe9, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0x2079, 0x1b01: 0xbc01, 0x1b02: 0xbab1, 0x1b03: 0x1099, 0x1b04: 0x10b1, 0x1b05: 0x10c9, -	0x1b06: 0xbac9, 0x1b07: 0xbae1, 0x1b08: 0xbaf9, 0x1b09: 0x1429, 0x1b0a: 0x1a31, 0x1b0b: 0xbb11, -	0x1b0c: 0xbb29, 0x1b0d: 0xbb41, 0x1b0e: 0xbb59, 0x1b0f: 0xbb71, 0x1b10: 0xbb89, 0x1b11: 0x2109, -	0x1b12: 0x1111, 0x1b13: 0xbba1, 0x1b14: 0xbba1, 0x1b15: 0xbbb9, 0x1b16: 0xbbd1, 0x1b17: 0x10e1, -	0x1b18: 0x10f9, 0x1b19: 0xbbe9, 0x1b1a: 0x2079, 0x1b1b: 0xbc21, 0x1b1c: 0xbac9, 0x1b1d: 0x1429, -	0x1b1e: 0xbb11, 0x1b1f: 0x10e1, 0x1b20: 0x1111, 0x1b21: 0x2109, 0x1b22: 0xbab1, 0x1b23: 0x1099, -	0x1b24: 0x10b1, 0x1b25: 0x10c9, 0x1b26: 0xbac9, 0x1b27: 0xbae1, 0x1b28: 0xbaf9, 0x1b29: 0x1429, -	0x1b2a: 0x1a31, 0x1b2b: 0xbb11, 0x1b2c: 0xbb29, 0x1b2d: 0xbb41, 0x1b2e: 0xbb59, 0x1b2f: 0xbb71, -	0x1b30: 0xbb89, 0x1b31: 0x2109, 0x1b32: 0x1111, 0x1b33: 0x1429, 0x1b34: 0xbba1, 0x1b35: 0xbbb9, -	0x1b36: 0xbbd1, 0x1b37: 0x10e1, 0x1b38: 0x10f9, 0x1b39: 0xbbe9, 0x1b3a: 0x2079, 0x1b3b: 0xbc01, -	0x1b3c: 0xbab1, 0x1b3d: 0x1099, 0x1b3e: 0x10b1, 0x1b3f: 0x10c9, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0xbac9, 0x1b41: 0xbae1, 0x1b42: 0xbaf9, 0x1b43: 0x1429, 0x1b44: 0x1a31, 0x1b45: 0xbb11, -	0x1b46: 0xbb29, 0x1b47: 0xbb41, 0x1b48: 0xbb59, 0x1b49: 0xbb71, 0x1b4a: 0xbb89, 0x1b4b: 0x2109, -	0x1b4c: 0x1111, 0x1b4d: 0xbba1, 0x1b4e: 0xbba1, 0x1b4f: 0xbbb9, 0x1b50: 0xbbd1, 0x1b51: 0x10e1, -	0x1b52: 0x10f9, 0x1b53: 0xbbe9, 0x1b54: 0x2079, 0x1b55: 0xbc21, 0x1b56: 0xbac9, 0x1b57: 0x1429, -	0x1b58: 0xbb11, 0x1b59: 0x10e1, 0x1b5a: 0x1111, 0x1b5b: 0x2109, 0x1b5c: 0xbab1, 0x1b5d: 0x1099, -	0x1b5e: 0x10b1, 0x1b5f: 0x10c9, 0x1b60: 0xbac9, 0x1b61: 0xbae1, 0x1b62: 0xbaf9, 0x1b63: 0x1429, -	0x1b64: 0x1a31, 0x1b65: 0xbb11, 0x1b66: 0xbb29, 0x1b67: 0xbb41, 0x1b68: 0xbb59, 0x1b69: 0xbb71, -	0x1b6a: 0xbb89, 0x1b6b: 0x2109, 0x1b6c: 0x1111, 0x1b6d: 0x1429, 0x1b6e: 0xbba1, 0x1b6f: 0xbbb9, -	0x1b70: 0xbbd1, 0x1b71: 0x10e1, 0x1b72: 0x10f9, 0x1b73: 0xbbe9, 0x1b74: 0x2079, 0x1b75: 0xbc01, -	0x1b76: 0xbab1, 0x1b77: 0x1099, 0x1b78: 0x10b1, 0x1b79: 0x10c9, 0x1b7a: 0xbac9, 0x1b7b: 0xbae1, -	0x1b7c: 0xbaf9, 0x1b7d: 0x1429, 0x1b7e: 0x1a31, 0x1b7f: 0xbb11, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0xbb29, 0x1b81: 0xbb41, 0x1b82: 0xbb59, 0x1b83: 0xbb71, 0x1b84: 0xbb89, 0x1b85: 0x2109, -	0x1b86: 0x1111, 0x1b87: 0xbba1, 0x1b88: 0xbba1, 0x1b89: 0xbbb9, 0x1b8a: 0xbbd1, 0x1b8b: 0x10e1, -	0x1b8c: 0x10f9, 0x1b8d: 0xbbe9, 0x1b8e: 0x2079, 0x1b8f: 0xbc21, 0x1b90: 0xbac9, 0x1b91: 0x1429, -	0x1b92: 0xbb11, 0x1b93: 0x10e1, 0x1b94: 0x1111, 0x1b95: 0x2109, 0x1b96: 0xbab1, 0x1b97: 0x1099, -	0x1b98: 0x10b1, 0x1b99: 0x10c9, 0x1b9a: 0xbac9, 0x1b9b: 0xbae1, 0x1b9c: 0xbaf9, 0x1b9d: 0x1429, -	0x1b9e: 0x1a31, 0x1b9f: 0xbb11, 0x1ba0: 0xbb29, 0x1ba1: 0xbb41, 0x1ba2: 0xbb59, 0x1ba3: 0xbb71, -	0x1ba4: 0xbb89, 0x1ba5: 0x2109, 0x1ba6: 0x1111, 0x1ba7: 0x1429, 0x1ba8: 0xbba1, 0x1ba9: 0xbbb9, -	0x1baa: 0xbbd1, 0x1bab: 0x10e1, 0x1bac: 0x10f9, 0x1bad: 0xbbe9, 0x1bae: 0x2079, 0x1baf: 0xbc01, -	0x1bb0: 0xbab1, 0x1bb1: 0x1099, 0x1bb2: 0x10b1, 0x1bb3: 0x10c9, 0x1bb4: 0xbac9, 0x1bb5: 0xbae1, -	0x1bb6: 0xbaf9, 0x1bb7: 0x1429, 0x1bb8: 0x1a31, 0x1bb9: 0xbb11, 0x1bba: 0xbb29, 0x1bbb: 0xbb41, -	0x1bbc: 0xbb59, 0x1bbd: 0xbb71, 0x1bbe: 0xbb89, 0x1bbf: 0x2109, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x1111, 0x1bc1: 0xbba1, 0x1bc2: 0xbba1, 0x1bc3: 0xbbb9, 0x1bc4: 0xbbd1, 0x1bc5: 0x10e1, -	0x1bc6: 0x10f9, 0x1bc7: 0xbbe9, 0x1bc8: 0x2079, 0x1bc9: 0xbc21, 0x1bca: 0xbac9, 0x1bcb: 0x1429, -	0x1bcc: 0xbb11, 0x1bcd: 0x10e1, 0x1bce: 0x1111, 0x1bcf: 0x2109, 0x1bd0: 0xbab1, 0x1bd1: 0x1099, -	0x1bd2: 0x10b1, 0x1bd3: 0x10c9, 0x1bd4: 0xbac9, 0x1bd5: 0xbae1, 0x1bd6: 0xbaf9, 0x1bd7: 0x1429, -	0x1bd8: 0x1a31, 0x1bd9: 0xbb11, 0x1bda: 0xbb29, 0x1bdb: 0xbb41, 0x1bdc: 0xbb59, 0x1bdd: 0xbb71, -	0x1bde: 0xbb89, 0x1bdf: 0x2109, 0x1be0: 0x1111, 0x1be1: 0x1429, 0x1be2: 0xbba1, 0x1be3: 0xbbb9, -	0x1be4: 0xbbd1, 0x1be5: 0x10e1, 0x1be6: 0x10f9, 0x1be7: 0xbbe9, 0x1be8: 0x2079, 0x1be9: 0xbc01, -	0x1bea: 0xbab1, 0x1beb: 0x1099, 0x1bec: 0x10b1, 0x1bed: 0x10c9, 0x1bee: 0xbac9, 0x1bef: 0xbae1, -	0x1bf0: 0xbaf9, 0x1bf1: 0x1429, 0x1bf2: 0x1a31, 0x1bf3: 0xbb11, 0x1bf4: 0xbb29, 0x1bf5: 0xbb41, -	0x1bf6: 0xbb59, 0x1bf7: 0xbb71, 0x1bf8: 0xbb89, 0x1bf9: 0x2109, 0x1bfa: 0x1111, 0x1bfb: 0xbba1, -	0x1bfc: 0xbba1, 0x1bfd: 0xbbb9, 0x1bfe: 0xbbd1, 0x1bff: 0x10e1, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0x10f9, 0x1c01: 0xbbe9, 0x1c02: 0x2079, 0x1c03: 0xbc21, 0x1c04: 0xbac9, 0x1c05: 0x1429, -	0x1c06: 0xbb11, 0x1c07: 0x10e1, 0x1c08: 0x1111, 0x1c09: 0x2109, 0x1c0a: 0xbc41, 0x1c0b: 0xbc41, -	0x1c0c: 0x0040, 0x1c0d: 0x0040, 0x1c0e: 0x1f41, 0x1c0f: 0x00c9, 0x1c10: 0x0069, 0x1c11: 0x0079, -	0x1c12: 0x1f51, 0x1c13: 0x1f61, 0x1c14: 0x1f71, 0x1c15: 0x1f81, 0x1c16: 0x1f91, 0x1c17: 0x1fa1, -	0x1c18: 0x1f41, 0x1c19: 0x00c9, 0x1c1a: 0x0069, 0x1c1b: 0x0079, 0x1c1c: 0x1f51, 0x1c1d: 0x1f61, -	0x1c1e: 0x1f71, 0x1c1f: 0x1f81, 0x1c20: 0x1f91, 0x1c21: 0x1fa1, 0x1c22: 0x1f41, 0x1c23: 0x00c9, -	0x1c24: 0x0069, 0x1c25: 0x0079, 0x1c26: 0x1f51, 0x1c27: 0x1f61, 0x1c28: 0x1f71, 0x1c29: 0x1f81, -	0x1c2a: 0x1f91, 0x1c2b: 0x1fa1, 0x1c2c: 0x1f41, 0x1c2d: 0x00c9, 0x1c2e: 0x0069, 0x1c2f: 0x0079, -	0x1c30: 0x1f51, 0x1c31: 0x1f61, 0x1c32: 0x1f71, 0x1c33: 0x1f81, 0x1c34: 0x1f91, 0x1c35: 0x1fa1, -	0x1c36: 0x1f41, 0x1c37: 0x00c9, 0x1c38: 0x0069, 0x1c39: 0x0079, 0x1c3a: 0x1f51, 0x1c3b: 0x1f61, -	0x1c3c: 0x1f71, 0x1c3d: 0x1f81, 0x1c3e: 0x1f91, 0x1c3f: 0x1fa1, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0xe115, 0x1c41: 0xe115, 0x1c42: 0xe135, 0x1c43: 0xe135, 0x1c44: 0xe115, 0x1c45: 0xe115, -	0x1c46: 0xe175, 0x1c47: 0xe175, 0x1c48: 0xe115, 0x1c49: 0xe115, 0x1c4a: 0xe135, 0x1c4b: 0xe135, -	0x1c4c: 0xe115, 0x1c4d: 0xe115, 0x1c4e: 0xe1f5, 0x1c4f: 0xe1f5, 0x1c50: 0xe115, 0x1c51: 0xe115, -	0x1c52: 0xe135, 0x1c53: 0xe135, 0x1c54: 0xe115, 0x1c55: 0xe115, 0x1c56: 0xe175, 0x1c57: 0xe175, -	0x1c58: 0xe115, 0x1c59: 0xe115, 0x1c5a: 0xe135, 0x1c5b: 0xe135, 0x1c5c: 0xe115, 0x1c5d: 0xe115, -	0x1c5e: 0x8b05, 0x1c5f: 0x8b05, 0x1c60: 0x04b5, 0x1c61: 0x04b5, 0x1c62: 0x0a08, 0x1c63: 0x0a08, -	0x1c64: 0x0a08, 0x1c65: 0x0a08, 0x1c66: 0x0a08, 0x1c67: 0x0a08, 0x1c68: 0x0a08, 0x1c69: 0x0a08, -	0x1c6a: 0x0a08, 0x1c6b: 0x0a08, 0x1c6c: 0x0a08, 0x1c6d: 0x0a08, 0x1c6e: 0x0a08, 0x1c6f: 0x0a08, -	0x1c70: 0x0a08, 0x1c71: 0x0a08, 0x1c72: 0x0a08, 0x1c73: 0x0a08, 0x1c74: 0x0a08, 0x1c75: 0x0a08, -	0x1c76: 0x0a08, 0x1c77: 0x0a08, 0x1c78: 0x0a08, 0x1c79: 0x0a08, 0x1c7a: 0x0a08, 0x1c7b: 0x0a08, -	0x1c7c: 0x0a08, 0x1c7d: 0x0a08, 0x1c7e: 0x0a08, 0x1c7f: 0x0a08, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0xb189, 0x1c81: 0xb1a1, 0x1c82: 0xb201, 0x1c83: 0xb249, 0x1c84: 0x0040, 0x1c85: 0xb411, -	0x1c86: 0xb291, 0x1c87: 0xb219, 0x1c88: 0xb309, 0x1c89: 0xb429, 0x1c8a: 0xb399, 0x1c8b: 0xb3b1, -	0x1c8c: 0xb3c9, 0x1c8d: 0xb3e1, 0x1c8e: 0xb2a9, 0x1c8f: 0xb339, 0x1c90: 0xb369, 0x1c91: 0xb2d9, -	0x1c92: 0xb381, 0x1c93: 0xb279, 0x1c94: 0xb2c1, 0x1c95: 0xb1d1, 0x1c96: 0xb1e9, 0x1c97: 0xb231, -	0x1c98: 0xb261, 0x1c99: 0xb2f1, 0x1c9a: 0xb321, 0x1c9b: 0xb351, 0x1c9c: 0xbc59, 0x1c9d: 0x7949, -	0x1c9e: 0xbc71, 0x1c9f: 0xbc89, 0x1ca0: 0x0040, 0x1ca1: 0xb1a1, 0x1ca2: 0xb201, 0x1ca3: 0x0040, -	0x1ca4: 0xb3f9, 0x1ca5: 0x0040, 0x1ca6: 0x0040, 0x1ca7: 0xb219, 0x1ca8: 0x0040, 0x1ca9: 0xb429, -	0x1caa: 0xb399, 0x1cab: 0xb3b1, 0x1cac: 0xb3c9, 0x1cad: 0xb3e1, 0x1cae: 0xb2a9, 0x1caf: 0xb339, -	0x1cb0: 0xb369, 0x1cb1: 0xb2d9, 0x1cb2: 0xb381, 0x1cb3: 0x0040, 0x1cb4: 0xb2c1, 0x1cb5: 0xb1d1, -	0x1cb6: 0xb1e9, 0x1cb7: 0xb231, 0x1cb8: 0x0040, 0x1cb9: 0xb2f1, 0x1cba: 0x0040, 0x1cbb: 0xb351, -	0x1cbc: 0x0040, 0x1cbd: 0x0040, 0x1cbe: 0x0040, 0x1cbf: 0x0040, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0x0040, 0x1cc1: 0x0040, 0x1cc2: 0xb201, 0x1cc3: 0x0040, 0x1cc4: 0x0040, 0x1cc5: 0x0040, -	0x1cc6: 0x0040, 0x1cc7: 0xb219, 0x1cc8: 0x0040, 0x1cc9: 0xb429, 0x1cca: 0x0040, 0x1ccb: 0xb3b1, -	0x1ccc: 0x0040, 0x1ccd: 0xb3e1, 0x1cce: 0xb2a9, 0x1ccf: 0xb339, 0x1cd0: 0x0040, 0x1cd1: 0xb2d9, -	0x1cd2: 0xb381, 0x1cd3: 0x0040, 0x1cd4: 0xb2c1, 0x1cd5: 0x0040, 0x1cd6: 0x0040, 0x1cd7: 0xb231, -	0x1cd8: 0x0040, 0x1cd9: 0xb2f1, 0x1cda: 0x0040, 0x1cdb: 0xb351, 0x1cdc: 0x0040, 0x1cdd: 0x7949, -	0x1cde: 0x0040, 0x1cdf: 0xbc89, 0x1ce0: 0x0040, 0x1ce1: 0xb1a1, 0x1ce2: 0xb201, 0x1ce3: 0x0040, -	0x1ce4: 0xb3f9, 0x1ce5: 0x0040, 0x1ce6: 0x0040, 0x1ce7: 0xb219, 0x1ce8: 0xb309, 0x1ce9: 0xb429, -	0x1cea: 0xb399, 0x1ceb: 0x0040, 0x1cec: 0xb3c9, 0x1ced: 0xb3e1, 0x1cee: 0xb2a9, 0x1cef: 0xb339, -	0x1cf0: 0xb369, 0x1cf1: 0xb2d9, 0x1cf2: 0xb381, 0x1cf3: 0x0040, 0x1cf4: 0xb2c1, 0x1cf5: 0xb1d1, -	0x1cf6: 0xb1e9, 0x1cf7: 0xb231, 0x1cf8: 0x0040, 0x1cf9: 0xb2f1, 0x1cfa: 0xb321, 0x1cfb: 0xb351, -	0x1cfc: 0xbc59, 0x1cfd: 0x0040, 0x1cfe: 0xbc71, 0x1cff: 0x0040, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0xb189, 0x1d01: 0xb1a1, 0x1d02: 0xb201, 0x1d03: 0xb249, 0x1d04: 0xb3f9, 0x1d05: 0xb411, -	0x1d06: 0xb291, 0x1d07: 0xb219, 0x1d08: 0xb309, 0x1d09: 0xb429, 0x1d0a: 0x0040, 0x1d0b: 0xb3b1, -	0x1d0c: 0xb3c9, 0x1d0d: 0xb3e1, 0x1d0e: 0xb2a9, 0x1d0f: 0xb339, 0x1d10: 0xb369, 0x1d11: 0xb2d9, -	0x1d12: 0xb381, 0x1d13: 0xb279, 0x1d14: 0xb2c1, 0x1d15: 0xb1d1, 0x1d16: 0xb1e9, 0x1d17: 0xb231, -	0x1d18: 0xb261, 0x1d19: 0xb2f1, 0x1d1a: 0xb321, 0x1d1b: 0xb351, 0x1d1c: 0x0040, 0x1d1d: 0x0040, -	0x1d1e: 0x0040, 0x1d1f: 0x0040, 0x1d20: 0x0040, 0x1d21: 0xb1a1, 0x1d22: 0xb201, 0x1d23: 0xb249, -	0x1d24: 0x0040, 0x1d25: 0xb411, 0x1d26: 0xb291, 0x1d27: 0xb219, 0x1d28: 0xb309, 0x1d29: 0xb429, -	0x1d2a: 0x0040, 0x1d2b: 0xb3b1, 0x1d2c: 0xb3c9, 0x1d2d: 0xb3e1, 0x1d2e: 0xb2a9, 0x1d2f: 0xb339, -	0x1d30: 0xb369, 0x1d31: 0xb2d9, 0x1d32: 0xb381, 0x1d33: 0xb279, 0x1d34: 0xb2c1, 0x1d35: 0xb1d1, -	0x1d36: 0xb1e9, 0x1d37: 0xb231, 0x1d38: 0xb261, 0x1d39: 0xb2f1, 0x1d3a: 0xb321, 0x1d3b: 0xb351, -	0x1d3c: 0x0040, 0x1d3d: 0x0040, 0x1d3e: 0x0040, 0x1d3f: 0x0040, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x0040, 0x1d41: 0xbca2, 0x1d42: 0xbcba, 0x1d43: 0xbcd2, 0x1d44: 0xbcea, 0x1d45: 0xbd02, -	0x1d46: 0xbd1a, 0x1d47: 0xbd32, 0x1d48: 0xbd4a, 0x1d49: 0xbd62, 0x1d4a: 0xbd7a, 0x1d4b: 0x0018, -	0x1d4c: 0x0018, 0x1d4d: 0x0040, 0x1d4e: 0x0040, 0x1d4f: 0x0040, 0x1d50: 0xbd92, 0x1d51: 0xbdb2, -	0x1d52: 0xbdd2, 0x1d53: 0xbdf2, 0x1d54: 0xbe12, 0x1d55: 0xbe32, 0x1d56: 0xbe52, 0x1d57: 0xbe72, -	0x1d58: 0xbe92, 0x1d59: 0xbeb2, 0x1d5a: 0xbed2, 0x1d5b: 0xbef2, 0x1d5c: 0xbf12, 0x1d5d: 0xbf32, -	0x1d5e: 0xbf52, 0x1d5f: 0xbf72, 0x1d60: 0xbf92, 0x1d61: 0xbfb2, 0x1d62: 0xbfd2, 0x1d63: 0xbff2, -	0x1d64: 0xc012, 0x1d65: 0xc032, 0x1d66: 0xc052, 0x1d67: 0xc072, 0x1d68: 0xc092, 0x1d69: 0xc0b2, -	0x1d6a: 0xc0d1, 0x1d6b: 0x1159, 0x1d6c: 0x0269, 0x1d6d: 0x6671, 0x1d6e: 0xc111, 0x1d6f: 0x0018, -	0x1d70: 0x0039, 0x1d71: 0x0ee9, 0x1d72: 0x1159, 0x1d73: 0x0ef9, 0x1d74: 0x0f09, 0x1d75: 0x1199, -	0x1d76: 0x0f31, 0x1d77: 0x0249, 0x1d78: 0x0f41, 0x1d79: 0x0259, 0x1d7a: 0x0f51, 0x1d7b: 0x0359, -	0x1d7c: 0x0f61, 0x1d7d: 0x0f71, 0x1d7e: 0x00d9, 0x1d7f: 0x0f99, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0x2039, 0x1d81: 0x0269, 0x1d82: 0x01d9, 0x1d83: 0x0fa9, 0x1d84: 0x0fb9, 0x1d85: 0x1089, -	0x1d86: 0x0279, 0x1d87: 0x0369, 0x1d88: 0x0289, 0x1d89: 0x13d1, 0x1d8a: 0xc129, 0x1d8b: 0x65b1, -	0x1d8c: 0xc141, 0x1d8d: 0x1441, 0x1d8e: 0xc159, 0x1d8f: 0xc179, 0x1d90: 0x0018, 0x1d91: 0x0018, -	0x1d92: 0x0018, 0x1d93: 0x0018, 0x1d94: 0x0018, 0x1d95: 0x0018, 0x1d96: 0x0018, 0x1d97: 0x0018, -	0x1d98: 0x0018, 0x1d99: 0x0018, 0x1d9a: 0x0018, 0x1d9b: 0x0018, 0x1d9c: 0x0018, 0x1d9d: 0x0018, -	0x1d9e: 0x0018, 0x1d9f: 0x0018, 0x1da0: 0x0018, 0x1da1: 0x0018, 0x1da2: 0x0018, 0x1da3: 0x0018, -	0x1da4: 0x0018, 0x1da5: 0x0018, 0x1da6: 0x0018, 0x1da7: 0x0018, 0x1da8: 0x0018, 0x1da9: 0x0018, -	0x1daa: 0xc191, 0x1dab: 0xc1a9, 0x1dac: 0x0040, 0x1dad: 0x0040, 0x1dae: 0x0040, 0x1daf: 0x0040, -	0x1db0: 0x0018, 0x1db1: 0x0018, 0x1db2: 0x0018, 0x1db3: 0x0018, 0x1db4: 0x0018, 0x1db5: 0x0018, -	0x1db6: 0x0018, 0x1db7: 0x0018, 0x1db8: 0x0018, 0x1db9: 0x0018, 0x1dba: 0x0018, 0x1dbb: 0x0018, -	0x1dbc: 0x0018, 0x1dbd: 0x0018, 0x1dbe: 0x0018, 0x1dbf: 0x0018, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0xc1d9, 0x1dc1: 0xc211, 0x1dc2: 0xc249, 0x1dc3: 0x0040, 0x1dc4: 0x0040, 0x1dc5: 0x0040, -	0x1dc6: 0x0040, 0x1dc7: 0x0040, 0x1dc8: 0x0040, 0x1dc9: 0x0040, 0x1dca: 0x0040, 0x1dcb: 0x0040, -	0x1dcc: 0x0040, 0x1dcd: 0x0040, 0x1dce: 0x0040, 0x1dcf: 0x0040, 0x1dd0: 0xc269, 0x1dd1: 0xc289, -	0x1dd2: 0xc2a9, 0x1dd3: 0xc2c9, 0x1dd4: 0xc2e9, 0x1dd5: 0xc309, 0x1dd6: 0xc329, 0x1dd7: 0xc349, -	0x1dd8: 0xc369, 0x1dd9: 0xc389, 0x1dda: 0xc3a9, 0x1ddb: 0xc3c9, 0x1ddc: 0xc3e9, 0x1ddd: 0xc409, -	0x1dde: 0xc429, 0x1ddf: 0xc449, 0x1de0: 0xc469, 0x1de1: 0xc489, 0x1de2: 0xc4a9, 0x1de3: 0xc4c9, -	0x1de4: 0xc4e9, 0x1de5: 0xc509, 0x1de6: 0xc529, 0x1de7: 0xc549, 0x1de8: 0xc569, 0x1de9: 0xc589, -	0x1dea: 0xc5a9, 0x1deb: 0xc5c9, 0x1dec: 0xc5e9, 0x1ded: 0xc609, 0x1dee: 0xc629, 0x1def: 0xc649, -	0x1df0: 0xc669, 0x1df1: 0xc689, 0x1df2: 0xc6a9, 0x1df3: 0xc6c9, 0x1df4: 0xc6e9, 0x1df5: 0xc709, -	0x1df6: 0xc729, 0x1df7: 0xc749, 0x1df8: 0xc769, 0x1df9: 0xc789, 0x1dfa: 0xc7a9, 0x1dfb: 0xc7c9, -	0x1dfc: 0x0040, 0x1dfd: 0x0040, 0x1dfe: 0x0040, 0x1dff: 0x0040, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0xcaf9, 0x1e01: 0xcb19, 0x1e02: 0xcb39, 0x1e03: 0x8b1d, 0x1e04: 0xcb59, 0x1e05: 0xcb79, -	0x1e06: 0xcb99, 0x1e07: 0xcbb9, 0x1e08: 0xcbd9, 0x1e09: 0xcbf9, 0x1e0a: 0xcc19, 0x1e0b: 0xcc39, -	0x1e0c: 0xcc59, 0x1e0d: 0x8b3d, 0x1e0e: 0xcc79, 0x1e0f: 0xcc99, 0x1e10: 0xccb9, 0x1e11: 0xccd9, -	0x1e12: 0x8b5d, 0x1e13: 0xccf9, 0x1e14: 0xcd19, 0x1e15: 0xc429, 0x1e16: 0x8b7d, 0x1e17: 0xcd39, -	0x1e18: 0xcd59, 0x1e19: 0xcd79, 0x1e1a: 0xcd99, 0x1e1b: 0xcdb9, 0x1e1c: 0x8b9d, 0x1e1d: 0xcdd9, -	0x1e1e: 0xcdf9, 0x1e1f: 0xce19, 0x1e20: 0xce39, 0x1e21: 0xce59, 0x1e22: 0xc789, 0x1e23: 0xce79, -	0x1e24: 0xce99, 0x1e25: 0xceb9, 0x1e26: 0xced9, 0x1e27: 0xcef9, 0x1e28: 0xcf19, 0x1e29: 0xcf39, -	0x1e2a: 0xcf59, 0x1e2b: 0xcf79, 0x1e2c: 0xcf99, 0x1e2d: 0xcfb9, 0x1e2e: 0xcfd9, 0x1e2f: 0xcff9, -	0x1e30: 0xd019, 0x1e31: 0xd039, 0x1e32: 0xd039, 0x1e33: 0xd039, 0x1e34: 0x8bbd, 0x1e35: 0xd059, -	0x1e36: 0xd079, 0x1e37: 0xd099, 0x1e38: 0x8bdd, 0x1e39: 0xd0b9, 0x1e3a: 0xd0d9, 0x1e3b: 0xd0f9, -	0x1e3c: 0xd119, 0x1e3d: 0xd139, 0x1e3e: 0xd159, 0x1e3f: 0xd179, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0xd199, 0x1e41: 0xd1b9, 0x1e42: 0xd1d9, 0x1e43: 0xd1f9, 0x1e44: 0xd219, 0x1e45: 0xd239, -	0x1e46: 0xd239, 0x1e47: 0xd259, 0x1e48: 0xd279, 0x1e49: 0xd299, 0x1e4a: 0xd2b9, 0x1e4b: 0xd2d9, -	0x1e4c: 0xd2f9, 0x1e4d: 0xd319, 0x1e4e: 0xd339, 0x1e4f: 0xd359, 0x1e50: 0xd379, 0x1e51: 0xd399, -	0x1e52: 0xd3b9, 0x1e53: 0xd3d9, 0x1e54: 0xd3f9, 0x1e55: 0xd419, 0x1e56: 0xd439, 0x1e57: 0xd459, -	0x1e58: 0xd479, 0x1e59: 0x8bfd, 0x1e5a: 0xd499, 0x1e5b: 0xd4b9, 0x1e5c: 0xd4d9, 0x1e5d: 0xc309, -	0x1e5e: 0xd4f9, 0x1e5f: 0xd519, 0x1e60: 0x8c1d, 0x1e61: 0x8c3d, 0x1e62: 0xd539, 0x1e63: 0xd559, -	0x1e64: 0xd579, 0x1e65: 0xd599, 0x1e66: 0xd5b9, 0x1e67: 0xd5d9, 0x1e68: 0x2040, 0x1e69: 0xd5f9, -	0x1e6a: 0xd619, 0x1e6b: 0xd619, 0x1e6c: 0x8c5d, 0x1e6d: 0xd639, 0x1e6e: 0xd659, 0x1e6f: 0xd679, -	0x1e70: 0xd699, 0x1e71: 0x8c7d, 0x1e72: 0xd6b9, 0x1e73: 0xd6d9, 0x1e74: 0x2040, 0x1e75: 0xd6f9, -	0x1e76: 0xd719, 0x1e77: 0xd739, 0x1e78: 0xd759, 0x1e79: 0xd779, 0x1e7a: 0xd799, 0x1e7b: 0x8c9d, -	0x1e7c: 0xd7b9, 0x1e7d: 0x8cbd, 0x1e7e: 0xd7d9, 0x1e7f: 0xd7f9, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0xd819, 0x1e81: 0xd839, 0x1e82: 0xd859, 0x1e83: 0xd879, 0x1e84: 0xd899, 0x1e85: 0xd8b9, -	0x1e86: 0xd8d9, 0x1e87: 0xd8f9, 0x1e88: 0xd919, 0x1e89: 0x8cdd, 0x1e8a: 0xd939, 0x1e8b: 0xd959, -	0x1e8c: 0xd979, 0x1e8d: 0xd999, 0x1e8e: 0xd9b9, 0x1e8f: 0x8cfd, 0x1e90: 0xd9d9, 0x1e91: 0x8d1d, -	0x1e92: 0x8d3d, 0x1e93: 0xd9f9, 0x1e94: 0xda19, 0x1e95: 0xda19, 0x1e96: 0xda39, 0x1e97: 0x8d5d, -	0x1e98: 0x8d7d, 0x1e99: 0xda59, 0x1e9a: 0xda79, 0x1e9b: 0xda99, 0x1e9c: 0xdab9, 0x1e9d: 0xdad9, -	0x1e9e: 0xdaf9, 0x1e9f: 0xdb19, 0x1ea0: 0xdb39, 0x1ea1: 0xdb59, 0x1ea2: 0xdb79, 0x1ea3: 0xdb99, -	0x1ea4: 0x8d9d, 0x1ea5: 0xdbb9, 0x1ea6: 0xdbd9, 0x1ea7: 0xdbf9, 0x1ea8: 0xdc19, 0x1ea9: 0xdbf9, -	0x1eaa: 0xdc39, 0x1eab: 0xdc59, 0x1eac: 0xdc79, 0x1ead: 0xdc99, 0x1eae: 0xdcb9, 0x1eaf: 0xdcd9, -	0x1eb0: 0xdcf9, 0x1eb1: 0xdd19, 0x1eb2: 0xdd39, 0x1eb3: 0xdd59, 0x1eb4: 0xdd79, 0x1eb5: 0xdd99, -	0x1eb6: 0xddb9, 0x1eb7: 0xddd9, 0x1eb8: 0x8dbd, 0x1eb9: 0xddf9, 0x1eba: 0xde19, 0x1ebb: 0xde39, -	0x1ebc: 0xde59, 0x1ebd: 0xde79, 0x1ebe: 0x8ddd, 0x1ebf: 0xde99, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0xe599, 0x1ec1: 0xe5b9, 0x1ec2: 0xe5d9, 0x1ec3: 0xe5f9, 0x1ec4: 0xe619, 0x1ec5: 0xe639, -	0x1ec6: 0x8efd, 0x1ec7: 0xe659, 0x1ec8: 0xe679, 0x1ec9: 0xe699, 0x1eca: 0xe6b9, 0x1ecb: 0xe6d9, -	0x1ecc: 0xe6f9, 0x1ecd: 0x8f1d, 0x1ece: 0xe719, 0x1ecf: 0xe739, 0x1ed0: 0x8f3d, 0x1ed1: 0x8f5d, -	0x1ed2: 0xe759, 0x1ed3: 0xe779, 0x1ed4: 0xe799, 0x1ed5: 0xe7b9, 0x1ed6: 0xe7d9, 0x1ed7: 0xe7f9, -	0x1ed8: 0xe819, 0x1ed9: 0xe839, 0x1eda: 0xe859, 0x1edb: 0x8f7d, 0x1edc: 0xe879, 0x1edd: 0x8f9d, -	0x1ede: 0xe899, 0x1edf: 0x2040, 0x1ee0: 0xe8b9, 0x1ee1: 0xe8d9, 0x1ee2: 0xe8f9, 0x1ee3: 0x8fbd, -	0x1ee4: 0xe919, 0x1ee5: 0xe939, 0x1ee6: 0x8fdd, 0x1ee7: 0x8ffd, 0x1ee8: 0xe959, 0x1ee9: 0xe979, -	0x1eea: 0xe999, 0x1eeb: 0xe9b9, 0x1eec: 0xe9d9, 0x1eed: 0xe9d9, 0x1eee: 0xe9f9, 0x1eef: 0xea19, -	0x1ef0: 0xea39, 0x1ef1: 0xea59, 0x1ef2: 0xea79, 0x1ef3: 0xea99, 0x1ef4: 0xeab9, 0x1ef5: 0x901d, -	0x1ef6: 0xead9, 0x1ef7: 0x903d, 0x1ef8: 0xeaf9, 0x1ef9: 0x905d, 0x1efa: 0xeb19, 0x1efb: 0x907d, -	0x1efc: 0x909d, 0x1efd: 0x90bd, 0x1efe: 0xeb39, 0x1eff: 0xeb59, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0xeb79, 0x1f01: 0x90dd, 0x1f02: 0x90fd, 0x1f03: 0x911d, 0x1f04: 0x913d, 0x1f05: 0xeb99, -	0x1f06: 0xebb9, 0x1f07: 0xebb9, 0x1f08: 0xebd9, 0x1f09: 0xebf9, 0x1f0a: 0xec19, 0x1f0b: 0xec39, -	0x1f0c: 0xec59, 0x1f0d: 0x915d, 0x1f0e: 0xec79, 0x1f0f: 0xec99, 0x1f10: 0xecb9, 0x1f11: 0xecd9, -	0x1f12: 0x917d, 0x1f13: 0xecf9, 0x1f14: 0x919d, 0x1f15: 0x91bd, 0x1f16: 0xed19, 0x1f17: 0xed39, -	0x1f18: 0xed59, 0x1f19: 0xed79, 0x1f1a: 0xed99, 0x1f1b: 0xedb9, 0x1f1c: 0x91dd, 0x1f1d: 0x91fd, -	0x1f1e: 0x921d, 0x1f1f: 0x2040, 0x1f20: 0xedd9, 0x1f21: 0x923d, 0x1f22: 0xedf9, 0x1f23: 0xee19, -	0x1f24: 0xee39, 0x1f25: 0x925d, 0x1f26: 0xee59, 0x1f27: 0xee79, 0x1f28: 0xee99, 0x1f29: 0xeeb9, -	0x1f2a: 0xeed9, 0x1f2b: 0x927d, 0x1f2c: 0xeef9, 0x1f2d: 0xef19, 0x1f2e: 0xef39, 0x1f2f: 0xef59, -	0x1f30: 0xef79, 0x1f31: 0xef99, 0x1f32: 0x929d, 0x1f33: 0x92bd, 0x1f34: 0xefb9, 0x1f35: 0x92dd, -	0x1f36: 0xefd9, 0x1f37: 0x92fd, 0x1f38: 0xeff9, 0x1f39: 0xf019, 0x1f3a: 0xf039, 0x1f3b: 0x931d, -	0x1f3c: 0x933d, 0x1f3d: 0xf059, 0x1f3e: 0x935d, 0x1f3f: 0xf079, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0xf6b9, 0x1f41: 0xf6d9, 0x1f42: 0xf6f9, 0x1f43: 0xf719, 0x1f44: 0xf739, 0x1f45: 0x951d, -	0x1f46: 0xf759, 0x1f47: 0xf779, 0x1f48: 0xf799, 0x1f49: 0xf7b9, 0x1f4a: 0xf7d9, 0x1f4b: 0x953d, -	0x1f4c: 0x955d, 0x1f4d: 0xf7f9, 0x1f4e: 0xf819, 0x1f4f: 0xf839, 0x1f50: 0xf859, 0x1f51: 0xf879, -	0x1f52: 0xf899, 0x1f53: 0x957d, 0x1f54: 0xf8b9, 0x1f55: 0xf8d9, 0x1f56: 0xf8f9, 0x1f57: 0xf919, -	0x1f58: 0x959d, 0x1f59: 0x95bd, 0x1f5a: 0xf939, 0x1f5b: 0xf959, 0x1f5c: 0xf979, 0x1f5d: 0x95dd, -	0x1f5e: 0xf999, 0x1f5f: 0xf9b9, 0x1f60: 0x6815, 0x1f61: 0x95fd, 0x1f62: 0xf9d9, 0x1f63: 0xf9f9, -	0x1f64: 0xfa19, 0x1f65: 0x961d, 0x1f66: 0xfa39, 0x1f67: 0xfa59, 0x1f68: 0xfa79, 0x1f69: 0xfa99, -	0x1f6a: 0xfab9, 0x1f6b: 0xfad9, 0x1f6c: 0xfaf9, 0x1f6d: 0x963d, 0x1f6e: 0xfb19, 0x1f6f: 0xfb39, -	0x1f70: 0xfb59, 0x1f71: 0x965d, 0x1f72: 0xfb79, 0x1f73: 0xfb99, 0x1f74: 0xfbb9, 0x1f75: 0xfbd9, -	0x1f76: 0x7b35, 0x1f77: 0x967d, 0x1f78: 0xfbf9, 0x1f79: 0xfc19, 0x1f7a: 0xfc39, 0x1f7b: 0x969d, -	0x1f7c: 0xfc59, 0x1f7d: 0x96bd, 0x1f7e: 0xfc79, 0x1f7f: 0xfc79, -	// Block 0x7e, offset 0x1f80 -	0x1f80: 0xfc99, 0x1f81: 0x96dd, 0x1f82: 0xfcb9, 0x1f83: 0xfcd9, 0x1f84: 0xfcf9, 0x1f85: 0xfd19, -	0x1f86: 0xfd39, 0x1f87: 0xfd59, 0x1f88: 0xfd79, 0x1f89: 0x96fd, 0x1f8a: 0xfd99, 0x1f8b: 0xfdb9, -	0x1f8c: 0xfdd9, 0x1f8d: 0xfdf9, 0x1f8e: 0xfe19, 0x1f8f: 0xfe39, 0x1f90: 0x971d, 0x1f91: 0xfe59, -	0x1f92: 0x973d, 0x1f93: 0x975d, 0x1f94: 0x977d, 0x1f95: 0xfe79, 0x1f96: 0xfe99, 0x1f97: 0xfeb9, -	0x1f98: 0xfed9, 0x1f99: 0xfef9, 0x1f9a: 0xff19, 0x1f9b: 0xff39, 0x1f9c: 0xff59, 0x1f9d: 0x979d, -	0x1f9e: 0x0040, 0x1f9f: 0x0040, 0x1fa0: 0x0040, 0x1fa1: 0x0040, 0x1fa2: 0x0040, 0x1fa3: 0x0040, -	0x1fa4: 0x0040, 0x1fa5: 0x0040, 0x1fa6: 0x0040, 0x1fa7: 0x0040, 0x1fa8: 0x0040, 0x1fa9: 0x0040, -	0x1faa: 0x0040, 0x1fab: 0x0040, 0x1fac: 0x0040, 0x1fad: 0x0040, 0x1fae: 0x0040, 0x1faf: 0x0040, -	0x1fb0: 0x0040, 0x1fb1: 0x0040, 0x1fb2: 0x0040, 0x1fb3: 0x0040, 0x1fb4: 0x0040, 0x1fb5: 0x0040, -	0x1fb6: 0x0040, 0x1fb7: 0x0040, 0x1fb8: 0x0040, 0x1fb9: 0x0040, 0x1fba: 0x0040, 0x1fbb: 0x0040, -	0x1fbc: 0x0040, 0x1fbd: 0x0040, 0x1fbe: 0x0040, 0x1fbf: 0x0040, -} - -// idnaIndex: 36 blocks, 2304 entries, 4608 bytes -// Block 0 is the zero block. -var idnaIndex = [2304]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x7d, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x7e, 0xca: 0x7f, 0xcb: 0x07, 0xcc: 0x80, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x81, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x82, 0xd6: 0x83, 0xd7: 0x84, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x85, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x86, 0xde: 0x87, 0xdf: 0x88, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x08, 0xea: 0x09, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x0a, 0xee: 0x0b, 0xef: 0x0c, -	0xf0: 0x1d, 0xf1: 0x1e, 0xf2: 0x1e, 0xf3: 0x20, 0xf4: 0x21, -	// Block 0x4, offset 0x100 -	0x120: 0x89, 0x121: 0x13, 0x122: 0x8a, 0x123: 0x8b, 0x124: 0x8c, 0x125: 0x14, 0x126: 0x15, 0x127: 0x16, -	0x128: 0x17, 0x129: 0x18, 0x12a: 0x19, 0x12b: 0x1a, 0x12c: 0x1b, 0x12d: 0x1c, 0x12e: 0x1d, 0x12f: 0x8d, -	0x130: 0x8e, 0x131: 0x1e, 0x132: 0x1f, 0x133: 0x20, 0x134: 0x8f, 0x135: 0x21, 0x136: 0x90, 0x137: 0x91, -	0x138: 0x92, 0x139: 0x93, 0x13a: 0x22, 0x13b: 0x94, 0x13c: 0x95, 0x13d: 0x23, 0x13e: 0x24, 0x13f: 0x96, -	// Block 0x5, offset 0x140 -	0x140: 0x97, 0x141: 0x98, 0x142: 0x99, 0x143: 0x9a, 0x144: 0x9b, 0x145: 0x9c, 0x146: 0x9d, 0x147: 0x9e, -	0x148: 0x9f, 0x149: 0xa0, 0x14a: 0xa1, 0x14b: 0xa2, 0x14c: 0xa3, 0x14d: 0xa4, 0x14e: 0xa5, 0x14f: 0xa6, -	0x150: 0xa7, 0x151: 0x9f, 0x152: 0x9f, 0x153: 0x9f, 0x154: 0x9f, 0x155: 0x9f, 0x156: 0x9f, 0x157: 0x9f, -	0x158: 0x9f, 0x159: 0xa8, 0x15a: 0xa9, 0x15b: 0xaa, 0x15c: 0xab, 0x15d: 0xac, 0x15e: 0xad, 0x15f: 0xae, -	0x160: 0xaf, 0x161: 0xb0, 0x162: 0xb1, 0x163: 0xb2, 0x164: 0xb3, 0x165: 0xb4, 0x166: 0xb5, 0x167: 0xb6, -	0x168: 0xb7, 0x169: 0xb8, 0x16a: 0xb9, 0x16b: 0xba, 0x16c: 0xbb, 0x16d: 0xbc, 0x16e: 0xbd, 0x16f: 0xbe, -	0x170: 0xbf, 0x171: 0xc0, 0x172: 0xc1, 0x173: 0xc2, 0x174: 0x25, 0x175: 0x26, 0x176: 0x27, 0x177: 0xc3, -	0x178: 0x28, 0x179: 0x28, 0x17a: 0x29, 0x17b: 0x28, 0x17c: 0xc4, 0x17d: 0x2a, 0x17e: 0x2b, 0x17f: 0x2c, -	// Block 0x6, offset 0x180 -	0x180: 0x2d, 0x181: 0x2e, 0x182: 0x2f, 0x183: 0xc5, 0x184: 0x30, 0x185: 0x31, 0x186: 0xc6, 0x187: 0x9b, -	0x188: 0xc7, 0x189: 0xc8, 0x18a: 0x9b, 0x18b: 0x9b, 0x18c: 0xc9, 0x18d: 0x9b, 0x18e: 0x9b, 0x18f: 0x9b, -	0x190: 0xca, 0x191: 0x32, 0x192: 0x33, 0x193: 0x34, 0x194: 0x9b, 0x195: 0x9b, 0x196: 0x9b, 0x197: 0x9b, -	0x198: 0x9b, 0x199: 0x9b, 0x19a: 0x9b, 0x19b: 0x9b, 0x19c: 0x9b, 0x19d: 0x9b, 0x19e: 0x9b, 0x19f: 0x9b, -	0x1a0: 0x9b, 0x1a1: 0x9b, 0x1a2: 0x9b, 0x1a3: 0x9b, 0x1a4: 0x9b, 0x1a5: 0x9b, 0x1a6: 0x9b, 0x1a7: 0x9b, -	0x1a8: 0xcb, 0x1a9: 0xcc, 0x1aa: 0x9b, 0x1ab: 0xcd, 0x1ac: 0x9b, 0x1ad: 0xce, 0x1ae: 0xcf, 0x1af: 0xd0, -	0x1b0: 0xd1, 0x1b1: 0x35, 0x1b2: 0x28, 0x1b3: 0x36, 0x1b4: 0xd2, 0x1b5: 0xd3, 0x1b6: 0xd4, 0x1b7: 0xd5, -	0x1b8: 0xd6, 0x1b9: 0xd7, 0x1ba: 0xd8, 0x1bb: 0xd9, 0x1bc: 0xda, 0x1bd: 0xdb, 0x1be: 0xdc, 0x1bf: 0x37, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x38, 0x1c1: 0xdd, 0x1c2: 0xde, 0x1c3: 0xdf, 0x1c4: 0xe0, 0x1c5: 0x39, 0x1c6: 0x3a, 0x1c7: 0xe1, -	0x1c8: 0xe2, 0x1c9: 0x3b, 0x1ca: 0x3c, 0x1cb: 0x3d, 0x1cc: 0x3e, 0x1cd: 0x3f, 0x1ce: 0x40, 0x1cf: 0x41, -	0x1d0: 0x9f, 0x1d1: 0x9f, 0x1d2: 0x9f, 0x1d3: 0x9f, 0x1d4: 0x9f, 0x1d5: 0x9f, 0x1d6: 0x9f, 0x1d7: 0x9f, -	0x1d8: 0x9f, 0x1d9: 0x9f, 0x1da: 0x9f, 0x1db: 0x9f, 0x1dc: 0x9f, 0x1dd: 0x9f, 0x1de: 0x9f, 0x1df: 0x9f, -	0x1e0: 0x9f, 0x1e1: 0x9f, 0x1e2: 0x9f, 0x1e3: 0x9f, 0x1e4: 0x9f, 0x1e5: 0x9f, 0x1e6: 0x9f, 0x1e7: 0x9f, -	0x1e8: 0x9f, 0x1e9: 0x9f, 0x1ea: 0x9f, 0x1eb: 0x9f, 0x1ec: 0x9f, 0x1ed: 0x9f, 0x1ee: 0x9f, 0x1ef: 0x9f, -	0x1f0: 0x9f, 0x1f1: 0x9f, 0x1f2: 0x9f, 0x1f3: 0x9f, 0x1f4: 0x9f, 0x1f5: 0x9f, 0x1f6: 0x9f, 0x1f7: 0x9f, -	0x1f8: 0x9f, 0x1f9: 0x9f, 0x1fa: 0x9f, 0x1fb: 0x9f, 0x1fc: 0x9f, 0x1fd: 0x9f, 0x1fe: 0x9f, 0x1ff: 0x9f, -	// Block 0x8, offset 0x200 -	0x200: 0x9f, 0x201: 0x9f, 0x202: 0x9f, 0x203: 0x9f, 0x204: 0x9f, 0x205: 0x9f, 0x206: 0x9f, 0x207: 0x9f, -	0x208: 0x9f, 0x209: 0x9f, 0x20a: 0x9f, 0x20b: 0x9f, 0x20c: 0x9f, 0x20d: 0x9f, 0x20e: 0x9f, 0x20f: 0x9f, -	0x210: 0x9f, 0x211: 0x9f, 0x212: 0x9f, 0x213: 0x9f, 0x214: 0x9f, 0x215: 0x9f, 0x216: 0x9f, 0x217: 0x9f, -	0x218: 0x9f, 0x219: 0x9f, 0x21a: 0x9f, 0x21b: 0x9f, 0x21c: 0x9f, 0x21d: 0x9f, 0x21e: 0x9f, 0x21f: 0x9f, -	0x220: 0x9f, 0x221: 0x9f, 0x222: 0x9f, 0x223: 0x9f, 0x224: 0x9f, 0x225: 0x9f, 0x226: 0x9f, 0x227: 0x9f, -	0x228: 0x9f, 0x229: 0x9f, 0x22a: 0x9f, 0x22b: 0x9f, 0x22c: 0x9f, 0x22d: 0x9f, 0x22e: 0x9f, 0x22f: 0x9f, -	0x230: 0x9f, 0x231: 0x9f, 0x232: 0x9f, 0x233: 0x9f, 0x234: 0x9f, 0x235: 0x9f, 0x236: 0xb2, 0x237: 0x9b, -	0x238: 0x9f, 0x239: 0x9f, 0x23a: 0x9f, 0x23b: 0x9f, 0x23c: 0x9f, 0x23d: 0x9f, 0x23e: 0x9f, 0x23f: 0x9f, -	// Block 0x9, offset 0x240 -	0x240: 0x9f, 0x241: 0x9f, 0x242: 0x9f, 0x243: 0x9f, 0x244: 0x9f, 0x245: 0x9f, 0x246: 0x9f, 0x247: 0x9f, -	0x248: 0x9f, 0x249: 0x9f, 0x24a: 0x9f, 0x24b: 0x9f, 0x24c: 0x9f, 0x24d: 0x9f, 0x24e: 0x9f, 0x24f: 0x9f, -	0x250: 0x9f, 0x251: 0x9f, 0x252: 0x9f, 0x253: 0x9f, 0x254: 0x9f, 0x255: 0x9f, 0x256: 0x9f, 0x257: 0x9f, -	0x258: 0x9f, 0x259: 0x9f, 0x25a: 0x9f, 0x25b: 0x9f, 0x25c: 0x9f, 0x25d: 0x9f, 0x25e: 0x9f, 0x25f: 0x9f, -	0x260: 0x9f, 0x261: 0x9f, 0x262: 0x9f, 0x263: 0x9f, 0x264: 0x9f, 0x265: 0x9f, 0x266: 0x9f, 0x267: 0x9f, -	0x268: 0x9f, 0x269: 0x9f, 0x26a: 0x9f, 0x26b: 0x9f, 0x26c: 0x9f, 0x26d: 0x9f, 0x26e: 0x9f, 0x26f: 0x9f, -	0x270: 0x9f, 0x271: 0x9f, 0x272: 0x9f, 0x273: 0x9f, 0x274: 0x9f, 0x275: 0x9f, 0x276: 0x9f, 0x277: 0x9f, -	0x278: 0x9f, 0x279: 0x9f, 0x27a: 0x9f, 0x27b: 0x9f, 0x27c: 0x9f, 0x27d: 0x9f, 0x27e: 0x9f, 0x27f: 0x9f, -	// Block 0xa, offset 0x280 -	0x280: 0x9f, 0x281: 0x9f, 0x282: 0x9f, 0x283: 0x9f, 0x284: 0x9f, 0x285: 0x9f, 0x286: 0x9f, 0x287: 0x9f, -	0x288: 0x9f, 0x289: 0x9f, 0x28a: 0x9f, 0x28b: 0x9f, 0x28c: 0x9f, 0x28d: 0x9f, 0x28e: 0x9f, 0x28f: 0x9f, -	0x290: 0x9f, 0x291: 0x9f, 0x292: 0x9f, 0x293: 0x9f, 0x294: 0x9f, 0x295: 0x9f, 0x296: 0x9f, 0x297: 0x9f, -	0x298: 0x9f, 0x299: 0x9f, 0x29a: 0x9f, 0x29b: 0x9f, 0x29c: 0x9f, 0x29d: 0x9f, 0x29e: 0x9f, 0x29f: 0x9f, -	0x2a0: 0x9f, 0x2a1: 0x9f, 0x2a2: 0x9f, 0x2a3: 0x9f, 0x2a4: 0x9f, 0x2a5: 0x9f, 0x2a6: 0x9f, 0x2a7: 0x9f, -	0x2a8: 0x9f, 0x2a9: 0x9f, 0x2aa: 0x9f, 0x2ab: 0x9f, 0x2ac: 0x9f, 0x2ad: 0x9f, 0x2ae: 0x9f, 0x2af: 0x9f, -	0x2b0: 0x9f, 0x2b1: 0x9f, 0x2b2: 0x9f, 0x2b3: 0x9f, 0x2b4: 0x9f, 0x2b5: 0x9f, 0x2b6: 0x9f, 0x2b7: 0x9f, -	0x2b8: 0x9f, 0x2b9: 0x9f, 0x2ba: 0x9f, 0x2bb: 0x9f, 0x2bc: 0x9f, 0x2bd: 0x9f, 0x2be: 0x9f, 0x2bf: 0xe3, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x9f, 0x2c1: 0x9f, 0x2c2: 0x9f, 0x2c3: 0x9f, 0x2c4: 0x9f, 0x2c5: 0x9f, 0x2c6: 0x9f, 0x2c7: 0x9f, -	0x2c8: 0x9f, 0x2c9: 0x9f, 0x2ca: 0x9f, 0x2cb: 0x9f, 0x2cc: 0x9f, 0x2cd: 0x9f, 0x2ce: 0x9f, 0x2cf: 0x9f, -	0x2d0: 0x9f, 0x2d1: 0x9f, 0x2d2: 0xe4, 0x2d3: 0xe5, 0x2d4: 0x9f, 0x2d5: 0x9f, 0x2d6: 0x9f, 0x2d7: 0x9f, -	0x2d8: 0xe6, 0x2d9: 0x42, 0x2da: 0x43, 0x2db: 0xe7, 0x2dc: 0x44, 0x2dd: 0x45, 0x2de: 0x46, 0x2df: 0xe8, -	0x2e0: 0xe9, 0x2e1: 0xea, 0x2e2: 0xeb, 0x2e3: 0xec, 0x2e4: 0xed, 0x2e5: 0xee, 0x2e6: 0xef, 0x2e7: 0xf0, -	0x2e8: 0xf1, 0x2e9: 0xf2, 0x2ea: 0xf3, 0x2eb: 0xf4, 0x2ec: 0xf5, 0x2ed: 0xf6, 0x2ee: 0xf7, 0x2ef: 0xf8, -	0x2f0: 0x9f, 0x2f1: 0x9f, 0x2f2: 0x9f, 0x2f3: 0x9f, 0x2f4: 0x9f, 0x2f5: 0x9f, 0x2f6: 0x9f, 0x2f7: 0x9f, -	0x2f8: 0x9f, 0x2f9: 0x9f, 0x2fa: 0x9f, 0x2fb: 0x9f, 0x2fc: 0x9f, 0x2fd: 0x9f, 0x2fe: 0x9f, 0x2ff: 0x9f, -	// Block 0xc, offset 0x300 -	0x300: 0x9f, 0x301: 0x9f, 0x302: 0x9f, 0x303: 0x9f, 0x304: 0x9f, 0x305: 0x9f, 0x306: 0x9f, 0x307: 0x9f, -	0x308: 0x9f, 0x309: 0x9f, 0x30a: 0x9f, 0x30b: 0x9f, 0x30c: 0x9f, 0x30d: 0x9f, 0x30e: 0x9f, 0x30f: 0x9f, -	0x310: 0x9f, 0x311: 0x9f, 0x312: 0x9f, 0x313: 0x9f, 0x314: 0x9f, 0x315: 0x9f, 0x316: 0x9f, 0x317: 0x9f, -	0x318: 0x9f, 0x319: 0x9f, 0x31a: 0x9f, 0x31b: 0x9f, 0x31c: 0x9f, 0x31d: 0x9f, 0x31e: 0xf9, 0x31f: 0xfa, -	// Block 0xd, offset 0x340 -	0x340: 0xba, 0x341: 0xba, 0x342: 0xba, 0x343: 0xba, 0x344: 0xba, 0x345: 0xba, 0x346: 0xba, 0x347: 0xba, -	0x348: 0xba, 0x349: 0xba, 0x34a: 0xba, 0x34b: 0xba, 0x34c: 0xba, 0x34d: 0xba, 0x34e: 0xba, 0x34f: 0xba, -	0x350: 0xba, 0x351: 0xba, 0x352: 0xba, 0x353: 0xba, 0x354: 0xba, 0x355: 0xba, 0x356: 0xba, 0x357: 0xba, -	0x358: 0xba, 0x359: 0xba, 0x35a: 0xba, 0x35b: 0xba, 0x35c: 0xba, 0x35d: 0xba, 0x35e: 0xba, 0x35f: 0xba, -	0x360: 0xba, 0x361: 0xba, 0x362: 0xba, 0x363: 0xba, 0x364: 0xba, 0x365: 0xba, 0x366: 0xba, 0x367: 0xba, -	0x368: 0xba, 0x369: 0xba, 0x36a: 0xba, 0x36b: 0xba, 0x36c: 0xba, 0x36d: 0xba, 0x36e: 0xba, 0x36f: 0xba, -	0x370: 0xba, 0x371: 0xba, 0x372: 0xba, 0x373: 0xba, 0x374: 0xba, 0x375: 0xba, 0x376: 0xba, 0x377: 0xba, -	0x378: 0xba, 0x379: 0xba, 0x37a: 0xba, 0x37b: 0xba, 0x37c: 0xba, 0x37d: 0xba, 0x37e: 0xba, 0x37f: 0xba, -	// Block 0xe, offset 0x380 -	0x380: 0xba, 0x381: 0xba, 0x382: 0xba, 0x383: 0xba, 0x384: 0xba, 0x385: 0xba, 0x386: 0xba, 0x387: 0xba, -	0x388: 0xba, 0x389: 0xba, 0x38a: 0xba, 0x38b: 0xba, 0x38c: 0xba, 0x38d: 0xba, 0x38e: 0xba, 0x38f: 0xba, -	0x390: 0xba, 0x391: 0xba, 0x392: 0xba, 0x393: 0xba, 0x394: 0xba, 0x395: 0xba, 0x396: 0xba, 0x397: 0xba, -	0x398: 0xba, 0x399: 0xba, 0x39a: 0xba, 0x39b: 0xba, 0x39c: 0xba, 0x39d: 0xba, 0x39e: 0xba, 0x39f: 0xba, -	0x3a0: 0xba, 0x3a1: 0xba, 0x3a2: 0xba, 0x3a3: 0xba, 0x3a4: 0xfb, 0x3a5: 0xfc, 0x3a6: 0xfd, 0x3a7: 0xfe, -	0x3a8: 0x47, 0x3a9: 0xff, 0x3aa: 0x100, 0x3ab: 0x48, 0x3ac: 0x49, 0x3ad: 0x4a, 0x3ae: 0x4b, 0x3af: 0x4c, -	0x3b0: 0x101, 0x3b1: 0x4d, 0x3b2: 0x4e, 0x3b3: 0x4f, 0x3b4: 0x50, 0x3b5: 0x51, 0x3b6: 0x102, 0x3b7: 0x52, -	0x3b8: 0x53, 0x3b9: 0x54, 0x3ba: 0x55, 0x3bb: 0x56, 0x3bc: 0x57, 0x3bd: 0x58, 0x3be: 0x59, 0x3bf: 0x5a, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x103, 0x3c1: 0x104, 0x3c2: 0x9f, 0x3c3: 0x105, 0x3c4: 0x106, 0x3c5: 0x9b, 0x3c6: 0x107, 0x3c7: 0x108, -	0x3c8: 0xba, 0x3c9: 0xba, 0x3ca: 0x109, 0x3cb: 0x10a, 0x3cc: 0x10b, 0x3cd: 0x10c, 0x3ce: 0x10d, 0x3cf: 0x10e, -	0x3d0: 0x10f, 0x3d1: 0x9f, 0x3d2: 0x110, 0x3d3: 0x111, 0x3d4: 0x112, 0x3d5: 0x113, 0x3d6: 0xba, 0x3d7: 0xba, -	0x3d8: 0x9f, 0x3d9: 0x9f, 0x3da: 0x9f, 0x3db: 0x9f, 0x3dc: 0x114, 0x3dd: 0x115, 0x3de: 0xba, 0x3df: 0xba, -	0x3e0: 0x116, 0x3e1: 0x117, 0x3e2: 0x118, 0x3e3: 0x119, 0x3e4: 0x11a, 0x3e5: 0xba, 0x3e6: 0x11b, 0x3e7: 0x11c, -	0x3e8: 0x11d, 0x3e9: 0x11e, 0x3ea: 0x11f, 0x3eb: 0x5b, 0x3ec: 0x120, 0x3ed: 0x121, 0x3ee: 0x5c, 0x3ef: 0xba, -	0x3f0: 0x122, 0x3f1: 0x123, 0x3f2: 0x124, 0x3f3: 0x125, 0x3f4: 0x126, 0x3f5: 0xba, 0x3f6: 0xba, 0x3f7: 0xba, -	0x3f8: 0xba, 0x3f9: 0x127, 0x3fa: 0xba, 0x3fb: 0xba, 0x3fc: 0x128, 0x3fd: 0x129, 0x3fe: 0xba, 0x3ff: 0xba, -	// Block 0x10, offset 0x400 -	0x400: 0x12a, 0x401: 0x12b, 0x402: 0x12c, 0x403: 0x12d, 0x404: 0x12e, 0x405: 0x12f, 0x406: 0x130, 0x407: 0x131, -	0x408: 0x132, 0x409: 0xba, 0x40a: 0x133, 0x40b: 0x134, 0x40c: 0x5d, 0x40d: 0x5e, 0x40e: 0xba, 0x40f: 0xba, -	0x410: 0x135, 0x411: 0x136, 0x412: 0x137, 0x413: 0x138, 0x414: 0xba, 0x415: 0xba, 0x416: 0x139, 0x417: 0x13a, -	0x418: 0x13b, 0x419: 0x13c, 0x41a: 0x13d, 0x41b: 0x13e, 0x41c: 0x13f, 0x41d: 0xba, 0x41e: 0xba, 0x41f: 0xba, -	0x420: 0x140, 0x421: 0xba, 0x422: 0x141, 0x423: 0x142, 0x424: 0xba, 0x425: 0xba, 0x426: 0xba, 0x427: 0xba, -	0x428: 0x143, 0x429: 0x144, 0x42a: 0x145, 0x42b: 0x146, 0x42c: 0xba, 0x42d: 0xba, 0x42e: 0xba, 0x42f: 0xba, -	0x430: 0x147, 0x431: 0x148, 0x432: 0x149, 0x433: 0xba, 0x434: 0x14a, 0x435: 0x14b, 0x436: 0x14c, 0x437: 0xba, -	0x438: 0xba, 0x439: 0xba, 0x43a: 0xba, 0x43b: 0x14d, 0x43c: 0xba, 0x43d: 0xba, 0x43e: 0xba, 0x43f: 0xba, -	// Block 0x11, offset 0x440 -	0x440: 0x9f, 0x441: 0x9f, 0x442: 0x9f, 0x443: 0x9f, 0x444: 0x9f, 0x445: 0x9f, 0x446: 0x9f, 0x447: 0x9f, -	0x448: 0x9f, 0x449: 0x9f, 0x44a: 0x9f, 0x44b: 0x9f, 0x44c: 0x9f, 0x44d: 0x9f, 0x44e: 0x14e, 0x44f: 0xba, -	0x450: 0x9b, 0x451: 0x14f, 0x452: 0x9f, 0x453: 0x9f, 0x454: 0x9f, 0x455: 0x150, 0x456: 0xba, 0x457: 0xba, -	0x458: 0xba, 0x459: 0xba, 0x45a: 0xba, 0x45b: 0xba, 0x45c: 0xba, 0x45d: 0xba, 0x45e: 0xba, 0x45f: 0xba, -	0x460: 0xba, 0x461: 0xba, 0x462: 0xba, 0x463: 0xba, 0x464: 0xba, 0x465: 0xba, 0x466: 0xba, 0x467: 0xba, -	0x468: 0xba, 0x469: 0xba, 0x46a: 0xba, 0x46b: 0xba, 0x46c: 0xba, 0x46d: 0xba, 0x46e: 0xba, 0x46f: 0xba, -	0x470: 0xba, 0x471: 0xba, 0x472: 0xba, 0x473: 0xba, 0x474: 0xba, 0x475: 0xba, 0x476: 0xba, 0x477: 0xba, -	0x478: 0xba, 0x479: 0xba, 0x47a: 0xba, 0x47b: 0xba, 0x47c: 0xba, 0x47d: 0xba, 0x47e: 0xba, 0x47f: 0xba, -	// Block 0x12, offset 0x480 -	0x480: 0x9f, 0x481: 0x9f, 0x482: 0x9f, 0x483: 0x9f, 0x484: 0x9f, 0x485: 0x9f, 0x486: 0x9f, 0x487: 0x9f, -	0x488: 0x9f, 0x489: 0x9f, 0x48a: 0x9f, 0x48b: 0x9f, 0x48c: 0x9f, 0x48d: 0x9f, 0x48e: 0x9f, 0x48f: 0x9f, -	0x490: 0x151, 0x491: 0xba, 0x492: 0xba, 0x493: 0xba, 0x494: 0xba, 0x495: 0xba, 0x496: 0xba, 0x497: 0xba, -	0x498: 0xba, 0x499: 0xba, 0x49a: 0xba, 0x49b: 0xba, 0x49c: 0xba, 0x49d: 0xba, 0x49e: 0xba, 0x49f: 0xba, -	0x4a0: 0xba, 0x4a1: 0xba, 0x4a2: 0xba, 0x4a3: 0xba, 0x4a4: 0xba, 0x4a5: 0xba, 0x4a6: 0xba, 0x4a7: 0xba, -	0x4a8: 0xba, 0x4a9: 0xba, 0x4aa: 0xba, 0x4ab: 0xba, 0x4ac: 0xba, 0x4ad: 0xba, 0x4ae: 0xba, 0x4af: 0xba, -	0x4b0: 0xba, 0x4b1: 0xba, 0x4b2: 0xba, 0x4b3: 0xba, 0x4b4: 0xba, 0x4b5: 0xba, 0x4b6: 0xba, 0x4b7: 0xba, -	0x4b8: 0xba, 0x4b9: 0xba, 0x4ba: 0xba, 0x4bb: 0xba, 0x4bc: 0xba, 0x4bd: 0xba, 0x4be: 0xba, 0x4bf: 0xba, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0xba, 0x4c1: 0xba, 0x4c2: 0xba, 0x4c3: 0xba, 0x4c4: 0xba, 0x4c5: 0xba, 0x4c6: 0xba, 0x4c7: 0xba, -	0x4c8: 0xba, 0x4c9: 0xba, 0x4ca: 0xba, 0x4cb: 0xba, 0x4cc: 0xba, 0x4cd: 0xba, 0x4ce: 0xba, 0x4cf: 0xba, -	0x4d0: 0x9f, 0x4d1: 0x9f, 0x4d2: 0x9f, 0x4d3: 0x9f, 0x4d4: 0x9f, 0x4d5: 0x9f, 0x4d6: 0x9f, 0x4d7: 0x9f, -	0x4d8: 0x9f, 0x4d9: 0x152, 0x4da: 0xba, 0x4db: 0xba, 0x4dc: 0xba, 0x4dd: 0xba, 0x4de: 0xba, 0x4df: 0xba, -	0x4e0: 0xba, 0x4e1: 0xba, 0x4e2: 0xba, 0x4e3: 0xba, 0x4e4: 0xba, 0x4e5: 0xba, 0x4e6: 0xba, 0x4e7: 0xba, -	0x4e8: 0xba, 0x4e9: 0xba, 0x4ea: 0xba, 0x4eb: 0xba, 0x4ec: 0xba, 0x4ed: 0xba, 0x4ee: 0xba, 0x4ef: 0xba, -	0x4f0: 0xba, 0x4f1: 0xba, 0x4f2: 0xba, 0x4f3: 0xba, 0x4f4: 0xba, 0x4f5: 0xba, 0x4f6: 0xba, 0x4f7: 0xba, -	0x4f8: 0xba, 0x4f9: 0xba, 0x4fa: 0xba, 0x4fb: 0xba, 0x4fc: 0xba, 0x4fd: 0xba, 0x4fe: 0xba, 0x4ff: 0xba, -	// Block 0x14, offset 0x500 -	0x500: 0xba, 0x501: 0xba, 0x502: 0xba, 0x503: 0xba, 0x504: 0xba, 0x505: 0xba, 0x506: 0xba, 0x507: 0xba, -	0x508: 0xba, 0x509: 0xba, 0x50a: 0xba, 0x50b: 0xba, 0x50c: 0xba, 0x50d: 0xba, 0x50e: 0xba, 0x50f: 0xba, -	0x510: 0xba, 0x511: 0xba, 0x512: 0xba, 0x513: 0xba, 0x514: 0xba, 0x515: 0xba, 0x516: 0xba, 0x517: 0xba, -	0x518: 0xba, 0x519: 0xba, 0x51a: 0xba, 0x51b: 0xba, 0x51c: 0xba, 0x51d: 0xba, 0x51e: 0xba, 0x51f: 0xba, -	0x520: 0x9f, 0x521: 0x9f, 0x522: 0x9f, 0x523: 0x9f, 0x524: 0x9f, 0x525: 0x9f, 0x526: 0x9f, 0x527: 0x9f, -	0x528: 0x146, 0x529: 0x153, 0x52a: 0xba, 0x52b: 0x154, 0x52c: 0x155, 0x52d: 0x156, 0x52e: 0x157, 0x52f: 0xba, -	0x530: 0xba, 0x531: 0xba, 0x532: 0xba, 0x533: 0xba, 0x534: 0xba, 0x535: 0xba, 0x536: 0xba, 0x537: 0xba, -	0x538: 0xba, 0x539: 0x158, 0x53a: 0x159, 0x53b: 0xba, 0x53c: 0x9f, 0x53d: 0x15a, 0x53e: 0x15b, 0x53f: 0x15c, -	// Block 0x15, offset 0x540 -	0x540: 0x9f, 0x541: 0x9f, 0x542: 0x9f, 0x543: 0x9f, 0x544: 0x9f, 0x545: 0x9f, 0x546: 0x9f, 0x547: 0x9f, -	0x548: 0x9f, 0x549: 0x9f, 0x54a: 0x9f, 0x54b: 0x9f, 0x54c: 0x9f, 0x54d: 0x9f, 0x54e: 0x9f, 0x54f: 0x9f, -	0x550: 0x9f, 0x551: 0x9f, 0x552: 0x9f, 0x553: 0x9f, 0x554: 0x9f, 0x555: 0x9f, 0x556: 0x9f, 0x557: 0x9f, -	0x558: 0x9f, 0x559: 0x9f, 0x55a: 0x9f, 0x55b: 0x9f, 0x55c: 0x9f, 0x55d: 0x9f, 0x55e: 0x9f, 0x55f: 0x15d, -	0x560: 0x9f, 0x561: 0x9f, 0x562: 0x9f, 0x563: 0x9f, 0x564: 0x9f, 0x565: 0x9f, 0x566: 0x9f, 0x567: 0x9f, -	0x568: 0x9f, 0x569: 0x9f, 0x56a: 0x9f, 0x56b: 0x15e, 0x56c: 0xba, 0x56d: 0xba, 0x56e: 0xba, 0x56f: 0xba, -	0x570: 0xba, 0x571: 0xba, 0x572: 0xba, 0x573: 0xba, 0x574: 0xba, 0x575: 0xba, 0x576: 0xba, 0x577: 0xba, -	0x578: 0xba, 0x579: 0xba, 0x57a: 0xba, 0x57b: 0xba, 0x57c: 0xba, 0x57d: 0xba, 0x57e: 0xba, 0x57f: 0xba, -	// Block 0x16, offset 0x580 -	0x580: 0x9f, 0x581: 0x9f, 0x582: 0x9f, 0x583: 0x9f, 0x584: 0x15f, 0x585: 0x160, 0x586: 0x9f, 0x587: 0x9f, -	0x588: 0x9f, 0x589: 0x9f, 0x58a: 0x9f, 0x58b: 0x161, 0x58c: 0xba, 0x58d: 0xba, 0x58e: 0xba, 0x58f: 0xba, -	0x590: 0xba, 0x591: 0xba, 0x592: 0xba, 0x593: 0xba, 0x594: 0xba, 0x595: 0xba, 0x596: 0xba, 0x597: 0xba, -	0x598: 0xba, 0x599: 0xba, 0x59a: 0xba, 0x59b: 0xba, 0x59c: 0xba, 0x59d: 0xba, 0x59e: 0xba, 0x59f: 0xba, -	0x5a0: 0xba, 0x5a1: 0xba, 0x5a2: 0xba, 0x5a3: 0xba, 0x5a4: 0xba, 0x5a5: 0xba, 0x5a6: 0xba, 0x5a7: 0xba, -	0x5a8: 0xba, 0x5a9: 0xba, 0x5aa: 0xba, 0x5ab: 0xba, 0x5ac: 0xba, 0x5ad: 0xba, 0x5ae: 0xba, 0x5af: 0xba, -	0x5b0: 0x9f, 0x5b1: 0x162, 0x5b2: 0x163, 0x5b3: 0xba, 0x5b4: 0xba, 0x5b5: 0xba, 0x5b6: 0xba, 0x5b7: 0xba, -	0x5b8: 0xba, 0x5b9: 0xba, 0x5ba: 0xba, 0x5bb: 0xba, 0x5bc: 0xba, 0x5bd: 0xba, 0x5be: 0xba, 0x5bf: 0xba, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x9b, 0x5c1: 0x9b, 0x5c2: 0x9b, 0x5c3: 0x164, 0x5c4: 0x165, 0x5c5: 0x166, 0x5c6: 0x167, 0x5c7: 0x168, -	0x5c8: 0x9b, 0x5c9: 0x169, 0x5ca: 0xba, 0x5cb: 0x16a, 0x5cc: 0x9b, 0x5cd: 0x16b, 0x5ce: 0xba, 0x5cf: 0xba, -	0x5d0: 0x5f, 0x5d1: 0x60, 0x5d2: 0x61, 0x5d3: 0x62, 0x5d4: 0x63, 0x5d5: 0x64, 0x5d6: 0x65, 0x5d7: 0x66, -	0x5d8: 0x67, 0x5d9: 0x68, 0x5da: 0x69, 0x5db: 0x6a, 0x5dc: 0x6b, 0x5dd: 0x6c, 0x5de: 0x6d, 0x5df: 0x6e, -	0x5e0: 0x9b, 0x5e1: 0x9b, 0x5e2: 0x9b, 0x5e3: 0x9b, 0x5e4: 0x9b, 0x5e5: 0x9b, 0x5e6: 0x9b, 0x5e7: 0x9b, -	0x5e8: 0x16c, 0x5e9: 0x16d, 0x5ea: 0x16e, 0x5eb: 0xba, 0x5ec: 0xba, 0x5ed: 0xba, 0x5ee: 0xba, 0x5ef: 0xba, -	0x5f0: 0xba, 0x5f1: 0xba, 0x5f2: 0xba, 0x5f3: 0xba, 0x5f4: 0xba, 0x5f5: 0xba, 0x5f6: 0xba, 0x5f7: 0xba, -	0x5f8: 0xba, 0x5f9: 0xba, 0x5fa: 0xba, 0x5fb: 0xba, 0x5fc: 0xba, 0x5fd: 0xba, 0x5fe: 0xba, 0x5ff: 0xba, -	// Block 0x18, offset 0x600 -	0x600: 0x16f, 0x601: 0xba, 0x602: 0xba, 0x603: 0xba, 0x604: 0xba, 0x605: 0xba, 0x606: 0xba, 0x607: 0xba, -	0x608: 0xba, 0x609: 0xba, 0x60a: 0xba, 0x60b: 0xba, 0x60c: 0xba, 0x60d: 0xba, 0x60e: 0xba, 0x60f: 0xba, -	0x610: 0xba, 0x611: 0xba, 0x612: 0xba, 0x613: 0xba, 0x614: 0xba, 0x615: 0xba, 0x616: 0xba, 0x617: 0xba, -	0x618: 0xba, 0x619: 0xba, 0x61a: 0xba, 0x61b: 0xba, 0x61c: 0xba, 0x61d: 0xba, 0x61e: 0xba, 0x61f: 0xba, -	0x620: 0x122, 0x621: 0x122, 0x622: 0x122, 0x623: 0x170, 0x624: 0x6f, 0x625: 0x171, 0x626: 0xba, 0x627: 0xba, -	0x628: 0xba, 0x629: 0xba, 0x62a: 0xba, 0x62b: 0xba, 0x62c: 0xba, 0x62d: 0xba, 0x62e: 0xba, 0x62f: 0xba, -	0x630: 0xba, 0x631: 0x172, 0x632: 0x173, 0x633: 0xba, 0x634: 0xba, 0x635: 0xba, 0x636: 0xba, 0x637: 0xba, -	0x638: 0x70, 0x639: 0x71, 0x63a: 0x72, 0x63b: 0x174, 0x63c: 0xba, 0x63d: 0xba, 0x63e: 0xba, 0x63f: 0xba, -	// Block 0x19, offset 0x640 -	0x640: 0x175, 0x641: 0x9b, 0x642: 0x176, 0x643: 0x177, 0x644: 0x73, 0x645: 0x74, 0x646: 0x178, 0x647: 0x179, -	0x648: 0x75, 0x649: 0x17a, 0x64a: 0xba, 0x64b: 0xba, 0x64c: 0x9b, 0x64d: 0x9b, 0x64e: 0x9b, 0x64f: 0x9b, -	0x650: 0x9b, 0x651: 0x9b, 0x652: 0x9b, 0x653: 0x9b, 0x654: 0x9b, 0x655: 0x9b, 0x656: 0x9b, 0x657: 0x9b, -	0x658: 0x9b, 0x659: 0x9b, 0x65a: 0x9b, 0x65b: 0x17b, 0x65c: 0x9b, 0x65d: 0x17c, 0x65e: 0x9b, 0x65f: 0x17d, -	0x660: 0x17e, 0x661: 0x17f, 0x662: 0x180, 0x663: 0xba, 0x664: 0x181, 0x665: 0x182, 0x666: 0x183, 0x667: 0x184, -	0x668: 0xba, 0x669: 0x185, 0x66a: 0xba, 0x66b: 0xba, 0x66c: 0xba, 0x66d: 0xba, 0x66e: 0xba, 0x66f: 0xba, -	0x670: 0xba, 0x671: 0xba, 0x672: 0xba, 0x673: 0xba, 0x674: 0xba, 0x675: 0xba, 0x676: 0xba, 0x677: 0xba, -	0x678: 0xba, 0x679: 0xba, 0x67a: 0xba, 0x67b: 0xba, 0x67c: 0xba, 0x67d: 0xba, 0x67e: 0xba, 0x67f: 0xba, -	// Block 0x1a, offset 0x680 -	0x680: 0x9f, 0x681: 0x9f, 0x682: 0x9f, 0x683: 0x9f, 0x684: 0x9f, 0x685: 0x9f, 0x686: 0x9f, 0x687: 0x9f, -	0x688: 0x9f, 0x689: 0x9f, 0x68a: 0x9f, 0x68b: 0x9f, 0x68c: 0x9f, 0x68d: 0x9f, 0x68e: 0x9f, 0x68f: 0x9f, -	0x690: 0x9f, 0x691: 0x9f, 0x692: 0x9f, 0x693: 0x9f, 0x694: 0x9f, 0x695: 0x9f, 0x696: 0x9f, 0x697: 0x9f, -	0x698: 0x9f, 0x699: 0x9f, 0x69a: 0x9f, 0x69b: 0x186, 0x69c: 0x9f, 0x69d: 0x9f, 0x69e: 0x9f, 0x69f: 0x9f, -	0x6a0: 0x9f, 0x6a1: 0x9f, 0x6a2: 0x9f, 0x6a3: 0x9f, 0x6a4: 0x9f, 0x6a5: 0x9f, 0x6a6: 0x9f, 0x6a7: 0x9f, -	0x6a8: 0x9f, 0x6a9: 0x9f, 0x6aa: 0x9f, 0x6ab: 0x9f, 0x6ac: 0x9f, 0x6ad: 0x9f, 0x6ae: 0x9f, 0x6af: 0x9f, -	0x6b0: 0x9f, 0x6b1: 0x9f, 0x6b2: 0x9f, 0x6b3: 0x9f, 0x6b4: 0x9f, 0x6b5: 0x9f, 0x6b6: 0x9f, 0x6b7: 0x9f, -	0x6b8: 0x9f, 0x6b9: 0x9f, 0x6ba: 0x9f, 0x6bb: 0x9f, 0x6bc: 0x9f, 0x6bd: 0x9f, 0x6be: 0x9f, 0x6bf: 0x9f, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x9f, 0x6c1: 0x9f, 0x6c2: 0x9f, 0x6c3: 0x9f, 0x6c4: 0x9f, 0x6c5: 0x9f, 0x6c6: 0x9f, 0x6c7: 0x9f, -	0x6c8: 0x9f, 0x6c9: 0x9f, 0x6ca: 0x9f, 0x6cb: 0x9f, 0x6cc: 0x9f, 0x6cd: 0x9f, 0x6ce: 0x9f, 0x6cf: 0x9f, -	0x6d0: 0x9f, 0x6d1: 0x9f, 0x6d2: 0x9f, 0x6d3: 0x9f, 0x6d4: 0x9f, 0x6d5: 0x9f, 0x6d6: 0x9f, 0x6d7: 0x9f, -	0x6d8: 0x9f, 0x6d9: 0x9f, 0x6da: 0x9f, 0x6db: 0x9f, 0x6dc: 0x187, 0x6dd: 0x9f, 0x6de: 0x9f, 0x6df: 0x9f, -	0x6e0: 0x188, 0x6e1: 0x9f, 0x6e2: 0x9f, 0x6e3: 0x9f, 0x6e4: 0x9f, 0x6e5: 0x9f, 0x6e6: 0x9f, 0x6e7: 0x9f, -	0x6e8: 0x9f, 0x6e9: 0x9f, 0x6ea: 0x9f, 0x6eb: 0x9f, 0x6ec: 0x9f, 0x6ed: 0x9f, 0x6ee: 0x9f, 0x6ef: 0x9f, -	0x6f0: 0x9f, 0x6f1: 0x9f, 0x6f2: 0x9f, 0x6f3: 0x9f, 0x6f4: 0x9f, 0x6f5: 0x9f, 0x6f6: 0x9f, 0x6f7: 0x9f, -	0x6f8: 0x9f, 0x6f9: 0x9f, 0x6fa: 0x9f, 0x6fb: 0x9f, 0x6fc: 0x9f, 0x6fd: 0x9f, 0x6fe: 0x9f, 0x6ff: 0x9f, -	// Block 0x1c, offset 0x700 -	0x700: 0x9f, 0x701: 0x9f, 0x702: 0x9f, 0x703: 0x9f, 0x704: 0x9f, 0x705: 0x9f, 0x706: 0x9f, 0x707: 0x9f, -	0x708: 0x9f, 0x709: 0x9f, 0x70a: 0x9f, 0x70b: 0x9f, 0x70c: 0x9f, 0x70d: 0x9f, 0x70e: 0x9f, 0x70f: 0x9f, -	0x710: 0x9f, 0x711: 0x9f, 0x712: 0x9f, 0x713: 0x9f, 0x714: 0x9f, 0x715: 0x9f, 0x716: 0x9f, 0x717: 0x9f, -	0x718: 0x9f, 0x719: 0x9f, 0x71a: 0x9f, 0x71b: 0x9f, 0x71c: 0x9f, 0x71d: 0x9f, 0x71e: 0x9f, 0x71f: 0x9f, -	0x720: 0x9f, 0x721: 0x9f, 0x722: 0x9f, 0x723: 0x9f, 0x724: 0x9f, 0x725: 0x9f, 0x726: 0x9f, 0x727: 0x9f, -	0x728: 0x9f, 0x729: 0x9f, 0x72a: 0x9f, 0x72b: 0x9f, 0x72c: 0x9f, 0x72d: 0x9f, 0x72e: 0x9f, 0x72f: 0x9f, -	0x730: 0x9f, 0x731: 0x9f, 0x732: 0x9f, 0x733: 0x9f, 0x734: 0x9f, 0x735: 0x9f, 0x736: 0x9f, 0x737: 0x9f, -	0x738: 0x9f, 0x739: 0x9f, 0x73a: 0x189, 0x73b: 0x9f, 0x73c: 0x9f, 0x73d: 0x9f, 0x73e: 0x9f, 0x73f: 0x9f, -	// Block 0x1d, offset 0x740 -	0x740: 0x9f, 0x741: 0x9f, 0x742: 0x9f, 0x743: 0x9f, 0x744: 0x9f, 0x745: 0x9f, 0x746: 0x9f, 0x747: 0x9f, -	0x748: 0x9f, 0x749: 0x9f, 0x74a: 0x9f, 0x74b: 0x9f, 0x74c: 0x9f, 0x74d: 0x9f, 0x74e: 0x9f, 0x74f: 0x9f, -	0x750: 0x9f, 0x751: 0x9f, 0x752: 0x9f, 0x753: 0x9f, 0x754: 0x9f, 0x755: 0x9f, 0x756: 0x9f, 0x757: 0x9f, -	0x758: 0x9f, 0x759: 0x9f, 0x75a: 0x9f, 0x75b: 0x9f, 0x75c: 0x9f, 0x75d: 0x9f, 0x75e: 0x9f, 0x75f: 0x9f, -	0x760: 0x9f, 0x761: 0x9f, 0x762: 0x9f, 0x763: 0x9f, 0x764: 0x9f, 0x765: 0x9f, 0x766: 0x9f, 0x767: 0x9f, -	0x768: 0x9f, 0x769: 0x9f, 0x76a: 0x9f, 0x76b: 0x9f, 0x76c: 0x9f, 0x76d: 0x9f, 0x76e: 0x9f, 0x76f: 0x18a, -	0x770: 0xba, 0x771: 0xba, 0x772: 0xba, 0x773: 0xba, 0x774: 0xba, 0x775: 0xba, 0x776: 0xba, 0x777: 0xba, -	0x778: 0xba, 0x779: 0xba, 0x77a: 0xba, 0x77b: 0xba, 0x77c: 0xba, 0x77d: 0xba, 0x77e: 0xba, 0x77f: 0xba, -	// Block 0x1e, offset 0x780 -	0x780: 0xba, 0x781: 0xba, 0x782: 0xba, 0x783: 0xba, 0x784: 0xba, 0x785: 0xba, 0x786: 0xba, 0x787: 0xba, -	0x788: 0xba, 0x789: 0xba, 0x78a: 0xba, 0x78b: 0xba, 0x78c: 0xba, 0x78d: 0xba, 0x78e: 0xba, 0x78f: 0xba, -	0x790: 0xba, 0x791: 0xba, 0x792: 0xba, 0x793: 0xba, 0x794: 0xba, 0x795: 0xba, 0x796: 0xba, 0x797: 0xba, -	0x798: 0xba, 0x799: 0xba, 0x79a: 0xba, 0x79b: 0xba, 0x79c: 0xba, 0x79d: 0xba, 0x79e: 0xba, 0x79f: 0xba, -	0x7a0: 0x76, 0x7a1: 0x77, 0x7a2: 0x78, 0x7a3: 0x18b, 0x7a4: 0x79, 0x7a5: 0x7a, 0x7a6: 0x18c, 0x7a7: 0x7b, -	0x7a8: 0x7c, 0x7a9: 0xba, 0x7aa: 0xba, 0x7ab: 0xba, 0x7ac: 0xba, 0x7ad: 0xba, 0x7ae: 0xba, 0x7af: 0xba, -	0x7b0: 0xba, 0x7b1: 0xba, 0x7b2: 0xba, 0x7b3: 0xba, 0x7b4: 0xba, 0x7b5: 0xba, 0x7b6: 0xba, 0x7b7: 0xba, -	0x7b8: 0xba, 0x7b9: 0xba, 0x7ba: 0xba, 0x7bb: 0xba, 0x7bc: 0xba, 0x7bd: 0xba, 0x7be: 0xba, 0x7bf: 0xba, -	// Block 0x1f, offset 0x7c0 -	0x7d0: 0x0d, 0x7d1: 0x0e, 0x7d2: 0x0f, 0x7d3: 0x10, 0x7d4: 0x11, 0x7d5: 0x0b, 0x7d6: 0x12, 0x7d7: 0x07, -	0x7d8: 0x13, 0x7d9: 0x0b, 0x7da: 0x0b, 0x7db: 0x14, 0x7dc: 0x0b, 0x7dd: 0x15, 0x7de: 0x16, 0x7df: 0x17, -	0x7e0: 0x07, 0x7e1: 0x07, 0x7e2: 0x07, 0x7e3: 0x07, 0x7e4: 0x07, 0x7e5: 0x07, 0x7e6: 0x07, 0x7e7: 0x07, -	0x7e8: 0x07, 0x7e9: 0x07, 0x7ea: 0x18, 0x7eb: 0x19, 0x7ec: 0x1a, 0x7ed: 0x07, 0x7ee: 0x1b, 0x7ef: 0x1c, -	0x7f0: 0x0b, 0x7f1: 0x0b, 0x7f2: 0x0b, 0x7f3: 0x0b, 0x7f4: 0x0b, 0x7f5: 0x0b, 0x7f6: 0x0b, 0x7f7: 0x0b, -	0x7f8: 0x0b, 0x7f9: 0x0b, 0x7fa: 0x0b, 0x7fb: 0x0b, 0x7fc: 0x0b, 0x7fd: 0x0b, 0x7fe: 0x0b, 0x7ff: 0x0b, -	// Block 0x20, offset 0x800 -	0x800: 0x0b, 0x801: 0x0b, 0x802: 0x0b, 0x803: 0x0b, 0x804: 0x0b, 0x805: 0x0b, 0x806: 0x0b, 0x807: 0x0b, -	0x808: 0x0b, 0x809: 0x0b, 0x80a: 0x0b, 0x80b: 0x0b, 0x80c: 0x0b, 0x80d: 0x0b, 0x80e: 0x0b, 0x80f: 0x0b, -	0x810: 0x0b, 0x811: 0x0b, 0x812: 0x0b, 0x813: 0x0b, 0x814: 0x0b, 0x815: 0x0b, 0x816: 0x0b, 0x817: 0x0b, -	0x818: 0x0b, 0x819: 0x0b, 0x81a: 0x0b, 0x81b: 0x0b, 0x81c: 0x0b, 0x81d: 0x0b, 0x81e: 0x0b, 0x81f: 0x0b, -	0x820: 0x0b, 0x821: 0x0b, 0x822: 0x0b, 0x823: 0x0b, 0x824: 0x0b, 0x825: 0x0b, 0x826: 0x0b, 0x827: 0x0b, -	0x828: 0x0b, 0x829: 0x0b, 0x82a: 0x0b, 0x82b: 0x0b, 0x82c: 0x0b, 0x82d: 0x0b, 0x82e: 0x0b, 0x82f: 0x0b, -	0x830: 0x0b, 0x831: 0x0b, 0x832: 0x0b, 0x833: 0x0b, 0x834: 0x0b, 0x835: 0x0b, 0x836: 0x0b, 0x837: 0x0b, -	0x838: 0x0b, 0x839: 0x0b, 0x83a: 0x0b, 0x83b: 0x0b, 0x83c: 0x0b, 0x83d: 0x0b, 0x83e: 0x0b, 0x83f: 0x0b, -	// Block 0x21, offset 0x840 -	0x840: 0x18d, 0x841: 0x18e, 0x842: 0xba, 0x843: 0xba, 0x844: 0x18f, 0x845: 0x18f, 0x846: 0x18f, 0x847: 0x190, -	0x848: 0xba, 0x849: 0xba, 0x84a: 0xba, 0x84b: 0xba, 0x84c: 0xba, 0x84d: 0xba, 0x84e: 0xba, 0x84f: 0xba, -	0x850: 0xba, 0x851: 0xba, 0x852: 0xba, 0x853: 0xba, 0x854: 0xba, 0x855: 0xba, 0x856: 0xba, 0x857: 0xba, -	0x858: 0xba, 0x859: 0xba, 0x85a: 0xba, 0x85b: 0xba, 0x85c: 0xba, 0x85d: 0xba, 0x85e: 0xba, 0x85f: 0xba, -	0x860: 0xba, 0x861: 0xba, 0x862: 0xba, 0x863: 0xba, 0x864: 0xba, 0x865: 0xba, 0x866: 0xba, 0x867: 0xba, -	0x868: 0xba, 0x869: 0xba, 0x86a: 0xba, 0x86b: 0xba, 0x86c: 0xba, 0x86d: 0xba, 0x86e: 0xba, 0x86f: 0xba, -	0x870: 0xba, 0x871: 0xba, 0x872: 0xba, 0x873: 0xba, 0x874: 0xba, 0x875: 0xba, 0x876: 0xba, 0x877: 0xba, -	0x878: 0xba, 0x879: 0xba, 0x87a: 0xba, 0x87b: 0xba, 0x87c: 0xba, 0x87d: 0xba, 0x87e: 0xba, 0x87f: 0xba, -	// Block 0x22, offset 0x880 -	0x880: 0x0b, 0x881: 0x0b, 0x882: 0x0b, 0x883: 0x0b, 0x884: 0x0b, 0x885: 0x0b, 0x886: 0x0b, 0x887: 0x0b, -	0x888: 0x0b, 0x889: 0x0b, 0x88a: 0x0b, 0x88b: 0x0b, 0x88c: 0x0b, 0x88d: 0x0b, 0x88e: 0x0b, 0x88f: 0x0b, -	0x890: 0x0b, 0x891: 0x0b, 0x892: 0x0b, 0x893: 0x0b, 0x894: 0x0b, 0x895: 0x0b, 0x896: 0x0b, 0x897: 0x0b, -	0x898: 0x0b, 0x899: 0x0b, 0x89a: 0x0b, 0x89b: 0x0b, 0x89c: 0x0b, 0x89d: 0x0b, 0x89e: 0x0b, 0x89f: 0x0b, -	0x8a0: 0x1f, 0x8a1: 0x0b, 0x8a2: 0x0b, 0x8a3: 0x0b, 0x8a4: 0x0b, 0x8a5: 0x0b, 0x8a6: 0x0b, 0x8a7: 0x0b, -	0x8a8: 0x0b, 0x8a9: 0x0b, 0x8aa: 0x0b, 0x8ab: 0x0b, 0x8ac: 0x0b, 0x8ad: 0x0b, 0x8ae: 0x0b, 0x8af: 0x0b, -	0x8b0: 0x0b, 0x8b1: 0x0b, 0x8b2: 0x0b, 0x8b3: 0x0b, 0x8b4: 0x0b, 0x8b5: 0x0b, 0x8b6: 0x0b, 0x8b7: 0x0b, -	0x8b8: 0x0b, 0x8b9: 0x0b, 0x8ba: 0x0b, 0x8bb: 0x0b, 0x8bc: 0x0b, 0x8bd: 0x0b, 0x8be: 0x0b, 0x8bf: 0x0b, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0b, 0x8c1: 0x0b, 0x8c2: 0x0b, 0x8c3: 0x0b, 0x8c4: 0x0b, 0x8c5: 0x0b, 0x8c6: 0x0b, 0x8c7: 0x0b, -	0x8c8: 0x0b, 0x8c9: 0x0b, 0x8ca: 0x0b, 0x8cb: 0x0b, 0x8cc: 0x0b, 0x8cd: 0x0b, 0x8ce: 0x0b, 0x8cf: 0x0b, -} - -// idnaSparseOffset: 276 entries, 552 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x33, 0x3e, 0x4a, 0x4e, 0x5d, 0x62, 0x6c, 0x78, 0x86, 0x8b, 0x94, 0xa4, 0xb2, 0xbe, 0xca, 0xdb, 0xe5, 0xec, 0xf9, 0x10a, 0x111, 0x11c, 0x12b, 0x139, 0x143, 0x145, 0x14a, 0x14d, 0x150, 0x152, 0x15e, 0x169, 0x171, 0x177, 0x17d, 0x182, 0x187, 0x18a, 0x18e, 0x194, 0x199, 0x1a5, 0x1af, 0x1b5, 0x1c6, 0x1d0, 0x1d3, 0x1db, 0x1de, 0x1eb, 0x1f3, 0x1f7, 0x1fe, 0x206, 0x216, 0x222, 0x224, 0x22e, 0x23a, 0x246, 0x252, 0x25a, 0x25f, 0x269, 0x27a, 0x27e, 0x289, 0x28d, 0x296, 0x29e, 0x2a4, 0x2a9, 0x2ac, 0x2b0, 0x2b6, 0x2ba, 0x2be, 0x2c2, 0x2c7, 0x2cd, 0x2d5, 0x2dc, 0x2e7, 0x2f1, 0x2f5, 0x2f8, 0x2fe, 0x302, 0x304, 0x307, 0x309, 0x30c, 0x316, 0x319, 0x328, 0x32c, 0x331, 0x334, 0x338, 0x33d, 0x342, 0x348, 0x34e, 0x35d, 0x363, 0x367, 0x376, 0x37b, 0x383, 0x38d, 0x398, 0x3a0, 0x3b1, 0x3ba, 0x3ca, 0x3d7, 0x3e1, 0x3e6, 0x3f3, 0x3f7, 0x3fc, 0x3fe, 0x402, 0x404, 0x408, 0x411, 0x417, 0x41b, 0x42b, 0x435, 0x43a, 0x43d, 0x443, 0x44a, 0x44f, 0x453, 0x459, 0x45e, 0x467, 0x46c, 0x472, 0x479, 0x480, 0x487, 0x48b, 0x490, 0x493, 0x498, 0x4a4, 0x4aa, 0x4af, 0x4b6, 0x4be, 0x4c3, 0x4c7, 0x4d7, 0x4de, 0x4e2, 0x4e6, 0x4ed, 0x4ef, 0x4f2, 0x4f5, 0x4f9, 0x502, 0x506, 0x50e, 0x516, 0x51c, 0x525, 0x531, 0x538, 0x541, 0x54b, 0x552, 0x560, 0x56d, 0x57a, 0x583, 0x587, 0x596, 0x59e, 0x5a9, 0x5b2, 0x5b8, 0x5c0, 0x5c9, 0x5d3, 0x5d6, 0x5e2, 0x5eb, 0x5ee, 0x5f3, 0x5fe, 0x607, 0x613, 0x616, 0x620, 0x629, 0x635, 0x642, 0x64f, 0x65d, 0x664, 0x667, 0x66c, 0x66f, 0x672, 0x675, 0x67c, 0x683, 0x687, 0x692, 0x695, 0x698, 0x69b, 0x6a1, 0x6a6, 0x6aa, 0x6ad, 0x6b0, 0x6b3, 0x6b6, 0x6b9, 0x6be, 0x6c8, 0x6cb, 0x6cf, 0x6de, 0x6ea, 0x6ee, 0x6f3, 0x6f7, 0x6fc, 0x700, 0x705, 0x70e, 0x719, 0x71f, 0x727, 0x72a, 0x72d, 0x731, 0x735, 0x73b, 0x741, 0x746, 0x749, 0x759, 0x760, 0x763, 0x766, 0x76a, 0x770, 0x775, 0x77a, 0x782, 0x787, 0x78b, 0x78f, 0x792, 0x795, 0x799, 0x79d, 0x7a0, 0x7b0, 0x7c1, 0x7c6, 0x7c8, 0x7ca} - -// idnaSparseValues: 1997 entries, 7988 bytes -var idnaSparseValues = [1997]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0249, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x0259, lo: 0xb2, hi: 0xb2}, -	{value: 0x0269, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x0279, lo: 0xb7, hi: 0xb7}, -	{value: 0x0289, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x06}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x6, offset 0x33 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0401, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xae}, -	{value: 0x0808, lo: 0xaf, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x62 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbf}, -	// Block 0xc, offset 0x6c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x78 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0a08, lo: 0xa0, hi: 0xa9}, -	{value: 0x0c08, lo: 0xaa, hi: 0xac}, -	{value: 0x0808, lo: 0xad, hi: 0xad}, -	{value: 0x0c08, lo: 0xae, hi: 0xae}, -	{value: 0x0a08, lo: 0xaf, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb2}, -	{value: 0x0a08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xe, offset 0x86 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0xf, offset 0x8b -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x10, offset 0x94 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x11, offset 0xa4 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x12, offset 0xb2 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x3b08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbe -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x14, offset 0xca -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x15, offset 0xdb -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x08f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x16, offset 0xe5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x17, offset 0xec -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0961, lo: 0x9c, hi: 0x9c}, -	{value: 0x0999, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x18, offset 0xf9 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x19, offset 0x10a -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x1a, offset 0x111 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1b, offset 0x11c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1c, offset 0x12b -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1d, offset 0x139 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1e, offset 0x143 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x1f, offset 0x145 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x20, offset 0x14a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x21, offset 0x14d -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x22, offset 0x150 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x23, offset 0x152 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x24, offset 0x15e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x25, offset 0x169 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x26, offset 0x171 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x27, offset 0x177 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x28, offset 0x17d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x29, offset 0x182 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x2a, offset 0x187 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2b, offset 0x18a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2c, offset 0x18e -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2d, offset 0x194 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2e, offset 0x199 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x2f, offset 0x1a5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x30, offset 0x1af -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x31, offset 0x1b5 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x32, offset 0x1c6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x33, offset 0x1d0 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x34, offset 0x1d3 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x35, offset 0x1db -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x36, offset 0x1de -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x37, offset 0x1eb -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x38, offset 0x1f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x39, offset 0x1f7 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x3a, offset 0x1fe -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3b, offset 0x206 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3c, offset 0x216 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x3d, offset 0x222 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x3e, offset 0x224 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x3f, offset 0x22e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x40, offset 0x23a -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x41, offset 0x246 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x42, offset 0x252 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x43, offset 0x25a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x44, offset 0x25f -	{value: 0x0000, lo: 0x09}, -	{value: 0x0e29, lo: 0x80, hi: 0x80}, -	{value: 0x0e41, lo: 0x81, hi: 0x81}, -	{value: 0x0e59, lo: 0x82, hi: 0x82}, -	{value: 0x0e71, lo: 0x83, hi: 0x83}, -	{value: 0x0e89, lo: 0x84, hi: 0x85}, -	{value: 0x0ea1, lo: 0x86, hi: 0x86}, -	{value: 0x0eb9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0x45, offset 0x269 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x46, offset 0x27a -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x47, offset 0x27e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x48, offset 0x289 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x49, offset 0x28d -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x24c1, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x4a, offset 0x296 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x24f1, lo: 0xac, hi: 0xac}, -	{value: 0x2529, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x2579, lo: 0xaf, hi: 0xaf}, -	{value: 0x25b1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x4b, offset 0x29e -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4c, offset 0x2a4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09c5, lo: 0xa9, hi: 0xa9}, -	{value: 0x09e5, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4d, offset 0x2a9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x4e, offset 0x2ac -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x28c1, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x4f, offset 0x2b0 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e66, lo: 0xb4, hi: 0xb4}, -	{value: 0x292a, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e86, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x50, offset 0x2b6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x2941, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x51, offset 0x2ba -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x52, offset 0x2be -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0xbf}, -	// Block 0x53, offset 0x2c2 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x54, offset 0x2c7 -	{value: 0x0000, lo: 0x05}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ea5, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x55, offset 0x2cd -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x56, offset 0x2d5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x57, offset 0x2dc -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x58, offset 0x2e7 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x59, offset 0x2f1 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x5a, offset 0x2f5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0xbf}, -	// Block 0x5b, offset 0x2f8 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0edd, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x5c, offset 0x2fe -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0efd, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5d, offset 0x302 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f1d, lo: 0x80, hi: 0xbf}, -	// Block 0x5e, offset 0x304 -	{value: 0x0020, lo: 0x02}, -	{value: 0x171d, lo: 0x80, hi: 0x8f}, -	{value: 0x18fd, lo: 0x90, hi: 0xbf}, -	// Block 0x5f, offset 0x307 -	{value: 0x0020, lo: 0x01}, -	{value: 0x1efd, lo: 0x80, hi: 0xbf}, -	// Block 0x60, offset 0x309 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x61, offset 0x30c -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x29e2, lo: 0x9b, hi: 0x9b}, -	{value: 0x2a0a, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x2a31, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x62, offset 0x316 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x2a69, lo: 0xbf, hi: 0xbf}, -	// Block 0x63, offset 0x319 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb0}, -	{value: 0x2a1d, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a3d, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a5d, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a7d, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a5d, lo: 0xb5, hi: 0xb5}, -	{value: 0x2a9d, lo: 0xb6, hi: 0xb6}, -	{value: 0x2abd, lo: 0xb7, hi: 0xb7}, -	{value: 0x2add, lo: 0xb8, hi: 0xb9}, -	{value: 0x2afd, lo: 0xba, hi: 0xbb}, -	{value: 0x2b1d, lo: 0xbc, hi: 0xbd}, -	{value: 0x2afd, lo: 0xbe, hi: 0xbf}, -	// Block 0x64, offset 0x328 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x65, offset 0x32c -	{value: 0x0030, lo: 0x04}, -	{value: 0x2aa2, lo: 0x80, hi: 0x9d}, -	{value: 0x305a, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x30a2, lo: 0xa0, hi: 0xbf}, -	// Block 0x66, offset 0x331 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x67, offset 0x334 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x68, offset 0x338 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x69, offset 0x33d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x6a, offset 0x342 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6b, offset 0x348 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xb7}, -	{value: 0x2009, lo: 0xb8, hi: 0xb8}, -	{value: 0x6e89, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xbf}, -	// Block 0x6c, offset 0x34e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6d, offset 0x35d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6e, offset 0x363 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x6f, offset 0x367 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x70, offset 0x376 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x71, offset 0x37b -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x72, offset 0x383 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x73, offset 0x38d -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x74, offset 0x398 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x75, offset 0x3a0 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x76, offset 0x3b1 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x77, offset 0x3ba -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x78, offset 0x3ca -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x79, offset 0x3d7 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x4465, lo: 0x9c, hi: 0x9c}, -	{value: 0x447d, lo: 0x9d, hi: 0x9d}, -	{value: 0x2971, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xaf}, -	{value: 0x4495, lo: 0xb0, hi: 0xbf}, -	// Block 0x7a, offset 0x3e1 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44b5, lo: 0x80, hi: 0x8f}, -	{value: 0x44d5, lo: 0x90, hi: 0x9f}, -	{value: 0x44f5, lo: 0xa0, hi: 0xaf}, -	{value: 0x44d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x7b, offset 0x3e6 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x7c, offset 0x3f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7d, offset 0x3f7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x7e, offset 0x3fc -	{value: 0x0020, lo: 0x01}, -	{value: 0x4515, lo: 0x80, hi: 0xbf}, -	// Block 0x7f, offset 0x3fe -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d15, lo: 0x80, hi: 0x94}, -	{value: 0x4ad5, lo: 0x95, hi: 0x95}, -	{value: 0x4fb5, lo: 0x96, hi: 0xbf}, -	// Block 0x80, offset 0x402 -	{value: 0x0020, lo: 0x01}, -	{value: 0x54f5, lo: 0x80, hi: 0xbf}, -	// Block 0x81, offset 0x404 -	{value: 0x0020, lo: 0x03}, -	{value: 0x5cf5, lo: 0x80, hi: 0x84}, -	{value: 0x5655, lo: 0x85, hi: 0x85}, -	{value: 0x5d95, lo: 0x86, hi: 0xbf}, -	// Block 0x82, offset 0x408 -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b55, lo: 0x80, hi: 0x8f}, -	{value: 0x6d15, lo: 0x90, hi: 0x90}, -	{value: 0x6d55, lo: 0x91, hi: 0xab}, -	{value: 0x6ea1, lo: 0xac, hi: 0xac}, -	{value: 0x70b5, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x70d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x83, offset 0x411 -	{value: 0x0020, lo: 0x05}, -	{value: 0x72d5, lo: 0x80, hi: 0xad}, -	{value: 0x6535, lo: 0xae, hi: 0xae}, -	{value: 0x7895, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f55, lo: 0xb6, hi: 0xb6}, -	{value: 0x7975, lo: 0xb7, hi: 0xbf}, -	// Block 0x84, offset 0x417 -	{value: 0x0028, lo: 0x03}, -	{value: 0x7c21, lo: 0x80, hi: 0x82}, -	{value: 0x7be1, lo: 0x83, hi: 0x83}, -	{value: 0x7c99, lo: 0x84, hi: 0xbf}, -	// Block 0x85, offset 0x41b -	{value: 0x0038, lo: 0x0f}, -	{value: 0x9db1, lo: 0x80, hi: 0x83}, -	{value: 0x9e59, lo: 0x84, hi: 0x85}, -	{value: 0x9e91, lo: 0x86, hi: 0x87}, -	{value: 0x9ec9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0xa089, lo: 0x92, hi: 0x97}, -	{value: 0xa1a1, lo: 0x98, hi: 0x9c}, -	{value: 0xa281, lo: 0x9d, hi: 0xb3}, -	{value: 0x9d41, lo: 0xb4, hi: 0xb4}, -	{value: 0x9db1, lo: 0xb5, hi: 0xb5}, -	{value: 0xa789, lo: 0xb6, hi: 0xbb}, -	{value: 0xa869, lo: 0xbc, hi: 0xbc}, -	{value: 0xa7f9, lo: 0xbd, hi: 0xbd}, -	{value: 0xa8d9, lo: 0xbe, hi: 0xbf}, -	// Block 0x86, offset 0x42b -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x87, offset 0x435 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x88, offset 0x43a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x89, offset 0x43d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x8a, offset 0x443 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x8b, offset 0x44a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8c, offset 0x44f -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8d, offset 0x453 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x8e, offset 0x459 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xbf}, -	// Block 0x8f, offset 0x45e -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x90, offset 0x467 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x91, offset 0x46c -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x92, offset 0x472 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8ad5, lo: 0x98, hi: 0x9f}, -	{value: 0x8aed, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x93, offset 0x479 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8aed, lo: 0xb0, hi: 0xb7}, -	{value: 0x8ad5, lo: 0xb8, hi: 0xbf}, -	// Block 0x94, offset 0x480 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x95, offset 0x487 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x96, offset 0x48b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xae}, -	{value: 0x0018, lo: 0xaf, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x97, offset 0x490 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x98, offset 0x493 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x99, offset 0x498 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x9a, offset 0x4a4 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x9b, offset 0x4aa -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x9c, offset 0x4af -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9d, offset 0x4b6 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0x9e, offset 0x4be -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0x9f, offset 0x4c3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0xa0, offset 0x4c7 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xa1, offset 0x4d7 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0xa2, offset 0x4de -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa3, offset 0x4e2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa4, offset 0x4e6 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa5, offset 0x4ed -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa6, offset 0x4ef -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa7, offset 0x4f2 -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xa8, offset 0x4f5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xa9, offset 0x4f9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0908, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0xa1}, -	{value: 0x0c08, lo: 0xa2, hi: 0xa2}, -	{value: 0x0a08, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xaa, offset 0x502 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xab, offset 0x506 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0xa6}, -	{value: 0x0808, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb3}, -	{value: 0x0a08, lo: 0xb4, hi: 0xbf}, -	// Block 0xac, offset 0x50e -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x84}, -	{value: 0x0808, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x90}, -	{value: 0x0a18, lo: 0x91, hi: 0x93}, -	{value: 0x0c18, lo: 0x94, hi: 0x94}, -	{value: 0x0818, lo: 0x95, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xad, offset 0x516 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xae, offset 0x51c -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xaf, offset 0x525 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xb0, offset 0x531 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb1, offset 0x538 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xb2, offset 0x541 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb3, offset 0x54b -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb4, offset 0x552 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xb5, offset 0x560 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xb6, offset 0x56d -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xb7, offset 0x57a -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb8, offset 0x583 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xb9, offset 0x587 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xba, offset 0x596 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xbb, offset 0x59e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xbc, offset 0x5a9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbd, offset 0x5b2 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xbe, offset 0x5b8 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbf, offset 0x5c0 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xc0, offset 0x5c9 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xc1, offset 0x5d3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xc2, offset 0x5d6 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc3, offset 0x5e2 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xc4, offset 0x5eb -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xc5, offset 0x5ee -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xc6, offset 0x5f3 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xc7, offset 0x5fe -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x3b08, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0xbf}, -	// Block 0xc8, offset 0x607 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x98}, -	{value: 0x3b08, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xbf}, -	// Block 0xc9, offset 0x613 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xca, offset 0x616 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xcb, offset 0x620 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xcc, offset 0x629 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xcd, offset 0x635 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xce, offset 0x642 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xcf, offset 0x64f -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x3008, lo: 0x93, hi: 0x94}, -	{value: 0x3308, lo: 0x95, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x96}, -	{value: 0x3b08, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xbf}, -	// Block 0xd0, offset 0x65d -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd1, offset 0x664 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xd2, offset 0x667 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xd3, offset 0x66c -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xd4, offset 0x66f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xbf}, -	// Block 0xd5, offset 0x672 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xd6, offset 0x675 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xd7, offset 0x67c -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xd8, offset 0x683 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xd9, offset 0x687 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xda, offset 0x692 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xdb, offset 0x695 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0xdc, offset 0x698 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0xdd, offset 0x69b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xde, offset 0x6a1 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xdf, offset 0x6a6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xbf}, -	// Block 0xe0, offset 0x6aa -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xe1, offset 0x6ad -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xe2, offset 0x6b0 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xe3, offset 0x6b3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xe4, offset 0x6b6 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xe5, offset 0x6b9 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xe6, offset 0x6be -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xe7, offset 0x6c8 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xe8, offset 0x6cb -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xe9, offset 0x6cf -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0xb5b9, lo: 0x9e, hi: 0x9e}, -	{value: 0xb601, lo: 0x9f, hi: 0x9f}, -	{value: 0xb649, lo: 0xa0, hi: 0xa0}, -	{value: 0xb6b1, lo: 0xa1, hi: 0xa1}, -	{value: 0xb719, lo: 0xa2, hi: 0xa2}, -	{value: 0xb781, lo: 0xa3, hi: 0xa3}, -	{value: 0xb7e9, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xea, offset 0x6de -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0xb851, lo: 0xbb, hi: 0xbb}, -	{value: 0xb899, lo: 0xbc, hi: 0xbc}, -	{value: 0xb8e1, lo: 0xbd, hi: 0xbd}, -	{value: 0xb949, lo: 0xbe, hi: 0xbe}, -	{value: 0xb9b1, lo: 0xbf, hi: 0xbf}, -	// Block 0xeb, offset 0x6ea -	{value: 0x0000, lo: 0x03}, -	{value: 0xba19, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xbf}, -	// Block 0xec, offset 0x6ee -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0xed, offset 0x6f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0xee, offset 0x6f7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xef, offset 0x6fc -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0xf0, offset 0x700 -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0xf1, offset 0x705 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xf2, offset 0x70e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xf3, offset 0x719 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xf4, offset 0x71f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xf5, offset 0x727 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xb0}, -	{value: 0x0818, lo: 0xb1, hi: 0xbf}, -	// Block 0xf6, offset 0x72a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0818, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xf7, offset 0x72d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xf8, offset 0x731 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0xf9, offset 0x735 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0xfa, offset 0x73b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xfb, offset 0x741 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0xc1c1, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xfc, offset 0x746 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0xfd, offset 0x749 -	{value: 0x0000, lo: 0x0f}, -	{value: 0xc7e9, lo: 0x80, hi: 0x80}, -	{value: 0xc839, lo: 0x81, hi: 0x81}, -	{value: 0xc889, lo: 0x82, hi: 0x82}, -	{value: 0xc8d9, lo: 0x83, hi: 0x83}, -	{value: 0xc929, lo: 0x84, hi: 0x84}, -	{value: 0xc979, lo: 0x85, hi: 0x85}, -	{value: 0xc9c9, lo: 0x86, hi: 0x86}, -	{value: 0xca19, lo: 0x87, hi: 0x87}, -	{value: 0xca69, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0xcab9, lo: 0x90, hi: 0x90}, -	{value: 0xcad9, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xbf}, -	// Block 0xfe, offset 0x759 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xff, offset 0x760 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x100, offset 0x763 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0xbf}, -	// Block 0x101, offset 0x766 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x102, offset 0x76a -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x103, offset 0x770 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0x104, offset 0x775 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x105, offset 0x77a -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb2}, -	{value: 0x0018, lo: 0xb3, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x106, offset 0x782 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x107, offset 0x787 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x108, offset 0x78b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0x109, offset 0x78f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0x10a, offset 0x792 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x10b, offset 0x795 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x10c, offset 0x799 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x10d, offset 0x79d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x10e, offset 0x7a0 -	{value: 0x0020, lo: 0x0f}, -	{value: 0xdeb9, lo: 0x80, hi: 0x89}, -	{value: 0x8dfd, lo: 0x8a, hi: 0x8a}, -	{value: 0xdff9, lo: 0x8b, hi: 0x9c}, -	{value: 0x8e1d, lo: 0x9d, hi: 0x9d}, -	{value: 0xe239, lo: 0x9e, hi: 0xa2}, -	{value: 0x8e3d, lo: 0xa3, hi: 0xa3}, -	{value: 0xe2d9, lo: 0xa4, hi: 0xab}, -	{value: 0x7ed5, lo: 0xac, hi: 0xac}, -	{value: 0xe3d9, lo: 0xad, hi: 0xaf}, -	{value: 0x8e5d, lo: 0xb0, hi: 0xb0}, -	{value: 0xe439, lo: 0xb1, hi: 0xb6}, -	{value: 0x8e7d, lo: 0xb7, hi: 0xb9}, -	{value: 0xe4f9, lo: 0xba, hi: 0xba}, -	{value: 0x8edd, lo: 0xbb, hi: 0xbb}, -	{value: 0xe519, lo: 0xbc, hi: 0xbf}, -	// Block 0x10f, offset 0x7b0 -	{value: 0x0020, lo: 0x10}, -	{value: 0x937d, lo: 0x80, hi: 0x80}, -	{value: 0xf099, lo: 0x81, hi: 0x86}, -	{value: 0x939d, lo: 0x87, hi: 0x8a}, -	{value: 0xd9f9, lo: 0x8b, hi: 0x8b}, -	{value: 0xf159, lo: 0x8c, hi: 0x96}, -	{value: 0x941d, lo: 0x97, hi: 0x97}, -	{value: 0xf2b9, lo: 0x98, hi: 0xa3}, -	{value: 0x943d, lo: 0xa4, hi: 0xa6}, -	{value: 0xf439, lo: 0xa7, hi: 0xaa}, -	{value: 0x949d, lo: 0xab, hi: 0xab}, -	{value: 0xf4b9, lo: 0xac, hi: 0xac}, -	{value: 0x94bd, lo: 0xad, hi: 0xad}, -	{value: 0xf4d9, lo: 0xae, hi: 0xaf}, -	{value: 0x94dd, lo: 0xb0, hi: 0xb1}, -	{value: 0xf519, lo: 0xb2, hi: 0xbe}, -	{value: 0x2040, lo: 0xbf, hi: 0xbf}, -	// Block 0x110, offset 0x7c1 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0x111, offset 0x7c6 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x112, offset 0x7c8 -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x113, offset 0x7ca -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 42466 bytes (41KiB); checksum: 355A58A4 diff --git a/vendor/golang.org/x/net/idna/tables12.0.0.go b/vendor/golang.org/x/net/idna/tables12.0.0.go deleted file mode 100644 index 0600cd2ae..000000000 --- a/vendor/golang.org/x/net/idna/tables12.0.0.go +++ /dev/null @@ -1,4733 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build go1.14 && !go1.16 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "12.0.0" - -var mappings string = "" + // Size: 8178 bytes -	"\x00\x01 \x03 ̈\x01a\x03 ̄\x012\x013\x03 ́\x03 ̧\x011\x01o\x051⁄4\x051⁄2" + -	"\x053⁄4\x03i̇\x03l·\x03ʼn\x01s\x03dž\x03ⱥ\x03ⱦ\x01h\x01j\x01r\x01w\x01y" + -	"\x03 ̆\x03 ̇\x03 ̊\x03 ̨\x03 ̃\x03 ̋\x01l\x01x\x04̈́\x03 ι\x01;\x05 ̈́" + -	"\x04եւ\x04اٴ\x04وٴ\x04ۇٴ\x04يٴ\x06क़\x06ख़\x06ग़\x06ज़\x06ड़\x06ढ़\x06फ़" + -	"\x06य़\x06ড়\x06ঢ়\x06য়\x06ਲ਼\x06ਸ਼\x06ਖ਼\x06ਗ਼\x06ਜ਼\x06ਫ਼\x06ଡ଼\x06ଢ଼" + -	"\x06ํา\x06ໍາ\x06ຫນ\x06ຫມ\x06གྷ\x06ཌྷ\x06དྷ\x06བྷ\x06ཛྷ\x06ཀྵ\x06ཱི\x06ཱུ" + -	"\x06ྲྀ\x09ྲཱྀ\x06ླྀ\x09ླཱྀ\x06ཱྀ\x06ྒྷ\x06ྜྷ\x06ྡྷ\x06ྦྷ\x06ྫྷ\x06ྐྵ\x02" + -	"в\x02д\x02о\x02с\x02т\x02ъ\x02ѣ\x02æ\x01b\x01d\x01e\x02ǝ\x01g\x01i\x01k" + -	"\x01m\x01n\x02ȣ\x01p\x01t\x01u\x02ɐ\x02ɑ\x02ə\x02ɛ\x02ɜ\x02ŋ\x02ɔ\x02ɯ" + -	"\x01v\x02β\x02γ\x02δ\x02φ\x02χ\x02ρ\x02н\x02ɒ\x01c\x02ɕ\x02ð\x01f\x02ɟ" + -	"\x02ɡ\x02ɥ\x02ɨ\x02ɩ\x02ɪ\x02ʝ\x02ɭ\x02ʟ\x02ɱ\x02ɰ\x02ɲ\x02ɳ\x02ɴ\x02ɵ" + -	"\x02ɸ\x02ʂ\x02ʃ\x02ƫ\x02ʉ\x02ʊ\x02ʋ\x02ʌ\x01z\x02ʐ\x02ʑ\x02ʒ\x02θ\x02ss" + -	"\x02ά\x02έ\x02ή\x02ί\x02ό\x02ύ\x02ώ\x05ἀι\x05ἁι\x05ἂι\x05ἃι\x05ἄι\x05ἅι" + -	"\x05ἆι\x05ἇι\x05ἠι\x05ἡι\x05ἢι\x05ἣι\x05ἤι\x05ἥι\x05ἦι\x05ἧι\x05ὠι\x05ὡι" + -	"\x05ὢι\x05ὣι\x05ὤι\x05ὥι\x05ὦι\x05ὧι\x05ὰι\x04αι\x04άι\x05ᾶι\x02ι\x05 ̈͂" + -	"\x05ὴι\x04ηι\x04ήι\x05ῆι\x05 ̓̀\x05 ̓́\x05 ̓͂\x02ΐ\x05 ̔̀\x05 ̔́\x05 ̔͂" + -	"\x02ΰ\x05 ̈̀\x01`\x05ὼι\x04ωι\x04ώι\x05ῶι\x06′′\x09′′′\x06‵‵\x09‵‵‵\x02!" + -	"!\x02??\x02?!\x02!?\x0c′′′′\x010\x014\x015\x016\x017\x018\x019\x01+\x01=" + -	"\x01(\x01)\x02rs\x02ħ\x02no\x01q\x02sm\x02tm\x02ω\x02å\x02א\x02ב\x02ג" + -	"\x02ד\x02π\x051⁄7\x051⁄9\x061⁄10\x051⁄3\x052⁄3\x051⁄5\x052⁄5\x053⁄5\x054" + -	"⁄5\x051⁄6\x055⁄6\x051⁄8\x053⁄8\x055⁄8\x057⁄8\x041⁄\x02ii\x02iv\x02vi" + -	"\x04viii\x02ix\x02xi\x050⁄3\x06∫∫\x09∫∫∫\x06∮∮\x09∮∮∮\x0210\x0211\x0212" + -	"\x0213\x0214\x0215\x0216\x0217\x0218\x0219\x0220\x04(10)\x04(11)\x04(12)" + -	"\x04(13)\x04(14)\x04(15)\x04(16)\x04(17)\x04(18)\x04(19)\x04(20)\x0c∫∫∫∫" + -	"\x02==\x05⫝̸\x02ɫ\x02ɽ\x02ȿ\x02ɀ\x01.\x04 ゙\x04 ゚\x06より\x06コト\x05(ᄀ)\x05" + -	"(ᄂ)\x05(ᄃ)\x05(ᄅ)\x05(ᄆ)\x05(ᄇ)\x05(ᄉ)\x05(ᄋ)\x05(ᄌ)\x05(ᄎ)\x05(ᄏ)\x05(ᄐ" + -	")\x05(ᄑ)\x05(ᄒ)\x05(가)\x05(나)\x05(다)\x05(라)\x05(마)\x05(바)\x05(사)\x05(아)" + -	"\x05(자)\x05(차)\x05(카)\x05(타)\x05(파)\x05(하)\x05(주)\x08(오전)\x08(오후)\x05(一)" + -	"\x05(二)\x05(三)\x05(四)\x05(五)\x05(六)\x05(七)\x05(八)\x05(九)\x05(十)\x05(月)" + -	"\x05(火)\x05(水)\x05(木)\x05(金)\x05(土)\x05(日)\x05(株)\x05(有)\x05(社)\x05(名)" + -	"\x05(特)\x05(財)\x05(祝)\x05(労)\x05(代)\x05(呼)\x05(学)\x05(監)\x05(企)\x05(資)" + -	"\x05(協)\x05(祭)\x05(休)\x05(自)\x05(至)\x0221\x0222\x0223\x0224\x0225\x0226" + -	"\x0227\x0228\x0229\x0230\x0231\x0232\x0233\x0234\x0235\x06참고\x06주의\x0236" + -	"\x0237\x0238\x0239\x0240\x0241\x0242\x0243\x0244\x0245\x0246\x0247\x0248" + -	"\x0249\x0250\x041月\x042月\x043月\x044月\x045月\x046月\x047月\x048月\x049月\x0510" + -	"月\x0511月\x0512月\x02hg\x02ev\x0cアパート\x0cアルファ\x0cアンペア\x09アール\x0cイニング\x09" + -	"インチ\x09ウォン\x0fエスクード\x0cエーカー\x09オンス\x09オーム\x09カイリ\x0cカラット\x0cカロリー\x09ガロ" + -	"ン\x09ガンマ\x06ギガ\x09ギニー\x0cキュリー\x0cギルダー\x06キロ\x0fキログラム\x12キロメートル\x0fキロワッ" + -	"ト\x09グラム\x0fグラムトン\x0fクルゼイロ\x0cクローネ\x09ケース\x09コルナ\x09コーポ\x0cサイクル\x0fサンチ" + -	"ーム\x0cシリング\x09センチ\x09セント\x09ダース\x06デシ\x06ドル\x06トン\x06ナノ\x09ノット\x09ハイツ" + -	"\x0fパーセント\x09パーツ\x0cバーレル\x0fピアストル\x09ピクル\x06ピコ\x06ビル\x0fファラッド\x0cフィート" + -	"\x0fブッシェル\x09フラン\x0fヘクタール\x06ペソ\x09ペニヒ\x09ヘルツ\x09ペンス\x09ページ\x09ベータ\x0cポイ" + -	"ント\x09ボルト\x06ホン\x09ポンド\x09ホール\x09ホーン\x0cマイクロ\x09マイル\x09マッハ\x09マルク\x0fマ" + -	"ンション\x0cミクロン\x06ミリ\x0fミリバール\x06メガ\x0cメガトン\x0cメートル\x09ヤード\x09ヤール\x09ユアン" + -	"\x0cリットル\x06リラ\x09ルピー\x0cルーブル\x06レム\x0fレントゲン\x09ワット\x040点\x041点\x042点" + -	"\x043点\x044点\x045点\x046点\x047点\x048点\x049点\x0510点\x0511点\x0512点\x0513点" + -	"\x0514点\x0515点\x0516点\x0517点\x0518点\x0519点\x0520点\x0521点\x0522点\x0523点" + -	"\x0524点\x02da\x02au\x02ov\x02pc\x02dm\x02iu\x06平成\x06昭和\x06大正\x06明治\x0c株" + -	"式会社\x02pa\x02na\x02ma\x02ka\x02kb\x02mb\x02gb\x04kcal\x02pf\x02nf\x02m" + -	"g\x02kg\x02hz\x02ml\x02dl\x02kl\x02fm\x02nm\x02mm\x02cm\x02km\x02m2\x02m" + -	"3\x05m∕s\x06m∕s2\x07rad∕s\x08rad∕s2\x02ps\x02ns\x02ms\x02pv\x02nv\x02mv" + -	"\x02kv\x02pw\x02nw\x02mw\x02kw\x02bq\x02cc\x02cd\x06c∕kg\x02db\x02gy\x02" + -	"ha\x02hp\x02in\x02kk\x02kt\x02lm\x02ln\x02lx\x02ph\x02pr\x02sr\x02sv\x02" + -	"wb\x05v∕m\x05a∕m\x041日\x042日\x043日\x044日\x045日\x046日\x047日\x048日\x049日" + -	"\x0510日\x0511日\x0512日\x0513日\x0514日\x0515日\x0516日\x0517日\x0518日\x0519日" + -	"\x0520日\x0521日\x0522日\x0523日\x0524日\x0525日\x0526日\x0527日\x0528日\x0529日" + -	"\x0530日\x0531日\x02ь\x02ɦ\x02ɬ\x02ʞ\x02ʇ\x02œ\x04𤋮\x04𢡊\x04𢡄\x04𣏕\x04𥉉" + -	"\x04𥳐\x04𧻓\x02ff\x02fi\x02fl\x02st\x04մն\x04մե\x04մի\x04վն\x04մխ\x04יִ" + -	"\x04ײַ\x02ע\x02ה\x02כ\x02ל\x02ם\x02ר\x02ת\x04שׁ\x04שׂ\x06שּׁ\x06שּׂ\x04א" + -	"ַ\x04אָ\x04אּ\x04בּ\x04גּ\x04דּ\x04הּ\x04וּ\x04זּ\x04טּ\x04יּ\x04ךּ\x04" + -	"כּ\x04לּ\x04מּ\x04נּ\x04סּ\x04ףּ\x04פּ\x04צּ\x04קּ\x04רּ\x04שּ\x04תּ" + -	"\x04וֹ\x04בֿ\x04כֿ\x04פֿ\x04אל\x02ٱ\x02ٻ\x02پ\x02ڀ\x02ٺ\x02ٿ\x02ٹ\x02ڤ" + -	"\x02ڦ\x02ڄ\x02ڃ\x02چ\x02ڇ\x02ڍ\x02ڌ\x02ڎ\x02ڈ\x02ژ\x02ڑ\x02ک\x02گ\x02ڳ" + -	"\x02ڱ\x02ں\x02ڻ\x02ۀ\x02ہ\x02ھ\x02ے\x02ۓ\x02ڭ\x02ۇ\x02ۆ\x02ۈ\x02ۋ\x02ۅ" + -	"\x02ۉ\x02ې\x02ى\x04ئا\x04ئە\x04ئو\x04ئۇ\x04ئۆ\x04ئۈ\x04ئې\x04ئى\x02ی\x04" + -	"ئج\x04ئح\x04ئم\x04ئي\x04بج\x04بح\x04بخ\x04بم\x04بى\x04بي\x04تج\x04تح" + -	"\x04تخ\x04تم\x04تى\x04تي\x04ثج\x04ثم\x04ثى\x04ثي\x04جح\x04جم\x04حج\x04حم" + -	"\x04خج\x04خح\x04خم\x04سج\x04سح\x04سخ\x04سم\x04صح\x04صم\x04ضج\x04ضح\x04ضخ" + -	"\x04ضم\x04طح\x04طم\x04ظم\x04عج\x04عم\x04غج\x04غم\x04فج\x04فح\x04فخ\x04فم" + -	"\x04فى\x04في\x04قح\x04قم\x04قى\x04قي\x04كا\x04كج\x04كح\x04كخ\x04كل\x04كم" + -	"\x04كى\x04كي\x04لج\x04لح\x04لخ\x04لم\x04لى\x04لي\x04مج\x04مح\x04مخ\x04مم" + -	"\x04مى\x04مي\x04نج\x04نح\x04نخ\x04نم\x04نى\x04ني\x04هج\x04هم\x04هى\x04هي" + -	"\x04يج\x04يح\x04يخ\x04يم\x04يى\x04يي\x04ذٰ\x04رٰ\x04ىٰ\x05 ٌّ\x05 ٍّ\x05" + -	" َّ\x05 ُّ\x05 ِّ\x05 ّٰ\x04ئر\x04ئز\x04ئن\x04بر\x04بز\x04بن\x04تر\x04تز" + -	"\x04تن\x04ثر\x04ثز\x04ثن\x04ما\x04نر\x04نز\x04نن\x04ير\x04يز\x04ين\x04ئخ" + -	"\x04ئه\x04به\x04ته\x04صخ\x04له\x04نه\x04هٰ\x04يه\x04ثه\x04سه\x04شم\x04شه" + -	"\x06ـَّ\x06ـُّ\x06ـِّ\x04طى\x04طي\x04عى\x04عي\x04غى\x04غي\x04سى\x04سي" + -	"\x04شى\x04شي\x04حى\x04حي\x04جى\x04جي\x04خى\x04خي\x04صى\x04صي\x04ضى\x04ضي" + -	"\x04شج\x04شح\x04شخ\x04شر\x04سر\x04صر\x04ضر\x04اً\x06تجم\x06تحج\x06تحم" + -	"\x06تخم\x06تمج\x06تمح\x06تمخ\x06جمح\x06حمي\x06حمى\x06سحج\x06سجح\x06سجى" + -	"\x06سمح\x06سمج\x06سمم\x06صحح\x06صمم\x06شحم\x06شجي\x06شمخ\x06شمم\x06ضحى" + -	"\x06ضخم\x06طمح\x06طمم\x06طمي\x06عجم\x06عمم\x06عمى\x06غمم\x06غمي\x06غمى" + -	"\x06فخم\x06قمح\x06قمم\x06لحم\x06لحي\x06لحى\x06لجج\x06لخم\x06لمح\x06محج" + -	"\x06محم\x06محي\x06مجح\x06مجم\x06مخج\x06مخم\x06مجخ\x06همج\x06همم\x06نحم" + -	"\x06نحى\x06نجم\x06نجى\x06نمي\x06نمى\x06يمم\x06بخي\x06تجي\x06تجى\x06تخي" + -	"\x06تخى\x06تمي\x06تمى\x06جمي\x06جحى\x06جمى\x06سخى\x06صحي\x06شحي\x06ضحي" + -	"\x06لجي\x06لمي\x06يحي\x06يجي\x06يمي\x06ممي\x06قمي\x06نحي\x06عمي\x06كمي" + -	"\x06نجح\x06مخي\x06لجم\x06كمم\x06جحي\x06حجي\x06مجي\x06فمي\x06بحي\x06سخي" + -	"\x06نجي\x06صلے\x06قلے\x08الله\x08اكبر\x08محمد\x08صلعم\x08رسول\x08عليه" + -	"\x08وسلم\x06صلى!صلى الله عليه وسلم\x0fجل جلاله\x08ریال\x01,\x01:\x01!" + -	"\x01?\x01_\x01{\x01}\x01[\x01]\x01#\x01&\x01*\x01-\x01<\x01>\x01\\\x01$" + -	"\x01%\x01@\x04ـً\x04ـَ\x04ـُ\x04ـِ\x04ـّ\x04ـْ\x02ء\x02آ\x02أ\x02ؤ\x02إ" + -	"\x02ئ\x02ا\x02ب\x02ة\x02ت\x02ث\x02ج\x02ح\x02خ\x02د\x02ذ\x02ر\x02ز\x02س" + -	"\x02ش\x02ص\x02ض\x02ط\x02ظ\x02ع\x02غ\x02ف\x02ق\x02ك\x02ل\x02م\x02ن\x02ه" + -	"\x02و\x02ي\x04لآ\x04لأ\x04لإ\x04لا\x01\x22\x01'\x01/\x01^\x01|\x01~\x02¢" + -	"\x02£\x02¬\x02¦\x02¥\x08𝅗𝅥\x08𝅘𝅥\x0c𝅘𝅥𝅮\x0c𝅘𝅥𝅯\x0c𝅘𝅥𝅰\x0c𝅘𝅥𝅱\x0c𝅘𝅥𝅲\x08𝆹" + -	"𝅥\x08𝆺𝅥\x0c𝆹𝅥𝅮\x0c𝆺𝅥𝅮\x0c𝆹𝅥𝅯\x0c𝆺𝅥𝅯\x02ı\x02ȷ\x02α\x02ε\x02ζ\x02η\x02" + -	"κ\x02λ\x02μ\x02ν\x02ξ\x02ο\x02σ\x02τ\x02υ\x02ψ\x03∇\x03∂\x02ϝ\x02ٮ\x02ڡ" + -	"\x02ٯ\x020,\x021,\x022,\x023,\x024,\x025,\x026,\x027,\x028,\x029,\x03(a)" + -	"\x03(b)\x03(c)\x03(d)\x03(e)\x03(f)\x03(g)\x03(h)\x03(i)\x03(j)\x03(k)" + -	"\x03(l)\x03(m)\x03(n)\x03(o)\x03(p)\x03(q)\x03(r)\x03(s)\x03(t)\x03(u)" + -	"\x03(v)\x03(w)\x03(x)\x03(y)\x03(z)\x07〔s〕\x02wz\x02hv\x02sd\x03ppv\x02w" + -	"c\x02mc\x02md\x02mr\x02dj\x06ほか\x06ココ\x03サ\x03手\x03字\x03双\x03デ\x03二\x03多" + -	"\x03解\x03天\x03交\x03映\x03無\x03料\x03前\x03後\x03再\x03新\x03初\x03終\x03生\x03販" + -	"\x03声\x03吹\x03演\x03投\x03捕\x03一\x03三\x03遊\x03左\x03中\x03右\x03指\x03走\x03打" + -	"\x03禁\x03空\x03合\x03満\x03有\x03月\x03申\x03割\x03営\x03配\x09〔本〕\x09〔三〕\x09〔二〕" + -	"\x09〔安〕\x09〔点〕\x09〔打〕\x09〔盗〕\x09〔勝〕\x09〔敗〕\x03得\x03可\x03丽\x03丸\x03乁\x03你" + -	"\x03侮\x03侻\x03倂\x03偺\x03備\x03僧\x03像\x03㒞\x03免\x03兔\x03兤\x03具\x03㒹\x03內" + -	"\x03冗\x03冤\x03仌\x03冬\x03况\x03凵\x03刃\x03㓟\x03刻\x03剆\x03剷\x03㔕\x03勇\x03勉" + -	"\x03勤\x03勺\x03包\x03匆\x03北\x03卉\x03卑\x03博\x03即\x03卽\x03卿\x03灰\x03及\x03叟" + -	"\x03叫\x03叱\x03吆\x03咞\x03吸\x03呈\x03周\x03咢\x03哶\x03唐\x03啓\x03啣\x03善\x03喙" + -	"\x03喫\x03喳\x03嗂\x03圖\x03嘆\x03圗\x03噑\x03噴\x03切\x03壮\x03城\x03埴\x03堍\x03型" + -	"\x03堲\x03報\x03墬\x03売\x03壷\x03夆\x03夢\x03奢\x03姬\x03娛\x03娧\x03姘\x03婦\x03㛮" + -	"\x03嬈\x03嬾\x03寃\x03寘\x03寧\x03寳\x03寿\x03将\x03尢\x03㞁\x03屠\x03屮\x03峀\x03岍" + -	"\x03嵃\x03嵮\x03嵫\x03嵼\x03巡\x03巢\x03㠯\x03巽\x03帨\x03帽\x03幩\x03㡢\x03㡼\x03庰" + -	"\x03庳\x03庶\x03廊\x03廾\x03舁\x03弢\x03㣇\x03形\x03彫\x03㣣\x03徚\x03忍\x03志\x03忹" + -	"\x03悁\x03㤺\x03㤜\x03悔\x03惇\x03慈\x03慌\x03慎\x03慺\x03憎\x03憲\x03憤\x03憯\x03懞" + -	"\x03懲\x03懶\x03成\x03戛\x03扝\x03抱\x03拔\x03捐\x03挽\x03拼\x03捨\x03掃\x03揤\x03搢" + -	"\x03揅\x03掩\x03㨮\x03摩\x03摾\x03撝\x03摷\x03㩬\x03敏\x03敬\x03旣\x03書\x03晉\x03㬙" + -	"\x03暑\x03㬈\x03㫤\x03冒\x03冕\x03最\x03暜\x03肭\x03䏙\x03朗\x03望\x03朡\x03杞\x03杓" + -	"\x03㭉\x03柺\x03枅\x03桒\x03梅\x03梎\x03栟\x03椔\x03㮝\x03楂\x03榣\x03槪\x03檨\x03櫛" + -	"\x03㰘\x03次\x03歔\x03㱎\x03歲\x03殟\x03殺\x03殻\x03汎\x03沿\x03泍\x03汧\x03洖\x03派" + -	"\x03海\x03流\x03浩\x03浸\x03涅\x03洴\x03港\x03湮\x03㴳\x03滋\x03滇\x03淹\x03潮\x03濆" + -	"\x03瀹\x03瀞\x03瀛\x03㶖\x03灊\x03災\x03灷\x03炭\x03煅\x03熜\x03爨\x03爵\x03牐\x03犀" + -	"\x03犕\x03獺\x03王\x03㺬\x03玥\x03㺸\x03瑇\x03瑜\x03瑱\x03璅\x03瓊\x03㼛\x03甤\x03甾" + -	"\x03異\x03瘐\x03㿼\x03䀈\x03直\x03眞\x03真\x03睊\x03䀹\x03瞋\x03䁆\x03䂖\x03硎\x03碌" + -	"\x03磌\x03䃣\x03祖\x03福\x03秫\x03䄯\x03穀\x03穊\x03穏\x03䈂\x03篆\x03築\x03䈧\x03糒" + -	"\x03䊠\x03糨\x03糣\x03紀\x03絣\x03䌁\x03緇\x03縂\x03繅\x03䌴\x03䍙\x03罺\x03羕\x03翺" + -	"\x03者\x03聠\x03聰\x03䏕\x03育\x03脃\x03䐋\x03脾\x03媵\x03舄\x03辞\x03䑫\x03芑\x03芋" + -	"\x03芝\x03劳\x03花\x03芳\x03芽\x03苦\x03若\x03茝\x03荣\x03莭\x03茣\x03莽\x03菧\x03著" + -	"\x03荓\x03菊\x03菌\x03菜\x03䔫\x03蓱\x03蓳\x03蔖\x03蕤\x03䕝\x03䕡\x03䕫\x03虐\x03虜" + -	"\x03虧\x03虩\x03蚩\x03蚈\x03蜎\x03蛢\x03蝹\x03蜨\x03蝫\x03螆\x03蟡\x03蠁\x03䗹\x03衠" + -	"\x03衣\x03裗\x03裞\x03䘵\x03裺\x03㒻\x03䚾\x03䛇\x03誠\x03諭\x03變\x03豕\x03貫\x03賁" + -	"\x03贛\x03起\x03跋\x03趼\x03跰\x03軔\x03輸\x03邔\x03郱\x03鄑\x03鄛\x03鈸\x03鋗\x03鋘" + -	"\x03鉼\x03鏹\x03鐕\x03開\x03䦕\x03閷\x03䧦\x03雃\x03嶲\x03霣\x03䩮\x03䩶\x03韠\x03䪲" + -	"\x03頋\x03頩\x03飢\x03䬳\x03餩\x03馧\x03駂\x03駾\x03䯎\x03鬒\x03鱀\x03鳽\x03䳎\x03䳭" + -	"\x03鵧\x03䳸\x03麻\x03䵖\x03黹\x03黾\x03鼅\x03鼏\x03鼖\x03鼻" - -var xorData string = "" + // Size: 4862 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x021\x00\x02\x01\x04\x02\x01\x02\x02\x019\x02" + -	"\x03\x1c\x02\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03" + -	"\xc1r\x02\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<" + -	"\x03\xc1s*\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03" + -	"\x83\xab\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96" + -	"\xe1\xcd\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03" + -	"\x9a\xec\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c" + -	"!\x03\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03" + -	"ʦ\x93\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7" + -	"\x03\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca" + -	"\xfa\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e" + -	"\x03\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca" + -	"\xe3\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99" + -	"\x03\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca" + -	"\xe8\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03" + -	"\x0b\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06" + -	"\x05\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03" + -	"\x0786\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/" + -	"\x03\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f" + -	"\x03\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-" + -	"\x03\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03" + -	"\x07\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03" + -	"\x07\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03" + -	"\x07\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b" + -	"\x0a\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03" + -	"\x07\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+" + -	"\x03\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03" + -	"\x044\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03" + -	"\x04+ \x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!" + -	"\x22\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04" + -	"\x03\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>" + -	"\x03\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03" + -	"\x054\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03" + -	"\x05):\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$" + -	"\x1e\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226" + -	"\x03\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05" + -	"\x1b\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05" + -	"\x03\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03" + -	"\x06\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08" + -	"\x03\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03" + -	"\x0a6\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a" + -	"\x1f\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03" + -	"\x0a\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f" + -	"\x02\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/" + -	"\x03\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a" + -	"\x00\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+" + -	"\x10\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#" + -	"<\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!" + -	"\x00\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18." + -	"\x03\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15" + -	"\x22\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b" + -	"\x12\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05" + -	"<\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x03\x0b)\x08\x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!" + -	"\x10\x03\x0b!0\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b" + -	"\x03\x09\x1f\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14" + -	"\x03\x0a\x01\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03" + -	"\x08='\x03\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03" + -	"\x09\x0c\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06" + -	"!3\x03\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05" + -	"\x03\x07<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07" + -	"\x01\x00\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03" + -	"\x09\x11\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03" + -	"\x0a/1\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03" + -	"\x07<3\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06" + -	"\x13\x00\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(" + -	";\x03\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08" + -	"\x14$\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03" + -	"\x0a\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19" + -	"\x01\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18" + -	"\x03\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03" + -	"\x07\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03" + -	"\x0a\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03" + -	"\x0b\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03" + -	"\x08\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05" + -	"\x03\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11" + -	"\x03\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03" + -	"\x09\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a" + -	".\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x01\x1e\x03\x0f$!\x03" + -	"\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08\x18\x03\x0f" + -	"\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$\x03\x0e\x0d)" + -	"\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d\x03\x0d. \x03" + -	"\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03\x0d\x0d\x0f\x03" + -	"\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03\x0c\x09:\x03\x0e" + -	"\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18\x03\x0c\x1f\x1c" + -	"\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03\x0b<+\x03\x0b8" + -	"\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d\x22&\x03\x0b\x1a" + -	"\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03\x0a!\x1a\x03\x0a!" + -	"7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03\x0a\x00 \x03\x0a" + -	"\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a\x1b-\x03\x09-" + -	"\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091\x1f\x03\x093" + -	"\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(\x16\x03\x09" + -	"\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!\x03\x09\x1a" + -	"\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03\x08\x02*" + -	"\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03\x070\x0c" + -	"\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x0671\x03" + -	"\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 \x1d\x03" + -	"\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 29708 bytes (29.01 KiB). Checksum: c3ecc76d8fffa6e6. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 125: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 125 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 127 blocks, 8128 entries, 16256 bytes -// The third block is the zero block. -var idnaValues = [8128]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x001a, 0xe9: 0x0018, -	0xea: 0x0039, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x004a, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0069, 0xf3: 0x0079, 0xf4: 0x008a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x00aa, 0xf9: 0x00c9, 0xfa: 0x00d9, 0xfb: 0x0018, -	0xfc: 0x00e9, 0xfd: 0x0119, 0xfe: 0x0149, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0179, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0199, -	// Block 0x5, offset 0x140 -	0x140: 0x0199, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x01b9, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x01d9, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x01e9, 0x1c5: 0x01e9, -	0x1c6: 0x01e9, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0209, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x0229, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x029a, 0x259: 0x02ba, 0x25a: 0x02da, 0x25b: 0x02fa, 0x25c: 0x031a, 0x25d: 0x033a, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0359, 0x262: 0x01d9, 0x263: 0x0369, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0379, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x03a2, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x03c2, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x008a, 0x2c5: 0x03d2, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0040, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0429, -	0x4b6: 0x0451, 0x4b7: 0x0479, 0x4b8: 0x04a1, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x0c08, 0x541: 0x0a08, 0x542: 0x0a08, 0x543: 0x0a08, 0x544: 0x0a08, 0x545: 0x0a08, -	0x546: 0x0c08, 0x547: 0x0c08, 0x548: 0x0a08, 0x549: 0x0c08, 0x54a: 0x0a08, 0x54b: 0x0a08, -	0x54c: 0x0a08, 0x54d: 0x0a08, 0x54e: 0x0a08, 0x54f: 0x0a08, 0x550: 0x0a08, 0x551: 0x0a08, -	0x552: 0x0a08, 0x553: 0x0a08, 0x554: 0x0c08, 0x555: 0x0a08, 0x556: 0x0808, 0x557: 0x0808, -	0x558: 0x0808, 0x559: 0x3308, 0x55a: 0x3308, 0x55b: 0x3308, 0x55c: 0x0040, 0x55d: 0x0040, -	0x55e: 0x0818, 0x55f: 0x0040, 0x560: 0x0a08, 0x561: 0x0808, 0x562: 0x0a08, 0x563: 0x0a08, -	0x564: 0x0a08, 0x565: 0x0a08, 0x566: 0x0808, 0x567: 0x0c08, 0x568: 0x0a08, 0x569: 0x0c08, -	0x56a: 0x0c08, 0x56b: 0x0040, 0x56c: 0x0040, 0x56d: 0x0040, 0x56e: 0x0040, 0x56f: 0x0040, -	0x570: 0x0040, 0x571: 0x0040, 0x572: 0x0040, 0x573: 0x0040, 0x574: 0x0040, 0x575: 0x0040, -	0x576: 0x0040, 0x577: 0x0040, 0x578: 0x0040, 0x579: 0x0040, 0x57a: 0x0040, 0x57b: 0x0040, -	0x57c: 0x0040, 0x57d: 0x0040, 0x57e: 0x0040, 0x57f: 0x0040, -	// Block 0x16, offset 0x580 -	0x580: 0x3008, 0x581: 0x3308, 0x582: 0x3308, 0x583: 0x3308, 0x584: 0x3308, 0x585: 0x3308, -	0x586: 0x3308, 0x587: 0x3308, 0x588: 0x3308, 0x589: 0x3008, 0x58a: 0x3008, 0x58b: 0x3008, -	0x58c: 0x3008, 0x58d: 0x3b08, 0x58e: 0x3008, 0x58f: 0x3008, 0x590: 0x0008, 0x591: 0x3308, -	0x592: 0x3308, 0x593: 0x3308, 0x594: 0x3308, 0x595: 0x3308, 0x596: 0x3308, 0x597: 0x3308, -	0x598: 0x04c9, 0x599: 0x0501, 0x59a: 0x0539, 0x59b: 0x0571, 0x59c: 0x05a9, 0x59d: 0x05e1, -	0x59e: 0x0619, 0x59f: 0x0651, 0x5a0: 0x0008, 0x5a1: 0x0008, 0x5a2: 0x3308, 0x5a3: 0x3308, -	0x5a4: 0x0018, 0x5a5: 0x0018, 0x5a6: 0x0008, 0x5a7: 0x0008, 0x5a8: 0x0008, 0x5a9: 0x0008, -	0x5aa: 0x0008, 0x5ab: 0x0008, 0x5ac: 0x0008, 0x5ad: 0x0008, 0x5ae: 0x0008, 0x5af: 0x0008, -	0x5b0: 0x0018, 0x5b1: 0x0008, 0x5b2: 0x0008, 0x5b3: 0x0008, 0x5b4: 0x0008, 0x5b5: 0x0008, -	0x5b6: 0x0008, 0x5b7: 0x0008, 0x5b8: 0x0008, 0x5b9: 0x0008, 0x5ba: 0x0008, 0x5bb: 0x0008, -	0x5bc: 0x0008, 0x5bd: 0x0008, 0x5be: 0x0008, 0x5bf: 0x0008, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x0008, 0x5c1: 0x3308, 0x5c2: 0x3008, 0x5c3: 0x3008, 0x5c4: 0x0040, 0x5c5: 0x0008, -	0x5c6: 0x0008, 0x5c7: 0x0008, 0x5c8: 0x0008, 0x5c9: 0x0008, 0x5ca: 0x0008, 0x5cb: 0x0008, -	0x5cc: 0x0008, 0x5cd: 0x0040, 0x5ce: 0x0040, 0x5cf: 0x0008, 0x5d0: 0x0008, 0x5d1: 0x0040, -	0x5d2: 0x0040, 0x5d3: 0x0008, 0x5d4: 0x0008, 0x5d5: 0x0008, 0x5d6: 0x0008, 0x5d7: 0x0008, -	0x5d8: 0x0008, 0x5d9: 0x0008, 0x5da: 0x0008, 0x5db: 0x0008, 0x5dc: 0x0008, 0x5dd: 0x0008, -	0x5de: 0x0008, 0x5df: 0x0008, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x0008, 0x5e3: 0x0008, -	0x5e4: 0x0008, 0x5e5: 0x0008, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0040, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0008, 0x5f1: 0x0040, 0x5f2: 0x0008, 0x5f3: 0x0040, 0x5f4: 0x0040, 0x5f5: 0x0040, -	0x5f6: 0x0008, 0x5f7: 0x0008, 0x5f8: 0x0008, 0x5f9: 0x0008, 0x5fa: 0x0040, 0x5fb: 0x0040, -	0x5fc: 0x3308, 0x5fd: 0x0008, 0x5fe: 0x3008, 0x5ff: 0x3008, -	// Block 0x18, offset 0x600 -	0x600: 0x3008, 0x601: 0x3308, 0x602: 0x3308, 0x603: 0x3308, 0x604: 0x3308, 0x605: 0x0040, -	0x606: 0x0040, 0x607: 0x3008, 0x608: 0x3008, 0x609: 0x0040, 0x60a: 0x0040, 0x60b: 0x3008, -	0x60c: 0x3008, 0x60d: 0x3b08, 0x60e: 0x0008, 0x60f: 0x0040, 0x610: 0x0040, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0040, 0x614: 0x0040, 0x615: 0x0040, 0x616: 0x0040, 0x617: 0x3008, -	0x618: 0x0040, 0x619: 0x0040, 0x61a: 0x0040, 0x61b: 0x0040, 0x61c: 0x0689, 0x61d: 0x06c1, -	0x61e: 0x0040, 0x61f: 0x06f9, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x3308, 0x623: 0x3308, -	0x624: 0x0040, 0x625: 0x0040, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0008, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0008, 0x632: 0x0018, 0x633: 0x0018, 0x634: 0x0018, 0x635: 0x0018, -	0x636: 0x0018, 0x637: 0x0018, 0x638: 0x0018, 0x639: 0x0018, 0x63a: 0x0018, 0x63b: 0x0018, -	0x63c: 0x0008, 0x63d: 0x0018, 0x63e: 0x3308, 0x63f: 0x0040, -	// Block 0x19, offset 0x640 -	0x640: 0x0040, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x3008, 0x644: 0x0040, 0x645: 0x0008, -	0x646: 0x0008, 0x647: 0x0008, 0x648: 0x0008, 0x649: 0x0008, 0x64a: 0x0008, 0x64b: 0x0040, -	0x64c: 0x0040, 0x64d: 0x0040, 0x64e: 0x0040, 0x64f: 0x0008, 0x650: 0x0008, 0x651: 0x0040, -	0x652: 0x0040, 0x653: 0x0008, 0x654: 0x0008, 0x655: 0x0008, 0x656: 0x0008, 0x657: 0x0008, -	0x658: 0x0008, 0x659: 0x0008, 0x65a: 0x0008, 0x65b: 0x0008, 0x65c: 0x0008, 0x65d: 0x0008, -	0x65e: 0x0008, 0x65f: 0x0008, 0x660: 0x0008, 0x661: 0x0008, 0x662: 0x0008, 0x663: 0x0008, -	0x664: 0x0008, 0x665: 0x0008, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0040, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x0008, 0x671: 0x0040, 0x672: 0x0008, 0x673: 0x0731, 0x674: 0x0040, 0x675: 0x0008, -	0x676: 0x0769, 0x677: 0x0040, 0x678: 0x0008, 0x679: 0x0008, 0x67a: 0x0040, 0x67b: 0x0040, -	0x67c: 0x3308, 0x67d: 0x0040, 0x67e: 0x3008, 0x67f: 0x3008, -	// Block 0x1a, offset 0x680 -	0x680: 0x3008, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x0040, 0x684: 0x0040, 0x685: 0x0040, -	0x686: 0x0040, 0x687: 0x3308, 0x688: 0x3308, 0x689: 0x0040, 0x68a: 0x0040, 0x68b: 0x3308, -	0x68c: 0x3308, 0x68d: 0x3b08, 0x68e: 0x0040, 0x68f: 0x0040, 0x690: 0x0040, 0x691: 0x3308, -	0x692: 0x0040, 0x693: 0x0040, 0x694: 0x0040, 0x695: 0x0040, 0x696: 0x0040, 0x697: 0x0040, -	0x698: 0x0040, 0x699: 0x07a1, 0x69a: 0x07d9, 0x69b: 0x0811, 0x69c: 0x0008, 0x69d: 0x0040, -	0x69e: 0x0849, 0x69f: 0x0040, 0x6a0: 0x0040, 0x6a1: 0x0040, 0x6a2: 0x0040, 0x6a3: 0x0040, -	0x6a4: 0x0040, 0x6a5: 0x0040, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0008, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x3308, 0x6b1: 0x3308, 0x6b2: 0x0008, 0x6b3: 0x0008, 0x6b4: 0x0008, 0x6b5: 0x3308, -	0x6b6: 0x0018, 0x6b7: 0x0040, 0x6b8: 0x0040, 0x6b9: 0x0040, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x0040, 0x6bd: 0x0040, 0x6be: 0x0040, 0x6bf: 0x0040, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x0040, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x3008, 0x6c4: 0x0040, 0x6c5: 0x0008, -	0x6c6: 0x0008, 0x6c7: 0x0008, 0x6c8: 0x0008, 0x6c9: 0x0008, 0x6ca: 0x0008, 0x6cb: 0x0008, -	0x6cc: 0x0008, 0x6cd: 0x0008, 0x6ce: 0x0040, 0x6cf: 0x0008, 0x6d0: 0x0008, 0x6d1: 0x0008, -	0x6d2: 0x0040, 0x6d3: 0x0008, 0x6d4: 0x0008, 0x6d5: 0x0008, 0x6d6: 0x0008, 0x6d7: 0x0008, -	0x6d8: 0x0008, 0x6d9: 0x0008, 0x6da: 0x0008, 0x6db: 0x0008, 0x6dc: 0x0008, 0x6dd: 0x0008, -	0x6de: 0x0008, 0x6df: 0x0008, 0x6e0: 0x0008, 0x6e1: 0x0008, 0x6e2: 0x0008, 0x6e3: 0x0008, -	0x6e4: 0x0008, 0x6e5: 0x0008, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0040, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x0008, 0x6f1: 0x0040, 0x6f2: 0x0008, 0x6f3: 0x0008, 0x6f4: 0x0040, 0x6f5: 0x0008, -	0x6f6: 0x0008, 0x6f7: 0x0008, 0x6f8: 0x0008, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x3308, 0x6fd: 0x0008, 0x6fe: 0x3008, 0x6ff: 0x3008, -	// Block 0x1c, offset 0x700 -	0x700: 0x3008, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3308, 0x704: 0x3308, 0x705: 0x3308, -	0x706: 0x0040, 0x707: 0x3308, 0x708: 0x3308, 0x709: 0x3008, 0x70a: 0x0040, 0x70b: 0x3008, -	0x70c: 0x3008, 0x70d: 0x3b08, 0x70e: 0x0040, 0x70f: 0x0040, 0x710: 0x0008, 0x711: 0x0040, -	0x712: 0x0040, 0x713: 0x0040, 0x714: 0x0040, 0x715: 0x0040, 0x716: 0x0040, 0x717: 0x0040, -	0x718: 0x0040, 0x719: 0x0040, 0x71a: 0x0040, 0x71b: 0x0040, 0x71c: 0x0040, 0x71d: 0x0040, -	0x71e: 0x0040, 0x71f: 0x0040, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x3308, 0x723: 0x3308, -	0x724: 0x0040, 0x725: 0x0040, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0008, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0018, 0x731: 0x0018, 0x732: 0x0040, 0x733: 0x0040, 0x734: 0x0040, 0x735: 0x0040, -	0x736: 0x0040, 0x737: 0x0040, 0x738: 0x0040, 0x739: 0x0008, 0x73a: 0x3308, 0x73b: 0x3308, -	0x73c: 0x3308, 0x73d: 0x3308, 0x73e: 0x3308, 0x73f: 0x3308, -	// Block 0x1d, offset 0x740 -	0x740: 0x0040, 0x741: 0x3308, 0x742: 0x3008, 0x743: 0x3008, 0x744: 0x0040, 0x745: 0x0008, -	0x746: 0x0008, 0x747: 0x0008, 0x748: 0x0008, 0x749: 0x0008, 0x74a: 0x0008, 0x74b: 0x0008, -	0x74c: 0x0008, 0x74d: 0x0040, 0x74e: 0x0040, 0x74f: 0x0008, 0x750: 0x0008, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0008, 0x754: 0x0008, 0x755: 0x0008, 0x756: 0x0008, 0x757: 0x0008, -	0x758: 0x0008, 0x759: 0x0008, 0x75a: 0x0008, 0x75b: 0x0008, 0x75c: 0x0008, 0x75d: 0x0008, -	0x75e: 0x0008, 0x75f: 0x0008, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x0008, 0x763: 0x0008, -	0x764: 0x0008, 0x765: 0x0008, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0040, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0008, 0x771: 0x0040, 0x772: 0x0008, 0x773: 0x0008, 0x774: 0x0040, 0x775: 0x0008, -	0x776: 0x0008, 0x777: 0x0008, 0x778: 0x0008, 0x779: 0x0008, 0x77a: 0x0040, 0x77b: 0x0040, -	0x77c: 0x3308, 0x77d: 0x0008, 0x77e: 0x3008, 0x77f: 0x3308, -	// Block 0x1e, offset 0x780 -	0x780: 0x3008, 0x781: 0x3308, 0x782: 0x3308, 0x783: 0x3308, 0x784: 0x3308, 0x785: 0x0040, -	0x786: 0x0040, 0x787: 0x3008, 0x788: 0x3008, 0x789: 0x0040, 0x78a: 0x0040, 0x78b: 0x3008, -	0x78c: 0x3008, 0x78d: 0x3b08, 0x78e: 0x0040, 0x78f: 0x0040, 0x790: 0x0040, 0x791: 0x0040, -	0x792: 0x0040, 0x793: 0x0040, 0x794: 0x0040, 0x795: 0x0040, 0x796: 0x3308, 0x797: 0x3008, -	0x798: 0x0040, 0x799: 0x0040, 0x79a: 0x0040, 0x79b: 0x0040, 0x79c: 0x0881, 0x79d: 0x08b9, -	0x79e: 0x0040, 0x79f: 0x0008, 0x7a0: 0x0008, 0x7a1: 0x0008, 0x7a2: 0x3308, 0x7a3: 0x3308, -	0x7a4: 0x0040, 0x7a5: 0x0040, 0x7a6: 0x0008, 0x7a7: 0x0008, 0x7a8: 0x0008, 0x7a9: 0x0008, -	0x7aa: 0x0008, 0x7ab: 0x0008, 0x7ac: 0x0008, 0x7ad: 0x0008, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0018, 0x7b1: 0x0008, 0x7b2: 0x0018, 0x7b3: 0x0018, 0x7b4: 0x0018, 0x7b5: 0x0018, -	0x7b6: 0x0018, 0x7b7: 0x0018, 0x7b8: 0x0040, 0x7b9: 0x0040, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x0040, 0x7bd: 0x0040, 0x7be: 0x0040, 0x7bf: 0x0040, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x0040, 0x7c1: 0x0040, 0x7c2: 0x3308, 0x7c3: 0x0008, 0x7c4: 0x0040, 0x7c5: 0x0008, -	0x7c6: 0x0008, 0x7c7: 0x0008, 0x7c8: 0x0008, 0x7c9: 0x0008, 0x7ca: 0x0008, 0x7cb: 0x0040, -	0x7cc: 0x0040, 0x7cd: 0x0040, 0x7ce: 0x0008, 0x7cf: 0x0008, 0x7d0: 0x0008, 0x7d1: 0x0040, -	0x7d2: 0x0008, 0x7d3: 0x0008, 0x7d4: 0x0008, 0x7d5: 0x0008, 0x7d6: 0x0040, 0x7d7: 0x0040, -	0x7d8: 0x0040, 0x7d9: 0x0008, 0x7da: 0x0008, 0x7db: 0x0040, 0x7dc: 0x0008, 0x7dd: 0x0040, -	0x7de: 0x0008, 0x7df: 0x0008, 0x7e0: 0x0040, 0x7e1: 0x0040, 0x7e2: 0x0040, 0x7e3: 0x0008, -	0x7e4: 0x0008, 0x7e5: 0x0040, 0x7e6: 0x0040, 0x7e7: 0x0040, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0040, 0x7ec: 0x0040, 0x7ed: 0x0040, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0008, 0x7f1: 0x0008, 0x7f2: 0x0008, 0x7f3: 0x0008, 0x7f4: 0x0008, 0x7f5: 0x0008, -	0x7f6: 0x0008, 0x7f7: 0x0008, 0x7f8: 0x0008, 0x7f9: 0x0008, 0x7fa: 0x0040, 0x7fb: 0x0040, -	0x7fc: 0x0040, 0x7fd: 0x0040, 0x7fe: 0x3008, 0x7ff: 0x3008, -	// Block 0x20, offset 0x800 -	0x800: 0x3308, 0x801: 0x3008, 0x802: 0x3008, 0x803: 0x3008, 0x804: 0x3008, 0x805: 0x0040, -	0x806: 0x3308, 0x807: 0x3308, 0x808: 0x3308, 0x809: 0x0040, 0x80a: 0x3308, 0x80b: 0x3308, -	0x80c: 0x3308, 0x80d: 0x3b08, 0x80e: 0x0040, 0x80f: 0x0040, 0x810: 0x0040, 0x811: 0x0040, -	0x812: 0x0040, 0x813: 0x0040, 0x814: 0x0040, 0x815: 0x3308, 0x816: 0x3308, 0x817: 0x0040, -	0x818: 0x0008, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0040, 0x81c: 0x0040, 0x81d: 0x0040, -	0x81e: 0x0040, 0x81f: 0x0040, 0x820: 0x0008, 0x821: 0x0008, 0x822: 0x3308, 0x823: 0x3308, -	0x824: 0x0040, 0x825: 0x0040, 0x826: 0x0008, 0x827: 0x0008, 0x828: 0x0008, 0x829: 0x0008, -	0x82a: 0x0008, 0x82b: 0x0008, 0x82c: 0x0008, 0x82d: 0x0008, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0040, 0x831: 0x0040, 0x832: 0x0040, 0x833: 0x0040, 0x834: 0x0040, 0x835: 0x0040, -	0x836: 0x0040, 0x837: 0x0018, 0x838: 0x0018, 0x839: 0x0018, 0x83a: 0x0018, 0x83b: 0x0018, -	0x83c: 0x0018, 0x83d: 0x0018, 0x83e: 0x0018, 0x83f: 0x0018, -	// Block 0x21, offset 0x840 -	0x840: 0x0008, 0x841: 0x3308, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x0018, 0x845: 0x0008, -	0x846: 0x0008, 0x847: 0x0008, 0x848: 0x0008, 0x849: 0x0008, 0x84a: 0x0008, 0x84b: 0x0008, -	0x84c: 0x0008, 0x84d: 0x0040, 0x84e: 0x0008, 0x84f: 0x0008, 0x850: 0x0008, 0x851: 0x0040, -	0x852: 0x0008, 0x853: 0x0008, 0x854: 0x0008, 0x855: 0x0008, 0x856: 0x0008, 0x857: 0x0008, -	0x858: 0x0008, 0x859: 0x0008, 0x85a: 0x0008, 0x85b: 0x0008, 0x85c: 0x0008, 0x85d: 0x0008, -	0x85e: 0x0008, 0x85f: 0x0008, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x0008, 0x863: 0x0008, -	0x864: 0x0008, 0x865: 0x0008, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0040, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0008, 0x871: 0x0008, 0x872: 0x0008, 0x873: 0x0008, 0x874: 0x0040, 0x875: 0x0008, -	0x876: 0x0008, 0x877: 0x0008, 0x878: 0x0008, 0x879: 0x0008, 0x87a: 0x0040, 0x87b: 0x0040, -	0x87c: 0x3308, 0x87d: 0x0008, 0x87e: 0x3008, 0x87f: 0x3308, -	// Block 0x22, offset 0x880 -	0x880: 0x3008, 0x881: 0x3008, 0x882: 0x3008, 0x883: 0x3008, 0x884: 0x3008, 0x885: 0x0040, -	0x886: 0x3308, 0x887: 0x3008, 0x888: 0x3008, 0x889: 0x0040, 0x88a: 0x3008, 0x88b: 0x3008, -	0x88c: 0x3308, 0x88d: 0x3b08, 0x88e: 0x0040, 0x88f: 0x0040, 0x890: 0x0040, 0x891: 0x0040, -	0x892: 0x0040, 0x893: 0x0040, 0x894: 0x0040, 0x895: 0x3008, 0x896: 0x3008, 0x897: 0x0040, -	0x898: 0x0040, 0x899: 0x0040, 0x89a: 0x0040, 0x89b: 0x0040, 0x89c: 0x0040, 0x89d: 0x0040, -	0x89e: 0x0008, 0x89f: 0x0040, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x3308, 0x8a3: 0x3308, -	0x8a4: 0x0040, 0x8a5: 0x0040, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0008, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0040, 0x8b1: 0x0008, 0x8b2: 0x0008, 0x8b3: 0x0040, 0x8b4: 0x0040, 0x8b5: 0x0040, -	0x8b6: 0x0040, 0x8b7: 0x0040, 0x8b8: 0x0040, 0x8b9: 0x0040, 0x8ba: 0x0040, 0x8bb: 0x0040, -	0x8bc: 0x0040, 0x8bd: 0x0040, 0x8be: 0x0040, 0x8bf: 0x0040, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x3008, 0x8c1: 0x3308, 0x8c2: 0x3308, 0x8c3: 0x3308, 0x8c4: 0x3308, 0x8c5: 0x0040, -	0x8c6: 0x3008, 0x8c7: 0x3008, 0x8c8: 0x3008, 0x8c9: 0x0040, 0x8ca: 0x3008, 0x8cb: 0x3008, -	0x8cc: 0x3008, 0x8cd: 0x3b08, 0x8ce: 0x0008, 0x8cf: 0x0018, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0008, 0x8d5: 0x0008, 0x8d6: 0x0008, 0x8d7: 0x3008, -	0x8d8: 0x0018, 0x8d9: 0x0018, 0x8da: 0x0018, 0x8db: 0x0018, 0x8dc: 0x0018, 0x8dd: 0x0018, -	0x8de: 0x0018, 0x8df: 0x0008, 0x8e0: 0x0008, 0x8e1: 0x0008, 0x8e2: 0x3308, 0x8e3: 0x3308, -	0x8e4: 0x0040, 0x8e5: 0x0040, 0x8e6: 0x0008, 0x8e7: 0x0008, 0x8e8: 0x0008, 0x8e9: 0x0008, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0008, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0018, 0x8f1: 0x0018, 0x8f2: 0x0018, 0x8f3: 0x0018, 0x8f4: 0x0018, 0x8f5: 0x0018, -	0x8f6: 0x0018, 0x8f7: 0x0018, 0x8f8: 0x0018, 0x8f9: 0x0018, 0x8fa: 0x0008, 0x8fb: 0x0008, -	0x8fc: 0x0008, 0x8fd: 0x0008, 0x8fe: 0x0008, 0x8ff: 0x0008, -	// Block 0x24, offset 0x900 -	0x900: 0x0040, 0x901: 0x0008, 0x902: 0x0008, 0x903: 0x0040, 0x904: 0x0008, 0x905: 0x0040, -	0x906: 0x0008, 0x907: 0x0008, 0x908: 0x0008, 0x909: 0x0008, 0x90a: 0x0008, 0x90b: 0x0040, -	0x90c: 0x0008, 0x90d: 0x0008, 0x90e: 0x0008, 0x90f: 0x0008, 0x910: 0x0008, 0x911: 0x0008, -	0x912: 0x0008, 0x913: 0x0008, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x0008, -	0x918: 0x0008, 0x919: 0x0008, 0x91a: 0x0008, 0x91b: 0x0008, 0x91c: 0x0008, 0x91d: 0x0008, -	0x91e: 0x0008, 0x91f: 0x0008, 0x920: 0x0008, 0x921: 0x0008, 0x922: 0x0008, 0x923: 0x0008, -	0x924: 0x0040, 0x925: 0x0008, 0x926: 0x0040, 0x927: 0x0008, 0x928: 0x0008, 0x929: 0x0008, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0008, 0x92d: 0x0008, 0x92e: 0x0008, 0x92f: 0x0008, -	0x930: 0x0008, 0x931: 0x3308, 0x932: 0x0008, 0x933: 0x0929, 0x934: 0x3308, 0x935: 0x3308, -	0x936: 0x3308, 0x937: 0x3308, 0x938: 0x3308, 0x939: 0x3308, 0x93a: 0x3b08, 0x93b: 0x3308, -	0x93c: 0x3308, 0x93d: 0x0008, 0x93e: 0x0040, 0x93f: 0x0040, -	// Block 0x25, offset 0x940 -	0x940: 0x0008, 0x941: 0x0008, 0x942: 0x0008, 0x943: 0x09d1, 0x944: 0x0008, 0x945: 0x0008, -	0x946: 0x0008, 0x947: 0x0008, 0x948: 0x0040, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0008, -	0x94c: 0x0008, 0x94d: 0x0a09, 0x94e: 0x0008, 0x94f: 0x0008, 0x950: 0x0008, 0x951: 0x0008, -	0x952: 0x0a41, 0x953: 0x0008, 0x954: 0x0008, 0x955: 0x0008, 0x956: 0x0008, 0x957: 0x0a79, -	0x958: 0x0008, 0x959: 0x0008, 0x95a: 0x0008, 0x95b: 0x0008, 0x95c: 0x0ab1, 0x95d: 0x0008, -	0x95e: 0x0008, 0x95f: 0x0008, 0x960: 0x0008, 0x961: 0x0008, 0x962: 0x0008, 0x963: 0x0008, -	0x964: 0x0008, 0x965: 0x0008, 0x966: 0x0008, 0x967: 0x0008, 0x968: 0x0008, 0x969: 0x0ae9, -	0x96a: 0x0008, 0x96b: 0x0008, 0x96c: 0x0008, 0x96d: 0x0040, 0x96e: 0x0040, 0x96f: 0x0040, -	0x970: 0x0040, 0x971: 0x3308, 0x972: 0x3308, 0x973: 0x0b21, 0x974: 0x3308, 0x975: 0x0b59, -	0x976: 0x0b91, 0x977: 0x0bc9, 0x978: 0x0c19, 0x979: 0x0c51, 0x97a: 0x3308, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x3308, 0x97e: 0x3308, 0x97f: 0x3008, -	// Block 0x26, offset 0x980 -	0x980: 0x3308, 0x981: 0x0ca1, 0x982: 0x3308, 0x983: 0x3308, 0x984: 0x3b08, 0x985: 0x0018, -	0x986: 0x3308, 0x987: 0x3308, 0x988: 0x0008, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x3308, 0x98e: 0x3308, 0x98f: 0x3308, 0x990: 0x3308, 0x991: 0x3308, -	0x992: 0x3308, 0x993: 0x0cd9, 0x994: 0x3308, 0x995: 0x3308, 0x996: 0x3308, 0x997: 0x3308, -	0x998: 0x0040, 0x999: 0x3308, 0x99a: 0x3308, 0x99b: 0x3308, 0x99c: 0x3308, 0x99d: 0x0d11, -	0x99e: 0x3308, 0x99f: 0x3308, 0x9a0: 0x3308, 0x9a1: 0x3308, 0x9a2: 0x0d49, 0x9a3: 0x3308, -	0x9a4: 0x3308, 0x9a5: 0x3308, 0x9a6: 0x3308, 0x9a7: 0x0d81, 0x9a8: 0x3308, 0x9a9: 0x3308, -	0x9aa: 0x3308, 0x9ab: 0x3308, 0x9ac: 0x0db9, 0x9ad: 0x3308, 0x9ae: 0x3308, 0x9af: 0x3308, -	0x9b0: 0x3308, 0x9b1: 0x3308, 0x9b2: 0x3308, 0x9b3: 0x3308, 0x9b4: 0x3308, 0x9b5: 0x3308, -	0x9b6: 0x3308, 0x9b7: 0x3308, 0x9b8: 0x3308, 0x9b9: 0x0df1, 0x9ba: 0x3308, 0x9bb: 0x3308, -	0x9bc: 0x3308, 0x9bd: 0x0040, 0x9be: 0x0018, 0x9bf: 0x0018, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x0008, 0x9c1: 0x0008, 0x9c2: 0x0008, 0x9c3: 0x0008, 0x9c4: 0x0008, 0x9c5: 0x0008, -	0x9c6: 0x0008, 0x9c7: 0x0008, 0x9c8: 0x0008, 0x9c9: 0x0008, 0x9ca: 0x0008, 0x9cb: 0x0008, -	0x9cc: 0x0008, 0x9cd: 0x0008, 0x9ce: 0x0008, 0x9cf: 0x0008, 0x9d0: 0x0008, 0x9d1: 0x0008, -	0x9d2: 0x0008, 0x9d3: 0x0008, 0x9d4: 0x0008, 0x9d5: 0x0008, 0x9d6: 0x0008, 0x9d7: 0x0008, -	0x9d8: 0x0008, 0x9d9: 0x0008, 0x9da: 0x0008, 0x9db: 0x0008, 0x9dc: 0x0008, 0x9dd: 0x0008, -	0x9de: 0x0008, 0x9df: 0x0008, 0x9e0: 0x0008, 0x9e1: 0x0008, 0x9e2: 0x0008, 0x9e3: 0x0008, -	0x9e4: 0x0008, 0x9e5: 0x0008, 0x9e6: 0x0008, 0x9e7: 0x0008, 0x9e8: 0x0008, 0x9e9: 0x0008, -	0x9ea: 0x0008, 0x9eb: 0x0008, 0x9ec: 0x0039, 0x9ed: 0x0ed1, 0x9ee: 0x0ee9, 0x9ef: 0x0008, -	0x9f0: 0x0ef9, 0x9f1: 0x0f09, 0x9f2: 0x0f19, 0x9f3: 0x0f31, 0x9f4: 0x0249, 0x9f5: 0x0f41, -	0x9f6: 0x0259, 0x9f7: 0x0f51, 0x9f8: 0x0359, 0x9f9: 0x0f61, 0x9fa: 0x0f71, 0x9fb: 0x0008, -	0x9fc: 0x00d9, 0x9fd: 0x0f81, 0x9fe: 0x0f99, 0x9ff: 0x0269, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0fa9, 0xa01: 0x0fb9, 0xa02: 0x0279, 0xa03: 0x0039, 0xa04: 0x0fc9, 0xa05: 0x0fe1, -	0xa06: 0x05b5, 0xa07: 0x0ee9, 0xa08: 0x0ef9, 0xa09: 0x0f09, 0xa0a: 0x0ff9, 0xa0b: 0x1011, -	0xa0c: 0x1029, 0xa0d: 0x0f31, 0xa0e: 0x0008, 0xa0f: 0x0f51, 0xa10: 0x0f61, 0xa11: 0x1041, -	0xa12: 0x00d9, 0xa13: 0x1059, 0xa14: 0x05cd, 0xa15: 0x05cd, 0xa16: 0x0f99, 0xa17: 0x0fa9, -	0xa18: 0x0fb9, 0xa19: 0x05b5, 0xa1a: 0x1071, 0xa1b: 0x1089, 0xa1c: 0x05e5, 0xa1d: 0x1099, -	0xa1e: 0x10b1, 0xa1f: 0x10c9, 0xa20: 0x10e1, 0xa21: 0x10f9, 0xa22: 0x0f41, 0xa23: 0x0269, -	0xa24: 0x0fb9, 0xa25: 0x1089, 0xa26: 0x1099, 0xa27: 0x10b1, 0xa28: 0x1111, 0xa29: 0x10e1, -	0xa2a: 0x10f9, 0xa2b: 0x0008, 0xa2c: 0x0008, 0xa2d: 0x0008, 0xa2e: 0x0008, 0xa2f: 0x0008, -	0xa30: 0x0008, 0xa31: 0x0008, 0xa32: 0x0008, 0xa33: 0x0008, 0xa34: 0x0008, 0xa35: 0x0008, -	0xa36: 0x0008, 0xa37: 0x0008, 0xa38: 0x1129, 0xa39: 0x0008, 0xa3a: 0x0008, 0xa3b: 0x0008, -	0xa3c: 0x0008, 0xa3d: 0x0008, 0xa3e: 0x0008, 0xa3f: 0x0008, -	// Block 0x29, offset 0xa40 -	0xa40: 0x0008, 0xa41: 0x0008, 0xa42: 0x0008, 0xa43: 0x0008, 0xa44: 0x0008, 0xa45: 0x0008, -	0xa46: 0x0008, 0xa47: 0x0008, 0xa48: 0x0008, 0xa49: 0x0008, 0xa4a: 0x0008, 0xa4b: 0x0008, -	0xa4c: 0x0008, 0xa4d: 0x0008, 0xa4e: 0x0008, 0xa4f: 0x0008, 0xa50: 0x0008, 0xa51: 0x0008, -	0xa52: 0x0008, 0xa53: 0x0008, 0xa54: 0x0008, 0xa55: 0x0008, 0xa56: 0x0008, 0xa57: 0x0008, -	0xa58: 0x0008, 0xa59: 0x0008, 0xa5a: 0x0008, 0xa5b: 0x1141, 0xa5c: 0x1159, 0xa5d: 0x1169, -	0xa5e: 0x1181, 0xa5f: 0x1029, 0xa60: 0x1199, 0xa61: 0x11a9, 0xa62: 0x11c1, 0xa63: 0x11d9, -	0xa64: 0x11f1, 0xa65: 0x1209, 0xa66: 0x1221, 0xa67: 0x05fd, 0xa68: 0x1239, 0xa69: 0x1251, -	0xa6a: 0xe17d, 0xa6b: 0x1269, 0xa6c: 0x1281, 0xa6d: 0x1299, 0xa6e: 0x12b1, 0xa6f: 0x12c9, -	0xa70: 0x12e1, 0xa71: 0x12f9, 0xa72: 0x1311, 0xa73: 0x1329, 0xa74: 0x1341, 0xa75: 0x1359, -	0xa76: 0x1371, 0xa77: 0x1389, 0xa78: 0x0615, 0xa79: 0x13a1, 0xa7a: 0x13b9, 0xa7b: 0x13d1, -	0xa7c: 0x13e1, 0xa7d: 0x13f9, 0xa7e: 0x1411, 0xa7f: 0x1429, -	// Block 0x2a, offset 0xa80 -	0xa80: 0xe00d, 0xa81: 0x0008, 0xa82: 0xe00d, 0xa83: 0x0008, 0xa84: 0xe00d, 0xa85: 0x0008, -	0xa86: 0xe00d, 0xa87: 0x0008, 0xa88: 0xe00d, 0xa89: 0x0008, 0xa8a: 0xe00d, 0xa8b: 0x0008, -	0xa8c: 0xe00d, 0xa8d: 0x0008, 0xa8e: 0xe00d, 0xa8f: 0x0008, 0xa90: 0xe00d, 0xa91: 0x0008, -	0xa92: 0xe00d, 0xa93: 0x0008, 0xa94: 0xe00d, 0xa95: 0x0008, 0xa96: 0xe00d, 0xa97: 0x0008, -	0xa98: 0xe00d, 0xa99: 0x0008, 0xa9a: 0xe00d, 0xa9b: 0x0008, 0xa9c: 0xe00d, 0xa9d: 0x0008, -	0xa9e: 0xe00d, 0xa9f: 0x0008, 0xaa0: 0xe00d, 0xaa1: 0x0008, 0xaa2: 0xe00d, 0xaa3: 0x0008, -	0xaa4: 0xe00d, 0xaa5: 0x0008, 0xaa6: 0xe00d, 0xaa7: 0x0008, 0xaa8: 0xe00d, 0xaa9: 0x0008, -	0xaaa: 0xe00d, 0xaab: 0x0008, 0xaac: 0xe00d, 0xaad: 0x0008, 0xaae: 0xe00d, 0xaaf: 0x0008, -	0xab0: 0xe00d, 0xab1: 0x0008, 0xab2: 0xe00d, 0xab3: 0x0008, 0xab4: 0xe00d, 0xab5: 0x0008, -	0xab6: 0xe00d, 0xab7: 0x0008, 0xab8: 0xe00d, 0xab9: 0x0008, 0xaba: 0xe00d, 0xabb: 0x0008, -	0xabc: 0xe00d, 0xabd: 0x0008, 0xabe: 0xe00d, 0xabf: 0x0008, -	// Block 0x2b, offset 0xac0 -	0xac0: 0xe00d, 0xac1: 0x0008, 0xac2: 0xe00d, 0xac3: 0x0008, 0xac4: 0xe00d, 0xac5: 0x0008, -	0xac6: 0xe00d, 0xac7: 0x0008, 0xac8: 0xe00d, 0xac9: 0x0008, 0xaca: 0xe00d, 0xacb: 0x0008, -	0xacc: 0xe00d, 0xacd: 0x0008, 0xace: 0xe00d, 0xacf: 0x0008, 0xad0: 0xe00d, 0xad1: 0x0008, -	0xad2: 0xe00d, 0xad3: 0x0008, 0xad4: 0xe00d, 0xad5: 0x0008, 0xad6: 0x0008, 0xad7: 0x0008, -	0xad8: 0x0008, 0xad9: 0x0008, 0xada: 0x062d, 0xadb: 0x064d, 0xadc: 0x0008, 0xadd: 0x0008, -	0xade: 0x1441, 0xadf: 0x0008, 0xae0: 0xe00d, 0xae1: 0x0008, 0xae2: 0xe00d, 0xae3: 0x0008, -	0xae4: 0xe00d, 0xae5: 0x0008, 0xae6: 0xe00d, 0xae7: 0x0008, 0xae8: 0xe00d, 0xae9: 0x0008, -	0xaea: 0xe00d, 0xaeb: 0x0008, 0xaec: 0xe00d, 0xaed: 0x0008, 0xaee: 0xe00d, 0xaef: 0x0008, -	0xaf0: 0xe00d, 0xaf1: 0x0008, 0xaf2: 0xe00d, 0xaf3: 0x0008, 0xaf4: 0xe00d, 0xaf5: 0x0008, -	0xaf6: 0xe00d, 0xaf7: 0x0008, 0xaf8: 0xe00d, 0xaf9: 0x0008, 0xafa: 0xe00d, 0xafb: 0x0008, -	0xafc: 0xe00d, 0xafd: 0x0008, 0xafe: 0xe00d, 0xaff: 0x0008, -	// Block 0x2c, offset 0xb00 -	0xb00: 0x0008, 0xb01: 0x0008, 0xb02: 0x0008, 0xb03: 0x0008, 0xb04: 0x0008, 0xb05: 0x0008, -	0xb06: 0x0040, 0xb07: 0x0040, 0xb08: 0xe045, 0xb09: 0xe045, 0xb0a: 0xe045, 0xb0b: 0xe045, -	0xb0c: 0xe045, 0xb0d: 0xe045, 0xb0e: 0x0040, 0xb0f: 0x0040, 0xb10: 0x0008, 0xb11: 0x0008, -	0xb12: 0x0008, 0xb13: 0x0008, 0xb14: 0x0008, 0xb15: 0x0008, 0xb16: 0x0008, 0xb17: 0x0008, -	0xb18: 0x0040, 0xb19: 0xe045, 0xb1a: 0x0040, 0xb1b: 0xe045, 0xb1c: 0x0040, 0xb1d: 0xe045, -	0xb1e: 0x0040, 0xb1f: 0xe045, 0xb20: 0x0008, 0xb21: 0x0008, 0xb22: 0x0008, 0xb23: 0x0008, -	0xb24: 0x0008, 0xb25: 0x0008, 0xb26: 0x0008, 0xb27: 0x0008, 0xb28: 0xe045, 0xb29: 0xe045, -	0xb2a: 0xe045, 0xb2b: 0xe045, 0xb2c: 0xe045, 0xb2d: 0xe045, 0xb2e: 0xe045, 0xb2f: 0xe045, -	0xb30: 0x0008, 0xb31: 0x1459, 0xb32: 0x0008, 0xb33: 0x1471, 0xb34: 0x0008, 0xb35: 0x1489, -	0xb36: 0x0008, 0xb37: 0x14a1, 0xb38: 0x0008, 0xb39: 0x14b9, 0xb3a: 0x0008, 0xb3b: 0x14d1, -	0xb3c: 0x0008, 0xb3d: 0x14e9, 0xb3e: 0x0040, 0xb3f: 0x0040, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x1501, 0xb41: 0x1531, 0xb42: 0x1561, 0xb43: 0x1591, 0xb44: 0x15c1, 0xb45: 0x15f1, -	0xb46: 0x1621, 0xb47: 0x1651, 0xb48: 0x1501, 0xb49: 0x1531, 0xb4a: 0x1561, 0xb4b: 0x1591, -	0xb4c: 0x15c1, 0xb4d: 0x15f1, 0xb4e: 0x1621, 0xb4f: 0x1651, 0xb50: 0x1681, 0xb51: 0x16b1, -	0xb52: 0x16e1, 0xb53: 0x1711, 0xb54: 0x1741, 0xb55: 0x1771, 0xb56: 0x17a1, 0xb57: 0x17d1, -	0xb58: 0x1681, 0xb59: 0x16b1, 0xb5a: 0x16e1, 0xb5b: 0x1711, 0xb5c: 0x1741, 0xb5d: 0x1771, -	0xb5e: 0x17a1, 0xb5f: 0x17d1, 0xb60: 0x1801, 0xb61: 0x1831, 0xb62: 0x1861, 0xb63: 0x1891, -	0xb64: 0x18c1, 0xb65: 0x18f1, 0xb66: 0x1921, 0xb67: 0x1951, 0xb68: 0x1801, 0xb69: 0x1831, -	0xb6a: 0x1861, 0xb6b: 0x1891, 0xb6c: 0x18c1, 0xb6d: 0x18f1, 0xb6e: 0x1921, 0xb6f: 0x1951, -	0xb70: 0x0008, 0xb71: 0x0008, 0xb72: 0x1981, 0xb73: 0x19b1, 0xb74: 0x19d9, 0xb75: 0x0040, -	0xb76: 0x0008, 0xb77: 0x1a01, 0xb78: 0xe045, 0xb79: 0xe045, 0xb7a: 0x0665, 0xb7b: 0x1459, -	0xb7c: 0x19b1, 0xb7d: 0x067e, 0xb7e: 0x1a31, 0xb7f: 0x069e, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x06be, 0xb81: 0x1a4a, 0xb82: 0x1a79, 0xb83: 0x1aa9, 0xb84: 0x1ad1, 0xb85: 0x0040, -	0xb86: 0x0008, 0xb87: 0x1af9, 0xb88: 0x06dd, 0xb89: 0x1471, 0xb8a: 0x06f5, 0xb8b: 0x1489, -	0xb8c: 0x1aa9, 0xb8d: 0x1b2a, 0xb8e: 0x1b5a, 0xb8f: 0x1b8a, 0xb90: 0x0008, 0xb91: 0x0008, -	0xb92: 0x0008, 0xb93: 0x1bb9, 0xb94: 0x0040, 0xb95: 0x0040, 0xb96: 0x0008, 0xb97: 0x0008, -	0xb98: 0xe045, 0xb99: 0xe045, 0xb9a: 0x070d, 0xb9b: 0x14a1, 0xb9c: 0x0040, 0xb9d: 0x1bd2, -	0xb9e: 0x1c02, 0xb9f: 0x1c32, 0xba0: 0x0008, 0xba1: 0x0008, 0xba2: 0x0008, 0xba3: 0x1c61, -	0xba4: 0x0008, 0xba5: 0x0008, 0xba6: 0x0008, 0xba7: 0x0008, 0xba8: 0xe045, 0xba9: 0xe045, -	0xbaa: 0x0725, 0xbab: 0x14d1, 0xbac: 0xe04d, 0xbad: 0x1c7a, 0xbae: 0x03d2, 0xbaf: 0x1caa, -	0xbb0: 0x0040, 0xbb1: 0x0040, 0xbb2: 0x1cb9, 0xbb3: 0x1ce9, 0xbb4: 0x1d11, 0xbb5: 0x0040, -	0xbb6: 0x0008, 0xbb7: 0x1d39, 0xbb8: 0x073d, 0xbb9: 0x14b9, 0xbba: 0x0515, 0xbbb: 0x14e9, -	0xbbc: 0x1ce9, 0xbbd: 0x0756, 0xbbe: 0x0776, 0xbbf: 0x0040, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x000a, 0xbc1: 0x000a, 0xbc2: 0x000a, 0xbc3: 0x000a, 0xbc4: 0x000a, 0xbc5: 0x000a, -	0xbc6: 0x000a, 0xbc7: 0x000a, 0xbc8: 0x000a, 0xbc9: 0x000a, 0xbca: 0x000a, 0xbcb: 0x03c0, -	0xbcc: 0x0003, 0xbcd: 0x0003, 0xbce: 0x0340, 0xbcf: 0x0b40, 0xbd0: 0x0018, 0xbd1: 0xe00d, -	0xbd2: 0x0018, 0xbd3: 0x0018, 0xbd4: 0x0018, 0xbd5: 0x0018, 0xbd6: 0x0018, 0xbd7: 0x0796, -	0xbd8: 0x0018, 0xbd9: 0x0018, 0xbda: 0x0018, 0xbdb: 0x0018, 0xbdc: 0x0018, 0xbdd: 0x0018, -	0xbde: 0x0018, 0xbdf: 0x0018, 0xbe0: 0x0018, 0xbe1: 0x0018, 0xbe2: 0x0018, 0xbe3: 0x0018, -	0xbe4: 0x0040, 0xbe5: 0x0040, 0xbe6: 0x0040, 0xbe7: 0x0018, 0xbe8: 0x0040, 0xbe9: 0x0040, -	0xbea: 0x0340, 0xbeb: 0x0340, 0xbec: 0x0340, 0xbed: 0x0340, 0xbee: 0x0340, 0xbef: 0x000a, -	0xbf0: 0x0018, 0xbf1: 0x0018, 0xbf2: 0x0018, 0xbf3: 0x1d69, 0xbf4: 0x1da1, 0xbf5: 0x0018, -	0xbf6: 0x1df1, 0xbf7: 0x1e29, 0xbf8: 0x0018, 0xbf9: 0x0018, 0xbfa: 0x0018, 0xbfb: 0x0018, -	0xbfc: 0x1e7a, 0xbfd: 0x0018, 0xbfe: 0x07b6, 0xbff: 0x0018, -	// Block 0x30, offset 0xc00 -	0xc00: 0x0018, 0xc01: 0x0018, 0xc02: 0x0018, 0xc03: 0x0018, 0xc04: 0x0018, 0xc05: 0x0018, -	0xc06: 0x0018, 0xc07: 0x1e92, 0xc08: 0x1eaa, 0xc09: 0x1ec2, 0xc0a: 0x0018, 0xc0b: 0x0018, -	0xc0c: 0x0018, 0xc0d: 0x0018, 0xc0e: 0x0018, 0xc0f: 0x0018, 0xc10: 0x0018, 0xc11: 0x0018, -	0xc12: 0x0018, 0xc13: 0x0018, 0xc14: 0x0018, 0xc15: 0x0018, 0xc16: 0x0018, 0xc17: 0x1ed9, -	0xc18: 0x0018, 0xc19: 0x0018, 0xc1a: 0x0018, 0xc1b: 0x0018, 0xc1c: 0x0018, 0xc1d: 0x0018, -	0xc1e: 0x0018, 0xc1f: 0x000a, 0xc20: 0x03c0, 0xc21: 0x0340, 0xc22: 0x0340, 0xc23: 0x0340, -	0xc24: 0x03c0, 0xc25: 0x0040, 0xc26: 0x0040, 0xc27: 0x0040, 0xc28: 0x0040, 0xc29: 0x0040, -	0xc2a: 0x0340, 0xc2b: 0x0340, 0xc2c: 0x0340, 0xc2d: 0x0340, 0xc2e: 0x0340, 0xc2f: 0x0340, -	0xc30: 0x1f41, 0xc31: 0x0f41, 0xc32: 0x0040, 0xc33: 0x0040, 0xc34: 0x1f51, 0xc35: 0x1f61, -	0xc36: 0x1f71, 0xc37: 0x1f81, 0xc38: 0x1f91, 0xc39: 0x1fa1, 0xc3a: 0x1fb2, 0xc3b: 0x07d5, -	0xc3c: 0x1fc2, 0xc3d: 0x1fd2, 0xc3e: 0x1fe2, 0xc3f: 0x0f71, -	// Block 0x31, offset 0xc40 -	0xc40: 0x1f41, 0xc41: 0x00c9, 0xc42: 0x0069, 0xc43: 0x0079, 0xc44: 0x1f51, 0xc45: 0x1f61, -	0xc46: 0x1f71, 0xc47: 0x1f81, 0xc48: 0x1f91, 0xc49: 0x1fa1, 0xc4a: 0x1fb2, 0xc4b: 0x07ed, -	0xc4c: 0x1fc2, 0xc4d: 0x1fd2, 0xc4e: 0x1fe2, 0xc4f: 0x0040, 0xc50: 0x0039, 0xc51: 0x0f09, -	0xc52: 0x00d9, 0xc53: 0x0369, 0xc54: 0x0ff9, 0xc55: 0x0249, 0xc56: 0x0f51, 0xc57: 0x0359, -	0xc58: 0x0f61, 0xc59: 0x0f71, 0xc5a: 0x0f99, 0xc5b: 0x01d9, 0xc5c: 0x0fa9, 0xc5d: 0x0040, -	0xc5e: 0x0040, 0xc5f: 0x0040, 0xc60: 0x0018, 0xc61: 0x0018, 0xc62: 0x0018, 0xc63: 0x0018, -	0xc64: 0x0018, 0xc65: 0x0018, 0xc66: 0x0018, 0xc67: 0x0018, 0xc68: 0x1ff1, 0xc69: 0x0018, -	0xc6a: 0x0018, 0xc6b: 0x0018, 0xc6c: 0x0018, 0xc6d: 0x0018, 0xc6e: 0x0018, 0xc6f: 0x0018, -	0xc70: 0x0018, 0xc71: 0x0018, 0xc72: 0x0018, 0xc73: 0x0018, 0xc74: 0x0018, 0xc75: 0x0018, -	0xc76: 0x0018, 0xc77: 0x0018, 0xc78: 0x0018, 0xc79: 0x0018, 0xc7a: 0x0018, 0xc7b: 0x0018, -	0xc7c: 0x0018, 0xc7d: 0x0018, 0xc7e: 0x0018, 0xc7f: 0x0018, -	// Block 0x32, offset 0xc80 -	0xc80: 0x0806, 0xc81: 0x0826, 0xc82: 0x1159, 0xc83: 0x0845, 0xc84: 0x0018, 0xc85: 0x0866, -	0xc86: 0x0886, 0xc87: 0x1011, 0xc88: 0x0018, 0xc89: 0x08a5, 0xc8a: 0x0f31, 0xc8b: 0x0249, -	0xc8c: 0x0249, 0xc8d: 0x0249, 0xc8e: 0x0249, 0xc8f: 0x2009, 0xc90: 0x0f41, 0xc91: 0x0f41, -	0xc92: 0x0359, 0xc93: 0x0359, 0xc94: 0x0018, 0xc95: 0x0f71, 0xc96: 0x2021, 0xc97: 0x0018, -	0xc98: 0x0018, 0xc99: 0x0f99, 0xc9a: 0x2039, 0xc9b: 0x0269, 0xc9c: 0x0269, 0xc9d: 0x0269, -	0xc9e: 0x0018, 0xc9f: 0x0018, 0xca0: 0x2049, 0xca1: 0x08c5, 0xca2: 0x2061, 0xca3: 0x0018, -	0xca4: 0x13d1, 0xca5: 0x0018, 0xca6: 0x2079, 0xca7: 0x0018, 0xca8: 0x13d1, 0xca9: 0x0018, -	0xcaa: 0x0f51, 0xcab: 0x2091, 0xcac: 0x0ee9, 0xcad: 0x1159, 0xcae: 0x0018, 0xcaf: 0x0f09, -	0xcb0: 0x0f09, 0xcb1: 0x1199, 0xcb2: 0x0040, 0xcb3: 0x0f61, 0xcb4: 0x00d9, 0xcb5: 0x20a9, -	0xcb6: 0x20c1, 0xcb7: 0x20d9, 0xcb8: 0x20f1, 0xcb9: 0x0f41, 0xcba: 0x0018, 0xcbb: 0x08e5, -	0xcbc: 0x2109, 0xcbd: 0x10b1, 0xcbe: 0x10b1, 0xcbf: 0x2109, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x0905, 0xcc1: 0x0018, 0xcc2: 0x0018, 0xcc3: 0x0018, 0xcc4: 0x0018, 0xcc5: 0x0ef9, -	0xcc6: 0x0ef9, 0xcc7: 0x0f09, 0xcc8: 0x0f41, 0xcc9: 0x0259, 0xcca: 0x0018, 0xccb: 0x0018, -	0xccc: 0x0018, 0xccd: 0x0018, 0xcce: 0x0008, 0xccf: 0x0018, 0xcd0: 0x2121, 0xcd1: 0x2151, -	0xcd2: 0x2181, 0xcd3: 0x21b9, 0xcd4: 0x21e9, 0xcd5: 0x2219, 0xcd6: 0x2249, 0xcd7: 0x2279, -	0xcd8: 0x22a9, 0xcd9: 0x22d9, 0xcda: 0x2309, 0xcdb: 0x2339, 0xcdc: 0x2369, 0xcdd: 0x2399, -	0xcde: 0x23c9, 0xcdf: 0x23f9, 0xce0: 0x0f41, 0xce1: 0x2421, 0xce2: 0x091d, 0xce3: 0x2439, -	0xce4: 0x1089, 0xce5: 0x2451, 0xce6: 0x093d, 0xce7: 0x2469, 0xce8: 0x2491, 0xce9: 0x0369, -	0xcea: 0x24a9, 0xceb: 0x095d, 0xcec: 0x0359, 0xced: 0x1159, 0xcee: 0x0ef9, 0xcef: 0x0f61, -	0xcf0: 0x0f41, 0xcf1: 0x2421, 0xcf2: 0x097d, 0xcf3: 0x2439, 0xcf4: 0x1089, 0xcf5: 0x2451, -	0xcf6: 0x099d, 0xcf7: 0x2469, 0xcf8: 0x2491, 0xcf9: 0x0369, 0xcfa: 0x24a9, 0xcfb: 0x09bd, -	0xcfc: 0x0359, 0xcfd: 0x1159, 0xcfe: 0x0ef9, 0xcff: 0x0f61, -	// Block 0x34, offset 0xd00 -	0xd00: 0x0018, 0xd01: 0x0018, 0xd02: 0x0018, 0xd03: 0x0018, 0xd04: 0x0018, 0xd05: 0x0018, -	0xd06: 0x0018, 0xd07: 0x0018, 0xd08: 0x0018, 0xd09: 0x0018, 0xd0a: 0x0018, 0xd0b: 0x0040, -	0xd0c: 0x0040, 0xd0d: 0x0040, 0xd0e: 0x0040, 0xd0f: 0x0040, 0xd10: 0x0040, 0xd11: 0x0040, -	0xd12: 0x0040, 0xd13: 0x0040, 0xd14: 0x0040, 0xd15: 0x0040, 0xd16: 0x0040, 0xd17: 0x0040, -	0xd18: 0x0040, 0xd19: 0x0040, 0xd1a: 0x0040, 0xd1b: 0x0040, 0xd1c: 0x0040, 0xd1d: 0x0040, -	0xd1e: 0x0040, 0xd1f: 0x0040, 0xd20: 0x00c9, 0xd21: 0x0069, 0xd22: 0x0079, 0xd23: 0x1f51, -	0xd24: 0x1f61, 0xd25: 0x1f71, 0xd26: 0x1f81, 0xd27: 0x1f91, 0xd28: 0x1fa1, 0xd29: 0x2601, -	0xd2a: 0x2619, 0xd2b: 0x2631, 0xd2c: 0x2649, 0xd2d: 0x2661, 0xd2e: 0x2679, 0xd2f: 0x2691, -	0xd30: 0x26a9, 0xd31: 0x26c1, 0xd32: 0x26d9, 0xd33: 0x26f1, 0xd34: 0x0a1e, 0xd35: 0x0a3e, -	0xd36: 0x0a5e, 0xd37: 0x0a7e, 0xd38: 0x0a9e, 0xd39: 0x0abe, 0xd3a: 0x0ade, 0xd3b: 0x0afe, -	0xd3c: 0x0b1e, 0xd3d: 0x270a, 0xd3e: 0x2732, 0xd3f: 0x275a, -	// Block 0x35, offset 0xd40 -	0xd40: 0x2782, 0xd41: 0x27aa, 0xd42: 0x27d2, 0xd43: 0x27fa, 0xd44: 0x2822, 0xd45: 0x284a, -	0xd46: 0x2872, 0xd47: 0x289a, 0xd48: 0x0040, 0xd49: 0x0040, 0xd4a: 0x0040, 0xd4b: 0x0040, -	0xd4c: 0x0040, 0xd4d: 0x0040, 0xd4e: 0x0040, 0xd4f: 0x0040, 0xd50: 0x0040, 0xd51: 0x0040, -	0xd52: 0x0040, 0xd53: 0x0040, 0xd54: 0x0040, 0xd55: 0x0040, 0xd56: 0x0040, 0xd57: 0x0040, -	0xd58: 0x0040, 0xd59: 0x0040, 0xd5a: 0x0040, 0xd5b: 0x0040, 0xd5c: 0x0b3e, 0xd5d: 0x0b5e, -	0xd5e: 0x0b7e, 0xd5f: 0x0b9e, 0xd60: 0x0bbe, 0xd61: 0x0bde, 0xd62: 0x0bfe, 0xd63: 0x0c1e, -	0xd64: 0x0c3e, 0xd65: 0x0c5e, 0xd66: 0x0c7e, 0xd67: 0x0c9e, 0xd68: 0x0cbe, 0xd69: 0x0cde, -	0xd6a: 0x0cfe, 0xd6b: 0x0d1e, 0xd6c: 0x0d3e, 0xd6d: 0x0d5e, 0xd6e: 0x0d7e, 0xd6f: 0x0d9e, -	0xd70: 0x0dbe, 0xd71: 0x0dde, 0xd72: 0x0dfe, 0xd73: 0x0e1e, 0xd74: 0x0e3e, 0xd75: 0x0e5e, -	0xd76: 0x0039, 0xd77: 0x0ee9, 0xd78: 0x1159, 0xd79: 0x0ef9, 0xd7a: 0x0f09, 0xd7b: 0x1199, -	0xd7c: 0x0f31, 0xd7d: 0x0249, 0xd7e: 0x0f41, 0xd7f: 0x0259, -	// Block 0x36, offset 0xd80 -	0xd80: 0x0f51, 0xd81: 0x0359, 0xd82: 0x0f61, 0xd83: 0x0f71, 0xd84: 0x00d9, 0xd85: 0x0f99, -	0xd86: 0x2039, 0xd87: 0x0269, 0xd88: 0x01d9, 0xd89: 0x0fa9, 0xd8a: 0x0fb9, 0xd8b: 0x1089, -	0xd8c: 0x0279, 0xd8d: 0x0369, 0xd8e: 0x0289, 0xd8f: 0x13d1, 0xd90: 0x0039, 0xd91: 0x0ee9, -	0xd92: 0x1159, 0xd93: 0x0ef9, 0xd94: 0x0f09, 0xd95: 0x1199, 0xd96: 0x0f31, 0xd97: 0x0249, -	0xd98: 0x0f41, 0xd99: 0x0259, 0xd9a: 0x0f51, 0xd9b: 0x0359, 0xd9c: 0x0f61, 0xd9d: 0x0f71, -	0xd9e: 0x00d9, 0xd9f: 0x0f99, 0xda0: 0x2039, 0xda1: 0x0269, 0xda2: 0x01d9, 0xda3: 0x0fa9, -	0xda4: 0x0fb9, 0xda5: 0x1089, 0xda6: 0x0279, 0xda7: 0x0369, 0xda8: 0x0289, 0xda9: 0x13d1, -	0xdaa: 0x1f41, 0xdab: 0x0018, 0xdac: 0x0018, 0xdad: 0x0018, 0xdae: 0x0018, 0xdaf: 0x0018, -	0xdb0: 0x0018, 0xdb1: 0x0018, 0xdb2: 0x0018, 0xdb3: 0x0018, 0xdb4: 0x0018, 0xdb5: 0x0018, -	0xdb6: 0x0018, 0xdb7: 0x0018, 0xdb8: 0x0018, 0xdb9: 0x0018, 0xdba: 0x0018, 0xdbb: 0x0018, -	0xdbc: 0x0018, 0xdbd: 0x0018, 0xdbe: 0x0018, 0xdbf: 0x0018, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0x0008, 0xdc1: 0x0008, 0xdc2: 0x0008, 0xdc3: 0x0008, 0xdc4: 0x0008, 0xdc5: 0x0008, -	0xdc6: 0x0008, 0xdc7: 0x0008, 0xdc8: 0x0008, 0xdc9: 0x0008, 0xdca: 0x0008, 0xdcb: 0x0008, -	0xdcc: 0x0008, 0xdcd: 0x0008, 0xdce: 0x0008, 0xdcf: 0x0008, 0xdd0: 0x0008, 0xdd1: 0x0008, -	0xdd2: 0x0008, 0xdd3: 0x0008, 0xdd4: 0x0008, 0xdd5: 0x0008, 0xdd6: 0x0008, 0xdd7: 0x0008, -	0xdd8: 0x0008, 0xdd9: 0x0008, 0xdda: 0x0008, 0xddb: 0x0008, 0xddc: 0x0008, 0xddd: 0x0008, -	0xdde: 0x0008, 0xddf: 0x0040, 0xde0: 0xe00d, 0xde1: 0x0008, 0xde2: 0x2971, 0xde3: 0x0ed5, -	0xde4: 0x2989, 0xde5: 0x0008, 0xde6: 0x0008, 0xde7: 0xe07d, 0xde8: 0x0008, 0xde9: 0xe01d, -	0xdea: 0x0008, 0xdeb: 0xe03d, 0xdec: 0x0008, 0xded: 0x0fe1, 0xdee: 0x1281, 0xdef: 0x0fc9, -	0xdf0: 0x1141, 0xdf1: 0x0008, 0xdf2: 0xe00d, 0xdf3: 0x0008, 0xdf4: 0x0008, 0xdf5: 0xe01d, -	0xdf6: 0x0008, 0xdf7: 0x0008, 0xdf8: 0x0008, 0xdf9: 0x0008, 0xdfa: 0x0008, 0xdfb: 0x0008, -	0xdfc: 0x0259, 0xdfd: 0x1089, 0xdfe: 0x29a1, 0xdff: 0x29b9, -	// Block 0x38, offset 0xe00 -	0xe00: 0xe00d, 0xe01: 0x0008, 0xe02: 0xe00d, 0xe03: 0x0008, 0xe04: 0xe00d, 0xe05: 0x0008, -	0xe06: 0xe00d, 0xe07: 0x0008, 0xe08: 0xe00d, 0xe09: 0x0008, 0xe0a: 0xe00d, 0xe0b: 0x0008, -	0xe0c: 0xe00d, 0xe0d: 0x0008, 0xe0e: 0xe00d, 0xe0f: 0x0008, 0xe10: 0xe00d, 0xe11: 0x0008, -	0xe12: 0xe00d, 0xe13: 0x0008, 0xe14: 0xe00d, 0xe15: 0x0008, 0xe16: 0xe00d, 0xe17: 0x0008, -	0xe18: 0xe00d, 0xe19: 0x0008, 0xe1a: 0xe00d, 0xe1b: 0x0008, 0xe1c: 0xe00d, 0xe1d: 0x0008, -	0xe1e: 0xe00d, 0xe1f: 0x0008, 0xe20: 0xe00d, 0xe21: 0x0008, 0xe22: 0xe00d, 0xe23: 0x0008, -	0xe24: 0x0008, 0xe25: 0x0018, 0xe26: 0x0018, 0xe27: 0x0018, 0xe28: 0x0018, 0xe29: 0x0018, -	0xe2a: 0x0018, 0xe2b: 0xe03d, 0xe2c: 0x0008, 0xe2d: 0xe01d, 0xe2e: 0x0008, 0xe2f: 0x3308, -	0xe30: 0x3308, 0xe31: 0x3308, 0xe32: 0xe00d, 0xe33: 0x0008, 0xe34: 0x0040, 0xe35: 0x0040, -	0xe36: 0x0040, 0xe37: 0x0040, 0xe38: 0x0040, 0xe39: 0x0018, 0xe3a: 0x0018, 0xe3b: 0x0018, -	0xe3c: 0x0018, 0xe3d: 0x0018, 0xe3e: 0x0018, 0xe3f: 0x0018, -	// Block 0x39, offset 0xe40 -	0xe40: 0x2715, 0xe41: 0x2735, 0xe42: 0x2755, 0xe43: 0x2775, 0xe44: 0x2795, 0xe45: 0x27b5, -	0xe46: 0x27d5, 0xe47: 0x27f5, 0xe48: 0x2815, 0xe49: 0x2835, 0xe4a: 0x2855, 0xe4b: 0x2875, -	0xe4c: 0x2895, 0xe4d: 0x28b5, 0xe4e: 0x28d5, 0xe4f: 0x28f5, 0xe50: 0x2915, 0xe51: 0x2935, -	0xe52: 0x2955, 0xe53: 0x2975, 0xe54: 0x2995, 0xe55: 0x29b5, 0xe56: 0x0040, 0xe57: 0x0040, -	0xe58: 0x0040, 0xe59: 0x0040, 0xe5a: 0x0040, 0xe5b: 0x0040, 0xe5c: 0x0040, 0xe5d: 0x0040, -	0xe5e: 0x0040, 0xe5f: 0x0040, 0xe60: 0x0040, 0xe61: 0x0040, 0xe62: 0x0040, 0xe63: 0x0040, -	0xe64: 0x0040, 0xe65: 0x0040, 0xe66: 0x0040, 0xe67: 0x0040, 0xe68: 0x0040, 0xe69: 0x0040, -	0xe6a: 0x0040, 0xe6b: 0x0040, 0xe6c: 0x0040, 0xe6d: 0x0040, 0xe6e: 0x0040, 0xe6f: 0x0040, -	0xe70: 0x0040, 0xe71: 0x0040, 0xe72: 0x0040, 0xe73: 0x0040, 0xe74: 0x0040, 0xe75: 0x0040, -	0xe76: 0x0040, 0xe77: 0x0040, 0xe78: 0x0040, 0xe79: 0x0040, 0xe7a: 0x0040, 0xe7b: 0x0040, -	0xe7c: 0x0040, 0xe7d: 0x0040, 0xe7e: 0x0040, 0xe7f: 0x0040, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x000a, 0xe81: 0x0018, 0xe82: 0x29d1, 0xe83: 0x0018, 0xe84: 0x0018, 0xe85: 0x0008, -	0xe86: 0x0008, 0xe87: 0x0008, 0xe88: 0x0018, 0xe89: 0x0018, 0xe8a: 0x0018, 0xe8b: 0x0018, -	0xe8c: 0x0018, 0xe8d: 0x0018, 0xe8e: 0x0018, 0xe8f: 0x0018, 0xe90: 0x0018, 0xe91: 0x0018, -	0xe92: 0x0018, 0xe93: 0x0018, 0xe94: 0x0018, 0xe95: 0x0018, 0xe96: 0x0018, 0xe97: 0x0018, -	0xe98: 0x0018, 0xe99: 0x0018, 0xe9a: 0x0018, 0xe9b: 0x0018, 0xe9c: 0x0018, 0xe9d: 0x0018, -	0xe9e: 0x0018, 0xe9f: 0x0018, 0xea0: 0x0018, 0xea1: 0x0018, 0xea2: 0x0018, 0xea3: 0x0018, -	0xea4: 0x0018, 0xea5: 0x0018, 0xea6: 0x0018, 0xea7: 0x0018, 0xea8: 0x0018, 0xea9: 0x0018, -	0xeaa: 0x3308, 0xeab: 0x3308, 0xeac: 0x3308, 0xead: 0x3308, 0xeae: 0x3018, 0xeaf: 0x3018, -	0xeb0: 0x0018, 0xeb1: 0x0018, 0xeb2: 0x0018, 0xeb3: 0x0018, 0xeb4: 0x0018, 0xeb5: 0x0018, -	0xeb6: 0xe125, 0xeb7: 0x0018, 0xeb8: 0x29d5, 0xeb9: 0x29f5, 0xeba: 0x2a15, 0xebb: 0x0018, -	0xebc: 0x0008, 0xebd: 0x0018, 0xebe: 0x0018, 0xebf: 0x0018, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x2b55, 0xec1: 0x2b75, 0xec2: 0x2b95, 0xec3: 0x2bb5, 0xec4: 0x2bd5, 0xec5: 0x2bf5, -	0xec6: 0x2bf5, 0xec7: 0x2bf5, 0xec8: 0x2c15, 0xec9: 0x2c15, 0xeca: 0x2c15, 0xecb: 0x2c15, -	0xecc: 0x2c35, 0xecd: 0x2c35, 0xece: 0x2c35, 0xecf: 0x2c55, 0xed0: 0x2c75, 0xed1: 0x2c75, -	0xed2: 0x2a95, 0xed3: 0x2a95, 0xed4: 0x2c75, 0xed5: 0x2c75, 0xed6: 0x2c95, 0xed7: 0x2c95, -	0xed8: 0x2c75, 0xed9: 0x2c75, 0xeda: 0x2a95, 0xedb: 0x2a95, 0xedc: 0x2c75, 0xedd: 0x2c75, -	0xede: 0x2c55, 0xedf: 0x2c55, 0xee0: 0x2cb5, 0xee1: 0x2cb5, 0xee2: 0x2cd5, 0xee3: 0x2cd5, -	0xee4: 0x0040, 0xee5: 0x2cf5, 0xee6: 0x2d15, 0xee7: 0x2d35, 0xee8: 0x2d35, 0xee9: 0x2d55, -	0xeea: 0x2d75, 0xeeb: 0x2d95, 0xeec: 0x2db5, 0xeed: 0x2dd5, 0xeee: 0x2df5, 0xeef: 0x2e15, -	0xef0: 0x2e35, 0xef1: 0x2e55, 0xef2: 0x2e55, 0xef3: 0x2e75, 0xef4: 0x2e95, 0xef5: 0x2e95, -	0xef6: 0x2eb5, 0xef7: 0x2ed5, 0xef8: 0x2e75, 0xef9: 0x2ef5, 0xefa: 0x2f15, 0xefb: 0x2ef5, -	0xefc: 0x2e75, 0xefd: 0x2f35, 0xefe: 0x2f55, 0xeff: 0x2f75, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x2f95, 0xf01: 0x2fb5, 0xf02: 0x2d15, 0xf03: 0x2cf5, 0xf04: 0x2fd5, 0xf05: 0x2ff5, -	0xf06: 0x3015, 0xf07: 0x3035, 0xf08: 0x3055, 0xf09: 0x3075, 0xf0a: 0x3095, 0xf0b: 0x30b5, -	0xf0c: 0x30d5, 0xf0d: 0x30f5, 0xf0e: 0x3115, 0xf0f: 0x0040, 0xf10: 0x0018, 0xf11: 0x0018, -	0xf12: 0x3135, 0xf13: 0x3155, 0xf14: 0x3175, 0xf15: 0x3195, 0xf16: 0x31b5, 0xf17: 0x31d5, -	0xf18: 0x31f5, 0xf19: 0x3215, 0xf1a: 0x3235, 0xf1b: 0x3255, 0xf1c: 0x3175, 0xf1d: 0x3275, -	0xf1e: 0x3295, 0xf1f: 0x32b5, 0xf20: 0x0008, 0xf21: 0x0008, 0xf22: 0x0008, 0xf23: 0x0008, -	0xf24: 0x0008, 0xf25: 0x0008, 0xf26: 0x0008, 0xf27: 0x0008, 0xf28: 0x0008, 0xf29: 0x0008, -	0xf2a: 0x0008, 0xf2b: 0x0008, 0xf2c: 0x0008, 0xf2d: 0x0008, 0xf2e: 0x0008, 0xf2f: 0x0008, -	0xf30: 0x0008, 0xf31: 0x0008, 0xf32: 0x0008, 0xf33: 0x0008, 0xf34: 0x0008, 0xf35: 0x0008, -	0xf36: 0x0008, 0xf37: 0x0008, 0xf38: 0x0008, 0xf39: 0x0008, 0xf3a: 0x0008, 0xf3b: 0x0040, -	0xf3c: 0x0040, 0xf3d: 0x0040, 0xf3e: 0x0040, 0xf3f: 0x0040, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x36a2, 0xf41: 0x36d2, 0xf42: 0x3702, 0xf43: 0x3732, 0xf44: 0x32d5, 0xf45: 0x32f5, -	0xf46: 0x3315, 0xf47: 0x3335, 0xf48: 0x0018, 0xf49: 0x0018, 0xf4a: 0x0018, 0xf4b: 0x0018, -	0xf4c: 0x0018, 0xf4d: 0x0018, 0xf4e: 0x0018, 0xf4f: 0x0018, 0xf50: 0x3355, 0xf51: 0x3761, -	0xf52: 0x3779, 0xf53: 0x3791, 0xf54: 0x37a9, 0xf55: 0x37c1, 0xf56: 0x37d9, 0xf57: 0x37f1, -	0xf58: 0x3809, 0xf59: 0x3821, 0xf5a: 0x3839, 0xf5b: 0x3851, 0xf5c: 0x3869, 0xf5d: 0x3881, -	0xf5e: 0x3899, 0xf5f: 0x38b1, 0xf60: 0x3375, 0xf61: 0x3395, 0xf62: 0x33b5, 0xf63: 0x33d5, -	0xf64: 0x33f5, 0xf65: 0x33f5, 0xf66: 0x3415, 0xf67: 0x3435, 0xf68: 0x3455, 0xf69: 0x3475, -	0xf6a: 0x3495, 0xf6b: 0x34b5, 0xf6c: 0x34d5, 0xf6d: 0x34f5, 0xf6e: 0x3515, 0xf6f: 0x3535, -	0xf70: 0x3555, 0xf71: 0x3575, 0xf72: 0x3595, 0xf73: 0x35b5, 0xf74: 0x35d5, 0xf75: 0x35f5, -	0xf76: 0x3615, 0xf77: 0x3635, 0xf78: 0x3655, 0xf79: 0x3675, 0xf7a: 0x3695, 0xf7b: 0x36b5, -	0xf7c: 0x38c9, 0xf7d: 0x3901, 0xf7e: 0x36d5, 0xf7f: 0x0018, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x36f5, 0xf81: 0x3715, 0xf82: 0x3735, 0xf83: 0x3755, 0xf84: 0x3775, 0xf85: 0x3795, -	0xf86: 0x37b5, 0xf87: 0x37d5, 0xf88: 0x37f5, 0xf89: 0x3815, 0xf8a: 0x3835, 0xf8b: 0x3855, -	0xf8c: 0x3875, 0xf8d: 0x3895, 0xf8e: 0x38b5, 0xf8f: 0x38d5, 0xf90: 0x38f5, 0xf91: 0x3915, -	0xf92: 0x3935, 0xf93: 0x3955, 0xf94: 0x3975, 0xf95: 0x3995, 0xf96: 0x39b5, 0xf97: 0x39d5, -	0xf98: 0x39f5, 0xf99: 0x3a15, 0xf9a: 0x3a35, 0xf9b: 0x3a55, 0xf9c: 0x3a75, 0xf9d: 0x3a95, -	0xf9e: 0x3ab5, 0xf9f: 0x3ad5, 0xfa0: 0x3af5, 0xfa1: 0x3b15, 0xfa2: 0x3b35, 0xfa3: 0x3b55, -	0xfa4: 0x3b75, 0xfa5: 0x3b95, 0xfa6: 0x1295, 0xfa7: 0x3bb5, 0xfa8: 0x3bd5, 0xfa9: 0x3bf5, -	0xfaa: 0x3c15, 0xfab: 0x3c35, 0xfac: 0x3c55, 0xfad: 0x3c75, 0xfae: 0x23b5, 0xfaf: 0x3c95, -	0xfb0: 0x3cb5, 0xfb1: 0x3939, 0xfb2: 0x3951, 0xfb3: 0x3969, 0xfb4: 0x3981, 0xfb5: 0x3999, -	0xfb6: 0x39b1, 0xfb7: 0x39c9, 0xfb8: 0x39e1, 0xfb9: 0x39f9, 0xfba: 0x3a11, 0xfbb: 0x3a29, -	0xfbc: 0x3a41, 0xfbd: 0x3a59, 0xfbe: 0x3a71, 0xfbf: 0x3a89, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x3aa1, 0xfc1: 0x3ac9, 0xfc2: 0x3af1, 0xfc3: 0x3b19, 0xfc4: 0x3b41, 0xfc5: 0x3b69, -	0xfc6: 0x3b91, 0xfc7: 0x3bb9, 0xfc8: 0x3be1, 0xfc9: 0x3c09, 0xfca: 0x3c39, 0xfcb: 0x3c69, -	0xfcc: 0x3c99, 0xfcd: 0x3cd5, 0xfce: 0x3cb1, 0xfcf: 0x3cf5, 0xfd0: 0x3d15, 0xfd1: 0x3d2d, -	0xfd2: 0x3d45, 0xfd3: 0x3d5d, 0xfd4: 0x3d75, 0xfd5: 0x3d75, 0xfd6: 0x3d5d, 0xfd7: 0x3d8d, -	0xfd8: 0x07d5, 0xfd9: 0x3da5, 0xfda: 0x3dbd, 0xfdb: 0x3dd5, 0xfdc: 0x3ded, 0xfdd: 0x3e05, -	0xfde: 0x3e1d, 0xfdf: 0x3e35, 0xfe0: 0x3e4d, 0xfe1: 0x3e65, 0xfe2: 0x3e7d, 0xfe3: 0x3e95, -	0xfe4: 0x3ead, 0xfe5: 0x3ead, 0xfe6: 0x3ec5, 0xfe7: 0x3ec5, 0xfe8: 0x3edd, 0xfe9: 0x3edd, -	0xfea: 0x3ef5, 0xfeb: 0x3f0d, 0xfec: 0x3f25, 0xfed: 0x3f3d, 0xfee: 0x3f55, 0xfef: 0x3f55, -	0xff0: 0x3f6d, 0xff1: 0x3f6d, 0xff2: 0x3f6d, 0xff3: 0x3f85, 0xff4: 0x3f9d, 0xff5: 0x3fb5, -	0xff6: 0x3fcd, 0xff7: 0x3fb5, 0xff8: 0x3fe5, 0xff9: 0x3ffd, 0xffa: 0x3f85, 0xffb: 0x4015, -	0xffc: 0x402d, 0xffd: 0x402d, 0xffe: 0x402d, 0xfff: 0x0040, -	// Block 0x40, offset 0x1000 -	0x1000: 0x3cc9, 0x1001: 0x3d31, 0x1002: 0x3d99, 0x1003: 0x3e01, 0x1004: 0x3e51, 0x1005: 0x3eb9, -	0x1006: 0x3f09, 0x1007: 0x3f59, 0x1008: 0x3fd9, 0x1009: 0x4041, 0x100a: 0x4091, 0x100b: 0x40e1, -	0x100c: 0x4131, 0x100d: 0x4199, 0x100e: 0x4201, 0x100f: 0x4251, 0x1010: 0x42a1, 0x1011: 0x42d9, -	0x1012: 0x4329, 0x1013: 0x4391, 0x1014: 0x43f9, 0x1015: 0x4431, 0x1016: 0x44b1, 0x1017: 0x4549, -	0x1018: 0x45c9, 0x1019: 0x4619, 0x101a: 0x4699, 0x101b: 0x4719, 0x101c: 0x4781, 0x101d: 0x47d1, -	0x101e: 0x4821, 0x101f: 0x4871, 0x1020: 0x48d9, 0x1021: 0x4959, 0x1022: 0x49c1, 0x1023: 0x4a11, -	0x1024: 0x4a61, 0x1025: 0x4ab1, 0x1026: 0x4ae9, 0x1027: 0x4b21, 0x1028: 0x4b59, 0x1029: 0x4b91, -	0x102a: 0x4be1, 0x102b: 0x4c31, 0x102c: 0x4cb1, 0x102d: 0x4d01, 0x102e: 0x4d69, 0x102f: 0x4de9, -	0x1030: 0x4e39, 0x1031: 0x4e71, 0x1032: 0x4ea9, 0x1033: 0x4f29, 0x1034: 0x4f91, 0x1035: 0x5011, -	0x1036: 0x5061, 0x1037: 0x50e1, 0x1038: 0x5119, 0x1039: 0x5169, 0x103a: 0x51b9, 0x103b: 0x5209, -	0x103c: 0x5259, 0x103d: 0x52a9, 0x103e: 0x5311, 0x103f: 0x5361, -	// Block 0x41, offset 0x1040 -	0x1040: 0x5399, 0x1041: 0x53e9, 0x1042: 0x5439, 0x1043: 0x5489, 0x1044: 0x54f1, 0x1045: 0x5541, -	0x1046: 0x5591, 0x1047: 0x55e1, 0x1048: 0x5661, 0x1049: 0x56c9, 0x104a: 0x5701, 0x104b: 0x5781, -	0x104c: 0x57b9, 0x104d: 0x5821, 0x104e: 0x5889, 0x104f: 0x58d9, 0x1050: 0x5929, 0x1051: 0x5979, -	0x1052: 0x59e1, 0x1053: 0x5a19, 0x1054: 0x5a69, 0x1055: 0x5ad1, 0x1056: 0x5b09, 0x1057: 0x5b89, -	0x1058: 0x5bd9, 0x1059: 0x5c01, 0x105a: 0x5c29, 0x105b: 0x5c51, 0x105c: 0x5c79, 0x105d: 0x5ca1, -	0x105e: 0x5cc9, 0x105f: 0x5cf1, 0x1060: 0x5d19, 0x1061: 0x5d41, 0x1062: 0x5d69, 0x1063: 0x5d99, -	0x1064: 0x5dc9, 0x1065: 0x5df9, 0x1066: 0x5e29, 0x1067: 0x5e59, 0x1068: 0x5e89, 0x1069: 0x5eb9, -	0x106a: 0x5ee9, 0x106b: 0x5f19, 0x106c: 0x5f49, 0x106d: 0x5f79, 0x106e: 0x5fa9, 0x106f: 0x5fd9, -	0x1070: 0x6009, 0x1071: 0x4045, 0x1072: 0x6039, 0x1073: 0x6051, 0x1074: 0x4065, 0x1075: 0x6069, -	0x1076: 0x6081, 0x1077: 0x6099, 0x1078: 0x4085, 0x1079: 0x4085, 0x107a: 0x60b1, 0x107b: 0x60c9, -	0x107c: 0x6101, 0x107d: 0x6139, 0x107e: 0x6171, 0x107f: 0x61a9, -	// Block 0x42, offset 0x1080 -	0x1080: 0x6211, 0x1081: 0x6229, 0x1082: 0x40a5, 0x1083: 0x6241, 0x1084: 0x6259, 0x1085: 0x6271, -	0x1086: 0x6289, 0x1087: 0x62a1, 0x1088: 0x40c5, 0x1089: 0x62b9, 0x108a: 0x62e1, 0x108b: 0x62f9, -	0x108c: 0x40e5, 0x108d: 0x40e5, 0x108e: 0x6311, 0x108f: 0x6329, 0x1090: 0x6341, 0x1091: 0x4105, -	0x1092: 0x4125, 0x1093: 0x4145, 0x1094: 0x4165, 0x1095: 0x4185, 0x1096: 0x6359, 0x1097: 0x6371, -	0x1098: 0x6389, 0x1099: 0x63a1, 0x109a: 0x63b9, 0x109b: 0x41a5, 0x109c: 0x63d1, 0x109d: 0x63e9, -	0x109e: 0x6401, 0x109f: 0x41c5, 0x10a0: 0x41e5, 0x10a1: 0x6419, 0x10a2: 0x4205, 0x10a3: 0x4225, -	0x10a4: 0x4245, 0x10a5: 0x6431, 0x10a6: 0x4265, 0x10a7: 0x6449, 0x10a8: 0x6479, 0x10a9: 0x6211, -	0x10aa: 0x4285, 0x10ab: 0x42a5, 0x10ac: 0x42c5, 0x10ad: 0x42e5, 0x10ae: 0x64b1, 0x10af: 0x64f1, -	0x10b0: 0x6539, 0x10b1: 0x6551, 0x10b2: 0x4305, 0x10b3: 0x6569, 0x10b4: 0x6581, 0x10b5: 0x6599, -	0x10b6: 0x4325, 0x10b7: 0x65b1, 0x10b8: 0x65c9, 0x10b9: 0x65b1, 0x10ba: 0x65e1, 0x10bb: 0x65f9, -	0x10bc: 0x4345, 0x10bd: 0x6611, 0x10be: 0x6629, 0x10bf: 0x6611, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0x4365, 0x10c1: 0x4385, 0x10c2: 0x0040, 0x10c3: 0x6641, 0x10c4: 0x6659, 0x10c5: 0x6671, -	0x10c6: 0x6689, 0x10c7: 0x0040, 0x10c8: 0x66c1, 0x10c9: 0x66d9, 0x10ca: 0x66f1, 0x10cb: 0x6709, -	0x10cc: 0x6721, 0x10cd: 0x6739, 0x10ce: 0x6401, 0x10cf: 0x6751, 0x10d0: 0x6769, 0x10d1: 0x6781, -	0x10d2: 0x43a5, 0x10d3: 0x6799, 0x10d4: 0x6289, 0x10d5: 0x43c5, 0x10d6: 0x43e5, 0x10d7: 0x67b1, -	0x10d8: 0x0040, 0x10d9: 0x4405, 0x10da: 0x67c9, 0x10db: 0x67e1, 0x10dc: 0x67f9, 0x10dd: 0x6811, -	0x10de: 0x6829, 0x10df: 0x6859, 0x10e0: 0x6889, 0x10e1: 0x68b1, 0x10e2: 0x68d9, 0x10e3: 0x6901, -	0x10e4: 0x6929, 0x10e5: 0x6951, 0x10e6: 0x6979, 0x10e7: 0x69a1, 0x10e8: 0x69c9, 0x10e9: 0x69f1, -	0x10ea: 0x6a21, 0x10eb: 0x6a51, 0x10ec: 0x6a81, 0x10ed: 0x6ab1, 0x10ee: 0x6ae1, 0x10ef: 0x6b11, -	0x10f0: 0x6b41, 0x10f1: 0x6b71, 0x10f2: 0x6ba1, 0x10f3: 0x6bd1, 0x10f4: 0x6c01, 0x10f5: 0x6c31, -	0x10f6: 0x6c61, 0x10f7: 0x6c91, 0x10f8: 0x6cc1, 0x10f9: 0x6cf1, 0x10fa: 0x6d21, 0x10fb: 0x6d51, -	0x10fc: 0x6d81, 0x10fd: 0x6db1, 0x10fe: 0x6de1, 0x10ff: 0x4425, -	// Block 0x44, offset 0x1100 -	0x1100: 0xe00d, 0x1101: 0x0008, 0x1102: 0xe00d, 0x1103: 0x0008, 0x1104: 0xe00d, 0x1105: 0x0008, -	0x1106: 0xe00d, 0x1107: 0x0008, 0x1108: 0xe00d, 0x1109: 0x0008, 0x110a: 0xe00d, 0x110b: 0x0008, -	0x110c: 0xe00d, 0x110d: 0x0008, 0x110e: 0xe00d, 0x110f: 0x0008, 0x1110: 0xe00d, 0x1111: 0x0008, -	0x1112: 0xe00d, 0x1113: 0x0008, 0x1114: 0xe00d, 0x1115: 0x0008, 0x1116: 0xe00d, 0x1117: 0x0008, -	0x1118: 0xe00d, 0x1119: 0x0008, 0x111a: 0xe00d, 0x111b: 0x0008, 0x111c: 0xe00d, 0x111d: 0x0008, -	0x111e: 0xe00d, 0x111f: 0x0008, 0x1120: 0xe00d, 0x1121: 0x0008, 0x1122: 0xe00d, 0x1123: 0x0008, -	0x1124: 0xe00d, 0x1125: 0x0008, 0x1126: 0xe00d, 0x1127: 0x0008, 0x1128: 0xe00d, 0x1129: 0x0008, -	0x112a: 0xe00d, 0x112b: 0x0008, 0x112c: 0xe00d, 0x112d: 0x0008, 0x112e: 0x0008, 0x112f: 0x3308, -	0x1130: 0x3318, 0x1131: 0x3318, 0x1132: 0x3318, 0x1133: 0x0018, 0x1134: 0x3308, 0x1135: 0x3308, -	0x1136: 0x3308, 0x1137: 0x3308, 0x1138: 0x3308, 0x1139: 0x3308, 0x113a: 0x3308, 0x113b: 0x3308, -	0x113c: 0x3308, 0x113d: 0x3308, 0x113e: 0x0018, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0xe00d, 0x1141: 0x0008, 0x1142: 0xe00d, 0x1143: 0x0008, 0x1144: 0xe00d, 0x1145: 0x0008, -	0x1146: 0xe00d, 0x1147: 0x0008, 0x1148: 0xe00d, 0x1149: 0x0008, 0x114a: 0xe00d, 0x114b: 0x0008, -	0x114c: 0xe00d, 0x114d: 0x0008, 0x114e: 0xe00d, 0x114f: 0x0008, 0x1150: 0xe00d, 0x1151: 0x0008, -	0x1152: 0xe00d, 0x1153: 0x0008, 0x1154: 0xe00d, 0x1155: 0x0008, 0x1156: 0xe00d, 0x1157: 0x0008, -	0x1158: 0xe00d, 0x1159: 0x0008, 0x115a: 0xe00d, 0x115b: 0x0008, 0x115c: 0x0ea1, 0x115d: 0x6e11, -	0x115e: 0x3308, 0x115f: 0x3308, 0x1160: 0x0008, 0x1161: 0x0008, 0x1162: 0x0008, 0x1163: 0x0008, -	0x1164: 0x0008, 0x1165: 0x0008, 0x1166: 0x0008, 0x1167: 0x0008, 0x1168: 0x0008, 0x1169: 0x0008, -	0x116a: 0x0008, 0x116b: 0x0008, 0x116c: 0x0008, 0x116d: 0x0008, 0x116e: 0x0008, 0x116f: 0x0008, -	0x1170: 0x0008, 0x1171: 0x0008, 0x1172: 0x0008, 0x1173: 0x0008, 0x1174: 0x0008, 0x1175: 0x0008, -	0x1176: 0x0008, 0x1177: 0x0008, 0x1178: 0x0008, 0x1179: 0x0008, 0x117a: 0x0008, 0x117b: 0x0008, -	0x117c: 0x0008, 0x117d: 0x0008, 0x117e: 0x0008, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0x0018, 0x1181: 0x0018, 0x1182: 0x0018, 0x1183: 0x0018, 0x1184: 0x0018, 0x1185: 0x0018, -	0x1186: 0x0018, 0x1187: 0x0018, 0x1188: 0x0018, 0x1189: 0x0018, 0x118a: 0x0018, 0x118b: 0x0018, -	0x118c: 0x0018, 0x118d: 0x0018, 0x118e: 0x0018, 0x118f: 0x0018, 0x1190: 0x0018, 0x1191: 0x0018, -	0x1192: 0x0018, 0x1193: 0x0018, 0x1194: 0x0018, 0x1195: 0x0018, 0x1196: 0x0018, 0x1197: 0x0008, -	0x1198: 0x0008, 0x1199: 0x0008, 0x119a: 0x0008, 0x119b: 0x0008, 0x119c: 0x0008, 0x119d: 0x0008, -	0x119e: 0x0008, 0x119f: 0x0008, 0x11a0: 0x0018, 0x11a1: 0x0018, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0xe00d, 0x11ab: 0x0008, 0x11ac: 0xe00d, 0x11ad: 0x0008, 0x11ae: 0xe00d, 0x11af: 0x0008, -	0x11b0: 0x0008, 0x11b1: 0x0008, 0x11b2: 0xe00d, 0x11b3: 0x0008, 0x11b4: 0xe00d, 0x11b5: 0x0008, -	0x11b6: 0xe00d, 0x11b7: 0x0008, 0x11b8: 0xe00d, 0x11b9: 0x0008, 0x11ba: 0xe00d, 0x11bb: 0x0008, -	0x11bc: 0xe00d, 0x11bd: 0x0008, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0xe00d, 0x11c1: 0x0008, 0x11c2: 0xe00d, 0x11c3: 0x0008, 0x11c4: 0xe00d, 0x11c5: 0x0008, -	0x11c6: 0xe00d, 0x11c7: 0x0008, 0x11c8: 0xe00d, 0x11c9: 0x0008, 0x11ca: 0xe00d, 0x11cb: 0x0008, -	0x11cc: 0xe00d, 0x11cd: 0x0008, 0x11ce: 0xe00d, 0x11cf: 0x0008, 0x11d0: 0xe00d, 0x11d1: 0x0008, -	0x11d2: 0xe00d, 0x11d3: 0x0008, 0x11d4: 0xe00d, 0x11d5: 0x0008, 0x11d6: 0xe00d, 0x11d7: 0x0008, -	0x11d8: 0xe00d, 0x11d9: 0x0008, 0x11da: 0xe00d, 0x11db: 0x0008, 0x11dc: 0xe00d, 0x11dd: 0x0008, -	0x11de: 0xe00d, 0x11df: 0x0008, 0x11e0: 0xe00d, 0x11e1: 0x0008, 0x11e2: 0xe00d, 0x11e3: 0x0008, -	0x11e4: 0xe00d, 0x11e5: 0x0008, 0x11e6: 0xe00d, 0x11e7: 0x0008, 0x11e8: 0xe00d, 0x11e9: 0x0008, -	0x11ea: 0xe00d, 0x11eb: 0x0008, 0x11ec: 0xe00d, 0x11ed: 0x0008, 0x11ee: 0xe00d, 0x11ef: 0x0008, -	0x11f0: 0xe0fd, 0x11f1: 0x0008, 0x11f2: 0x0008, 0x11f3: 0x0008, 0x11f4: 0x0008, 0x11f5: 0x0008, -	0x11f6: 0x0008, 0x11f7: 0x0008, 0x11f8: 0x0008, 0x11f9: 0xe01d, 0x11fa: 0x0008, 0x11fb: 0xe03d, -	0x11fc: 0x0008, 0x11fd: 0x4445, 0x11fe: 0xe00d, 0x11ff: 0x0008, -	// Block 0x48, offset 0x1200 -	0x1200: 0xe00d, 0x1201: 0x0008, 0x1202: 0xe00d, 0x1203: 0x0008, 0x1204: 0xe00d, 0x1205: 0x0008, -	0x1206: 0xe00d, 0x1207: 0x0008, 0x1208: 0x0008, 0x1209: 0x0018, 0x120a: 0x0018, 0x120b: 0xe03d, -	0x120c: 0x0008, 0x120d: 0x11d9, 0x120e: 0x0008, 0x120f: 0x0008, 0x1210: 0xe00d, 0x1211: 0x0008, -	0x1212: 0xe00d, 0x1213: 0x0008, 0x1214: 0x0008, 0x1215: 0x0008, 0x1216: 0xe00d, 0x1217: 0x0008, -	0x1218: 0xe00d, 0x1219: 0x0008, 0x121a: 0xe00d, 0x121b: 0x0008, 0x121c: 0xe00d, 0x121d: 0x0008, -	0x121e: 0xe00d, 0x121f: 0x0008, 0x1220: 0xe00d, 0x1221: 0x0008, 0x1222: 0xe00d, 0x1223: 0x0008, -	0x1224: 0xe00d, 0x1225: 0x0008, 0x1226: 0xe00d, 0x1227: 0x0008, 0x1228: 0xe00d, 0x1229: 0x0008, -	0x122a: 0x6e29, 0x122b: 0x1029, 0x122c: 0x11c1, 0x122d: 0x6e41, 0x122e: 0x1221, 0x122f: 0x0008, -	0x1230: 0x6e59, 0x1231: 0x6e71, 0x1232: 0x1239, 0x1233: 0x4465, 0x1234: 0xe00d, 0x1235: 0x0008, -	0x1236: 0xe00d, 0x1237: 0x0008, 0x1238: 0xe00d, 0x1239: 0x0008, 0x123a: 0xe00d, 0x123b: 0x0008, -	0x123c: 0xe00d, 0x123d: 0x0008, 0x123e: 0xe00d, 0x123f: 0x0008, -	// Block 0x49, offset 0x1240 -	0x1240: 0x650d, 0x1241: 0x652d, 0x1242: 0x654d, 0x1243: 0x656d, 0x1244: 0x658d, 0x1245: 0x65ad, -	0x1246: 0x65cd, 0x1247: 0x65ed, 0x1248: 0x660d, 0x1249: 0x662d, 0x124a: 0x664d, 0x124b: 0x666d, -	0x124c: 0x668d, 0x124d: 0x66ad, 0x124e: 0x0008, 0x124f: 0x0008, 0x1250: 0x66cd, 0x1251: 0x0008, -	0x1252: 0x66ed, 0x1253: 0x0008, 0x1254: 0x0008, 0x1255: 0x670d, 0x1256: 0x672d, 0x1257: 0x674d, -	0x1258: 0x676d, 0x1259: 0x678d, 0x125a: 0x67ad, 0x125b: 0x67cd, 0x125c: 0x67ed, 0x125d: 0x680d, -	0x125e: 0x682d, 0x125f: 0x0008, 0x1260: 0x684d, 0x1261: 0x0008, 0x1262: 0x686d, 0x1263: 0x0008, -	0x1264: 0x0008, 0x1265: 0x688d, 0x1266: 0x68ad, 0x1267: 0x0008, 0x1268: 0x0008, 0x1269: 0x0008, -	0x126a: 0x68cd, 0x126b: 0x68ed, 0x126c: 0x690d, 0x126d: 0x692d, 0x126e: 0x694d, 0x126f: 0x696d, -	0x1270: 0x698d, 0x1271: 0x69ad, 0x1272: 0x69cd, 0x1273: 0x69ed, 0x1274: 0x6a0d, 0x1275: 0x6a2d, -	0x1276: 0x6a4d, 0x1277: 0x6a6d, 0x1278: 0x6a8d, 0x1279: 0x6aad, 0x127a: 0x6acd, 0x127b: 0x6aed, -	0x127c: 0x6b0d, 0x127d: 0x6b2d, 0x127e: 0x6b4d, 0x127f: 0x6b6d, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x7acd, 0x1281: 0x7aed, 0x1282: 0x7b0d, 0x1283: 0x7b2d, 0x1284: 0x7b4d, 0x1285: 0x7b6d, -	0x1286: 0x7b8d, 0x1287: 0x7bad, 0x1288: 0x7bcd, 0x1289: 0x7bed, 0x128a: 0x7c0d, 0x128b: 0x7c2d, -	0x128c: 0x7c4d, 0x128d: 0x7c6d, 0x128e: 0x7c8d, 0x128f: 0x6ec9, 0x1290: 0x6ef1, 0x1291: 0x6f19, -	0x1292: 0x7cad, 0x1293: 0x7ccd, 0x1294: 0x7ced, 0x1295: 0x6f41, 0x1296: 0x6f69, 0x1297: 0x6f91, -	0x1298: 0x7d0d, 0x1299: 0x7d2d, 0x129a: 0x0040, 0x129b: 0x0040, 0x129c: 0x0040, 0x129d: 0x0040, -	0x129e: 0x0040, 0x129f: 0x0040, 0x12a0: 0x0040, 0x12a1: 0x0040, 0x12a2: 0x0040, 0x12a3: 0x0040, -	0x12a4: 0x0040, 0x12a5: 0x0040, 0x12a6: 0x0040, 0x12a7: 0x0040, 0x12a8: 0x0040, 0x12a9: 0x0040, -	0x12aa: 0x0040, 0x12ab: 0x0040, 0x12ac: 0x0040, 0x12ad: 0x0040, 0x12ae: 0x0040, 0x12af: 0x0040, -	0x12b0: 0x0040, 0x12b1: 0x0040, 0x12b2: 0x0040, 0x12b3: 0x0040, 0x12b4: 0x0040, 0x12b5: 0x0040, -	0x12b6: 0x0040, 0x12b7: 0x0040, 0x12b8: 0x0040, 0x12b9: 0x0040, 0x12ba: 0x0040, 0x12bb: 0x0040, -	0x12bc: 0x0040, 0x12bd: 0x0040, 0x12be: 0x0040, 0x12bf: 0x0040, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x6fb9, 0x12c1: 0x6fd1, 0x12c2: 0x6fe9, 0x12c3: 0x7d4d, 0x12c4: 0x7d6d, 0x12c5: 0x7001, -	0x12c6: 0x7001, 0x12c7: 0x0040, 0x12c8: 0x0040, 0x12c9: 0x0040, 0x12ca: 0x0040, 0x12cb: 0x0040, -	0x12cc: 0x0040, 0x12cd: 0x0040, 0x12ce: 0x0040, 0x12cf: 0x0040, 0x12d0: 0x0040, 0x12d1: 0x0040, -	0x12d2: 0x0040, 0x12d3: 0x7019, 0x12d4: 0x7041, 0x12d5: 0x7069, 0x12d6: 0x7091, 0x12d7: 0x70b9, -	0x12d8: 0x0040, 0x12d9: 0x0040, 0x12da: 0x0040, 0x12db: 0x0040, 0x12dc: 0x0040, 0x12dd: 0x70e1, -	0x12de: 0x3308, 0x12df: 0x7109, 0x12e0: 0x7131, 0x12e1: 0x20a9, 0x12e2: 0x20f1, 0x12e3: 0x7149, -	0x12e4: 0x7161, 0x12e5: 0x7179, 0x12e6: 0x7191, 0x12e7: 0x71a9, 0x12e8: 0x71c1, 0x12e9: 0x1fb2, -	0x12ea: 0x71d9, 0x12eb: 0x7201, 0x12ec: 0x7229, 0x12ed: 0x7261, 0x12ee: 0x7299, 0x12ef: 0x72c1, -	0x12f0: 0x72e9, 0x12f1: 0x7311, 0x12f2: 0x7339, 0x12f3: 0x7361, 0x12f4: 0x7389, 0x12f5: 0x73b1, -	0x12f6: 0x73d9, 0x12f7: 0x0040, 0x12f8: 0x7401, 0x12f9: 0x7429, 0x12fa: 0x7451, 0x12fb: 0x7479, -	0x12fc: 0x74a1, 0x12fd: 0x0040, 0x12fe: 0x74c9, 0x12ff: 0x0040, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x74f1, 0x1301: 0x7519, 0x1302: 0x0040, 0x1303: 0x7541, 0x1304: 0x7569, 0x1305: 0x0040, -	0x1306: 0x7591, 0x1307: 0x75b9, 0x1308: 0x75e1, 0x1309: 0x7609, 0x130a: 0x7631, 0x130b: 0x7659, -	0x130c: 0x7681, 0x130d: 0x76a9, 0x130e: 0x76d1, 0x130f: 0x76f9, 0x1310: 0x7721, 0x1311: 0x7721, -	0x1312: 0x7739, 0x1313: 0x7739, 0x1314: 0x7739, 0x1315: 0x7739, 0x1316: 0x7751, 0x1317: 0x7751, -	0x1318: 0x7751, 0x1319: 0x7751, 0x131a: 0x7769, 0x131b: 0x7769, 0x131c: 0x7769, 0x131d: 0x7769, -	0x131e: 0x7781, 0x131f: 0x7781, 0x1320: 0x7781, 0x1321: 0x7781, 0x1322: 0x7799, 0x1323: 0x7799, -	0x1324: 0x7799, 0x1325: 0x7799, 0x1326: 0x77b1, 0x1327: 0x77b1, 0x1328: 0x77b1, 0x1329: 0x77b1, -	0x132a: 0x77c9, 0x132b: 0x77c9, 0x132c: 0x77c9, 0x132d: 0x77c9, 0x132e: 0x77e1, 0x132f: 0x77e1, -	0x1330: 0x77e1, 0x1331: 0x77e1, 0x1332: 0x77f9, 0x1333: 0x77f9, 0x1334: 0x77f9, 0x1335: 0x77f9, -	0x1336: 0x7811, 0x1337: 0x7811, 0x1338: 0x7811, 0x1339: 0x7811, 0x133a: 0x7829, 0x133b: 0x7829, -	0x133c: 0x7829, 0x133d: 0x7829, 0x133e: 0x7841, 0x133f: 0x7841, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x7841, 0x1341: 0x7841, 0x1342: 0x7859, 0x1343: 0x7859, 0x1344: 0x7871, 0x1345: 0x7871, -	0x1346: 0x7889, 0x1347: 0x7889, 0x1348: 0x78a1, 0x1349: 0x78a1, 0x134a: 0x78b9, 0x134b: 0x78b9, -	0x134c: 0x78d1, 0x134d: 0x78d1, 0x134e: 0x78e9, 0x134f: 0x78e9, 0x1350: 0x78e9, 0x1351: 0x78e9, -	0x1352: 0x7901, 0x1353: 0x7901, 0x1354: 0x7901, 0x1355: 0x7901, 0x1356: 0x7919, 0x1357: 0x7919, -	0x1358: 0x7919, 0x1359: 0x7919, 0x135a: 0x7931, 0x135b: 0x7931, 0x135c: 0x7931, 0x135d: 0x7931, -	0x135e: 0x7949, 0x135f: 0x7949, 0x1360: 0x7961, 0x1361: 0x7961, 0x1362: 0x7961, 0x1363: 0x7961, -	0x1364: 0x7979, 0x1365: 0x7979, 0x1366: 0x7991, 0x1367: 0x7991, 0x1368: 0x7991, 0x1369: 0x7991, -	0x136a: 0x79a9, 0x136b: 0x79a9, 0x136c: 0x79a9, 0x136d: 0x79a9, 0x136e: 0x79c1, 0x136f: 0x79c1, -	0x1370: 0x79d9, 0x1371: 0x79d9, 0x1372: 0x0818, 0x1373: 0x0818, 0x1374: 0x0818, 0x1375: 0x0818, -	0x1376: 0x0818, 0x1377: 0x0818, 0x1378: 0x0818, 0x1379: 0x0818, 0x137a: 0x0818, 0x137b: 0x0818, -	0x137c: 0x0818, 0x137d: 0x0818, 0x137e: 0x0818, 0x137f: 0x0818, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x0818, 0x1381: 0x0818, 0x1382: 0x0040, 0x1383: 0x0040, 0x1384: 0x0040, 0x1385: 0x0040, -	0x1386: 0x0040, 0x1387: 0x0040, 0x1388: 0x0040, 0x1389: 0x0040, 0x138a: 0x0040, 0x138b: 0x0040, -	0x138c: 0x0040, 0x138d: 0x0040, 0x138e: 0x0040, 0x138f: 0x0040, 0x1390: 0x0040, 0x1391: 0x0040, -	0x1392: 0x0040, 0x1393: 0x79f1, 0x1394: 0x79f1, 0x1395: 0x79f1, 0x1396: 0x79f1, 0x1397: 0x7a09, -	0x1398: 0x7a09, 0x1399: 0x7a21, 0x139a: 0x7a21, 0x139b: 0x7a39, 0x139c: 0x7a39, 0x139d: 0x0479, -	0x139e: 0x7a51, 0x139f: 0x7a51, 0x13a0: 0x7a69, 0x13a1: 0x7a69, 0x13a2: 0x7a81, 0x13a3: 0x7a81, -	0x13a4: 0x7a99, 0x13a5: 0x7a99, 0x13a6: 0x7a99, 0x13a7: 0x7a99, 0x13a8: 0x7ab1, 0x13a9: 0x7ab1, -	0x13aa: 0x7ac9, 0x13ab: 0x7ac9, 0x13ac: 0x7af1, 0x13ad: 0x7af1, 0x13ae: 0x7b19, 0x13af: 0x7b19, -	0x13b0: 0x7b41, 0x13b1: 0x7b41, 0x13b2: 0x7b69, 0x13b3: 0x7b69, 0x13b4: 0x7b91, 0x13b5: 0x7b91, -	0x13b6: 0x7bb9, 0x13b7: 0x7bb9, 0x13b8: 0x7bb9, 0x13b9: 0x7be1, 0x13ba: 0x7be1, 0x13bb: 0x7be1, -	0x13bc: 0x7c09, 0x13bd: 0x7c09, 0x13be: 0x7c09, 0x13bf: 0x7c09, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x85f9, 0x13c1: 0x8621, 0x13c2: 0x8649, 0x13c3: 0x8671, 0x13c4: 0x8699, 0x13c5: 0x86c1, -	0x13c6: 0x86e9, 0x13c7: 0x8711, 0x13c8: 0x8739, 0x13c9: 0x8761, 0x13ca: 0x8789, 0x13cb: 0x87b1, -	0x13cc: 0x87d9, 0x13cd: 0x8801, 0x13ce: 0x8829, 0x13cf: 0x8851, 0x13d0: 0x8879, 0x13d1: 0x88a1, -	0x13d2: 0x88c9, 0x13d3: 0x88f1, 0x13d4: 0x8919, 0x13d5: 0x8941, 0x13d6: 0x8969, 0x13d7: 0x8991, -	0x13d8: 0x89b9, 0x13d9: 0x89e1, 0x13da: 0x8a09, 0x13db: 0x8a31, 0x13dc: 0x8a59, 0x13dd: 0x8a81, -	0x13de: 0x8aaa, 0x13df: 0x8ada, 0x13e0: 0x8b0a, 0x13e1: 0x8b3a, 0x13e2: 0x8b6a, 0x13e3: 0x8b9a, -	0x13e4: 0x8bc9, 0x13e5: 0x8bf1, 0x13e6: 0x7c71, 0x13e7: 0x8c19, 0x13e8: 0x7be1, 0x13e9: 0x7c99, -	0x13ea: 0x8c41, 0x13eb: 0x8c69, 0x13ec: 0x7d39, 0x13ed: 0x8c91, 0x13ee: 0x7d61, 0x13ef: 0x7d89, -	0x13f0: 0x8cb9, 0x13f1: 0x8ce1, 0x13f2: 0x7e29, 0x13f3: 0x8d09, 0x13f4: 0x7e51, 0x13f5: 0x7e79, -	0x13f6: 0x8d31, 0x13f7: 0x8d59, 0x13f8: 0x7ec9, 0x13f9: 0x8d81, 0x13fa: 0x7ef1, 0x13fb: 0x7f19, -	0x13fc: 0x83a1, 0x13fd: 0x83c9, 0x13fe: 0x8441, 0x13ff: 0x8469, -	// Block 0x50, offset 0x1400 -	0x1400: 0x8491, 0x1401: 0x8531, 0x1402: 0x8559, 0x1403: 0x8581, 0x1404: 0x85a9, 0x1405: 0x8649, -	0x1406: 0x8671, 0x1407: 0x8699, 0x1408: 0x8da9, 0x1409: 0x8739, 0x140a: 0x8dd1, 0x140b: 0x8df9, -	0x140c: 0x8829, 0x140d: 0x8e21, 0x140e: 0x8851, 0x140f: 0x8879, 0x1410: 0x8a81, 0x1411: 0x8e49, -	0x1412: 0x8e71, 0x1413: 0x89b9, 0x1414: 0x8e99, 0x1415: 0x89e1, 0x1416: 0x8a09, 0x1417: 0x7c21, -	0x1418: 0x7c49, 0x1419: 0x8ec1, 0x141a: 0x7c71, 0x141b: 0x8ee9, 0x141c: 0x7cc1, 0x141d: 0x7ce9, -	0x141e: 0x7d11, 0x141f: 0x7d39, 0x1420: 0x8f11, 0x1421: 0x7db1, 0x1422: 0x7dd9, 0x1423: 0x7e01, -	0x1424: 0x7e29, 0x1425: 0x8f39, 0x1426: 0x7ec9, 0x1427: 0x7f41, 0x1428: 0x7f69, 0x1429: 0x7f91, -	0x142a: 0x7fb9, 0x142b: 0x7fe1, 0x142c: 0x8031, 0x142d: 0x8059, 0x142e: 0x8081, 0x142f: 0x80a9, -	0x1430: 0x80d1, 0x1431: 0x80f9, 0x1432: 0x8f61, 0x1433: 0x8121, 0x1434: 0x8149, 0x1435: 0x8171, -	0x1436: 0x8199, 0x1437: 0x81c1, 0x1438: 0x81e9, 0x1439: 0x8239, 0x143a: 0x8261, 0x143b: 0x8289, -	0x143c: 0x82b1, 0x143d: 0x82d9, 0x143e: 0x8301, 0x143f: 0x8329, -	// Block 0x51, offset 0x1440 -	0x1440: 0x8351, 0x1441: 0x8379, 0x1442: 0x83f1, 0x1443: 0x8419, 0x1444: 0x84b9, 0x1445: 0x84e1, -	0x1446: 0x8509, 0x1447: 0x8531, 0x1448: 0x8559, 0x1449: 0x85d1, 0x144a: 0x85f9, 0x144b: 0x8621, -	0x144c: 0x8649, 0x144d: 0x8f89, 0x144e: 0x86c1, 0x144f: 0x86e9, 0x1450: 0x8711, 0x1451: 0x8739, -	0x1452: 0x87b1, 0x1453: 0x87d9, 0x1454: 0x8801, 0x1455: 0x8829, 0x1456: 0x8fb1, 0x1457: 0x88a1, -	0x1458: 0x88c9, 0x1459: 0x8fd9, 0x145a: 0x8941, 0x145b: 0x8969, 0x145c: 0x8991, 0x145d: 0x89b9, -	0x145e: 0x9001, 0x145f: 0x7c71, 0x1460: 0x8ee9, 0x1461: 0x7d39, 0x1462: 0x8f11, 0x1463: 0x7e29, -	0x1464: 0x8f39, 0x1465: 0x7ec9, 0x1466: 0x9029, 0x1467: 0x80d1, 0x1468: 0x9051, 0x1469: 0x9079, -	0x146a: 0x90a1, 0x146b: 0x8531, 0x146c: 0x8559, 0x146d: 0x8649, 0x146e: 0x8829, 0x146f: 0x8fb1, -	0x1470: 0x89b9, 0x1471: 0x9001, 0x1472: 0x90c9, 0x1473: 0x9101, 0x1474: 0x9139, 0x1475: 0x9171, -	0x1476: 0x9199, 0x1477: 0x91c1, 0x1478: 0x91e9, 0x1479: 0x9211, 0x147a: 0x9239, 0x147b: 0x9261, -	0x147c: 0x9289, 0x147d: 0x92b1, 0x147e: 0x92d9, 0x147f: 0x9301, -	// Block 0x52, offset 0x1480 -	0x1480: 0x9329, 0x1481: 0x9351, 0x1482: 0x9379, 0x1483: 0x93a1, 0x1484: 0x93c9, 0x1485: 0x93f1, -	0x1486: 0x9419, 0x1487: 0x9441, 0x1488: 0x9469, 0x1489: 0x9491, 0x148a: 0x94b9, 0x148b: 0x94e1, -	0x148c: 0x9079, 0x148d: 0x9509, 0x148e: 0x9531, 0x148f: 0x9559, 0x1490: 0x9581, 0x1491: 0x9171, -	0x1492: 0x9199, 0x1493: 0x91c1, 0x1494: 0x91e9, 0x1495: 0x9211, 0x1496: 0x9239, 0x1497: 0x9261, -	0x1498: 0x9289, 0x1499: 0x92b1, 0x149a: 0x92d9, 0x149b: 0x9301, 0x149c: 0x9329, 0x149d: 0x9351, -	0x149e: 0x9379, 0x149f: 0x93a1, 0x14a0: 0x93c9, 0x14a1: 0x93f1, 0x14a2: 0x9419, 0x14a3: 0x9441, -	0x14a4: 0x9469, 0x14a5: 0x9491, 0x14a6: 0x94b9, 0x14a7: 0x94e1, 0x14a8: 0x9079, 0x14a9: 0x9509, -	0x14aa: 0x9531, 0x14ab: 0x9559, 0x14ac: 0x9581, 0x14ad: 0x9491, 0x14ae: 0x94b9, 0x14af: 0x94e1, -	0x14b0: 0x9079, 0x14b1: 0x9051, 0x14b2: 0x90a1, 0x14b3: 0x8211, 0x14b4: 0x8059, 0x14b5: 0x8081, -	0x14b6: 0x80a9, 0x14b7: 0x9491, 0x14b8: 0x94b9, 0x14b9: 0x94e1, 0x14ba: 0x8211, 0x14bb: 0x8239, -	0x14bc: 0x95a9, 0x14bd: 0x95a9, 0x14be: 0x0018, 0x14bf: 0x0018, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0x0040, 0x14c1: 0x0040, 0x14c2: 0x0040, 0x14c3: 0x0040, 0x14c4: 0x0040, 0x14c5: 0x0040, -	0x14c6: 0x0040, 0x14c7: 0x0040, 0x14c8: 0x0040, 0x14c9: 0x0040, 0x14ca: 0x0040, 0x14cb: 0x0040, -	0x14cc: 0x0040, 0x14cd: 0x0040, 0x14ce: 0x0040, 0x14cf: 0x0040, 0x14d0: 0x95d1, 0x14d1: 0x9609, -	0x14d2: 0x9609, 0x14d3: 0x9641, 0x14d4: 0x9679, 0x14d5: 0x96b1, 0x14d6: 0x96e9, 0x14d7: 0x9721, -	0x14d8: 0x9759, 0x14d9: 0x9759, 0x14da: 0x9791, 0x14db: 0x97c9, 0x14dc: 0x9801, 0x14dd: 0x9839, -	0x14de: 0x9871, 0x14df: 0x98a9, 0x14e0: 0x98a9, 0x14e1: 0x98e1, 0x14e2: 0x9919, 0x14e3: 0x9919, -	0x14e4: 0x9951, 0x14e5: 0x9951, 0x14e6: 0x9989, 0x14e7: 0x99c1, 0x14e8: 0x99c1, 0x14e9: 0x99f9, -	0x14ea: 0x9a31, 0x14eb: 0x9a31, 0x14ec: 0x9a69, 0x14ed: 0x9a69, 0x14ee: 0x9aa1, 0x14ef: 0x9ad9, -	0x14f0: 0x9ad9, 0x14f1: 0x9b11, 0x14f2: 0x9b11, 0x14f3: 0x9b49, 0x14f4: 0x9b81, 0x14f5: 0x9bb9, -	0x14f6: 0x9bf1, 0x14f7: 0x9bf1, 0x14f8: 0x9c29, 0x14f9: 0x9c61, 0x14fa: 0x9c99, 0x14fb: 0x9cd1, -	0x14fc: 0x9d09, 0x14fd: 0x9d09, 0x14fe: 0x9d41, 0x14ff: 0x9d79, -	// Block 0x54, offset 0x1500 -	0x1500: 0xa949, 0x1501: 0xa981, 0x1502: 0xa9b9, 0x1503: 0xa8a1, 0x1504: 0x9bb9, 0x1505: 0x9989, -	0x1506: 0xa9f1, 0x1507: 0xaa29, 0x1508: 0x0040, 0x1509: 0x0040, 0x150a: 0x0040, 0x150b: 0x0040, -	0x150c: 0x0040, 0x150d: 0x0040, 0x150e: 0x0040, 0x150f: 0x0040, 0x1510: 0x0040, 0x1511: 0x0040, -	0x1512: 0x0040, 0x1513: 0x0040, 0x1514: 0x0040, 0x1515: 0x0040, 0x1516: 0x0040, 0x1517: 0x0040, -	0x1518: 0x0040, 0x1519: 0x0040, 0x151a: 0x0040, 0x151b: 0x0040, 0x151c: 0x0040, 0x151d: 0x0040, -	0x151e: 0x0040, 0x151f: 0x0040, 0x1520: 0x0040, 0x1521: 0x0040, 0x1522: 0x0040, 0x1523: 0x0040, -	0x1524: 0x0040, 0x1525: 0x0040, 0x1526: 0x0040, 0x1527: 0x0040, 0x1528: 0x0040, 0x1529: 0x0040, -	0x152a: 0x0040, 0x152b: 0x0040, 0x152c: 0x0040, 0x152d: 0x0040, 0x152e: 0x0040, 0x152f: 0x0040, -	0x1530: 0xaa61, 0x1531: 0xaa99, 0x1532: 0xaad1, 0x1533: 0xab19, 0x1534: 0xab61, 0x1535: 0xaba9, -	0x1536: 0xabf1, 0x1537: 0xac39, 0x1538: 0xac81, 0x1539: 0xacc9, 0x153a: 0xad02, 0x153b: 0xae12, -	0x153c: 0xae91, 0x153d: 0x0018, 0x153e: 0x0040, 0x153f: 0x0040, -	// Block 0x55, offset 0x1540 -	0x1540: 0x33c0, 0x1541: 0x33c0, 0x1542: 0x33c0, 0x1543: 0x33c0, 0x1544: 0x33c0, 0x1545: 0x33c0, -	0x1546: 0x33c0, 0x1547: 0x33c0, 0x1548: 0x33c0, 0x1549: 0x33c0, 0x154a: 0x33c0, 0x154b: 0x33c0, -	0x154c: 0x33c0, 0x154d: 0x33c0, 0x154e: 0x33c0, 0x154f: 0x33c0, 0x1550: 0xaeda, 0x1551: 0x7d8d, -	0x1552: 0x0040, 0x1553: 0xaeea, 0x1554: 0x03c2, 0x1555: 0xaefa, 0x1556: 0xaf0a, 0x1557: 0x7dad, -	0x1558: 0x7dcd, 0x1559: 0x0040, 0x155a: 0x0040, 0x155b: 0x0040, 0x155c: 0x0040, 0x155d: 0x0040, -	0x155e: 0x0040, 0x155f: 0x0040, 0x1560: 0x3308, 0x1561: 0x3308, 0x1562: 0x3308, 0x1563: 0x3308, -	0x1564: 0x3308, 0x1565: 0x3308, 0x1566: 0x3308, 0x1567: 0x3308, 0x1568: 0x3308, 0x1569: 0x3308, -	0x156a: 0x3308, 0x156b: 0x3308, 0x156c: 0x3308, 0x156d: 0x3308, 0x156e: 0x3308, 0x156f: 0x3308, -	0x1570: 0x0040, 0x1571: 0x7ded, 0x1572: 0x7e0d, 0x1573: 0xaf1a, 0x1574: 0xaf1a, 0x1575: 0x1fd2, -	0x1576: 0x1fe2, 0x1577: 0xaf2a, 0x1578: 0xaf3a, 0x1579: 0x7e2d, 0x157a: 0x7e4d, 0x157b: 0x7e6d, -	0x157c: 0x7e2d, 0x157d: 0x7e8d, 0x157e: 0x7ead, 0x157f: 0x7e8d, -	// Block 0x56, offset 0x1580 -	0x1580: 0x7ecd, 0x1581: 0x7eed, 0x1582: 0x7f0d, 0x1583: 0x7eed, 0x1584: 0x7f2d, 0x1585: 0x0018, -	0x1586: 0x0018, 0x1587: 0xaf4a, 0x1588: 0xaf5a, 0x1589: 0x7f4e, 0x158a: 0x7f6e, 0x158b: 0x7f8e, -	0x158c: 0x7fae, 0x158d: 0xaf1a, 0x158e: 0xaf1a, 0x158f: 0xaf1a, 0x1590: 0xaeda, 0x1591: 0x7fcd, -	0x1592: 0x0040, 0x1593: 0x0040, 0x1594: 0x03c2, 0x1595: 0xaeea, 0x1596: 0xaf0a, 0x1597: 0xaefa, -	0x1598: 0x7fed, 0x1599: 0x1fd2, 0x159a: 0x1fe2, 0x159b: 0xaf2a, 0x159c: 0xaf3a, 0x159d: 0x7ecd, -	0x159e: 0x7f2d, 0x159f: 0xaf6a, 0x15a0: 0xaf7a, 0x15a1: 0xaf8a, 0x15a2: 0x1fb2, 0x15a3: 0xaf99, -	0x15a4: 0xafaa, 0x15a5: 0xafba, 0x15a6: 0x1fc2, 0x15a7: 0x0040, 0x15a8: 0xafca, 0x15a9: 0xafda, -	0x15aa: 0xafea, 0x15ab: 0xaffa, 0x15ac: 0x0040, 0x15ad: 0x0040, 0x15ae: 0x0040, 0x15af: 0x0040, -	0x15b0: 0x800e, 0x15b1: 0xb009, 0x15b2: 0x802e, 0x15b3: 0x0808, 0x15b4: 0x804e, 0x15b5: 0x0040, -	0x15b6: 0x806e, 0x15b7: 0xb031, 0x15b8: 0x808e, 0x15b9: 0xb059, 0x15ba: 0x80ae, 0x15bb: 0xb081, -	0x15bc: 0x80ce, 0x15bd: 0xb0a9, 0x15be: 0x80ee, 0x15bf: 0xb0d1, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0xb0f9, 0x15c1: 0xb111, 0x15c2: 0xb111, 0x15c3: 0xb129, 0x15c4: 0xb129, 0x15c5: 0xb141, -	0x15c6: 0xb141, 0x15c7: 0xb159, 0x15c8: 0xb159, 0x15c9: 0xb171, 0x15ca: 0xb171, 0x15cb: 0xb171, -	0x15cc: 0xb171, 0x15cd: 0xb189, 0x15ce: 0xb189, 0x15cf: 0xb1a1, 0x15d0: 0xb1a1, 0x15d1: 0xb1a1, -	0x15d2: 0xb1a1, 0x15d3: 0xb1b9, 0x15d4: 0xb1b9, 0x15d5: 0xb1d1, 0x15d6: 0xb1d1, 0x15d7: 0xb1d1, -	0x15d8: 0xb1d1, 0x15d9: 0xb1e9, 0x15da: 0xb1e9, 0x15db: 0xb1e9, 0x15dc: 0xb1e9, 0x15dd: 0xb201, -	0x15de: 0xb201, 0x15df: 0xb201, 0x15e0: 0xb201, 0x15e1: 0xb219, 0x15e2: 0xb219, 0x15e3: 0xb219, -	0x15e4: 0xb219, 0x15e5: 0xb231, 0x15e6: 0xb231, 0x15e7: 0xb231, 0x15e8: 0xb231, 0x15e9: 0xb249, -	0x15ea: 0xb249, 0x15eb: 0xb261, 0x15ec: 0xb261, 0x15ed: 0xb279, 0x15ee: 0xb279, 0x15ef: 0xb291, -	0x15f0: 0xb291, 0x15f1: 0xb2a9, 0x15f2: 0xb2a9, 0x15f3: 0xb2a9, 0x15f4: 0xb2a9, 0x15f5: 0xb2c1, -	0x15f6: 0xb2c1, 0x15f7: 0xb2c1, 0x15f8: 0xb2c1, 0x15f9: 0xb2d9, 0x15fa: 0xb2d9, 0x15fb: 0xb2d9, -	0x15fc: 0xb2d9, 0x15fd: 0xb2f1, 0x15fe: 0xb2f1, 0x15ff: 0xb2f1, -	// Block 0x58, offset 0x1600 -	0x1600: 0xb2f1, 0x1601: 0xb309, 0x1602: 0xb309, 0x1603: 0xb309, 0x1604: 0xb309, 0x1605: 0xb321, -	0x1606: 0xb321, 0x1607: 0xb321, 0x1608: 0xb321, 0x1609: 0xb339, 0x160a: 0xb339, 0x160b: 0xb339, -	0x160c: 0xb339, 0x160d: 0xb351, 0x160e: 0xb351, 0x160f: 0xb351, 0x1610: 0xb351, 0x1611: 0xb369, -	0x1612: 0xb369, 0x1613: 0xb369, 0x1614: 0xb369, 0x1615: 0xb381, 0x1616: 0xb381, 0x1617: 0xb381, -	0x1618: 0xb381, 0x1619: 0xb399, 0x161a: 0xb399, 0x161b: 0xb399, 0x161c: 0xb399, 0x161d: 0xb3b1, -	0x161e: 0xb3b1, 0x161f: 0xb3b1, 0x1620: 0xb3b1, 0x1621: 0xb3c9, 0x1622: 0xb3c9, 0x1623: 0xb3c9, -	0x1624: 0xb3c9, 0x1625: 0xb3e1, 0x1626: 0xb3e1, 0x1627: 0xb3e1, 0x1628: 0xb3e1, 0x1629: 0xb3f9, -	0x162a: 0xb3f9, 0x162b: 0xb3f9, 0x162c: 0xb3f9, 0x162d: 0xb411, 0x162e: 0xb411, 0x162f: 0x7ab1, -	0x1630: 0x7ab1, 0x1631: 0xb429, 0x1632: 0xb429, 0x1633: 0xb429, 0x1634: 0xb429, 0x1635: 0xb441, -	0x1636: 0xb441, 0x1637: 0xb469, 0x1638: 0xb469, 0x1639: 0xb491, 0x163a: 0xb491, 0x163b: 0xb4b9, -	0x163c: 0xb4b9, 0x163d: 0x0040, 0x163e: 0x0040, 0x163f: 0x03c0, -	// Block 0x59, offset 0x1640 -	0x1640: 0x0040, 0x1641: 0xaefa, 0x1642: 0xb4e2, 0x1643: 0xaf6a, 0x1644: 0xafda, 0x1645: 0xafea, -	0x1646: 0xaf7a, 0x1647: 0xb4f2, 0x1648: 0x1fd2, 0x1649: 0x1fe2, 0x164a: 0xaf8a, 0x164b: 0x1fb2, -	0x164c: 0xaeda, 0x164d: 0xaf99, 0x164e: 0x29d1, 0x164f: 0xb502, 0x1650: 0x1f41, 0x1651: 0x00c9, -	0x1652: 0x0069, 0x1653: 0x0079, 0x1654: 0x1f51, 0x1655: 0x1f61, 0x1656: 0x1f71, 0x1657: 0x1f81, -	0x1658: 0x1f91, 0x1659: 0x1fa1, 0x165a: 0xaeea, 0x165b: 0x03c2, 0x165c: 0xafaa, 0x165d: 0x1fc2, -	0x165e: 0xafba, 0x165f: 0xaf0a, 0x1660: 0xaffa, 0x1661: 0x0039, 0x1662: 0x0ee9, 0x1663: 0x1159, -	0x1664: 0x0ef9, 0x1665: 0x0f09, 0x1666: 0x1199, 0x1667: 0x0f31, 0x1668: 0x0249, 0x1669: 0x0f41, -	0x166a: 0x0259, 0x166b: 0x0f51, 0x166c: 0x0359, 0x166d: 0x0f61, 0x166e: 0x0f71, 0x166f: 0x00d9, -	0x1670: 0x0f99, 0x1671: 0x2039, 0x1672: 0x0269, 0x1673: 0x01d9, 0x1674: 0x0fa9, 0x1675: 0x0fb9, -	0x1676: 0x1089, 0x1677: 0x0279, 0x1678: 0x0369, 0x1679: 0x0289, 0x167a: 0x13d1, 0x167b: 0xaf4a, -	0x167c: 0xafca, 0x167d: 0xaf5a, 0x167e: 0xb512, 0x167f: 0xaf1a, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x1caa, 0x1681: 0x0039, 0x1682: 0x0ee9, 0x1683: 0x1159, 0x1684: 0x0ef9, 0x1685: 0x0f09, -	0x1686: 0x1199, 0x1687: 0x0f31, 0x1688: 0x0249, 0x1689: 0x0f41, 0x168a: 0x0259, 0x168b: 0x0f51, -	0x168c: 0x0359, 0x168d: 0x0f61, 0x168e: 0x0f71, 0x168f: 0x00d9, 0x1690: 0x0f99, 0x1691: 0x2039, -	0x1692: 0x0269, 0x1693: 0x01d9, 0x1694: 0x0fa9, 0x1695: 0x0fb9, 0x1696: 0x1089, 0x1697: 0x0279, -	0x1698: 0x0369, 0x1699: 0x0289, 0x169a: 0x13d1, 0x169b: 0xaf2a, 0x169c: 0xb522, 0x169d: 0xaf3a, -	0x169e: 0xb532, 0x169f: 0x810d, 0x16a0: 0x812d, 0x16a1: 0x29d1, 0x16a2: 0x814d, 0x16a3: 0x814d, -	0x16a4: 0x816d, 0x16a5: 0x818d, 0x16a6: 0x81ad, 0x16a7: 0x81cd, 0x16a8: 0x81ed, 0x16a9: 0x820d, -	0x16aa: 0x822d, 0x16ab: 0x824d, 0x16ac: 0x826d, 0x16ad: 0x828d, 0x16ae: 0x82ad, 0x16af: 0x82cd, -	0x16b0: 0x82ed, 0x16b1: 0x830d, 0x16b2: 0x832d, 0x16b3: 0x834d, 0x16b4: 0x836d, 0x16b5: 0x838d, -	0x16b6: 0x83ad, 0x16b7: 0x83cd, 0x16b8: 0x83ed, 0x16b9: 0x840d, 0x16ba: 0x842d, 0x16bb: 0x844d, -	0x16bc: 0x81ed, 0x16bd: 0x846d, 0x16be: 0x848d, 0x16bf: 0x824d, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x84ad, 0x16c1: 0x84cd, 0x16c2: 0x84ed, 0x16c3: 0x850d, 0x16c4: 0x852d, 0x16c5: 0x854d, -	0x16c6: 0x856d, 0x16c7: 0x858d, 0x16c8: 0x850d, 0x16c9: 0x85ad, 0x16ca: 0x850d, 0x16cb: 0x85cd, -	0x16cc: 0x85cd, 0x16cd: 0x85ed, 0x16ce: 0x85ed, 0x16cf: 0x860d, 0x16d0: 0x854d, 0x16d1: 0x862d, -	0x16d2: 0x864d, 0x16d3: 0x862d, 0x16d4: 0x866d, 0x16d5: 0x864d, 0x16d6: 0x868d, 0x16d7: 0x868d, -	0x16d8: 0x86ad, 0x16d9: 0x86ad, 0x16da: 0x86cd, 0x16db: 0x86cd, 0x16dc: 0x864d, 0x16dd: 0x814d, -	0x16de: 0x86ed, 0x16df: 0x870d, 0x16e0: 0x0040, 0x16e1: 0x872d, 0x16e2: 0x874d, 0x16e3: 0x876d, -	0x16e4: 0x878d, 0x16e5: 0x876d, 0x16e6: 0x87ad, 0x16e7: 0x87cd, 0x16e8: 0x87ed, 0x16e9: 0x87ed, -	0x16ea: 0x880d, 0x16eb: 0x880d, 0x16ec: 0x882d, 0x16ed: 0x882d, 0x16ee: 0x880d, 0x16ef: 0x880d, -	0x16f0: 0x884d, 0x16f1: 0x886d, 0x16f2: 0x888d, 0x16f3: 0x88ad, 0x16f4: 0x88cd, 0x16f5: 0x88ed, -	0x16f6: 0x88ed, 0x16f7: 0x88ed, 0x16f8: 0x890d, 0x16f9: 0x890d, 0x16fa: 0x890d, 0x16fb: 0x890d, -	0x16fc: 0x87ed, 0x16fd: 0x87ed, 0x16fe: 0x87ed, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0040, 0x1701: 0x0040, 0x1702: 0x874d, 0x1703: 0x872d, 0x1704: 0x892d, 0x1705: 0x872d, -	0x1706: 0x874d, 0x1707: 0x872d, 0x1708: 0x0040, 0x1709: 0x0040, 0x170a: 0x894d, 0x170b: 0x874d, -	0x170c: 0x896d, 0x170d: 0x892d, 0x170e: 0x896d, 0x170f: 0x874d, 0x1710: 0x0040, 0x1711: 0x0040, -	0x1712: 0x898d, 0x1713: 0x89ad, 0x1714: 0x88ad, 0x1715: 0x896d, 0x1716: 0x892d, 0x1717: 0x896d, -	0x1718: 0x0040, 0x1719: 0x0040, 0x171a: 0x89cd, 0x171b: 0x89ed, 0x171c: 0x89cd, 0x171d: 0x0040, -	0x171e: 0x0040, 0x171f: 0x0040, 0x1720: 0xb541, 0x1721: 0xb559, 0x1722: 0xb571, 0x1723: 0x8a0e, -	0x1724: 0xb589, 0x1725: 0xb5a1, 0x1726: 0x8a2d, 0x1727: 0x0040, 0x1728: 0x8a4d, 0x1729: 0x8a6d, -	0x172a: 0x8a8d, 0x172b: 0x8a6d, 0x172c: 0x8aad, 0x172d: 0x8acd, 0x172e: 0x8aed, 0x172f: 0x0040, -	0x1730: 0x0040, 0x1731: 0x0040, 0x1732: 0x0040, 0x1733: 0x0040, 0x1734: 0x0040, 0x1735: 0x0040, -	0x1736: 0x0040, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0340, 0x173a: 0x0340, 0x173b: 0x0340, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x0a08, 0x1741: 0x0a08, 0x1742: 0x0a08, 0x1743: 0x0a08, 0x1744: 0x0a08, 0x1745: 0x0c08, -	0x1746: 0x0808, 0x1747: 0x0c08, 0x1748: 0x0818, 0x1749: 0x0c08, 0x174a: 0x0c08, 0x174b: 0x0808, -	0x174c: 0x0808, 0x174d: 0x0908, 0x174e: 0x0c08, 0x174f: 0x0c08, 0x1750: 0x0c08, 0x1751: 0x0c08, -	0x1752: 0x0c08, 0x1753: 0x0a08, 0x1754: 0x0a08, 0x1755: 0x0a08, 0x1756: 0x0a08, 0x1757: 0x0908, -	0x1758: 0x0a08, 0x1759: 0x0a08, 0x175a: 0x0a08, 0x175b: 0x0a08, 0x175c: 0x0a08, 0x175d: 0x0c08, -	0x175e: 0x0a08, 0x175f: 0x0a08, 0x1760: 0x0a08, 0x1761: 0x0c08, 0x1762: 0x0808, 0x1763: 0x0808, -	0x1764: 0x0c08, 0x1765: 0x3308, 0x1766: 0x3308, 0x1767: 0x0040, 0x1768: 0x0040, 0x1769: 0x0040, -	0x176a: 0x0040, 0x176b: 0x0a18, 0x176c: 0x0a18, 0x176d: 0x0a18, 0x176e: 0x0a18, 0x176f: 0x0c18, -	0x1770: 0x0818, 0x1771: 0x0818, 0x1772: 0x0818, 0x1773: 0x0818, 0x1774: 0x0818, 0x1775: 0x0818, -	0x1776: 0x0818, 0x1777: 0x0040, 0x1778: 0x0040, 0x1779: 0x0040, 0x177a: 0x0040, 0x177b: 0x0040, -	0x177c: 0x0040, 0x177d: 0x0040, 0x177e: 0x0040, 0x177f: 0x0040, -	// Block 0x5e, offset 0x1780 -	0x1780: 0x0a08, 0x1781: 0x0c08, 0x1782: 0x0a08, 0x1783: 0x0c08, 0x1784: 0x0c08, 0x1785: 0x0c08, -	0x1786: 0x0a08, 0x1787: 0x0a08, 0x1788: 0x0a08, 0x1789: 0x0c08, 0x178a: 0x0a08, 0x178b: 0x0a08, -	0x178c: 0x0c08, 0x178d: 0x0a08, 0x178e: 0x0c08, 0x178f: 0x0c08, 0x1790: 0x0a08, 0x1791: 0x0c08, -	0x1792: 0x0040, 0x1793: 0x0040, 0x1794: 0x0040, 0x1795: 0x0040, 0x1796: 0x0040, 0x1797: 0x0040, -	0x1798: 0x0040, 0x1799: 0x0818, 0x179a: 0x0818, 0x179b: 0x0818, 0x179c: 0x0818, 0x179d: 0x0040, -	0x179e: 0x0040, 0x179f: 0x0040, 0x17a0: 0x0040, 0x17a1: 0x0040, 0x17a2: 0x0040, 0x17a3: 0x0040, -	0x17a4: 0x0040, 0x17a5: 0x0040, 0x17a6: 0x0040, 0x17a7: 0x0040, 0x17a8: 0x0040, 0x17a9: 0x0c18, -	0x17aa: 0x0c18, 0x17ab: 0x0c18, 0x17ac: 0x0c18, 0x17ad: 0x0a18, 0x17ae: 0x0a18, 0x17af: 0x0818, -	0x17b0: 0x0040, 0x17b1: 0x0040, 0x17b2: 0x0040, 0x17b3: 0x0040, 0x17b4: 0x0040, 0x17b5: 0x0040, -	0x17b6: 0x0040, 0x17b7: 0x0040, 0x17b8: 0x0040, 0x17b9: 0x0040, 0x17ba: 0x0040, 0x17bb: 0x0040, -	0x17bc: 0x0040, 0x17bd: 0x0040, 0x17be: 0x0040, 0x17bf: 0x0040, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x3308, 0x17c1: 0x3308, 0x17c2: 0x3008, 0x17c3: 0x3008, 0x17c4: 0x0040, 0x17c5: 0x0008, -	0x17c6: 0x0008, 0x17c7: 0x0008, 0x17c8: 0x0008, 0x17c9: 0x0008, 0x17ca: 0x0008, 0x17cb: 0x0008, -	0x17cc: 0x0008, 0x17cd: 0x0040, 0x17ce: 0x0040, 0x17cf: 0x0008, 0x17d0: 0x0008, 0x17d1: 0x0040, -	0x17d2: 0x0040, 0x17d3: 0x0008, 0x17d4: 0x0008, 0x17d5: 0x0008, 0x17d6: 0x0008, 0x17d7: 0x0008, -	0x17d8: 0x0008, 0x17d9: 0x0008, 0x17da: 0x0008, 0x17db: 0x0008, 0x17dc: 0x0008, 0x17dd: 0x0008, -	0x17de: 0x0008, 0x17df: 0x0008, 0x17e0: 0x0008, 0x17e1: 0x0008, 0x17e2: 0x0008, 0x17e3: 0x0008, -	0x17e4: 0x0008, 0x17e5: 0x0008, 0x17e6: 0x0008, 0x17e7: 0x0008, 0x17e8: 0x0008, 0x17e9: 0x0040, -	0x17ea: 0x0008, 0x17eb: 0x0008, 0x17ec: 0x0008, 0x17ed: 0x0008, 0x17ee: 0x0008, 0x17ef: 0x0008, -	0x17f0: 0x0008, 0x17f1: 0x0040, 0x17f2: 0x0008, 0x17f3: 0x0008, 0x17f4: 0x0040, 0x17f5: 0x0008, -	0x17f6: 0x0008, 0x17f7: 0x0008, 0x17f8: 0x0008, 0x17f9: 0x0008, 0x17fa: 0x0040, 0x17fb: 0x3308, -	0x17fc: 0x3308, 0x17fd: 0x0008, 0x17fe: 0x3008, 0x17ff: 0x3008, -	// Block 0x60, offset 0x1800 -	0x1800: 0x3308, 0x1801: 0x3008, 0x1802: 0x3008, 0x1803: 0x3008, 0x1804: 0x3008, 0x1805: 0x0040, -	0x1806: 0x0040, 0x1807: 0x3008, 0x1808: 0x3008, 0x1809: 0x0040, 0x180a: 0x0040, 0x180b: 0x3008, -	0x180c: 0x3008, 0x180d: 0x3808, 0x180e: 0x0040, 0x180f: 0x0040, 0x1810: 0x0008, 0x1811: 0x0040, -	0x1812: 0x0040, 0x1813: 0x0040, 0x1814: 0x0040, 0x1815: 0x0040, 0x1816: 0x0040, 0x1817: 0x3008, -	0x1818: 0x0040, 0x1819: 0x0040, 0x181a: 0x0040, 0x181b: 0x0040, 0x181c: 0x0040, 0x181d: 0x0008, -	0x181e: 0x0008, 0x181f: 0x0008, 0x1820: 0x0008, 0x1821: 0x0008, 0x1822: 0x3008, 0x1823: 0x3008, -	0x1824: 0x0040, 0x1825: 0x0040, 0x1826: 0x3308, 0x1827: 0x3308, 0x1828: 0x3308, 0x1829: 0x3308, -	0x182a: 0x3308, 0x182b: 0x3308, 0x182c: 0x3308, 0x182d: 0x0040, 0x182e: 0x0040, 0x182f: 0x0040, -	0x1830: 0x3308, 0x1831: 0x3308, 0x1832: 0x3308, 0x1833: 0x3308, 0x1834: 0x3308, 0x1835: 0x0040, -	0x1836: 0x0040, 0x1837: 0x0040, 0x1838: 0x0040, 0x1839: 0x0040, 0x183a: 0x0040, 0x183b: 0x0040, -	0x183c: 0x0040, 0x183d: 0x0040, 0x183e: 0x0040, 0x183f: 0x0040, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0039, 0x1841: 0x0ee9, 0x1842: 0x1159, 0x1843: 0x0ef9, 0x1844: 0x0f09, 0x1845: 0x1199, -	0x1846: 0x0f31, 0x1847: 0x0249, 0x1848: 0x0f41, 0x1849: 0x0259, 0x184a: 0x0f51, 0x184b: 0x0359, -	0x184c: 0x0f61, 0x184d: 0x0f71, 0x184e: 0x00d9, 0x184f: 0x0f99, 0x1850: 0x2039, 0x1851: 0x0269, -	0x1852: 0x01d9, 0x1853: 0x0fa9, 0x1854: 0x0fb9, 0x1855: 0x1089, 0x1856: 0x0279, 0x1857: 0x0369, -	0x1858: 0x0289, 0x1859: 0x13d1, 0x185a: 0x0039, 0x185b: 0x0ee9, 0x185c: 0x1159, 0x185d: 0x0ef9, -	0x185e: 0x0f09, 0x185f: 0x1199, 0x1860: 0x0f31, 0x1861: 0x0249, 0x1862: 0x0f41, 0x1863: 0x0259, -	0x1864: 0x0f51, 0x1865: 0x0359, 0x1866: 0x0f61, 0x1867: 0x0f71, 0x1868: 0x00d9, 0x1869: 0x0f99, -	0x186a: 0x2039, 0x186b: 0x0269, 0x186c: 0x01d9, 0x186d: 0x0fa9, 0x186e: 0x0fb9, 0x186f: 0x1089, -	0x1870: 0x0279, 0x1871: 0x0369, 0x1872: 0x0289, 0x1873: 0x13d1, 0x1874: 0x0039, 0x1875: 0x0ee9, -	0x1876: 0x1159, 0x1877: 0x0ef9, 0x1878: 0x0f09, 0x1879: 0x1199, 0x187a: 0x0f31, 0x187b: 0x0249, -	0x187c: 0x0f41, 0x187d: 0x0259, 0x187e: 0x0f51, 0x187f: 0x0359, -	// Block 0x62, offset 0x1880 -	0x1880: 0x0f61, 0x1881: 0x0f71, 0x1882: 0x00d9, 0x1883: 0x0f99, 0x1884: 0x2039, 0x1885: 0x0269, -	0x1886: 0x01d9, 0x1887: 0x0fa9, 0x1888: 0x0fb9, 0x1889: 0x1089, 0x188a: 0x0279, 0x188b: 0x0369, -	0x188c: 0x0289, 0x188d: 0x13d1, 0x188e: 0x0039, 0x188f: 0x0ee9, 0x1890: 0x1159, 0x1891: 0x0ef9, -	0x1892: 0x0f09, 0x1893: 0x1199, 0x1894: 0x0f31, 0x1895: 0x0040, 0x1896: 0x0f41, 0x1897: 0x0259, -	0x1898: 0x0f51, 0x1899: 0x0359, 0x189a: 0x0f61, 0x189b: 0x0f71, 0x189c: 0x00d9, 0x189d: 0x0f99, -	0x189e: 0x2039, 0x189f: 0x0269, 0x18a0: 0x01d9, 0x18a1: 0x0fa9, 0x18a2: 0x0fb9, 0x18a3: 0x1089, -	0x18a4: 0x0279, 0x18a5: 0x0369, 0x18a6: 0x0289, 0x18a7: 0x13d1, 0x18a8: 0x0039, 0x18a9: 0x0ee9, -	0x18aa: 0x1159, 0x18ab: 0x0ef9, 0x18ac: 0x0f09, 0x18ad: 0x1199, 0x18ae: 0x0f31, 0x18af: 0x0249, -	0x18b0: 0x0f41, 0x18b1: 0x0259, 0x18b2: 0x0f51, 0x18b3: 0x0359, 0x18b4: 0x0f61, 0x18b5: 0x0f71, -	0x18b6: 0x00d9, 0x18b7: 0x0f99, 0x18b8: 0x2039, 0x18b9: 0x0269, 0x18ba: 0x01d9, 0x18bb: 0x0fa9, -	0x18bc: 0x0fb9, 0x18bd: 0x1089, 0x18be: 0x0279, 0x18bf: 0x0369, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x0289, 0x18c1: 0x13d1, 0x18c2: 0x0039, 0x18c3: 0x0ee9, 0x18c4: 0x1159, 0x18c5: 0x0ef9, -	0x18c6: 0x0f09, 0x18c7: 0x1199, 0x18c8: 0x0f31, 0x18c9: 0x0249, 0x18ca: 0x0f41, 0x18cb: 0x0259, -	0x18cc: 0x0f51, 0x18cd: 0x0359, 0x18ce: 0x0f61, 0x18cf: 0x0f71, 0x18d0: 0x00d9, 0x18d1: 0x0f99, -	0x18d2: 0x2039, 0x18d3: 0x0269, 0x18d4: 0x01d9, 0x18d5: 0x0fa9, 0x18d6: 0x0fb9, 0x18d7: 0x1089, -	0x18d8: 0x0279, 0x18d9: 0x0369, 0x18da: 0x0289, 0x18db: 0x13d1, 0x18dc: 0x0039, 0x18dd: 0x0040, -	0x18de: 0x1159, 0x18df: 0x0ef9, 0x18e0: 0x0040, 0x18e1: 0x0040, 0x18e2: 0x0f31, 0x18e3: 0x0040, -	0x18e4: 0x0040, 0x18e5: 0x0259, 0x18e6: 0x0f51, 0x18e7: 0x0040, 0x18e8: 0x0040, 0x18e9: 0x0f71, -	0x18ea: 0x00d9, 0x18eb: 0x0f99, 0x18ec: 0x2039, 0x18ed: 0x0040, 0x18ee: 0x01d9, 0x18ef: 0x0fa9, -	0x18f0: 0x0fb9, 0x18f1: 0x1089, 0x18f2: 0x0279, 0x18f3: 0x0369, 0x18f4: 0x0289, 0x18f5: 0x13d1, -	0x18f6: 0x0039, 0x18f7: 0x0ee9, 0x18f8: 0x1159, 0x18f9: 0x0ef9, 0x18fa: 0x0040, 0x18fb: 0x1199, -	0x18fc: 0x0040, 0x18fd: 0x0249, 0x18fe: 0x0f41, 0x18ff: 0x0259, -	// Block 0x64, offset 0x1900 -	0x1900: 0x0f51, 0x1901: 0x0359, 0x1902: 0x0f61, 0x1903: 0x0f71, 0x1904: 0x0040, 0x1905: 0x0f99, -	0x1906: 0x2039, 0x1907: 0x0269, 0x1908: 0x01d9, 0x1909: 0x0fa9, 0x190a: 0x0fb9, 0x190b: 0x1089, -	0x190c: 0x0279, 0x190d: 0x0369, 0x190e: 0x0289, 0x190f: 0x13d1, 0x1910: 0x0039, 0x1911: 0x0ee9, -	0x1912: 0x1159, 0x1913: 0x0ef9, 0x1914: 0x0f09, 0x1915: 0x1199, 0x1916: 0x0f31, 0x1917: 0x0249, -	0x1918: 0x0f41, 0x1919: 0x0259, 0x191a: 0x0f51, 0x191b: 0x0359, 0x191c: 0x0f61, 0x191d: 0x0f71, -	0x191e: 0x00d9, 0x191f: 0x0f99, 0x1920: 0x2039, 0x1921: 0x0269, 0x1922: 0x01d9, 0x1923: 0x0fa9, -	0x1924: 0x0fb9, 0x1925: 0x1089, 0x1926: 0x0279, 0x1927: 0x0369, 0x1928: 0x0289, 0x1929: 0x13d1, -	0x192a: 0x0039, 0x192b: 0x0ee9, 0x192c: 0x1159, 0x192d: 0x0ef9, 0x192e: 0x0f09, 0x192f: 0x1199, -	0x1930: 0x0f31, 0x1931: 0x0249, 0x1932: 0x0f41, 0x1933: 0x0259, 0x1934: 0x0f51, 0x1935: 0x0359, -	0x1936: 0x0f61, 0x1937: 0x0f71, 0x1938: 0x00d9, 0x1939: 0x0f99, 0x193a: 0x2039, 0x193b: 0x0269, -	0x193c: 0x01d9, 0x193d: 0x0fa9, 0x193e: 0x0fb9, 0x193f: 0x1089, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0279, 0x1941: 0x0369, 0x1942: 0x0289, 0x1943: 0x13d1, 0x1944: 0x0039, 0x1945: 0x0ee9, -	0x1946: 0x0040, 0x1947: 0x0ef9, 0x1948: 0x0f09, 0x1949: 0x1199, 0x194a: 0x0f31, 0x194b: 0x0040, -	0x194c: 0x0040, 0x194d: 0x0259, 0x194e: 0x0f51, 0x194f: 0x0359, 0x1950: 0x0f61, 0x1951: 0x0f71, -	0x1952: 0x00d9, 0x1953: 0x0f99, 0x1954: 0x2039, 0x1955: 0x0040, 0x1956: 0x01d9, 0x1957: 0x0fa9, -	0x1958: 0x0fb9, 0x1959: 0x1089, 0x195a: 0x0279, 0x195b: 0x0369, 0x195c: 0x0289, 0x195d: 0x0040, -	0x195e: 0x0039, 0x195f: 0x0ee9, 0x1960: 0x1159, 0x1961: 0x0ef9, 0x1962: 0x0f09, 0x1963: 0x1199, -	0x1964: 0x0f31, 0x1965: 0x0249, 0x1966: 0x0f41, 0x1967: 0x0259, 0x1968: 0x0f51, 0x1969: 0x0359, -	0x196a: 0x0f61, 0x196b: 0x0f71, 0x196c: 0x00d9, 0x196d: 0x0f99, 0x196e: 0x2039, 0x196f: 0x0269, -	0x1970: 0x01d9, 0x1971: 0x0fa9, 0x1972: 0x0fb9, 0x1973: 0x1089, 0x1974: 0x0279, 0x1975: 0x0369, -	0x1976: 0x0289, 0x1977: 0x13d1, 0x1978: 0x0039, 0x1979: 0x0ee9, 0x197a: 0x0040, 0x197b: 0x0ef9, -	0x197c: 0x0f09, 0x197d: 0x1199, 0x197e: 0x0f31, 0x197f: 0x0040, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0f41, 0x1981: 0x0259, 0x1982: 0x0f51, 0x1983: 0x0359, 0x1984: 0x0f61, 0x1985: 0x0040, -	0x1986: 0x00d9, 0x1987: 0x0040, 0x1988: 0x0040, 0x1989: 0x0040, 0x198a: 0x01d9, 0x198b: 0x0fa9, -	0x198c: 0x0fb9, 0x198d: 0x1089, 0x198e: 0x0279, 0x198f: 0x0369, 0x1990: 0x0289, 0x1991: 0x0040, -	0x1992: 0x0039, 0x1993: 0x0ee9, 0x1994: 0x1159, 0x1995: 0x0ef9, 0x1996: 0x0f09, 0x1997: 0x1199, -	0x1998: 0x0f31, 0x1999: 0x0249, 0x199a: 0x0f41, 0x199b: 0x0259, 0x199c: 0x0f51, 0x199d: 0x0359, -	0x199e: 0x0f61, 0x199f: 0x0f71, 0x19a0: 0x00d9, 0x19a1: 0x0f99, 0x19a2: 0x2039, 0x19a3: 0x0269, -	0x19a4: 0x01d9, 0x19a5: 0x0fa9, 0x19a6: 0x0fb9, 0x19a7: 0x1089, 0x19a8: 0x0279, 0x19a9: 0x0369, -	0x19aa: 0x0289, 0x19ab: 0x13d1, 0x19ac: 0x0039, 0x19ad: 0x0ee9, 0x19ae: 0x1159, 0x19af: 0x0ef9, -	0x19b0: 0x0f09, 0x19b1: 0x1199, 0x19b2: 0x0f31, 0x19b3: 0x0249, 0x19b4: 0x0f41, 0x19b5: 0x0259, -	0x19b6: 0x0f51, 0x19b7: 0x0359, 0x19b8: 0x0f61, 0x19b9: 0x0f71, 0x19ba: 0x00d9, 0x19bb: 0x0f99, -	0x19bc: 0x2039, 0x19bd: 0x0269, 0x19be: 0x01d9, 0x19bf: 0x0fa9, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x0fb9, 0x19c1: 0x1089, 0x19c2: 0x0279, 0x19c3: 0x0369, 0x19c4: 0x0289, 0x19c5: 0x13d1, -	0x19c6: 0x0039, 0x19c7: 0x0ee9, 0x19c8: 0x1159, 0x19c9: 0x0ef9, 0x19ca: 0x0f09, 0x19cb: 0x1199, -	0x19cc: 0x0f31, 0x19cd: 0x0249, 0x19ce: 0x0f41, 0x19cf: 0x0259, 0x19d0: 0x0f51, 0x19d1: 0x0359, -	0x19d2: 0x0f61, 0x19d3: 0x0f71, 0x19d4: 0x00d9, 0x19d5: 0x0f99, 0x19d6: 0x2039, 0x19d7: 0x0269, -	0x19d8: 0x01d9, 0x19d9: 0x0fa9, 0x19da: 0x0fb9, 0x19db: 0x1089, 0x19dc: 0x0279, 0x19dd: 0x0369, -	0x19de: 0x0289, 0x19df: 0x13d1, 0x19e0: 0x0039, 0x19e1: 0x0ee9, 0x19e2: 0x1159, 0x19e3: 0x0ef9, -	0x19e4: 0x0f09, 0x19e5: 0x1199, 0x19e6: 0x0f31, 0x19e7: 0x0249, 0x19e8: 0x0f41, 0x19e9: 0x0259, -	0x19ea: 0x0f51, 0x19eb: 0x0359, 0x19ec: 0x0f61, 0x19ed: 0x0f71, 0x19ee: 0x00d9, 0x19ef: 0x0f99, -	0x19f0: 0x2039, 0x19f1: 0x0269, 0x19f2: 0x01d9, 0x19f3: 0x0fa9, 0x19f4: 0x0fb9, 0x19f5: 0x1089, -	0x19f6: 0x0279, 0x19f7: 0x0369, 0x19f8: 0x0289, 0x19f9: 0x13d1, 0x19fa: 0x0039, 0x19fb: 0x0ee9, -	0x19fc: 0x1159, 0x19fd: 0x0ef9, 0x19fe: 0x0f09, 0x19ff: 0x1199, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x0f31, 0x1a01: 0x0249, 0x1a02: 0x0f41, 0x1a03: 0x0259, 0x1a04: 0x0f51, 0x1a05: 0x0359, -	0x1a06: 0x0f61, 0x1a07: 0x0f71, 0x1a08: 0x00d9, 0x1a09: 0x0f99, 0x1a0a: 0x2039, 0x1a0b: 0x0269, -	0x1a0c: 0x01d9, 0x1a0d: 0x0fa9, 0x1a0e: 0x0fb9, 0x1a0f: 0x1089, 0x1a10: 0x0279, 0x1a11: 0x0369, -	0x1a12: 0x0289, 0x1a13: 0x13d1, 0x1a14: 0x0039, 0x1a15: 0x0ee9, 0x1a16: 0x1159, 0x1a17: 0x0ef9, -	0x1a18: 0x0f09, 0x1a19: 0x1199, 0x1a1a: 0x0f31, 0x1a1b: 0x0249, 0x1a1c: 0x0f41, 0x1a1d: 0x0259, -	0x1a1e: 0x0f51, 0x1a1f: 0x0359, 0x1a20: 0x0f61, 0x1a21: 0x0f71, 0x1a22: 0x00d9, 0x1a23: 0x0f99, -	0x1a24: 0x2039, 0x1a25: 0x0269, 0x1a26: 0x01d9, 0x1a27: 0x0fa9, 0x1a28: 0x0fb9, 0x1a29: 0x1089, -	0x1a2a: 0x0279, 0x1a2b: 0x0369, 0x1a2c: 0x0289, 0x1a2d: 0x13d1, 0x1a2e: 0x0039, 0x1a2f: 0x0ee9, -	0x1a30: 0x1159, 0x1a31: 0x0ef9, 0x1a32: 0x0f09, 0x1a33: 0x1199, 0x1a34: 0x0f31, 0x1a35: 0x0249, -	0x1a36: 0x0f41, 0x1a37: 0x0259, 0x1a38: 0x0f51, 0x1a39: 0x0359, 0x1a3a: 0x0f61, 0x1a3b: 0x0f71, -	0x1a3c: 0x00d9, 0x1a3d: 0x0f99, 0x1a3e: 0x2039, 0x1a3f: 0x0269, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x01d9, 0x1a41: 0x0fa9, 0x1a42: 0x0fb9, 0x1a43: 0x1089, 0x1a44: 0x0279, 0x1a45: 0x0369, -	0x1a46: 0x0289, 0x1a47: 0x13d1, 0x1a48: 0x0039, 0x1a49: 0x0ee9, 0x1a4a: 0x1159, 0x1a4b: 0x0ef9, -	0x1a4c: 0x0f09, 0x1a4d: 0x1199, 0x1a4e: 0x0f31, 0x1a4f: 0x0249, 0x1a50: 0x0f41, 0x1a51: 0x0259, -	0x1a52: 0x0f51, 0x1a53: 0x0359, 0x1a54: 0x0f61, 0x1a55: 0x0f71, 0x1a56: 0x00d9, 0x1a57: 0x0f99, -	0x1a58: 0x2039, 0x1a59: 0x0269, 0x1a5a: 0x01d9, 0x1a5b: 0x0fa9, 0x1a5c: 0x0fb9, 0x1a5d: 0x1089, -	0x1a5e: 0x0279, 0x1a5f: 0x0369, 0x1a60: 0x0289, 0x1a61: 0x13d1, 0x1a62: 0x0039, 0x1a63: 0x0ee9, -	0x1a64: 0x1159, 0x1a65: 0x0ef9, 0x1a66: 0x0f09, 0x1a67: 0x1199, 0x1a68: 0x0f31, 0x1a69: 0x0249, -	0x1a6a: 0x0f41, 0x1a6b: 0x0259, 0x1a6c: 0x0f51, 0x1a6d: 0x0359, 0x1a6e: 0x0f61, 0x1a6f: 0x0f71, -	0x1a70: 0x00d9, 0x1a71: 0x0f99, 0x1a72: 0x2039, 0x1a73: 0x0269, 0x1a74: 0x01d9, 0x1a75: 0x0fa9, -	0x1a76: 0x0fb9, 0x1a77: 0x1089, 0x1a78: 0x0279, 0x1a79: 0x0369, 0x1a7a: 0x0289, 0x1a7b: 0x13d1, -	0x1a7c: 0x0039, 0x1a7d: 0x0ee9, 0x1a7e: 0x1159, 0x1a7f: 0x0ef9, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x0f09, 0x1a81: 0x1199, 0x1a82: 0x0f31, 0x1a83: 0x0249, 0x1a84: 0x0f41, 0x1a85: 0x0259, -	0x1a86: 0x0f51, 0x1a87: 0x0359, 0x1a88: 0x0f61, 0x1a89: 0x0f71, 0x1a8a: 0x00d9, 0x1a8b: 0x0f99, -	0x1a8c: 0x2039, 0x1a8d: 0x0269, 0x1a8e: 0x01d9, 0x1a8f: 0x0fa9, 0x1a90: 0x0fb9, 0x1a91: 0x1089, -	0x1a92: 0x0279, 0x1a93: 0x0369, 0x1a94: 0x0289, 0x1a95: 0x13d1, 0x1a96: 0x0039, 0x1a97: 0x0ee9, -	0x1a98: 0x1159, 0x1a99: 0x0ef9, 0x1a9a: 0x0f09, 0x1a9b: 0x1199, 0x1a9c: 0x0f31, 0x1a9d: 0x0249, -	0x1a9e: 0x0f41, 0x1a9f: 0x0259, 0x1aa0: 0x0f51, 0x1aa1: 0x0359, 0x1aa2: 0x0f61, 0x1aa3: 0x0f71, -	0x1aa4: 0x00d9, 0x1aa5: 0x0f99, 0x1aa6: 0x2039, 0x1aa7: 0x0269, 0x1aa8: 0x01d9, 0x1aa9: 0x0fa9, -	0x1aaa: 0x0fb9, 0x1aab: 0x1089, 0x1aac: 0x0279, 0x1aad: 0x0369, 0x1aae: 0x0289, 0x1aaf: 0x13d1, -	0x1ab0: 0x0039, 0x1ab1: 0x0ee9, 0x1ab2: 0x1159, 0x1ab3: 0x0ef9, 0x1ab4: 0x0f09, 0x1ab5: 0x1199, -	0x1ab6: 0x0f31, 0x1ab7: 0x0249, 0x1ab8: 0x0f41, 0x1ab9: 0x0259, 0x1aba: 0x0f51, 0x1abb: 0x0359, -	0x1abc: 0x0f61, 0x1abd: 0x0f71, 0x1abe: 0x00d9, 0x1abf: 0x0f99, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x2039, 0x1ac1: 0x0269, 0x1ac2: 0x01d9, 0x1ac3: 0x0fa9, 0x1ac4: 0x0fb9, 0x1ac5: 0x1089, -	0x1ac6: 0x0279, 0x1ac7: 0x0369, 0x1ac8: 0x0289, 0x1ac9: 0x13d1, 0x1aca: 0x0039, 0x1acb: 0x0ee9, -	0x1acc: 0x1159, 0x1acd: 0x0ef9, 0x1ace: 0x0f09, 0x1acf: 0x1199, 0x1ad0: 0x0f31, 0x1ad1: 0x0249, -	0x1ad2: 0x0f41, 0x1ad3: 0x0259, 0x1ad4: 0x0f51, 0x1ad5: 0x0359, 0x1ad6: 0x0f61, 0x1ad7: 0x0f71, -	0x1ad8: 0x00d9, 0x1ad9: 0x0f99, 0x1ada: 0x2039, 0x1adb: 0x0269, 0x1adc: 0x01d9, 0x1add: 0x0fa9, -	0x1ade: 0x0fb9, 0x1adf: 0x1089, 0x1ae0: 0x0279, 0x1ae1: 0x0369, 0x1ae2: 0x0289, 0x1ae3: 0x13d1, -	0x1ae4: 0xba81, 0x1ae5: 0xba99, 0x1ae6: 0x0040, 0x1ae7: 0x0040, 0x1ae8: 0xbab1, 0x1ae9: 0x1099, -	0x1aea: 0x10b1, 0x1aeb: 0x10c9, 0x1aec: 0xbac9, 0x1aed: 0xbae1, 0x1aee: 0xbaf9, 0x1aef: 0x1429, -	0x1af0: 0x1a31, 0x1af1: 0xbb11, 0x1af2: 0xbb29, 0x1af3: 0xbb41, 0x1af4: 0xbb59, 0x1af5: 0xbb71, -	0x1af6: 0xbb89, 0x1af7: 0x2109, 0x1af8: 0x1111, 0x1af9: 0x1429, 0x1afa: 0xbba1, 0x1afb: 0xbbb9, -	0x1afc: 0xbbd1, 0x1afd: 0x10e1, 0x1afe: 0x10f9, 0x1aff: 0xbbe9, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0x2079, 0x1b01: 0xbc01, 0x1b02: 0xbab1, 0x1b03: 0x1099, 0x1b04: 0x10b1, 0x1b05: 0x10c9, -	0x1b06: 0xbac9, 0x1b07: 0xbae1, 0x1b08: 0xbaf9, 0x1b09: 0x1429, 0x1b0a: 0x1a31, 0x1b0b: 0xbb11, -	0x1b0c: 0xbb29, 0x1b0d: 0xbb41, 0x1b0e: 0xbb59, 0x1b0f: 0xbb71, 0x1b10: 0xbb89, 0x1b11: 0x2109, -	0x1b12: 0x1111, 0x1b13: 0xbba1, 0x1b14: 0xbba1, 0x1b15: 0xbbb9, 0x1b16: 0xbbd1, 0x1b17: 0x10e1, -	0x1b18: 0x10f9, 0x1b19: 0xbbe9, 0x1b1a: 0x2079, 0x1b1b: 0xbc21, 0x1b1c: 0xbac9, 0x1b1d: 0x1429, -	0x1b1e: 0xbb11, 0x1b1f: 0x10e1, 0x1b20: 0x1111, 0x1b21: 0x2109, 0x1b22: 0xbab1, 0x1b23: 0x1099, -	0x1b24: 0x10b1, 0x1b25: 0x10c9, 0x1b26: 0xbac9, 0x1b27: 0xbae1, 0x1b28: 0xbaf9, 0x1b29: 0x1429, -	0x1b2a: 0x1a31, 0x1b2b: 0xbb11, 0x1b2c: 0xbb29, 0x1b2d: 0xbb41, 0x1b2e: 0xbb59, 0x1b2f: 0xbb71, -	0x1b30: 0xbb89, 0x1b31: 0x2109, 0x1b32: 0x1111, 0x1b33: 0x1429, 0x1b34: 0xbba1, 0x1b35: 0xbbb9, -	0x1b36: 0xbbd1, 0x1b37: 0x10e1, 0x1b38: 0x10f9, 0x1b39: 0xbbe9, 0x1b3a: 0x2079, 0x1b3b: 0xbc01, -	0x1b3c: 0xbab1, 0x1b3d: 0x1099, 0x1b3e: 0x10b1, 0x1b3f: 0x10c9, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0xbac9, 0x1b41: 0xbae1, 0x1b42: 0xbaf9, 0x1b43: 0x1429, 0x1b44: 0x1a31, 0x1b45: 0xbb11, -	0x1b46: 0xbb29, 0x1b47: 0xbb41, 0x1b48: 0xbb59, 0x1b49: 0xbb71, 0x1b4a: 0xbb89, 0x1b4b: 0x2109, -	0x1b4c: 0x1111, 0x1b4d: 0xbba1, 0x1b4e: 0xbba1, 0x1b4f: 0xbbb9, 0x1b50: 0xbbd1, 0x1b51: 0x10e1, -	0x1b52: 0x10f9, 0x1b53: 0xbbe9, 0x1b54: 0x2079, 0x1b55: 0xbc21, 0x1b56: 0xbac9, 0x1b57: 0x1429, -	0x1b58: 0xbb11, 0x1b59: 0x10e1, 0x1b5a: 0x1111, 0x1b5b: 0x2109, 0x1b5c: 0xbab1, 0x1b5d: 0x1099, -	0x1b5e: 0x10b1, 0x1b5f: 0x10c9, 0x1b60: 0xbac9, 0x1b61: 0xbae1, 0x1b62: 0xbaf9, 0x1b63: 0x1429, -	0x1b64: 0x1a31, 0x1b65: 0xbb11, 0x1b66: 0xbb29, 0x1b67: 0xbb41, 0x1b68: 0xbb59, 0x1b69: 0xbb71, -	0x1b6a: 0xbb89, 0x1b6b: 0x2109, 0x1b6c: 0x1111, 0x1b6d: 0x1429, 0x1b6e: 0xbba1, 0x1b6f: 0xbbb9, -	0x1b70: 0xbbd1, 0x1b71: 0x10e1, 0x1b72: 0x10f9, 0x1b73: 0xbbe9, 0x1b74: 0x2079, 0x1b75: 0xbc01, -	0x1b76: 0xbab1, 0x1b77: 0x1099, 0x1b78: 0x10b1, 0x1b79: 0x10c9, 0x1b7a: 0xbac9, 0x1b7b: 0xbae1, -	0x1b7c: 0xbaf9, 0x1b7d: 0x1429, 0x1b7e: 0x1a31, 0x1b7f: 0xbb11, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0xbb29, 0x1b81: 0xbb41, 0x1b82: 0xbb59, 0x1b83: 0xbb71, 0x1b84: 0xbb89, 0x1b85: 0x2109, -	0x1b86: 0x1111, 0x1b87: 0xbba1, 0x1b88: 0xbba1, 0x1b89: 0xbbb9, 0x1b8a: 0xbbd1, 0x1b8b: 0x10e1, -	0x1b8c: 0x10f9, 0x1b8d: 0xbbe9, 0x1b8e: 0x2079, 0x1b8f: 0xbc21, 0x1b90: 0xbac9, 0x1b91: 0x1429, -	0x1b92: 0xbb11, 0x1b93: 0x10e1, 0x1b94: 0x1111, 0x1b95: 0x2109, 0x1b96: 0xbab1, 0x1b97: 0x1099, -	0x1b98: 0x10b1, 0x1b99: 0x10c9, 0x1b9a: 0xbac9, 0x1b9b: 0xbae1, 0x1b9c: 0xbaf9, 0x1b9d: 0x1429, -	0x1b9e: 0x1a31, 0x1b9f: 0xbb11, 0x1ba0: 0xbb29, 0x1ba1: 0xbb41, 0x1ba2: 0xbb59, 0x1ba3: 0xbb71, -	0x1ba4: 0xbb89, 0x1ba5: 0x2109, 0x1ba6: 0x1111, 0x1ba7: 0x1429, 0x1ba8: 0xbba1, 0x1ba9: 0xbbb9, -	0x1baa: 0xbbd1, 0x1bab: 0x10e1, 0x1bac: 0x10f9, 0x1bad: 0xbbe9, 0x1bae: 0x2079, 0x1baf: 0xbc01, -	0x1bb0: 0xbab1, 0x1bb1: 0x1099, 0x1bb2: 0x10b1, 0x1bb3: 0x10c9, 0x1bb4: 0xbac9, 0x1bb5: 0xbae1, -	0x1bb6: 0xbaf9, 0x1bb7: 0x1429, 0x1bb8: 0x1a31, 0x1bb9: 0xbb11, 0x1bba: 0xbb29, 0x1bbb: 0xbb41, -	0x1bbc: 0xbb59, 0x1bbd: 0xbb71, 0x1bbe: 0xbb89, 0x1bbf: 0x2109, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x1111, 0x1bc1: 0xbba1, 0x1bc2: 0xbba1, 0x1bc3: 0xbbb9, 0x1bc4: 0xbbd1, 0x1bc5: 0x10e1, -	0x1bc6: 0x10f9, 0x1bc7: 0xbbe9, 0x1bc8: 0x2079, 0x1bc9: 0xbc21, 0x1bca: 0xbac9, 0x1bcb: 0x1429, -	0x1bcc: 0xbb11, 0x1bcd: 0x10e1, 0x1bce: 0x1111, 0x1bcf: 0x2109, 0x1bd0: 0xbab1, 0x1bd1: 0x1099, -	0x1bd2: 0x10b1, 0x1bd3: 0x10c9, 0x1bd4: 0xbac9, 0x1bd5: 0xbae1, 0x1bd6: 0xbaf9, 0x1bd7: 0x1429, -	0x1bd8: 0x1a31, 0x1bd9: 0xbb11, 0x1bda: 0xbb29, 0x1bdb: 0xbb41, 0x1bdc: 0xbb59, 0x1bdd: 0xbb71, -	0x1bde: 0xbb89, 0x1bdf: 0x2109, 0x1be0: 0x1111, 0x1be1: 0x1429, 0x1be2: 0xbba1, 0x1be3: 0xbbb9, -	0x1be4: 0xbbd1, 0x1be5: 0x10e1, 0x1be6: 0x10f9, 0x1be7: 0xbbe9, 0x1be8: 0x2079, 0x1be9: 0xbc01, -	0x1bea: 0xbab1, 0x1beb: 0x1099, 0x1bec: 0x10b1, 0x1bed: 0x10c9, 0x1bee: 0xbac9, 0x1bef: 0xbae1, -	0x1bf0: 0xbaf9, 0x1bf1: 0x1429, 0x1bf2: 0x1a31, 0x1bf3: 0xbb11, 0x1bf4: 0xbb29, 0x1bf5: 0xbb41, -	0x1bf6: 0xbb59, 0x1bf7: 0xbb71, 0x1bf8: 0xbb89, 0x1bf9: 0x2109, 0x1bfa: 0x1111, 0x1bfb: 0xbba1, -	0x1bfc: 0xbba1, 0x1bfd: 0xbbb9, 0x1bfe: 0xbbd1, 0x1bff: 0x10e1, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0x10f9, 0x1c01: 0xbbe9, 0x1c02: 0x2079, 0x1c03: 0xbc21, 0x1c04: 0xbac9, 0x1c05: 0x1429, -	0x1c06: 0xbb11, 0x1c07: 0x10e1, 0x1c08: 0x1111, 0x1c09: 0x2109, 0x1c0a: 0xbc41, 0x1c0b: 0xbc41, -	0x1c0c: 0x0040, 0x1c0d: 0x0040, 0x1c0e: 0x1f41, 0x1c0f: 0x00c9, 0x1c10: 0x0069, 0x1c11: 0x0079, -	0x1c12: 0x1f51, 0x1c13: 0x1f61, 0x1c14: 0x1f71, 0x1c15: 0x1f81, 0x1c16: 0x1f91, 0x1c17: 0x1fa1, -	0x1c18: 0x1f41, 0x1c19: 0x00c9, 0x1c1a: 0x0069, 0x1c1b: 0x0079, 0x1c1c: 0x1f51, 0x1c1d: 0x1f61, -	0x1c1e: 0x1f71, 0x1c1f: 0x1f81, 0x1c20: 0x1f91, 0x1c21: 0x1fa1, 0x1c22: 0x1f41, 0x1c23: 0x00c9, -	0x1c24: 0x0069, 0x1c25: 0x0079, 0x1c26: 0x1f51, 0x1c27: 0x1f61, 0x1c28: 0x1f71, 0x1c29: 0x1f81, -	0x1c2a: 0x1f91, 0x1c2b: 0x1fa1, 0x1c2c: 0x1f41, 0x1c2d: 0x00c9, 0x1c2e: 0x0069, 0x1c2f: 0x0079, -	0x1c30: 0x1f51, 0x1c31: 0x1f61, 0x1c32: 0x1f71, 0x1c33: 0x1f81, 0x1c34: 0x1f91, 0x1c35: 0x1fa1, -	0x1c36: 0x1f41, 0x1c37: 0x00c9, 0x1c38: 0x0069, 0x1c39: 0x0079, 0x1c3a: 0x1f51, 0x1c3b: 0x1f61, -	0x1c3c: 0x1f71, 0x1c3d: 0x1f81, 0x1c3e: 0x1f91, 0x1c3f: 0x1fa1, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0xe115, 0x1c41: 0xe115, 0x1c42: 0xe135, 0x1c43: 0xe135, 0x1c44: 0xe115, 0x1c45: 0xe115, -	0x1c46: 0xe175, 0x1c47: 0xe175, 0x1c48: 0xe115, 0x1c49: 0xe115, 0x1c4a: 0xe135, 0x1c4b: 0xe135, -	0x1c4c: 0xe115, 0x1c4d: 0xe115, 0x1c4e: 0xe1f5, 0x1c4f: 0xe1f5, 0x1c50: 0xe115, 0x1c51: 0xe115, -	0x1c52: 0xe135, 0x1c53: 0xe135, 0x1c54: 0xe115, 0x1c55: 0xe115, 0x1c56: 0xe175, 0x1c57: 0xe175, -	0x1c58: 0xe115, 0x1c59: 0xe115, 0x1c5a: 0xe135, 0x1c5b: 0xe135, 0x1c5c: 0xe115, 0x1c5d: 0xe115, -	0x1c5e: 0x8b3d, 0x1c5f: 0x8b3d, 0x1c60: 0x04b5, 0x1c61: 0x04b5, 0x1c62: 0x0a08, 0x1c63: 0x0a08, -	0x1c64: 0x0a08, 0x1c65: 0x0a08, 0x1c66: 0x0a08, 0x1c67: 0x0a08, 0x1c68: 0x0a08, 0x1c69: 0x0a08, -	0x1c6a: 0x0a08, 0x1c6b: 0x0a08, 0x1c6c: 0x0a08, 0x1c6d: 0x0a08, 0x1c6e: 0x0a08, 0x1c6f: 0x0a08, -	0x1c70: 0x0a08, 0x1c71: 0x0a08, 0x1c72: 0x0a08, 0x1c73: 0x0a08, 0x1c74: 0x0a08, 0x1c75: 0x0a08, -	0x1c76: 0x0a08, 0x1c77: 0x0a08, 0x1c78: 0x0a08, 0x1c79: 0x0a08, 0x1c7a: 0x0a08, 0x1c7b: 0x0a08, -	0x1c7c: 0x0a08, 0x1c7d: 0x0a08, 0x1c7e: 0x0a08, 0x1c7f: 0x0a08, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0xb189, 0x1c81: 0xb1a1, 0x1c82: 0xb201, 0x1c83: 0xb249, 0x1c84: 0x0040, 0x1c85: 0xb411, -	0x1c86: 0xb291, 0x1c87: 0xb219, 0x1c88: 0xb309, 0x1c89: 0xb429, 0x1c8a: 0xb399, 0x1c8b: 0xb3b1, -	0x1c8c: 0xb3c9, 0x1c8d: 0xb3e1, 0x1c8e: 0xb2a9, 0x1c8f: 0xb339, 0x1c90: 0xb369, 0x1c91: 0xb2d9, -	0x1c92: 0xb381, 0x1c93: 0xb279, 0x1c94: 0xb2c1, 0x1c95: 0xb1d1, 0x1c96: 0xb1e9, 0x1c97: 0xb231, -	0x1c98: 0xb261, 0x1c99: 0xb2f1, 0x1c9a: 0xb321, 0x1c9b: 0xb351, 0x1c9c: 0xbc59, 0x1c9d: 0x7949, -	0x1c9e: 0xbc71, 0x1c9f: 0xbc89, 0x1ca0: 0x0040, 0x1ca1: 0xb1a1, 0x1ca2: 0xb201, 0x1ca3: 0x0040, -	0x1ca4: 0xb3f9, 0x1ca5: 0x0040, 0x1ca6: 0x0040, 0x1ca7: 0xb219, 0x1ca8: 0x0040, 0x1ca9: 0xb429, -	0x1caa: 0xb399, 0x1cab: 0xb3b1, 0x1cac: 0xb3c9, 0x1cad: 0xb3e1, 0x1cae: 0xb2a9, 0x1caf: 0xb339, -	0x1cb0: 0xb369, 0x1cb1: 0xb2d9, 0x1cb2: 0xb381, 0x1cb3: 0x0040, 0x1cb4: 0xb2c1, 0x1cb5: 0xb1d1, -	0x1cb6: 0xb1e9, 0x1cb7: 0xb231, 0x1cb8: 0x0040, 0x1cb9: 0xb2f1, 0x1cba: 0x0040, 0x1cbb: 0xb351, -	0x1cbc: 0x0040, 0x1cbd: 0x0040, 0x1cbe: 0x0040, 0x1cbf: 0x0040, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0x0040, 0x1cc1: 0x0040, 0x1cc2: 0xb201, 0x1cc3: 0x0040, 0x1cc4: 0x0040, 0x1cc5: 0x0040, -	0x1cc6: 0x0040, 0x1cc7: 0xb219, 0x1cc8: 0x0040, 0x1cc9: 0xb429, 0x1cca: 0x0040, 0x1ccb: 0xb3b1, -	0x1ccc: 0x0040, 0x1ccd: 0xb3e1, 0x1cce: 0xb2a9, 0x1ccf: 0xb339, 0x1cd0: 0x0040, 0x1cd1: 0xb2d9, -	0x1cd2: 0xb381, 0x1cd3: 0x0040, 0x1cd4: 0xb2c1, 0x1cd5: 0x0040, 0x1cd6: 0x0040, 0x1cd7: 0xb231, -	0x1cd8: 0x0040, 0x1cd9: 0xb2f1, 0x1cda: 0x0040, 0x1cdb: 0xb351, 0x1cdc: 0x0040, 0x1cdd: 0x7949, -	0x1cde: 0x0040, 0x1cdf: 0xbc89, 0x1ce0: 0x0040, 0x1ce1: 0xb1a1, 0x1ce2: 0xb201, 0x1ce3: 0x0040, -	0x1ce4: 0xb3f9, 0x1ce5: 0x0040, 0x1ce6: 0x0040, 0x1ce7: 0xb219, 0x1ce8: 0xb309, 0x1ce9: 0xb429, -	0x1cea: 0xb399, 0x1ceb: 0x0040, 0x1cec: 0xb3c9, 0x1ced: 0xb3e1, 0x1cee: 0xb2a9, 0x1cef: 0xb339, -	0x1cf0: 0xb369, 0x1cf1: 0xb2d9, 0x1cf2: 0xb381, 0x1cf3: 0x0040, 0x1cf4: 0xb2c1, 0x1cf5: 0xb1d1, -	0x1cf6: 0xb1e9, 0x1cf7: 0xb231, 0x1cf8: 0x0040, 0x1cf9: 0xb2f1, 0x1cfa: 0xb321, 0x1cfb: 0xb351, -	0x1cfc: 0xbc59, 0x1cfd: 0x0040, 0x1cfe: 0xbc71, 0x1cff: 0x0040, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0xb189, 0x1d01: 0xb1a1, 0x1d02: 0xb201, 0x1d03: 0xb249, 0x1d04: 0xb3f9, 0x1d05: 0xb411, -	0x1d06: 0xb291, 0x1d07: 0xb219, 0x1d08: 0xb309, 0x1d09: 0xb429, 0x1d0a: 0x0040, 0x1d0b: 0xb3b1, -	0x1d0c: 0xb3c9, 0x1d0d: 0xb3e1, 0x1d0e: 0xb2a9, 0x1d0f: 0xb339, 0x1d10: 0xb369, 0x1d11: 0xb2d9, -	0x1d12: 0xb381, 0x1d13: 0xb279, 0x1d14: 0xb2c1, 0x1d15: 0xb1d1, 0x1d16: 0xb1e9, 0x1d17: 0xb231, -	0x1d18: 0xb261, 0x1d19: 0xb2f1, 0x1d1a: 0xb321, 0x1d1b: 0xb351, 0x1d1c: 0x0040, 0x1d1d: 0x0040, -	0x1d1e: 0x0040, 0x1d1f: 0x0040, 0x1d20: 0x0040, 0x1d21: 0xb1a1, 0x1d22: 0xb201, 0x1d23: 0xb249, -	0x1d24: 0x0040, 0x1d25: 0xb411, 0x1d26: 0xb291, 0x1d27: 0xb219, 0x1d28: 0xb309, 0x1d29: 0xb429, -	0x1d2a: 0x0040, 0x1d2b: 0xb3b1, 0x1d2c: 0xb3c9, 0x1d2d: 0xb3e1, 0x1d2e: 0xb2a9, 0x1d2f: 0xb339, -	0x1d30: 0xb369, 0x1d31: 0xb2d9, 0x1d32: 0xb381, 0x1d33: 0xb279, 0x1d34: 0xb2c1, 0x1d35: 0xb1d1, -	0x1d36: 0xb1e9, 0x1d37: 0xb231, 0x1d38: 0xb261, 0x1d39: 0xb2f1, 0x1d3a: 0xb321, 0x1d3b: 0xb351, -	0x1d3c: 0x0040, 0x1d3d: 0x0040, 0x1d3e: 0x0040, 0x1d3f: 0x0040, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x0040, 0x1d41: 0xbca2, 0x1d42: 0xbcba, 0x1d43: 0xbcd2, 0x1d44: 0xbcea, 0x1d45: 0xbd02, -	0x1d46: 0xbd1a, 0x1d47: 0xbd32, 0x1d48: 0xbd4a, 0x1d49: 0xbd62, 0x1d4a: 0xbd7a, 0x1d4b: 0x0018, -	0x1d4c: 0x0018, 0x1d4d: 0x0040, 0x1d4e: 0x0040, 0x1d4f: 0x0040, 0x1d50: 0xbd92, 0x1d51: 0xbdb2, -	0x1d52: 0xbdd2, 0x1d53: 0xbdf2, 0x1d54: 0xbe12, 0x1d55: 0xbe32, 0x1d56: 0xbe52, 0x1d57: 0xbe72, -	0x1d58: 0xbe92, 0x1d59: 0xbeb2, 0x1d5a: 0xbed2, 0x1d5b: 0xbef2, 0x1d5c: 0xbf12, 0x1d5d: 0xbf32, -	0x1d5e: 0xbf52, 0x1d5f: 0xbf72, 0x1d60: 0xbf92, 0x1d61: 0xbfb2, 0x1d62: 0xbfd2, 0x1d63: 0xbff2, -	0x1d64: 0xc012, 0x1d65: 0xc032, 0x1d66: 0xc052, 0x1d67: 0xc072, 0x1d68: 0xc092, 0x1d69: 0xc0b2, -	0x1d6a: 0xc0d1, 0x1d6b: 0x1159, 0x1d6c: 0x0269, 0x1d6d: 0x6671, 0x1d6e: 0xc111, 0x1d6f: 0x0018, -	0x1d70: 0x0039, 0x1d71: 0x0ee9, 0x1d72: 0x1159, 0x1d73: 0x0ef9, 0x1d74: 0x0f09, 0x1d75: 0x1199, -	0x1d76: 0x0f31, 0x1d77: 0x0249, 0x1d78: 0x0f41, 0x1d79: 0x0259, 0x1d7a: 0x0f51, 0x1d7b: 0x0359, -	0x1d7c: 0x0f61, 0x1d7d: 0x0f71, 0x1d7e: 0x00d9, 0x1d7f: 0x0f99, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0x2039, 0x1d81: 0x0269, 0x1d82: 0x01d9, 0x1d83: 0x0fa9, 0x1d84: 0x0fb9, 0x1d85: 0x1089, -	0x1d86: 0x0279, 0x1d87: 0x0369, 0x1d88: 0x0289, 0x1d89: 0x13d1, 0x1d8a: 0xc129, 0x1d8b: 0x65b1, -	0x1d8c: 0xc141, 0x1d8d: 0x1441, 0x1d8e: 0xc159, 0x1d8f: 0xc179, 0x1d90: 0x0018, 0x1d91: 0x0018, -	0x1d92: 0x0018, 0x1d93: 0x0018, 0x1d94: 0x0018, 0x1d95: 0x0018, 0x1d96: 0x0018, 0x1d97: 0x0018, -	0x1d98: 0x0018, 0x1d99: 0x0018, 0x1d9a: 0x0018, 0x1d9b: 0x0018, 0x1d9c: 0x0018, 0x1d9d: 0x0018, -	0x1d9e: 0x0018, 0x1d9f: 0x0018, 0x1da0: 0x0018, 0x1da1: 0x0018, 0x1da2: 0x0018, 0x1da3: 0x0018, -	0x1da4: 0x0018, 0x1da5: 0x0018, 0x1da6: 0x0018, 0x1da7: 0x0018, 0x1da8: 0x0018, 0x1da9: 0x0018, -	0x1daa: 0xc191, 0x1dab: 0xc1a9, 0x1dac: 0xc1c1, 0x1dad: 0x0040, 0x1dae: 0x0040, 0x1daf: 0x0040, -	0x1db0: 0x0018, 0x1db1: 0x0018, 0x1db2: 0x0018, 0x1db3: 0x0018, 0x1db4: 0x0018, 0x1db5: 0x0018, -	0x1db6: 0x0018, 0x1db7: 0x0018, 0x1db8: 0x0018, 0x1db9: 0x0018, 0x1dba: 0x0018, 0x1dbb: 0x0018, -	0x1dbc: 0x0018, 0x1dbd: 0x0018, 0x1dbe: 0x0018, 0x1dbf: 0x0018, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0xc1f1, 0x1dc1: 0xc229, 0x1dc2: 0xc261, 0x1dc3: 0x0040, 0x1dc4: 0x0040, 0x1dc5: 0x0040, -	0x1dc6: 0x0040, 0x1dc7: 0x0040, 0x1dc8: 0x0040, 0x1dc9: 0x0040, 0x1dca: 0x0040, 0x1dcb: 0x0040, -	0x1dcc: 0x0040, 0x1dcd: 0x0040, 0x1dce: 0x0040, 0x1dcf: 0x0040, 0x1dd0: 0xc281, 0x1dd1: 0xc2a1, -	0x1dd2: 0xc2c1, 0x1dd3: 0xc2e1, 0x1dd4: 0xc301, 0x1dd5: 0xc321, 0x1dd6: 0xc341, 0x1dd7: 0xc361, -	0x1dd8: 0xc381, 0x1dd9: 0xc3a1, 0x1dda: 0xc3c1, 0x1ddb: 0xc3e1, 0x1ddc: 0xc401, 0x1ddd: 0xc421, -	0x1dde: 0xc441, 0x1ddf: 0xc461, 0x1de0: 0xc481, 0x1de1: 0xc4a1, 0x1de2: 0xc4c1, 0x1de3: 0xc4e1, -	0x1de4: 0xc501, 0x1de5: 0xc521, 0x1de6: 0xc541, 0x1de7: 0xc561, 0x1de8: 0xc581, 0x1de9: 0xc5a1, -	0x1dea: 0xc5c1, 0x1deb: 0xc5e1, 0x1dec: 0xc601, 0x1ded: 0xc621, 0x1dee: 0xc641, 0x1def: 0xc661, -	0x1df0: 0xc681, 0x1df1: 0xc6a1, 0x1df2: 0xc6c1, 0x1df3: 0xc6e1, 0x1df4: 0xc701, 0x1df5: 0xc721, -	0x1df6: 0xc741, 0x1df7: 0xc761, 0x1df8: 0xc781, 0x1df9: 0xc7a1, 0x1dfa: 0xc7c1, 0x1dfb: 0xc7e1, -	0x1dfc: 0x0040, 0x1dfd: 0x0040, 0x1dfe: 0x0040, 0x1dff: 0x0040, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0xcb11, 0x1e01: 0xcb31, 0x1e02: 0xcb51, 0x1e03: 0x8b55, 0x1e04: 0xcb71, 0x1e05: 0xcb91, -	0x1e06: 0xcbb1, 0x1e07: 0xcbd1, 0x1e08: 0xcbf1, 0x1e09: 0xcc11, 0x1e0a: 0xcc31, 0x1e0b: 0xcc51, -	0x1e0c: 0xcc71, 0x1e0d: 0x8b75, 0x1e0e: 0xcc91, 0x1e0f: 0xccb1, 0x1e10: 0xccd1, 0x1e11: 0xccf1, -	0x1e12: 0x8b95, 0x1e13: 0xcd11, 0x1e14: 0xcd31, 0x1e15: 0xc441, 0x1e16: 0x8bb5, 0x1e17: 0xcd51, -	0x1e18: 0xcd71, 0x1e19: 0xcd91, 0x1e1a: 0xcdb1, 0x1e1b: 0xcdd1, 0x1e1c: 0x8bd5, 0x1e1d: 0xcdf1, -	0x1e1e: 0xce11, 0x1e1f: 0xce31, 0x1e20: 0xce51, 0x1e21: 0xce71, 0x1e22: 0xc7a1, 0x1e23: 0xce91, -	0x1e24: 0xceb1, 0x1e25: 0xced1, 0x1e26: 0xcef1, 0x1e27: 0xcf11, 0x1e28: 0xcf31, 0x1e29: 0xcf51, -	0x1e2a: 0xcf71, 0x1e2b: 0xcf91, 0x1e2c: 0xcfb1, 0x1e2d: 0xcfd1, 0x1e2e: 0xcff1, 0x1e2f: 0xd011, -	0x1e30: 0xd031, 0x1e31: 0xd051, 0x1e32: 0xd051, 0x1e33: 0xd051, 0x1e34: 0x8bf5, 0x1e35: 0xd071, -	0x1e36: 0xd091, 0x1e37: 0xd0b1, 0x1e38: 0x8c15, 0x1e39: 0xd0d1, 0x1e3a: 0xd0f1, 0x1e3b: 0xd111, -	0x1e3c: 0xd131, 0x1e3d: 0xd151, 0x1e3e: 0xd171, 0x1e3f: 0xd191, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0xd1b1, 0x1e41: 0xd1d1, 0x1e42: 0xd1f1, 0x1e43: 0xd211, 0x1e44: 0xd231, 0x1e45: 0xd251, -	0x1e46: 0xd251, 0x1e47: 0xd271, 0x1e48: 0xd291, 0x1e49: 0xd2b1, 0x1e4a: 0xd2d1, 0x1e4b: 0xd2f1, -	0x1e4c: 0xd311, 0x1e4d: 0xd331, 0x1e4e: 0xd351, 0x1e4f: 0xd371, 0x1e50: 0xd391, 0x1e51: 0xd3b1, -	0x1e52: 0xd3d1, 0x1e53: 0xd3f1, 0x1e54: 0xd411, 0x1e55: 0xd431, 0x1e56: 0xd451, 0x1e57: 0xd471, -	0x1e58: 0xd491, 0x1e59: 0x8c35, 0x1e5a: 0xd4b1, 0x1e5b: 0xd4d1, 0x1e5c: 0xd4f1, 0x1e5d: 0xc321, -	0x1e5e: 0xd511, 0x1e5f: 0xd531, 0x1e60: 0x8c55, 0x1e61: 0x8c75, 0x1e62: 0xd551, 0x1e63: 0xd571, -	0x1e64: 0xd591, 0x1e65: 0xd5b1, 0x1e66: 0xd5d1, 0x1e67: 0xd5f1, 0x1e68: 0x2040, 0x1e69: 0xd611, -	0x1e6a: 0xd631, 0x1e6b: 0xd631, 0x1e6c: 0x8c95, 0x1e6d: 0xd651, 0x1e6e: 0xd671, 0x1e6f: 0xd691, -	0x1e70: 0xd6b1, 0x1e71: 0x8cb5, 0x1e72: 0xd6d1, 0x1e73: 0xd6f1, 0x1e74: 0x2040, 0x1e75: 0xd711, -	0x1e76: 0xd731, 0x1e77: 0xd751, 0x1e78: 0xd771, 0x1e79: 0xd791, 0x1e7a: 0xd7b1, 0x1e7b: 0x8cd5, -	0x1e7c: 0xd7d1, 0x1e7d: 0x8cf5, 0x1e7e: 0xd7f1, 0x1e7f: 0xd811, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0xd831, 0x1e81: 0xd851, 0x1e82: 0xd871, 0x1e83: 0xd891, 0x1e84: 0xd8b1, 0x1e85: 0xd8d1, -	0x1e86: 0xd8f1, 0x1e87: 0xd911, 0x1e88: 0xd931, 0x1e89: 0x8d15, 0x1e8a: 0xd951, 0x1e8b: 0xd971, -	0x1e8c: 0xd991, 0x1e8d: 0xd9b1, 0x1e8e: 0xd9d1, 0x1e8f: 0x8d35, 0x1e90: 0xd9f1, 0x1e91: 0x8d55, -	0x1e92: 0x8d75, 0x1e93: 0xda11, 0x1e94: 0xda31, 0x1e95: 0xda31, 0x1e96: 0xda51, 0x1e97: 0x8d95, -	0x1e98: 0x8db5, 0x1e99: 0xda71, 0x1e9a: 0xda91, 0x1e9b: 0xdab1, 0x1e9c: 0xdad1, 0x1e9d: 0xdaf1, -	0x1e9e: 0xdb11, 0x1e9f: 0xdb31, 0x1ea0: 0xdb51, 0x1ea1: 0xdb71, 0x1ea2: 0xdb91, 0x1ea3: 0xdbb1, -	0x1ea4: 0x8dd5, 0x1ea5: 0xdbd1, 0x1ea6: 0xdbf1, 0x1ea7: 0xdc11, 0x1ea8: 0xdc31, 0x1ea9: 0xdc11, -	0x1eaa: 0xdc51, 0x1eab: 0xdc71, 0x1eac: 0xdc91, 0x1ead: 0xdcb1, 0x1eae: 0xdcd1, 0x1eaf: 0xdcf1, -	0x1eb0: 0xdd11, 0x1eb1: 0xdd31, 0x1eb2: 0xdd51, 0x1eb3: 0xdd71, 0x1eb4: 0xdd91, 0x1eb5: 0xddb1, -	0x1eb6: 0xddd1, 0x1eb7: 0xddf1, 0x1eb8: 0x8df5, 0x1eb9: 0xde11, 0x1eba: 0xde31, 0x1ebb: 0xde51, -	0x1ebc: 0xde71, 0x1ebd: 0xde91, 0x1ebe: 0x8e15, 0x1ebf: 0xdeb1, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0xe5b1, 0x1ec1: 0xe5d1, 0x1ec2: 0xe5f1, 0x1ec3: 0xe611, 0x1ec4: 0xe631, 0x1ec5: 0xe651, -	0x1ec6: 0x8f35, 0x1ec7: 0xe671, 0x1ec8: 0xe691, 0x1ec9: 0xe6b1, 0x1eca: 0xe6d1, 0x1ecb: 0xe6f1, -	0x1ecc: 0xe711, 0x1ecd: 0x8f55, 0x1ece: 0xe731, 0x1ecf: 0xe751, 0x1ed0: 0x8f75, 0x1ed1: 0x8f95, -	0x1ed2: 0xe771, 0x1ed3: 0xe791, 0x1ed4: 0xe7b1, 0x1ed5: 0xe7d1, 0x1ed6: 0xe7f1, 0x1ed7: 0xe811, -	0x1ed8: 0xe831, 0x1ed9: 0xe851, 0x1eda: 0xe871, 0x1edb: 0x8fb5, 0x1edc: 0xe891, 0x1edd: 0x8fd5, -	0x1ede: 0xe8b1, 0x1edf: 0x2040, 0x1ee0: 0xe8d1, 0x1ee1: 0xe8f1, 0x1ee2: 0xe911, 0x1ee3: 0x8ff5, -	0x1ee4: 0xe931, 0x1ee5: 0xe951, 0x1ee6: 0x9015, 0x1ee7: 0x9035, 0x1ee8: 0xe971, 0x1ee9: 0xe991, -	0x1eea: 0xe9b1, 0x1eeb: 0xe9d1, 0x1eec: 0xe9f1, 0x1eed: 0xe9f1, 0x1eee: 0xea11, 0x1eef: 0xea31, -	0x1ef0: 0xea51, 0x1ef1: 0xea71, 0x1ef2: 0xea91, 0x1ef3: 0xeab1, 0x1ef4: 0xead1, 0x1ef5: 0x9055, -	0x1ef6: 0xeaf1, 0x1ef7: 0x9075, 0x1ef8: 0xeb11, 0x1ef9: 0x9095, 0x1efa: 0xeb31, 0x1efb: 0x90b5, -	0x1efc: 0x90d5, 0x1efd: 0x90f5, 0x1efe: 0xeb51, 0x1eff: 0xeb71, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0xeb91, 0x1f01: 0x9115, 0x1f02: 0x9135, 0x1f03: 0x9155, 0x1f04: 0x9175, 0x1f05: 0xebb1, -	0x1f06: 0xebd1, 0x1f07: 0xebd1, 0x1f08: 0xebf1, 0x1f09: 0xec11, 0x1f0a: 0xec31, 0x1f0b: 0xec51, -	0x1f0c: 0xec71, 0x1f0d: 0x9195, 0x1f0e: 0xec91, 0x1f0f: 0xecb1, 0x1f10: 0xecd1, 0x1f11: 0xecf1, -	0x1f12: 0x91b5, 0x1f13: 0xed11, 0x1f14: 0x91d5, 0x1f15: 0x91f5, 0x1f16: 0xed31, 0x1f17: 0xed51, -	0x1f18: 0xed71, 0x1f19: 0xed91, 0x1f1a: 0xedb1, 0x1f1b: 0xedd1, 0x1f1c: 0x9215, 0x1f1d: 0x9235, -	0x1f1e: 0x9255, 0x1f1f: 0x2040, 0x1f20: 0xedf1, 0x1f21: 0x9275, 0x1f22: 0xee11, 0x1f23: 0xee31, -	0x1f24: 0xee51, 0x1f25: 0x9295, 0x1f26: 0xee71, 0x1f27: 0xee91, 0x1f28: 0xeeb1, 0x1f29: 0xeed1, -	0x1f2a: 0xeef1, 0x1f2b: 0x92b5, 0x1f2c: 0xef11, 0x1f2d: 0xef31, 0x1f2e: 0xef51, 0x1f2f: 0xef71, -	0x1f30: 0xef91, 0x1f31: 0xefb1, 0x1f32: 0x92d5, 0x1f33: 0x92f5, 0x1f34: 0xefd1, 0x1f35: 0x9315, -	0x1f36: 0xeff1, 0x1f37: 0x9335, 0x1f38: 0xf011, 0x1f39: 0xf031, 0x1f3a: 0xf051, 0x1f3b: 0x9355, -	0x1f3c: 0x9375, 0x1f3d: 0xf071, 0x1f3e: 0x9395, 0x1f3f: 0xf091, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0xf6d1, 0x1f41: 0xf6f1, 0x1f42: 0xf711, 0x1f43: 0xf731, 0x1f44: 0xf751, 0x1f45: 0x9555, -	0x1f46: 0xf771, 0x1f47: 0xf791, 0x1f48: 0xf7b1, 0x1f49: 0xf7d1, 0x1f4a: 0xf7f1, 0x1f4b: 0x9575, -	0x1f4c: 0x9595, 0x1f4d: 0xf811, 0x1f4e: 0xf831, 0x1f4f: 0xf851, 0x1f50: 0xf871, 0x1f51: 0xf891, -	0x1f52: 0xf8b1, 0x1f53: 0x95b5, 0x1f54: 0xf8d1, 0x1f55: 0xf8f1, 0x1f56: 0xf911, 0x1f57: 0xf931, -	0x1f58: 0x95d5, 0x1f59: 0x95f5, 0x1f5a: 0xf951, 0x1f5b: 0xf971, 0x1f5c: 0xf991, 0x1f5d: 0x9615, -	0x1f5e: 0xf9b1, 0x1f5f: 0xf9d1, 0x1f60: 0x684d, 0x1f61: 0x9635, 0x1f62: 0xf9f1, 0x1f63: 0xfa11, -	0x1f64: 0xfa31, 0x1f65: 0x9655, 0x1f66: 0xfa51, 0x1f67: 0xfa71, 0x1f68: 0xfa91, 0x1f69: 0xfab1, -	0x1f6a: 0xfad1, 0x1f6b: 0xfaf1, 0x1f6c: 0xfb11, 0x1f6d: 0x9675, 0x1f6e: 0xfb31, 0x1f6f: 0xfb51, -	0x1f70: 0xfb71, 0x1f71: 0x9695, 0x1f72: 0xfb91, 0x1f73: 0xfbb1, 0x1f74: 0xfbd1, 0x1f75: 0xfbf1, -	0x1f76: 0x7b6d, 0x1f77: 0x96b5, 0x1f78: 0xfc11, 0x1f79: 0xfc31, 0x1f7a: 0xfc51, 0x1f7b: 0x96d5, -	0x1f7c: 0xfc71, 0x1f7d: 0x96f5, 0x1f7e: 0xfc91, 0x1f7f: 0xfc91, -	// Block 0x7e, offset 0x1f80 -	0x1f80: 0xfcb1, 0x1f81: 0x9715, 0x1f82: 0xfcd1, 0x1f83: 0xfcf1, 0x1f84: 0xfd11, 0x1f85: 0xfd31, -	0x1f86: 0xfd51, 0x1f87: 0xfd71, 0x1f88: 0xfd91, 0x1f89: 0x9735, 0x1f8a: 0xfdb1, 0x1f8b: 0xfdd1, -	0x1f8c: 0xfdf1, 0x1f8d: 0xfe11, 0x1f8e: 0xfe31, 0x1f8f: 0xfe51, 0x1f90: 0x9755, 0x1f91: 0xfe71, -	0x1f92: 0x9775, 0x1f93: 0x9795, 0x1f94: 0x97b5, 0x1f95: 0xfe91, 0x1f96: 0xfeb1, 0x1f97: 0xfed1, -	0x1f98: 0xfef1, 0x1f99: 0xff11, 0x1f9a: 0xff31, 0x1f9b: 0xff51, 0x1f9c: 0xff71, 0x1f9d: 0x97d5, -	0x1f9e: 0x0040, 0x1f9f: 0x0040, 0x1fa0: 0x0040, 0x1fa1: 0x0040, 0x1fa2: 0x0040, 0x1fa3: 0x0040, -	0x1fa4: 0x0040, 0x1fa5: 0x0040, 0x1fa6: 0x0040, 0x1fa7: 0x0040, 0x1fa8: 0x0040, 0x1fa9: 0x0040, -	0x1faa: 0x0040, 0x1fab: 0x0040, 0x1fac: 0x0040, 0x1fad: 0x0040, 0x1fae: 0x0040, 0x1faf: 0x0040, -	0x1fb0: 0x0040, 0x1fb1: 0x0040, 0x1fb2: 0x0040, 0x1fb3: 0x0040, 0x1fb4: 0x0040, 0x1fb5: 0x0040, -	0x1fb6: 0x0040, 0x1fb7: 0x0040, 0x1fb8: 0x0040, 0x1fb9: 0x0040, 0x1fba: 0x0040, 0x1fbb: 0x0040, -	0x1fbc: 0x0040, 0x1fbd: 0x0040, 0x1fbe: 0x0040, 0x1fbf: 0x0040, -} - -// idnaIndex: 36 blocks, 2304 entries, 4608 bytes -// Block 0 is the zero block. -var idnaIndex = [2304]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x7d, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x7e, 0xca: 0x7f, 0xcb: 0x07, 0xcc: 0x80, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x81, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x82, 0xd6: 0x83, 0xd7: 0x84, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x85, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x86, 0xde: 0x87, 0xdf: 0x88, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x08, 0xea: 0x09, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x0a, 0xee: 0x0b, 0xef: 0x0c, -	0xf0: 0x1d, 0xf1: 0x1e, 0xf2: 0x1e, 0xf3: 0x20, 0xf4: 0x21, -	// Block 0x4, offset 0x100 -	0x120: 0x89, 0x121: 0x13, 0x122: 0x8a, 0x123: 0x8b, 0x124: 0x8c, 0x125: 0x14, 0x126: 0x15, 0x127: 0x16, -	0x128: 0x17, 0x129: 0x18, 0x12a: 0x19, 0x12b: 0x1a, 0x12c: 0x1b, 0x12d: 0x1c, 0x12e: 0x1d, 0x12f: 0x8d, -	0x130: 0x8e, 0x131: 0x1e, 0x132: 0x1f, 0x133: 0x20, 0x134: 0x8f, 0x135: 0x21, 0x136: 0x90, 0x137: 0x91, -	0x138: 0x92, 0x139: 0x93, 0x13a: 0x22, 0x13b: 0x94, 0x13c: 0x95, 0x13d: 0x23, 0x13e: 0x24, 0x13f: 0x96, -	// Block 0x5, offset 0x140 -	0x140: 0x97, 0x141: 0x98, 0x142: 0x99, 0x143: 0x9a, 0x144: 0x9b, 0x145: 0x9c, 0x146: 0x9d, 0x147: 0x9e, -	0x148: 0x9f, 0x149: 0xa0, 0x14a: 0xa1, 0x14b: 0xa2, 0x14c: 0xa3, 0x14d: 0xa4, 0x14e: 0xa5, 0x14f: 0xa6, -	0x150: 0xa7, 0x151: 0x9f, 0x152: 0x9f, 0x153: 0x9f, 0x154: 0x9f, 0x155: 0x9f, 0x156: 0x9f, 0x157: 0x9f, -	0x158: 0x9f, 0x159: 0xa8, 0x15a: 0xa9, 0x15b: 0xaa, 0x15c: 0xab, 0x15d: 0xac, 0x15e: 0xad, 0x15f: 0xae, -	0x160: 0xaf, 0x161: 0xb0, 0x162: 0xb1, 0x163: 0xb2, 0x164: 0xb3, 0x165: 0xb4, 0x166: 0xb5, 0x167: 0xb6, -	0x168: 0xb7, 0x169: 0xb8, 0x16a: 0xb9, 0x16b: 0xba, 0x16c: 0xbb, 0x16d: 0xbc, 0x16e: 0xbd, 0x16f: 0xbe, -	0x170: 0xbf, 0x171: 0xc0, 0x172: 0xc1, 0x173: 0xc2, 0x174: 0x25, 0x175: 0x26, 0x176: 0x27, 0x177: 0xc3, -	0x178: 0x28, 0x179: 0x28, 0x17a: 0x29, 0x17b: 0x28, 0x17c: 0xc4, 0x17d: 0x2a, 0x17e: 0x2b, 0x17f: 0x2c, -	// Block 0x6, offset 0x180 -	0x180: 0x2d, 0x181: 0x2e, 0x182: 0x2f, 0x183: 0xc5, 0x184: 0x30, 0x185: 0x31, 0x186: 0xc6, 0x187: 0x9b, -	0x188: 0xc7, 0x189: 0xc8, 0x18a: 0x9b, 0x18b: 0x9b, 0x18c: 0xc9, 0x18d: 0x9b, 0x18e: 0x9b, 0x18f: 0x9b, -	0x190: 0xca, 0x191: 0x32, 0x192: 0x33, 0x193: 0x34, 0x194: 0x9b, 0x195: 0x9b, 0x196: 0x9b, 0x197: 0x9b, -	0x198: 0x9b, 0x199: 0x9b, 0x19a: 0x9b, 0x19b: 0x9b, 0x19c: 0x9b, 0x19d: 0x9b, 0x19e: 0x9b, 0x19f: 0x9b, -	0x1a0: 0x9b, 0x1a1: 0x9b, 0x1a2: 0x9b, 0x1a3: 0x9b, 0x1a4: 0x9b, 0x1a5: 0x9b, 0x1a6: 0x9b, 0x1a7: 0x9b, -	0x1a8: 0xcb, 0x1a9: 0xcc, 0x1aa: 0x9b, 0x1ab: 0xcd, 0x1ac: 0x9b, 0x1ad: 0xce, 0x1ae: 0xcf, 0x1af: 0x9b, -	0x1b0: 0xd0, 0x1b1: 0x35, 0x1b2: 0x28, 0x1b3: 0x36, 0x1b4: 0xd1, 0x1b5: 0xd2, 0x1b6: 0xd3, 0x1b7: 0xd4, -	0x1b8: 0xd5, 0x1b9: 0xd6, 0x1ba: 0xd7, 0x1bb: 0xd8, 0x1bc: 0xd9, 0x1bd: 0xda, 0x1be: 0xdb, 0x1bf: 0x37, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x38, 0x1c1: 0xdc, 0x1c2: 0xdd, 0x1c3: 0xde, 0x1c4: 0xdf, 0x1c5: 0x39, 0x1c6: 0x3a, 0x1c7: 0xe0, -	0x1c8: 0xe1, 0x1c9: 0x3b, 0x1ca: 0x3c, 0x1cb: 0x3d, 0x1cc: 0x3e, 0x1cd: 0x3f, 0x1ce: 0x40, 0x1cf: 0x41, -	0x1d0: 0x9f, 0x1d1: 0x9f, 0x1d2: 0x9f, 0x1d3: 0x9f, 0x1d4: 0x9f, 0x1d5: 0x9f, 0x1d6: 0x9f, 0x1d7: 0x9f, -	0x1d8: 0x9f, 0x1d9: 0x9f, 0x1da: 0x9f, 0x1db: 0x9f, 0x1dc: 0x9f, 0x1dd: 0x9f, 0x1de: 0x9f, 0x1df: 0x9f, -	0x1e0: 0x9f, 0x1e1: 0x9f, 0x1e2: 0x9f, 0x1e3: 0x9f, 0x1e4: 0x9f, 0x1e5: 0x9f, 0x1e6: 0x9f, 0x1e7: 0x9f, -	0x1e8: 0x9f, 0x1e9: 0x9f, 0x1ea: 0x9f, 0x1eb: 0x9f, 0x1ec: 0x9f, 0x1ed: 0x9f, 0x1ee: 0x9f, 0x1ef: 0x9f, -	0x1f0: 0x9f, 0x1f1: 0x9f, 0x1f2: 0x9f, 0x1f3: 0x9f, 0x1f4: 0x9f, 0x1f5: 0x9f, 0x1f6: 0x9f, 0x1f7: 0x9f, -	0x1f8: 0x9f, 0x1f9: 0x9f, 0x1fa: 0x9f, 0x1fb: 0x9f, 0x1fc: 0x9f, 0x1fd: 0x9f, 0x1fe: 0x9f, 0x1ff: 0x9f, -	// Block 0x8, offset 0x200 -	0x200: 0x9f, 0x201: 0x9f, 0x202: 0x9f, 0x203: 0x9f, 0x204: 0x9f, 0x205: 0x9f, 0x206: 0x9f, 0x207: 0x9f, -	0x208: 0x9f, 0x209: 0x9f, 0x20a: 0x9f, 0x20b: 0x9f, 0x20c: 0x9f, 0x20d: 0x9f, 0x20e: 0x9f, 0x20f: 0x9f, -	0x210: 0x9f, 0x211: 0x9f, 0x212: 0x9f, 0x213: 0x9f, 0x214: 0x9f, 0x215: 0x9f, 0x216: 0x9f, 0x217: 0x9f, -	0x218: 0x9f, 0x219: 0x9f, 0x21a: 0x9f, 0x21b: 0x9f, 0x21c: 0x9f, 0x21d: 0x9f, 0x21e: 0x9f, 0x21f: 0x9f, -	0x220: 0x9f, 0x221: 0x9f, 0x222: 0x9f, 0x223: 0x9f, 0x224: 0x9f, 0x225: 0x9f, 0x226: 0x9f, 0x227: 0x9f, -	0x228: 0x9f, 0x229: 0x9f, 0x22a: 0x9f, 0x22b: 0x9f, 0x22c: 0x9f, 0x22d: 0x9f, 0x22e: 0x9f, 0x22f: 0x9f, -	0x230: 0x9f, 0x231: 0x9f, 0x232: 0x9f, 0x233: 0x9f, 0x234: 0x9f, 0x235: 0x9f, 0x236: 0xb2, 0x237: 0x9b, -	0x238: 0x9f, 0x239: 0x9f, 0x23a: 0x9f, 0x23b: 0x9f, 0x23c: 0x9f, 0x23d: 0x9f, 0x23e: 0x9f, 0x23f: 0x9f, -	// Block 0x9, offset 0x240 -	0x240: 0x9f, 0x241: 0x9f, 0x242: 0x9f, 0x243: 0x9f, 0x244: 0x9f, 0x245: 0x9f, 0x246: 0x9f, 0x247: 0x9f, -	0x248: 0x9f, 0x249: 0x9f, 0x24a: 0x9f, 0x24b: 0x9f, 0x24c: 0x9f, 0x24d: 0x9f, 0x24e: 0x9f, 0x24f: 0x9f, -	0x250: 0x9f, 0x251: 0x9f, 0x252: 0x9f, 0x253: 0x9f, 0x254: 0x9f, 0x255: 0x9f, 0x256: 0x9f, 0x257: 0x9f, -	0x258: 0x9f, 0x259: 0x9f, 0x25a: 0x9f, 0x25b: 0x9f, 0x25c: 0x9f, 0x25d: 0x9f, 0x25e: 0x9f, 0x25f: 0x9f, -	0x260: 0x9f, 0x261: 0x9f, 0x262: 0x9f, 0x263: 0x9f, 0x264: 0x9f, 0x265: 0x9f, 0x266: 0x9f, 0x267: 0x9f, -	0x268: 0x9f, 0x269: 0x9f, 0x26a: 0x9f, 0x26b: 0x9f, 0x26c: 0x9f, 0x26d: 0x9f, 0x26e: 0x9f, 0x26f: 0x9f, -	0x270: 0x9f, 0x271: 0x9f, 0x272: 0x9f, 0x273: 0x9f, 0x274: 0x9f, 0x275: 0x9f, 0x276: 0x9f, 0x277: 0x9f, -	0x278: 0x9f, 0x279: 0x9f, 0x27a: 0x9f, 0x27b: 0x9f, 0x27c: 0x9f, 0x27d: 0x9f, 0x27e: 0x9f, 0x27f: 0x9f, -	// Block 0xa, offset 0x280 -	0x280: 0x9f, 0x281: 0x9f, 0x282: 0x9f, 0x283: 0x9f, 0x284: 0x9f, 0x285: 0x9f, 0x286: 0x9f, 0x287: 0x9f, -	0x288: 0x9f, 0x289: 0x9f, 0x28a: 0x9f, 0x28b: 0x9f, 0x28c: 0x9f, 0x28d: 0x9f, 0x28e: 0x9f, 0x28f: 0x9f, -	0x290: 0x9f, 0x291: 0x9f, 0x292: 0x9f, 0x293: 0x9f, 0x294: 0x9f, 0x295: 0x9f, 0x296: 0x9f, 0x297: 0x9f, -	0x298: 0x9f, 0x299: 0x9f, 0x29a: 0x9f, 0x29b: 0x9f, 0x29c: 0x9f, 0x29d: 0x9f, 0x29e: 0x9f, 0x29f: 0x9f, -	0x2a0: 0x9f, 0x2a1: 0x9f, 0x2a2: 0x9f, 0x2a3: 0x9f, 0x2a4: 0x9f, 0x2a5: 0x9f, 0x2a6: 0x9f, 0x2a7: 0x9f, -	0x2a8: 0x9f, 0x2a9: 0x9f, 0x2aa: 0x9f, 0x2ab: 0x9f, 0x2ac: 0x9f, 0x2ad: 0x9f, 0x2ae: 0x9f, 0x2af: 0x9f, -	0x2b0: 0x9f, 0x2b1: 0x9f, 0x2b2: 0x9f, 0x2b3: 0x9f, 0x2b4: 0x9f, 0x2b5: 0x9f, 0x2b6: 0x9f, 0x2b7: 0x9f, -	0x2b8: 0x9f, 0x2b9: 0x9f, 0x2ba: 0x9f, 0x2bb: 0x9f, 0x2bc: 0x9f, 0x2bd: 0x9f, 0x2be: 0x9f, 0x2bf: 0xe2, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x9f, 0x2c1: 0x9f, 0x2c2: 0x9f, 0x2c3: 0x9f, 0x2c4: 0x9f, 0x2c5: 0x9f, 0x2c6: 0x9f, 0x2c7: 0x9f, -	0x2c8: 0x9f, 0x2c9: 0x9f, 0x2ca: 0x9f, 0x2cb: 0x9f, 0x2cc: 0x9f, 0x2cd: 0x9f, 0x2ce: 0x9f, 0x2cf: 0x9f, -	0x2d0: 0x9f, 0x2d1: 0x9f, 0x2d2: 0xe3, 0x2d3: 0xe4, 0x2d4: 0x9f, 0x2d5: 0x9f, 0x2d6: 0x9f, 0x2d7: 0x9f, -	0x2d8: 0xe5, 0x2d9: 0x42, 0x2da: 0x43, 0x2db: 0xe6, 0x2dc: 0x44, 0x2dd: 0x45, 0x2de: 0x46, 0x2df: 0xe7, -	0x2e0: 0xe8, 0x2e1: 0xe9, 0x2e2: 0xea, 0x2e3: 0xeb, 0x2e4: 0xec, 0x2e5: 0xed, 0x2e6: 0xee, 0x2e7: 0xef, -	0x2e8: 0xf0, 0x2e9: 0xf1, 0x2ea: 0xf2, 0x2eb: 0xf3, 0x2ec: 0xf4, 0x2ed: 0xf5, 0x2ee: 0xf6, 0x2ef: 0xf7, -	0x2f0: 0x9f, 0x2f1: 0x9f, 0x2f2: 0x9f, 0x2f3: 0x9f, 0x2f4: 0x9f, 0x2f5: 0x9f, 0x2f6: 0x9f, 0x2f7: 0x9f, -	0x2f8: 0x9f, 0x2f9: 0x9f, 0x2fa: 0x9f, 0x2fb: 0x9f, 0x2fc: 0x9f, 0x2fd: 0x9f, 0x2fe: 0x9f, 0x2ff: 0x9f, -	// Block 0xc, offset 0x300 -	0x300: 0x9f, 0x301: 0x9f, 0x302: 0x9f, 0x303: 0x9f, 0x304: 0x9f, 0x305: 0x9f, 0x306: 0x9f, 0x307: 0x9f, -	0x308: 0x9f, 0x309: 0x9f, 0x30a: 0x9f, 0x30b: 0x9f, 0x30c: 0x9f, 0x30d: 0x9f, 0x30e: 0x9f, 0x30f: 0x9f, -	0x310: 0x9f, 0x311: 0x9f, 0x312: 0x9f, 0x313: 0x9f, 0x314: 0x9f, 0x315: 0x9f, 0x316: 0x9f, 0x317: 0x9f, -	0x318: 0x9f, 0x319: 0x9f, 0x31a: 0x9f, 0x31b: 0x9f, 0x31c: 0x9f, 0x31d: 0x9f, 0x31e: 0xf8, 0x31f: 0xf9, -	// Block 0xd, offset 0x340 -	0x340: 0xba, 0x341: 0xba, 0x342: 0xba, 0x343: 0xba, 0x344: 0xba, 0x345: 0xba, 0x346: 0xba, 0x347: 0xba, -	0x348: 0xba, 0x349: 0xba, 0x34a: 0xba, 0x34b: 0xba, 0x34c: 0xba, 0x34d: 0xba, 0x34e: 0xba, 0x34f: 0xba, -	0x350: 0xba, 0x351: 0xba, 0x352: 0xba, 0x353: 0xba, 0x354: 0xba, 0x355: 0xba, 0x356: 0xba, 0x357: 0xba, -	0x358: 0xba, 0x359: 0xba, 0x35a: 0xba, 0x35b: 0xba, 0x35c: 0xba, 0x35d: 0xba, 0x35e: 0xba, 0x35f: 0xba, -	0x360: 0xba, 0x361: 0xba, 0x362: 0xba, 0x363: 0xba, 0x364: 0xba, 0x365: 0xba, 0x366: 0xba, 0x367: 0xba, -	0x368: 0xba, 0x369: 0xba, 0x36a: 0xba, 0x36b: 0xba, 0x36c: 0xba, 0x36d: 0xba, 0x36e: 0xba, 0x36f: 0xba, -	0x370: 0xba, 0x371: 0xba, 0x372: 0xba, 0x373: 0xba, 0x374: 0xba, 0x375: 0xba, 0x376: 0xba, 0x377: 0xba, -	0x378: 0xba, 0x379: 0xba, 0x37a: 0xba, 0x37b: 0xba, 0x37c: 0xba, 0x37d: 0xba, 0x37e: 0xba, 0x37f: 0xba, -	// Block 0xe, offset 0x380 -	0x380: 0xba, 0x381: 0xba, 0x382: 0xba, 0x383: 0xba, 0x384: 0xba, 0x385: 0xba, 0x386: 0xba, 0x387: 0xba, -	0x388: 0xba, 0x389: 0xba, 0x38a: 0xba, 0x38b: 0xba, 0x38c: 0xba, 0x38d: 0xba, 0x38e: 0xba, 0x38f: 0xba, -	0x390: 0xba, 0x391: 0xba, 0x392: 0xba, 0x393: 0xba, 0x394: 0xba, 0x395: 0xba, 0x396: 0xba, 0x397: 0xba, -	0x398: 0xba, 0x399: 0xba, 0x39a: 0xba, 0x39b: 0xba, 0x39c: 0xba, 0x39d: 0xba, 0x39e: 0xba, 0x39f: 0xba, -	0x3a0: 0xba, 0x3a1: 0xba, 0x3a2: 0xba, 0x3a3: 0xba, 0x3a4: 0xfa, 0x3a5: 0xfb, 0x3a6: 0xfc, 0x3a7: 0xfd, -	0x3a8: 0x47, 0x3a9: 0xfe, 0x3aa: 0xff, 0x3ab: 0x48, 0x3ac: 0x49, 0x3ad: 0x4a, 0x3ae: 0x4b, 0x3af: 0x4c, -	0x3b0: 0x100, 0x3b1: 0x4d, 0x3b2: 0x4e, 0x3b3: 0x4f, 0x3b4: 0x50, 0x3b5: 0x51, 0x3b6: 0x101, 0x3b7: 0x52, -	0x3b8: 0x53, 0x3b9: 0x54, 0x3ba: 0x55, 0x3bb: 0x56, 0x3bc: 0x57, 0x3bd: 0x58, 0x3be: 0x59, 0x3bf: 0x5a, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x102, 0x3c1: 0x103, 0x3c2: 0x9f, 0x3c3: 0x104, 0x3c4: 0x105, 0x3c5: 0x9b, 0x3c6: 0x106, 0x3c7: 0x107, -	0x3c8: 0xba, 0x3c9: 0xba, 0x3ca: 0x108, 0x3cb: 0x109, 0x3cc: 0x10a, 0x3cd: 0x10b, 0x3ce: 0x10c, 0x3cf: 0x10d, -	0x3d0: 0x10e, 0x3d1: 0x9f, 0x3d2: 0x10f, 0x3d3: 0x110, 0x3d4: 0x111, 0x3d5: 0x112, 0x3d6: 0xba, 0x3d7: 0xba, -	0x3d8: 0x9f, 0x3d9: 0x9f, 0x3da: 0x9f, 0x3db: 0x9f, 0x3dc: 0x113, 0x3dd: 0x114, 0x3de: 0xba, 0x3df: 0xba, -	0x3e0: 0x115, 0x3e1: 0x116, 0x3e2: 0x117, 0x3e3: 0x118, 0x3e4: 0x119, 0x3e5: 0xba, 0x3e6: 0x11a, 0x3e7: 0x11b, -	0x3e8: 0x11c, 0x3e9: 0x11d, 0x3ea: 0x11e, 0x3eb: 0x5b, 0x3ec: 0x11f, 0x3ed: 0x120, 0x3ee: 0x5c, 0x3ef: 0xba, -	0x3f0: 0x121, 0x3f1: 0x122, 0x3f2: 0x123, 0x3f3: 0x124, 0x3f4: 0x125, 0x3f5: 0xba, 0x3f6: 0xba, 0x3f7: 0xba, -	0x3f8: 0xba, 0x3f9: 0x126, 0x3fa: 0xba, 0x3fb: 0xba, 0x3fc: 0x127, 0x3fd: 0x128, 0x3fe: 0xba, 0x3ff: 0x129, -	// Block 0x10, offset 0x400 -	0x400: 0x12a, 0x401: 0x12b, 0x402: 0x12c, 0x403: 0x12d, 0x404: 0x12e, 0x405: 0x12f, 0x406: 0x130, 0x407: 0x131, -	0x408: 0x132, 0x409: 0xba, 0x40a: 0x133, 0x40b: 0x134, 0x40c: 0x5d, 0x40d: 0x5e, 0x40e: 0xba, 0x40f: 0xba, -	0x410: 0x135, 0x411: 0x136, 0x412: 0x137, 0x413: 0x138, 0x414: 0xba, 0x415: 0xba, 0x416: 0x139, 0x417: 0x13a, -	0x418: 0x13b, 0x419: 0x13c, 0x41a: 0x13d, 0x41b: 0x13e, 0x41c: 0x13f, 0x41d: 0xba, 0x41e: 0xba, 0x41f: 0xba, -	0x420: 0x140, 0x421: 0xba, 0x422: 0x141, 0x423: 0x142, 0x424: 0xba, 0x425: 0xba, 0x426: 0x143, 0x427: 0x144, -	0x428: 0x145, 0x429: 0x146, 0x42a: 0x147, 0x42b: 0x148, 0x42c: 0xba, 0x42d: 0xba, 0x42e: 0xba, 0x42f: 0xba, -	0x430: 0x149, 0x431: 0x14a, 0x432: 0x14b, 0x433: 0xba, 0x434: 0x14c, 0x435: 0x14d, 0x436: 0x14e, 0x437: 0xba, -	0x438: 0xba, 0x439: 0xba, 0x43a: 0xba, 0x43b: 0x14f, 0x43c: 0xba, 0x43d: 0xba, 0x43e: 0xba, 0x43f: 0x150, -	// Block 0x11, offset 0x440 -	0x440: 0x9f, 0x441: 0x9f, 0x442: 0x9f, 0x443: 0x9f, 0x444: 0x9f, 0x445: 0x9f, 0x446: 0x9f, 0x447: 0x9f, -	0x448: 0x9f, 0x449: 0x9f, 0x44a: 0x9f, 0x44b: 0x9f, 0x44c: 0x9f, 0x44d: 0x9f, 0x44e: 0x151, 0x44f: 0xba, -	0x450: 0x9b, 0x451: 0x152, 0x452: 0x9f, 0x453: 0x9f, 0x454: 0x9f, 0x455: 0x153, 0x456: 0xba, 0x457: 0xba, -	0x458: 0xba, 0x459: 0xba, 0x45a: 0xba, 0x45b: 0xba, 0x45c: 0xba, 0x45d: 0xba, 0x45e: 0xba, 0x45f: 0xba, -	0x460: 0xba, 0x461: 0xba, 0x462: 0xba, 0x463: 0xba, 0x464: 0xba, 0x465: 0xba, 0x466: 0xba, 0x467: 0xba, -	0x468: 0xba, 0x469: 0xba, 0x46a: 0xba, 0x46b: 0xba, 0x46c: 0xba, 0x46d: 0xba, 0x46e: 0xba, 0x46f: 0xba, -	0x470: 0xba, 0x471: 0xba, 0x472: 0xba, 0x473: 0xba, 0x474: 0xba, 0x475: 0xba, 0x476: 0xba, 0x477: 0xba, -	0x478: 0xba, 0x479: 0xba, 0x47a: 0xba, 0x47b: 0xba, 0x47c: 0xba, 0x47d: 0xba, 0x47e: 0xba, 0x47f: 0xba, -	// Block 0x12, offset 0x480 -	0x480: 0x9f, 0x481: 0x9f, 0x482: 0x9f, 0x483: 0x9f, 0x484: 0x9f, 0x485: 0x9f, 0x486: 0x9f, 0x487: 0x9f, -	0x488: 0x9f, 0x489: 0x9f, 0x48a: 0x9f, 0x48b: 0x9f, 0x48c: 0x9f, 0x48d: 0x9f, 0x48e: 0x9f, 0x48f: 0x9f, -	0x490: 0x154, 0x491: 0xba, 0x492: 0xba, 0x493: 0xba, 0x494: 0xba, 0x495: 0xba, 0x496: 0xba, 0x497: 0xba, -	0x498: 0xba, 0x499: 0xba, 0x49a: 0xba, 0x49b: 0xba, 0x49c: 0xba, 0x49d: 0xba, 0x49e: 0xba, 0x49f: 0xba, -	0x4a0: 0xba, 0x4a1: 0xba, 0x4a2: 0xba, 0x4a3: 0xba, 0x4a4: 0xba, 0x4a5: 0xba, 0x4a6: 0xba, 0x4a7: 0xba, -	0x4a8: 0xba, 0x4a9: 0xba, 0x4aa: 0xba, 0x4ab: 0xba, 0x4ac: 0xba, 0x4ad: 0xba, 0x4ae: 0xba, 0x4af: 0xba, -	0x4b0: 0xba, 0x4b1: 0xba, 0x4b2: 0xba, 0x4b3: 0xba, 0x4b4: 0xba, 0x4b5: 0xba, 0x4b6: 0xba, 0x4b7: 0xba, -	0x4b8: 0xba, 0x4b9: 0xba, 0x4ba: 0xba, 0x4bb: 0xba, 0x4bc: 0xba, 0x4bd: 0xba, 0x4be: 0xba, 0x4bf: 0xba, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0xba, 0x4c1: 0xba, 0x4c2: 0xba, 0x4c3: 0xba, 0x4c4: 0xba, 0x4c5: 0xba, 0x4c6: 0xba, 0x4c7: 0xba, -	0x4c8: 0xba, 0x4c9: 0xba, 0x4ca: 0xba, 0x4cb: 0xba, 0x4cc: 0xba, 0x4cd: 0xba, 0x4ce: 0xba, 0x4cf: 0xba, -	0x4d0: 0x9f, 0x4d1: 0x9f, 0x4d2: 0x9f, 0x4d3: 0x9f, 0x4d4: 0x9f, 0x4d5: 0x9f, 0x4d6: 0x9f, 0x4d7: 0x9f, -	0x4d8: 0x9f, 0x4d9: 0x155, 0x4da: 0xba, 0x4db: 0xba, 0x4dc: 0xba, 0x4dd: 0xba, 0x4de: 0xba, 0x4df: 0xba, -	0x4e0: 0xba, 0x4e1: 0xba, 0x4e2: 0xba, 0x4e3: 0xba, 0x4e4: 0xba, 0x4e5: 0xba, 0x4e6: 0xba, 0x4e7: 0xba, -	0x4e8: 0xba, 0x4e9: 0xba, 0x4ea: 0xba, 0x4eb: 0xba, 0x4ec: 0xba, 0x4ed: 0xba, 0x4ee: 0xba, 0x4ef: 0xba, -	0x4f0: 0xba, 0x4f1: 0xba, 0x4f2: 0xba, 0x4f3: 0xba, 0x4f4: 0xba, 0x4f5: 0xba, 0x4f6: 0xba, 0x4f7: 0xba, -	0x4f8: 0xba, 0x4f9: 0xba, 0x4fa: 0xba, 0x4fb: 0xba, 0x4fc: 0xba, 0x4fd: 0xba, 0x4fe: 0xba, 0x4ff: 0xba, -	// Block 0x14, offset 0x500 -	0x500: 0xba, 0x501: 0xba, 0x502: 0xba, 0x503: 0xba, 0x504: 0xba, 0x505: 0xba, 0x506: 0xba, 0x507: 0xba, -	0x508: 0xba, 0x509: 0xba, 0x50a: 0xba, 0x50b: 0xba, 0x50c: 0xba, 0x50d: 0xba, 0x50e: 0xba, 0x50f: 0xba, -	0x510: 0xba, 0x511: 0xba, 0x512: 0xba, 0x513: 0xba, 0x514: 0xba, 0x515: 0xba, 0x516: 0xba, 0x517: 0xba, -	0x518: 0xba, 0x519: 0xba, 0x51a: 0xba, 0x51b: 0xba, 0x51c: 0xba, 0x51d: 0xba, 0x51e: 0xba, 0x51f: 0xba, -	0x520: 0x9f, 0x521: 0x9f, 0x522: 0x9f, 0x523: 0x9f, 0x524: 0x9f, 0x525: 0x9f, 0x526: 0x9f, 0x527: 0x9f, -	0x528: 0x148, 0x529: 0x156, 0x52a: 0xba, 0x52b: 0x157, 0x52c: 0x158, 0x52d: 0x159, 0x52e: 0x15a, 0x52f: 0xba, -	0x530: 0xba, 0x531: 0xba, 0x532: 0xba, 0x533: 0xba, 0x534: 0xba, 0x535: 0xba, 0x536: 0xba, 0x537: 0xba, -	0x538: 0xba, 0x539: 0x15b, 0x53a: 0x15c, 0x53b: 0xba, 0x53c: 0x9f, 0x53d: 0x15d, 0x53e: 0x15e, 0x53f: 0x15f, -	// Block 0x15, offset 0x540 -	0x540: 0x9f, 0x541: 0x9f, 0x542: 0x9f, 0x543: 0x9f, 0x544: 0x9f, 0x545: 0x9f, 0x546: 0x9f, 0x547: 0x9f, -	0x548: 0x9f, 0x549: 0x9f, 0x54a: 0x9f, 0x54b: 0x9f, 0x54c: 0x9f, 0x54d: 0x9f, 0x54e: 0x9f, 0x54f: 0x9f, -	0x550: 0x9f, 0x551: 0x9f, 0x552: 0x9f, 0x553: 0x9f, 0x554: 0x9f, 0x555: 0x9f, 0x556: 0x9f, 0x557: 0x9f, -	0x558: 0x9f, 0x559: 0x9f, 0x55a: 0x9f, 0x55b: 0x9f, 0x55c: 0x9f, 0x55d: 0x9f, 0x55e: 0x9f, 0x55f: 0x160, -	0x560: 0x9f, 0x561: 0x9f, 0x562: 0x9f, 0x563: 0x9f, 0x564: 0x9f, 0x565: 0x9f, 0x566: 0x9f, 0x567: 0x9f, -	0x568: 0x9f, 0x569: 0x9f, 0x56a: 0x9f, 0x56b: 0x161, 0x56c: 0xba, 0x56d: 0xba, 0x56e: 0xba, 0x56f: 0xba, -	0x570: 0xba, 0x571: 0xba, 0x572: 0xba, 0x573: 0xba, 0x574: 0xba, 0x575: 0xba, 0x576: 0xba, 0x577: 0xba, -	0x578: 0xba, 0x579: 0xba, 0x57a: 0xba, 0x57b: 0xba, 0x57c: 0xba, 0x57d: 0xba, 0x57e: 0xba, 0x57f: 0xba, -	// Block 0x16, offset 0x580 -	0x580: 0x9f, 0x581: 0x9f, 0x582: 0x9f, 0x583: 0x9f, 0x584: 0x162, 0x585: 0x163, 0x586: 0x9f, 0x587: 0x9f, -	0x588: 0x9f, 0x589: 0x9f, 0x58a: 0x9f, 0x58b: 0x164, 0x58c: 0xba, 0x58d: 0xba, 0x58e: 0xba, 0x58f: 0xba, -	0x590: 0xba, 0x591: 0xba, 0x592: 0xba, 0x593: 0xba, 0x594: 0xba, 0x595: 0xba, 0x596: 0xba, 0x597: 0xba, -	0x598: 0xba, 0x599: 0xba, 0x59a: 0xba, 0x59b: 0xba, 0x59c: 0xba, 0x59d: 0xba, 0x59e: 0xba, 0x59f: 0xba, -	0x5a0: 0xba, 0x5a1: 0xba, 0x5a2: 0xba, 0x5a3: 0xba, 0x5a4: 0xba, 0x5a5: 0xba, 0x5a6: 0xba, 0x5a7: 0xba, -	0x5a8: 0xba, 0x5a9: 0xba, 0x5aa: 0xba, 0x5ab: 0xba, 0x5ac: 0xba, 0x5ad: 0xba, 0x5ae: 0xba, 0x5af: 0xba, -	0x5b0: 0x9f, 0x5b1: 0x165, 0x5b2: 0x166, 0x5b3: 0xba, 0x5b4: 0xba, 0x5b5: 0xba, 0x5b6: 0xba, 0x5b7: 0xba, -	0x5b8: 0xba, 0x5b9: 0xba, 0x5ba: 0xba, 0x5bb: 0xba, 0x5bc: 0xba, 0x5bd: 0xba, 0x5be: 0xba, 0x5bf: 0xba, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x9b, 0x5c1: 0x9b, 0x5c2: 0x9b, 0x5c3: 0x167, 0x5c4: 0x168, 0x5c5: 0x169, 0x5c6: 0x16a, 0x5c7: 0x16b, -	0x5c8: 0x9b, 0x5c9: 0x16c, 0x5ca: 0xba, 0x5cb: 0x16d, 0x5cc: 0x9b, 0x5cd: 0x16e, 0x5ce: 0xba, 0x5cf: 0xba, -	0x5d0: 0x5f, 0x5d1: 0x60, 0x5d2: 0x61, 0x5d3: 0x62, 0x5d4: 0x63, 0x5d5: 0x64, 0x5d6: 0x65, 0x5d7: 0x66, -	0x5d8: 0x67, 0x5d9: 0x68, 0x5da: 0x69, 0x5db: 0x6a, 0x5dc: 0x6b, 0x5dd: 0x6c, 0x5de: 0x6d, 0x5df: 0x6e, -	0x5e0: 0x9b, 0x5e1: 0x9b, 0x5e2: 0x9b, 0x5e3: 0x9b, 0x5e4: 0x9b, 0x5e5: 0x9b, 0x5e6: 0x9b, 0x5e7: 0x9b, -	0x5e8: 0x16f, 0x5e9: 0x170, 0x5ea: 0x171, 0x5eb: 0xba, 0x5ec: 0xba, 0x5ed: 0xba, 0x5ee: 0xba, 0x5ef: 0xba, -	0x5f0: 0xba, 0x5f1: 0xba, 0x5f2: 0xba, 0x5f3: 0xba, 0x5f4: 0xba, 0x5f5: 0xba, 0x5f6: 0xba, 0x5f7: 0xba, -	0x5f8: 0xba, 0x5f9: 0xba, 0x5fa: 0xba, 0x5fb: 0xba, 0x5fc: 0xba, 0x5fd: 0xba, 0x5fe: 0xba, 0x5ff: 0xba, -	// Block 0x18, offset 0x600 -	0x600: 0x172, 0x601: 0xba, 0x602: 0xba, 0x603: 0xba, 0x604: 0x173, 0x605: 0x174, 0x606: 0xba, 0x607: 0xba, -	0x608: 0xba, 0x609: 0xba, 0x60a: 0xba, 0x60b: 0x175, 0x60c: 0xba, 0x60d: 0xba, 0x60e: 0xba, 0x60f: 0xba, -	0x610: 0xba, 0x611: 0xba, 0x612: 0xba, 0x613: 0xba, 0x614: 0xba, 0x615: 0xba, 0x616: 0xba, 0x617: 0xba, -	0x618: 0xba, 0x619: 0xba, 0x61a: 0xba, 0x61b: 0xba, 0x61c: 0xba, 0x61d: 0xba, 0x61e: 0xba, 0x61f: 0xba, -	0x620: 0x121, 0x621: 0x121, 0x622: 0x121, 0x623: 0x176, 0x624: 0x6f, 0x625: 0x177, 0x626: 0xba, 0x627: 0xba, -	0x628: 0xba, 0x629: 0xba, 0x62a: 0xba, 0x62b: 0xba, 0x62c: 0xba, 0x62d: 0xba, 0x62e: 0xba, 0x62f: 0xba, -	0x630: 0xba, 0x631: 0x178, 0x632: 0x179, 0x633: 0xba, 0x634: 0x17a, 0x635: 0xba, 0x636: 0xba, 0x637: 0xba, -	0x638: 0x70, 0x639: 0x71, 0x63a: 0x72, 0x63b: 0x17b, 0x63c: 0xba, 0x63d: 0xba, 0x63e: 0xba, 0x63f: 0xba, -	// Block 0x19, offset 0x640 -	0x640: 0x17c, 0x641: 0x9b, 0x642: 0x17d, 0x643: 0x17e, 0x644: 0x73, 0x645: 0x74, 0x646: 0x17f, 0x647: 0x180, -	0x648: 0x75, 0x649: 0x181, 0x64a: 0xba, 0x64b: 0xba, 0x64c: 0x9b, 0x64d: 0x9b, 0x64e: 0x9b, 0x64f: 0x9b, -	0x650: 0x9b, 0x651: 0x9b, 0x652: 0x9b, 0x653: 0x9b, 0x654: 0x9b, 0x655: 0x9b, 0x656: 0x9b, 0x657: 0x9b, -	0x658: 0x9b, 0x659: 0x9b, 0x65a: 0x9b, 0x65b: 0x182, 0x65c: 0x9b, 0x65d: 0x183, 0x65e: 0x9b, 0x65f: 0x184, -	0x660: 0x185, 0x661: 0x186, 0x662: 0x187, 0x663: 0xba, 0x664: 0x188, 0x665: 0x189, 0x666: 0x18a, 0x667: 0x18b, -	0x668: 0x9b, 0x669: 0x18c, 0x66a: 0x18d, 0x66b: 0xba, 0x66c: 0xba, 0x66d: 0xba, 0x66e: 0xba, 0x66f: 0xba, -	0x670: 0xba, 0x671: 0xba, 0x672: 0xba, 0x673: 0xba, 0x674: 0xba, 0x675: 0xba, 0x676: 0xba, 0x677: 0xba, -	0x678: 0xba, 0x679: 0xba, 0x67a: 0xba, 0x67b: 0xba, 0x67c: 0xba, 0x67d: 0xba, 0x67e: 0xba, 0x67f: 0xba, -	// Block 0x1a, offset 0x680 -	0x680: 0x9f, 0x681: 0x9f, 0x682: 0x9f, 0x683: 0x9f, 0x684: 0x9f, 0x685: 0x9f, 0x686: 0x9f, 0x687: 0x9f, -	0x688: 0x9f, 0x689: 0x9f, 0x68a: 0x9f, 0x68b: 0x9f, 0x68c: 0x9f, 0x68d: 0x9f, 0x68e: 0x9f, 0x68f: 0x9f, -	0x690: 0x9f, 0x691: 0x9f, 0x692: 0x9f, 0x693: 0x9f, 0x694: 0x9f, 0x695: 0x9f, 0x696: 0x9f, 0x697: 0x9f, -	0x698: 0x9f, 0x699: 0x9f, 0x69a: 0x9f, 0x69b: 0x18e, 0x69c: 0x9f, 0x69d: 0x9f, 0x69e: 0x9f, 0x69f: 0x9f, -	0x6a0: 0x9f, 0x6a1: 0x9f, 0x6a2: 0x9f, 0x6a3: 0x9f, 0x6a4: 0x9f, 0x6a5: 0x9f, 0x6a6: 0x9f, 0x6a7: 0x9f, -	0x6a8: 0x9f, 0x6a9: 0x9f, 0x6aa: 0x9f, 0x6ab: 0x9f, 0x6ac: 0x9f, 0x6ad: 0x9f, 0x6ae: 0x9f, 0x6af: 0x9f, -	0x6b0: 0x9f, 0x6b1: 0x9f, 0x6b2: 0x9f, 0x6b3: 0x9f, 0x6b4: 0x9f, 0x6b5: 0x9f, 0x6b6: 0x9f, 0x6b7: 0x9f, -	0x6b8: 0x9f, 0x6b9: 0x9f, 0x6ba: 0x9f, 0x6bb: 0x9f, 0x6bc: 0x9f, 0x6bd: 0x9f, 0x6be: 0x9f, 0x6bf: 0x9f, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x9f, 0x6c1: 0x9f, 0x6c2: 0x9f, 0x6c3: 0x9f, 0x6c4: 0x9f, 0x6c5: 0x9f, 0x6c6: 0x9f, 0x6c7: 0x9f, -	0x6c8: 0x9f, 0x6c9: 0x9f, 0x6ca: 0x9f, 0x6cb: 0x9f, 0x6cc: 0x9f, 0x6cd: 0x9f, 0x6ce: 0x9f, 0x6cf: 0x9f, -	0x6d0: 0x9f, 0x6d1: 0x9f, 0x6d2: 0x9f, 0x6d3: 0x9f, 0x6d4: 0x9f, 0x6d5: 0x9f, 0x6d6: 0x9f, 0x6d7: 0x9f, -	0x6d8: 0x9f, 0x6d9: 0x9f, 0x6da: 0x9f, 0x6db: 0x9f, 0x6dc: 0x18f, 0x6dd: 0x9f, 0x6de: 0x9f, 0x6df: 0x9f, -	0x6e0: 0x190, 0x6e1: 0x9f, 0x6e2: 0x9f, 0x6e3: 0x9f, 0x6e4: 0x9f, 0x6e5: 0x9f, 0x6e6: 0x9f, 0x6e7: 0x9f, -	0x6e8: 0x9f, 0x6e9: 0x9f, 0x6ea: 0x9f, 0x6eb: 0x9f, 0x6ec: 0x9f, 0x6ed: 0x9f, 0x6ee: 0x9f, 0x6ef: 0x9f, -	0x6f0: 0x9f, 0x6f1: 0x9f, 0x6f2: 0x9f, 0x6f3: 0x9f, 0x6f4: 0x9f, 0x6f5: 0x9f, 0x6f6: 0x9f, 0x6f7: 0x9f, -	0x6f8: 0x9f, 0x6f9: 0x9f, 0x6fa: 0x9f, 0x6fb: 0x9f, 0x6fc: 0x9f, 0x6fd: 0x9f, 0x6fe: 0x9f, 0x6ff: 0x9f, -	// Block 0x1c, offset 0x700 -	0x700: 0x9f, 0x701: 0x9f, 0x702: 0x9f, 0x703: 0x9f, 0x704: 0x9f, 0x705: 0x9f, 0x706: 0x9f, 0x707: 0x9f, -	0x708: 0x9f, 0x709: 0x9f, 0x70a: 0x9f, 0x70b: 0x9f, 0x70c: 0x9f, 0x70d: 0x9f, 0x70e: 0x9f, 0x70f: 0x9f, -	0x710: 0x9f, 0x711: 0x9f, 0x712: 0x9f, 0x713: 0x9f, 0x714: 0x9f, 0x715: 0x9f, 0x716: 0x9f, 0x717: 0x9f, -	0x718: 0x9f, 0x719: 0x9f, 0x71a: 0x9f, 0x71b: 0x9f, 0x71c: 0x9f, 0x71d: 0x9f, 0x71e: 0x9f, 0x71f: 0x9f, -	0x720: 0x9f, 0x721: 0x9f, 0x722: 0x9f, 0x723: 0x9f, 0x724: 0x9f, 0x725: 0x9f, 0x726: 0x9f, 0x727: 0x9f, -	0x728: 0x9f, 0x729: 0x9f, 0x72a: 0x9f, 0x72b: 0x9f, 0x72c: 0x9f, 0x72d: 0x9f, 0x72e: 0x9f, 0x72f: 0x9f, -	0x730: 0x9f, 0x731: 0x9f, 0x732: 0x9f, 0x733: 0x9f, 0x734: 0x9f, 0x735: 0x9f, 0x736: 0x9f, 0x737: 0x9f, -	0x738: 0x9f, 0x739: 0x9f, 0x73a: 0x191, 0x73b: 0x9f, 0x73c: 0x9f, 0x73d: 0x9f, 0x73e: 0x9f, 0x73f: 0x9f, -	// Block 0x1d, offset 0x740 -	0x740: 0x9f, 0x741: 0x9f, 0x742: 0x9f, 0x743: 0x9f, 0x744: 0x9f, 0x745: 0x9f, 0x746: 0x9f, 0x747: 0x9f, -	0x748: 0x9f, 0x749: 0x9f, 0x74a: 0x9f, 0x74b: 0x9f, 0x74c: 0x9f, 0x74d: 0x9f, 0x74e: 0x9f, 0x74f: 0x9f, -	0x750: 0x9f, 0x751: 0x9f, 0x752: 0x9f, 0x753: 0x9f, 0x754: 0x9f, 0x755: 0x9f, 0x756: 0x9f, 0x757: 0x9f, -	0x758: 0x9f, 0x759: 0x9f, 0x75a: 0x9f, 0x75b: 0x9f, 0x75c: 0x9f, 0x75d: 0x9f, 0x75e: 0x9f, 0x75f: 0x9f, -	0x760: 0x9f, 0x761: 0x9f, 0x762: 0x9f, 0x763: 0x9f, 0x764: 0x9f, 0x765: 0x9f, 0x766: 0x9f, 0x767: 0x9f, -	0x768: 0x9f, 0x769: 0x9f, 0x76a: 0x9f, 0x76b: 0x9f, 0x76c: 0x9f, 0x76d: 0x9f, 0x76e: 0x9f, 0x76f: 0x192, -	0x770: 0xba, 0x771: 0xba, 0x772: 0xba, 0x773: 0xba, 0x774: 0xba, 0x775: 0xba, 0x776: 0xba, 0x777: 0xba, -	0x778: 0xba, 0x779: 0xba, 0x77a: 0xba, 0x77b: 0xba, 0x77c: 0xba, 0x77d: 0xba, 0x77e: 0xba, 0x77f: 0xba, -	// Block 0x1e, offset 0x780 -	0x780: 0xba, 0x781: 0xba, 0x782: 0xba, 0x783: 0xba, 0x784: 0xba, 0x785: 0xba, 0x786: 0xba, 0x787: 0xba, -	0x788: 0xba, 0x789: 0xba, 0x78a: 0xba, 0x78b: 0xba, 0x78c: 0xba, 0x78d: 0xba, 0x78e: 0xba, 0x78f: 0xba, -	0x790: 0xba, 0x791: 0xba, 0x792: 0xba, 0x793: 0xba, 0x794: 0xba, 0x795: 0xba, 0x796: 0xba, 0x797: 0xba, -	0x798: 0xba, 0x799: 0xba, 0x79a: 0xba, 0x79b: 0xba, 0x79c: 0xba, 0x79d: 0xba, 0x79e: 0xba, 0x79f: 0xba, -	0x7a0: 0x76, 0x7a1: 0x77, 0x7a2: 0x78, 0x7a3: 0x193, 0x7a4: 0x79, 0x7a5: 0x7a, 0x7a6: 0x194, 0x7a7: 0x7b, -	0x7a8: 0x7c, 0x7a9: 0xba, 0x7aa: 0xba, 0x7ab: 0xba, 0x7ac: 0xba, 0x7ad: 0xba, 0x7ae: 0xba, 0x7af: 0xba, -	0x7b0: 0xba, 0x7b1: 0xba, 0x7b2: 0xba, 0x7b3: 0xba, 0x7b4: 0xba, 0x7b5: 0xba, 0x7b6: 0xba, 0x7b7: 0xba, -	0x7b8: 0xba, 0x7b9: 0xba, 0x7ba: 0xba, 0x7bb: 0xba, 0x7bc: 0xba, 0x7bd: 0xba, 0x7be: 0xba, 0x7bf: 0xba, -	// Block 0x1f, offset 0x7c0 -	0x7d0: 0x0d, 0x7d1: 0x0e, 0x7d2: 0x0f, 0x7d3: 0x10, 0x7d4: 0x11, 0x7d5: 0x0b, 0x7d6: 0x12, 0x7d7: 0x07, -	0x7d8: 0x13, 0x7d9: 0x0b, 0x7da: 0x0b, 0x7db: 0x14, 0x7dc: 0x0b, 0x7dd: 0x15, 0x7de: 0x16, 0x7df: 0x17, -	0x7e0: 0x07, 0x7e1: 0x07, 0x7e2: 0x07, 0x7e3: 0x07, 0x7e4: 0x07, 0x7e5: 0x07, 0x7e6: 0x07, 0x7e7: 0x07, -	0x7e8: 0x07, 0x7e9: 0x07, 0x7ea: 0x18, 0x7eb: 0x19, 0x7ec: 0x1a, 0x7ed: 0x07, 0x7ee: 0x1b, 0x7ef: 0x1c, -	0x7f0: 0x0b, 0x7f1: 0x0b, 0x7f2: 0x0b, 0x7f3: 0x0b, 0x7f4: 0x0b, 0x7f5: 0x0b, 0x7f6: 0x0b, 0x7f7: 0x0b, -	0x7f8: 0x0b, 0x7f9: 0x0b, 0x7fa: 0x0b, 0x7fb: 0x0b, 0x7fc: 0x0b, 0x7fd: 0x0b, 0x7fe: 0x0b, 0x7ff: 0x0b, -	// Block 0x20, offset 0x800 -	0x800: 0x0b, 0x801: 0x0b, 0x802: 0x0b, 0x803: 0x0b, 0x804: 0x0b, 0x805: 0x0b, 0x806: 0x0b, 0x807: 0x0b, -	0x808: 0x0b, 0x809: 0x0b, 0x80a: 0x0b, 0x80b: 0x0b, 0x80c: 0x0b, 0x80d: 0x0b, 0x80e: 0x0b, 0x80f: 0x0b, -	0x810: 0x0b, 0x811: 0x0b, 0x812: 0x0b, 0x813: 0x0b, 0x814: 0x0b, 0x815: 0x0b, 0x816: 0x0b, 0x817: 0x0b, -	0x818: 0x0b, 0x819: 0x0b, 0x81a: 0x0b, 0x81b: 0x0b, 0x81c: 0x0b, 0x81d: 0x0b, 0x81e: 0x0b, 0x81f: 0x0b, -	0x820: 0x0b, 0x821: 0x0b, 0x822: 0x0b, 0x823: 0x0b, 0x824: 0x0b, 0x825: 0x0b, 0x826: 0x0b, 0x827: 0x0b, -	0x828: 0x0b, 0x829: 0x0b, 0x82a: 0x0b, 0x82b: 0x0b, 0x82c: 0x0b, 0x82d: 0x0b, 0x82e: 0x0b, 0x82f: 0x0b, -	0x830: 0x0b, 0x831: 0x0b, 0x832: 0x0b, 0x833: 0x0b, 0x834: 0x0b, 0x835: 0x0b, 0x836: 0x0b, 0x837: 0x0b, -	0x838: 0x0b, 0x839: 0x0b, 0x83a: 0x0b, 0x83b: 0x0b, 0x83c: 0x0b, 0x83d: 0x0b, 0x83e: 0x0b, 0x83f: 0x0b, -	// Block 0x21, offset 0x840 -	0x840: 0x195, 0x841: 0x196, 0x842: 0xba, 0x843: 0xba, 0x844: 0x197, 0x845: 0x197, 0x846: 0x197, 0x847: 0x198, -	0x848: 0xba, 0x849: 0xba, 0x84a: 0xba, 0x84b: 0xba, 0x84c: 0xba, 0x84d: 0xba, 0x84e: 0xba, 0x84f: 0xba, -	0x850: 0xba, 0x851: 0xba, 0x852: 0xba, 0x853: 0xba, 0x854: 0xba, 0x855: 0xba, 0x856: 0xba, 0x857: 0xba, -	0x858: 0xba, 0x859: 0xba, 0x85a: 0xba, 0x85b: 0xba, 0x85c: 0xba, 0x85d: 0xba, 0x85e: 0xba, 0x85f: 0xba, -	0x860: 0xba, 0x861: 0xba, 0x862: 0xba, 0x863: 0xba, 0x864: 0xba, 0x865: 0xba, 0x866: 0xba, 0x867: 0xba, -	0x868: 0xba, 0x869: 0xba, 0x86a: 0xba, 0x86b: 0xba, 0x86c: 0xba, 0x86d: 0xba, 0x86e: 0xba, 0x86f: 0xba, -	0x870: 0xba, 0x871: 0xba, 0x872: 0xba, 0x873: 0xba, 0x874: 0xba, 0x875: 0xba, 0x876: 0xba, 0x877: 0xba, -	0x878: 0xba, 0x879: 0xba, 0x87a: 0xba, 0x87b: 0xba, 0x87c: 0xba, 0x87d: 0xba, 0x87e: 0xba, 0x87f: 0xba, -	// Block 0x22, offset 0x880 -	0x880: 0x0b, 0x881: 0x0b, 0x882: 0x0b, 0x883: 0x0b, 0x884: 0x0b, 0x885: 0x0b, 0x886: 0x0b, 0x887: 0x0b, -	0x888: 0x0b, 0x889: 0x0b, 0x88a: 0x0b, 0x88b: 0x0b, 0x88c: 0x0b, 0x88d: 0x0b, 0x88e: 0x0b, 0x88f: 0x0b, -	0x890: 0x0b, 0x891: 0x0b, 0x892: 0x0b, 0x893: 0x0b, 0x894: 0x0b, 0x895: 0x0b, 0x896: 0x0b, 0x897: 0x0b, -	0x898: 0x0b, 0x899: 0x0b, 0x89a: 0x0b, 0x89b: 0x0b, 0x89c: 0x0b, 0x89d: 0x0b, 0x89e: 0x0b, 0x89f: 0x0b, -	0x8a0: 0x1f, 0x8a1: 0x0b, 0x8a2: 0x0b, 0x8a3: 0x0b, 0x8a4: 0x0b, 0x8a5: 0x0b, 0x8a6: 0x0b, 0x8a7: 0x0b, -	0x8a8: 0x0b, 0x8a9: 0x0b, 0x8aa: 0x0b, 0x8ab: 0x0b, 0x8ac: 0x0b, 0x8ad: 0x0b, 0x8ae: 0x0b, 0x8af: 0x0b, -	0x8b0: 0x0b, 0x8b1: 0x0b, 0x8b2: 0x0b, 0x8b3: 0x0b, 0x8b4: 0x0b, 0x8b5: 0x0b, 0x8b6: 0x0b, 0x8b7: 0x0b, -	0x8b8: 0x0b, 0x8b9: 0x0b, 0x8ba: 0x0b, 0x8bb: 0x0b, 0x8bc: 0x0b, 0x8bd: 0x0b, 0x8be: 0x0b, 0x8bf: 0x0b, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0b, 0x8c1: 0x0b, 0x8c2: 0x0b, 0x8c3: 0x0b, 0x8c4: 0x0b, 0x8c5: 0x0b, 0x8c6: 0x0b, 0x8c7: 0x0b, -	0x8c8: 0x0b, 0x8c9: 0x0b, 0x8ca: 0x0b, 0x8cb: 0x0b, 0x8cc: 0x0b, 0x8cd: 0x0b, 0x8ce: 0x0b, 0x8cf: 0x0b, -} - -// idnaSparseOffset: 284 entries, 568 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x33, 0x3e, 0x4a, 0x4e, 0x5d, 0x62, 0x6c, 0x78, 0x86, 0x8b, 0x94, 0xa4, 0xb2, 0xbe, 0xca, 0xdb, 0xe5, 0xec, 0xf9, 0x10a, 0x111, 0x11c, 0x12b, 0x139, 0x143, 0x145, 0x14a, 0x14d, 0x150, 0x152, 0x15e, 0x169, 0x171, 0x177, 0x17d, 0x182, 0x187, 0x18a, 0x18e, 0x194, 0x199, 0x1a5, 0x1af, 0x1b5, 0x1c6, 0x1d0, 0x1d3, 0x1db, 0x1de, 0x1eb, 0x1f3, 0x1f7, 0x1fe, 0x206, 0x216, 0x222, 0x224, 0x22e, 0x23a, 0x246, 0x252, 0x25a, 0x25f, 0x26c, 0x27d, 0x281, 0x28c, 0x290, 0x299, 0x2a1, 0x2a7, 0x2ac, 0x2af, 0x2b3, 0x2b9, 0x2bd, 0x2c1, 0x2c5, 0x2cb, 0x2d3, 0x2da, 0x2e5, 0x2ef, 0x2f3, 0x2f6, 0x2fc, 0x300, 0x302, 0x305, 0x307, 0x30a, 0x314, 0x317, 0x326, 0x32a, 0x32f, 0x332, 0x336, 0x33b, 0x340, 0x346, 0x352, 0x361, 0x367, 0x36b, 0x37a, 0x37f, 0x387, 0x391, 0x39c, 0x3a4, 0x3b5, 0x3be, 0x3ce, 0x3db, 0x3e5, 0x3ea, 0x3f7, 0x3fb, 0x400, 0x402, 0x406, 0x408, 0x40c, 0x415, 0x41b, 0x41f, 0x42f, 0x439, 0x43e, 0x441, 0x447, 0x44e, 0x453, 0x457, 0x45d, 0x462, 0x46b, 0x470, 0x476, 0x47d, 0x484, 0x48b, 0x48f, 0x494, 0x497, 0x49c, 0x4a8, 0x4ae, 0x4b3, 0x4ba, 0x4c2, 0x4c7, 0x4cb, 0x4db, 0x4e2, 0x4e6, 0x4ea, 0x4f1, 0x4f3, 0x4f6, 0x4f9, 0x4fd, 0x506, 0x50a, 0x512, 0x51a, 0x51e, 0x524, 0x52d, 0x539, 0x540, 0x549, 0x553, 0x55a, 0x568, 0x575, 0x582, 0x58b, 0x58f, 0x59f, 0x5a7, 0x5b2, 0x5bb, 0x5c1, 0x5c9, 0x5d2, 0x5dd, 0x5e0, 0x5ec, 0x5f5, 0x5f8, 0x5fd, 0x602, 0x60f, 0x61a, 0x623, 0x62d, 0x630, 0x63a, 0x643, 0x64f, 0x65c, 0x669, 0x677, 0x67e, 0x682, 0x685, 0x68a, 0x68d, 0x692, 0x695, 0x69c, 0x6a3, 0x6a7, 0x6b2, 0x6b5, 0x6b8, 0x6bb, 0x6c1, 0x6c7, 0x6cd, 0x6d0, 0x6d3, 0x6d6, 0x6dd, 0x6e0, 0x6e5, 0x6ef, 0x6f2, 0x6f6, 0x705, 0x711, 0x715, 0x71a, 0x71e, 0x723, 0x727, 0x72c, 0x735, 0x740, 0x746, 0x74c, 0x752, 0x758, 0x761, 0x764, 0x767, 0x76b, 0x76f, 0x773, 0x779, 0x77f, 0x784, 0x787, 0x797, 0x79e, 0x7a1, 0x7a6, 0x7aa, 0x7b0, 0x7b5, 0x7b9, 0x7bf, 0x7c5, 0x7c9, 0x7d2, 0x7d7, 0x7da, 0x7dd, 0x7e1, 0x7e5, 0x7e8, 0x7f8, 0x809, 0x80e, 0x810, 0x812} - -// idnaSparseValues: 2069 entries, 8276 bytes -var idnaSparseValues = [2069]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0249, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x0259, lo: 0xb2, hi: 0xb2}, -	{value: 0x0269, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x0279, lo: 0xb7, hi: 0xb7}, -	{value: 0x0289, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x06}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x6, offset 0x33 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0401, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xae}, -	{value: 0x0808, lo: 0xaf, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x62 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbf}, -	// Block 0xc, offset 0x6c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x78 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0a08, lo: 0xa0, hi: 0xa9}, -	{value: 0x0c08, lo: 0xaa, hi: 0xac}, -	{value: 0x0808, lo: 0xad, hi: 0xad}, -	{value: 0x0c08, lo: 0xae, hi: 0xae}, -	{value: 0x0a08, lo: 0xaf, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb2}, -	{value: 0x0a08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xe, offset 0x86 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0xf, offset 0x8b -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x10, offset 0x94 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x11, offset 0xa4 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x12, offset 0xb2 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x3b08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbe -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x14, offset 0xca -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x15, offset 0xdb -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x08f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x16, offset 0xe5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x17, offset 0xec -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0961, lo: 0x9c, hi: 0x9c}, -	{value: 0x0999, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x18, offset 0xf9 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x19, offset 0x10a -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x1a, offset 0x111 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1b, offset 0x11c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1c, offset 0x12b -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1d, offset 0x139 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1e, offset 0x143 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x1f, offset 0x145 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x20, offset 0x14a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x21, offset 0x14d -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x22, offset 0x150 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x23, offset 0x152 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x24, offset 0x15e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x25, offset 0x169 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x26, offset 0x171 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x27, offset 0x177 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x28, offset 0x17d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x29, offset 0x182 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x2a, offset 0x187 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2b, offset 0x18a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2c, offset 0x18e -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2d, offset 0x194 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2e, offset 0x199 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x2f, offset 0x1a5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x30, offset 0x1af -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x31, offset 0x1b5 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x32, offset 0x1c6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x33, offset 0x1d0 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x34, offset 0x1d3 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x35, offset 0x1db -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x36, offset 0x1de -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x37, offset 0x1eb -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x38, offset 0x1f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x39, offset 0x1f7 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x3a, offset 0x1fe -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3b, offset 0x206 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3c, offset 0x216 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x3d, offset 0x222 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x3e, offset 0x224 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x3f, offset 0x22e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x40, offset 0x23a -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x41, offset 0x246 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x42, offset 0x252 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x43, offset 0x25a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x44, offset 0x25f -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0e29, lo: 0x80, hi: 0x80}, -	{value: 0x0e41, lo: 0x81, hi: 0x81}, -	{value: 0x0e59, lo: 0x82, hi: 0x82}, -	{value: 0x0e71, lo: 0x83, hi: 0x83}, -	{value: 0x0e89, lo: 0x84, hi: 0x85}, -	{value: 0x0ea1, lo: 0x86, hi: 0x86}, -	{value: 0x0eb9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x059d, lo: 0x90, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x059d, lo: 0xbd, hi: 0xbf}, -	// Block 0x45, offset 0x26c -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x46, offset 0x27d -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x47, offset 0x281 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x48, offset 0x28c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x49, offset 0x290 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x24c1, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x4a, offset 0x299 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x24f1, lo: 0xac, hi: 0xac}, -	{value: 0x2529, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x2579, lo: 0xaf, hi: 0xaf}, -	{value: 0x25b1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x4b, offset 0x2a1 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4c, offset 0x2a7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09dd, lo: 0xa9, hi: 0xa9}, -	{value: 0x09fd, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4d, offset 0x2ac -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x4e, offset 0x2af -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x28c1, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x4f, offset 0x2b3 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e7e, lo: 0xb4, hi: 0xb4}, -	{value: 0x292a, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e9e, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x50, offset 0x2b9 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x2941, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x51, offset 0x2bd -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x52, offset 0x2c1 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0xbf}, -	// Block 0x53, offset 0x2c5 -	{value: 0x0000, lo: 0x05}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ebd, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x54, offset 0x2cb -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x55, offset 0x2d3 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x56, offset 0x2da -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x57, offset 0x2e5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x58, offset 0x2ef -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x59, offset 0x2f3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0x5a, offset 0x2f6 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0ef5, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x5b, offset 0x2fc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0f15, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5c, offset 0x300 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f35, lo: 0x80, hi: 0xbf}, -	// Block 0x5d, offset 0x302 -	{value: 0x0020, lo: 0x02}, -	{value: 0x1735, lo: 0x80, hi: 0x8f}, -	{value: 0x1915, lo: 0x90, hi: 0xbf}, -	// Block 0x5e, offset 0x305 -	{value: 0x0020, lo: 0x01}, -	{value: 0x1f15, lo: 0x80, hi: 0xbf}, -	// Block 0x5f, offset 0x307 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x60, offset 0x30a -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x29e2, lo: 0x9b, hi: 0x9b}, -	{value: 0x2a0a, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x2a31, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x61, offset 0x314 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x2a69, lo: 0xbf, hi: 0xbf}, -	// Block 0x62, offset 0x317 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb0}, -	{value: 0x2a35, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a55, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a75, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a95, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a75, lo: 0xb5, hi: 0xb5}, -	{value: 0x2ab5, lo: 0xb6, hi: 0xb6}, -	{value: 0x2ad5, lo: 0xb7, hi: 0xb7}, -	{value: 0x2af5, lo: 0xb8, hi: 0xb9}, -	{value: 0x2b15, lo: 0xba, hi: 0xbb}, -	{value: 0x2b35, lo: 0xbc, hi: 0xbd}, -	{value: 0x2b15, lo: 0xbe, hi: 0xbf}, -	// Block 0x63, offset 0x326 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x64, offset 0x32a -	{value: 0x0030, lo: 0x04}, -	{value: 0x2aa2, lo: 0x80, hi: 0x9d}, -	{value: 0x305a, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x30a2, lo: 0xa0, hi: 0xbf}, -	// Block 0x65, offset 0x32f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x66, offset 0x332 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x67, offset 0x336 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x68, offset 0x33b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x69, offset 0x340 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6a, offset 0x346 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0xe00d, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x83}, -	{value: 0x03f5, lo: 0x84, hi: 0x84}, -	{value: 0x1329, lo: 0x85, hi: 0x85}, -	{value: 0x447d, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xb7}, -	{value: 0x2009, lo: 0xb8, hi: 0xb8}, -	{value: 0x6e89, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xbf}, -	// Block 0x6b, offset 0x352 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6c, offset 0x361 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6d, offset 0x367 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x6e, offset 0x36b -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x6f, offset 0x37a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x70, offset 0x37f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x71, offset 0x387 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x72, offset 0x391 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x73, offset 0x39c -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x74, offset 0x3a4 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x75, offset 0x3b5 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x76, offset 0x3be -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x77, offset 0x3ce -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x78, offset 0x3db -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x449d, lo: 0x9c, hi: 0x9c}, -	{value: 0x44b5, lo: 0x9d, hi: 0x9d}, -	{value: 0x2971, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x44cd, lo: 0xb0, hi: 0xbf}, -	// Block 0x79, offset 0x3e5 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44ed, lo: 0x80, hi: 0x8f}, -	{value: 0x450d, lo: 0x90, hi: 0x9f}, -	{value: 0x452d, lo: 0xa0, hi: 0xaf}, -	{value: 0x450d, lo: 0xb0, hi: 0xbf}, -	// Block 0x7a, offset 0x3ea -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x7b, offset 0x3f7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7c, offset 0x3fb -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x7d, offset 0x400 -	{value: 0x0020, lo: 0x01}, -	{value: 0x454d, lo: 0x80, hi: 0xbf}, -	// Block 0x7e, offset 0x402 -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d4d, lo: 0x80, hi: 0x94}, -	{value: 0x4b0d, lo: 0x95, hi: 0x95}, -	{value: 0x4fed, lo: 0x96, hi: 0xbf}, -	// Block 0x7f, offset 0x406 -	{value: 0x0020, lo: 0x01}, -	{value: 0x552d, lo: 0x80, hi: 0xbf}, -	// Block 0x80, offset 0x408 -	{value: 0x0020, lo: 0x03}, -	{value: 0x5d2d, lo: 0x80, hi: 0x84}, -	{value: 0x568d, lo: 0x85, hi: 0x85}, -	{value: 0x5dcd, lo: 0x86, hi: 0xbf}, -	// Block 0x81, offset 0x40c -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b8d, lo: 0x80, hi: 0x8f}, -	{value: 0x6d4d, lo: 0x90, hi: 0x90}, -	{value: 0x6d8d, lo: 0x91, hi: 0xab}, -	{value: 0x6ea1, lo: 0xac, hi: 0xac}, -	{value: 0x70ed, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x710d, lo: 0xb0, hi: 0xbf}, -	// Block 0x82, offset 0x415 -	{value: 0x0020, lo: 0x05}, -	{value: 0x730d, lo: 0x80, hi: 0xad}, -	{value: 0x656d, lo: 0xae, hi: 0xae}, -	{value: 0x78cd, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f8d, lo: 0xb6, hi: 0xb6}, -	{value: 0x79ad, lo: 0xb7, hi: 0xbf}, -	// Block 0x83, offset 0x41b -	{value: 0x0028, lo: 0x03}, -	{value: 0x7c21, lo: 0x80, hi: 0x82}, -	{value: 0x7be1, lo: 0x83, hi: 0x83}, -	{value: 0x7c99, lo: 0x84, hi: 0xbf}, -	// Block 0x84, offset 0x41f -	{value: 0x0038, lo: 0x0f}, -	{value: 0x9db1, lo: 0x80, hi: 0x83}, -	{value: 0x9e59, lo: 0x84, hi: 0x85}, -	{value: 0x9e91, lo: 0x86, hi: 0x87}, -	{value: 0x9ec9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0xa089, lo: 0x92, hi: 0x97}, -	{value: 0xa1a1, lo: 0x98, hi: 0x9c}, -	{value: 0xa281, lo: 0x9d, hi: 0xb3}, -	{value: 0x9d41, lo: 0xb4, hi: 0xb4}, -	{value: 0x9db1, lo: 0xb5, hi: 0xb5}, -	{value: 0xa789, lo: 0xb6, hi: 0xbb}, -	{value: 0xa869, lo: 0xbc, hi: 0xbc}, -	{value: 0xa7f9, lo: 0xbd, hi: 0xbd}, -	{value: 0xa8d9, lo: 0xbe, hi: 0xbf}, -	// Block 0x85, offset 0x42f -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x86, offset 0x439 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x87, offset 0x43e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x88, offset 0x441 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x89, offset 0x447 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x8a, offset 0x44e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8b, offset 0x453 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8c, offset 0x457 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x8d, offset 0x45d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xbf}, -	// Block 0x8e, offset 0x462 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x8f, offset 0x46b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x90, offset 0x470 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x91, offset 0x476 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8b0d, lo: 0x98, hi: 0x9f}, -	{value: 0x8b25, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x92, offset 0x47d -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8b25, lo: 0xb0, hi: 0xb7}, -	{value: 0x8b0d, lo: 0xb8, hi: 0xbf}, -	// Block 0x93, offset 0x484 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x94, offset 0x48b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x95, offset 0x48f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xae}, -	{value: 0x0018, lo: 0xaf, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x96, offset 0x494 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x97, offset 0x497 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x98, offset 0x49c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x99, offset 0x4a8 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x9a, offset 0x4ae -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x9b, offset 0x4b3 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9c, offset 0x4ba -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0x9d, offset 0x4c2 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0x9e, offset 0x4c7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0x9f, offset 0x4cb -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xa0, offset 0x4db -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0xa1, offset 0x4e2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa2, offset 0x4e6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa3, offset 0x4ea -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa4, offset 0x4f1 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa5, offset 0x4f3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa6, offset 0x4f6 -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xa7, offset 0x4f9 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xa8, offset 0x4fd -	{value: 0x0000, lo: 0x08}, -	{value: 0x0908, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0xa1}, -	{value: 0x0c08, lo: 0xa2, hi: 0xa2}, -	{value: 0x0a08, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xa9, offset 0x506 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xaa, offset 0x50a -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0xa6}, -	{value: 0x0808, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb3}, -	{value: 0x0a08, lo: 0xb4, hi: 0xbf}, -	// Block 0xab, offset 0x512 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x84}, -	{value: 0x0808, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x90}, -	{value: 0x0a18, lo: 0x91, hi: 0x93}, -	{value: 0x0c18, lo: 0x94, hi: 0x94}, -	{value: 0x0818, lo: 0x95, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xac, offset 0x51a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xad, offset 0x51e -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xae, offset 0x524 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xaf, offset 0x52d -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xb0, offset 0x539 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb1, offset 0x540 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xb2, offset 0x549 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb3, offset 0x553 -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb4, offset 0x55a -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xb5, offset 0x568 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xb6, offset 0x575 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xb7, offset 0x582 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb8, offset 0x58b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xb9, offset 0x58f -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xba, offset 0x59f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xbb, offset 0x5a7 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xbc, offset 0x5b2 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbd, offset 0x5bb -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xbe, offset 0x5c1 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbf, offset 0x5c9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xc0, offset 0x5d2 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xc1, offset 0x5dd -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xc2, offset 0x5e0 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc3, offset 0x5ec -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xc4, offset 0x5f5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xc5, offset 0x5f8 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xc6, offset 0x5fd -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xc7, offset 0x602 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x99}, -	{value: 0x3308, lo: 0x9a, hi: 0x9b}, -	{value: 0x3008, lo: 0x9c, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xbf}, -	// Block 0xc8, offset 0x60f -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xc9, offset 0x61a -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x3b08, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0xbf}, -	// Block 0xca, offset 0x623 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x98}, -	{value: 0x3b08, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xbf}, -	// Block 0xcb, offset 0x62d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xcc, offset 0x630 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xcd, offset 0x63a -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xce, offset 0x643 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xcf, offset 0x64f -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xd0, offset 0x65c -	{value: 0x0000, lo: 0x0c}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xd1, offset 0x669 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x3008, lo: 0x93, hi: 0x94}, -	{value: 0x3308, lo: 0x95, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x96}, -	{value: 0x3b08, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xbf}, -	// Block 0xd2, offset 0x677 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd3, offset 0x67e -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xd4, offset 0x682 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xd5, offset 0x685 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xd6, offset 0x68a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xd7, offset 0x68d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0340, lo: 0xb0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd8, offset 0x692 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xd9, offset 0x695 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xda, offset 0x69c -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xdb, offset 0x6a3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xdc, offset 0x6a7 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xdd, offset 0x6b2 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xde, offset 0x6b5 -	{value: 0x0000, lo: 0x02}, -	{value: 0xe105, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0xdf, offset 0x6b8 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0xe0, offset 0x6bb -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbf}, -	// Block 0xe1, offset 0x6c1 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xe2, offset 0x6c7 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xe3, offset 0x6cd -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xe4, offset 0x6d0 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xe5, offset 0x6d3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xe6, offset 0x6d6 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0xa3}, -	{value: 0x0008, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xe7, offset 0x6dd -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xe8, offset 0x6e0 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xe9, offset 0x6e5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xea, offset 0x6ef -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xeb, offset 0x6f2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xec, offset 0x6f6 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0xb5b9, lo: 0x9e, hi: 0x9e}, -	{value: 0xb601, lo: 0x9f, hi: 0x9f}, -	{value: 0xb649, lo: 0xa0, hi: 0xa0}, -	{value: 0xb6b1, lo: 0xa1, hi: 0xa1}, -	{value: 0xb719, lo: 0xa2, hi: 0xa2}, -	{value: 0xb781, lo: 0xa3, hi: 0xa3}, -	{value: 0xb7e9, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xed, offset 0x705 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0xb851, lo: 0xbb, hi: 0xbb}, -	{value: 0xb899, lo: 0xbc, hi: 0xbc}, -	{value: 0xb8e1, lo: 0xbd, hi: 0xbd}, -	{value: 0xb949, lo: 0xbe, hi: 0xbe}, -	{value: 0xb9b1, lo: 0xbf, hi: 0xbf}, -	// Block 0xee, offset 0x711 -	{value: 0x0000, lo: 0x03}, -	{value: 0xba19, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xbf}, -	// Block 0xef, offset 0x715 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0xf0, offset 0x71a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0xf1, offset 0x71e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xf2, offset 0x723 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0xf3, offset 0x727 -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0xf4, offset 0x72c -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xf5, offset 0x735 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xf6, offset 0x740 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xf7, offset 0x746 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xf8, offset 0x74c -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xf9, offset 0x752 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xfa, offset 0x758 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0b08, lo: 0x8b, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xfb, offset 0x761 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xb0}, -	{value: 0x0818, lo: 0xb1, hi: 0xbf}, -	// Block 0xfc, offset 0x764 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0818, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xfd, offset 0x767 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0818, lo: 0x81, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xfe, offset 0x76b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xff, offset 0x76f -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x100, offset 0x773 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x101, offset 0x779 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x102, offset 0x77f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0xc1d9, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0x103, offset 0x784 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0x104, offset 0x787 -	{value: 0x0000, lo: 0x0f}, -	{value: 0xc801, lo: 0x80, hi: 0x80}, -	{value: 0xc851, lo: 0x81, hi: 0x81}, -	{value: 0xc8a1, lo: 0x82, hi: 0x82}, -	{value: 0xc8f1, lo: 0x83, hi: 0x83}, -	{value: 0xc941, lo: 0x84, hi: 0x84}, -	{value: 0xc991, lo: 0x85, hi: 0x85}, -	{value: 0xc9e1, lo: 0x86, hi: 0x86}, -	{value: 0xca31, lo: 0x87, hi: 0x87}, -	{value: 0xca81, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0xcad1, lo: 0x90, hi: 0x90}, -	{value: 0xcaf1, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xbf}, -	// Block 0x105, offset 0x797 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x106, offset 0x79e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x107, offset 0x7a1 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x108, offset 0x7a6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x109, offset 0x7aa -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x10a, offset 0x7b0 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0x10b, offset 0x7b5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x10c, offset 0x7b9 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0018, lo: 0xb3, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0x10d, offset 0x7bf -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xa4}, -	{value: 0x0018, lo: 0xa5, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xbf}, -	// Block 0x10e, offset 0x7c5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x10f, offset 0x7c9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x110, offset 0x7d2 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x111, offset 0x7d7 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0x112, offset 0x7da -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x113, offset 0x7dd -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x114, offset 0x7e1 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x115, offset 0x7e5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x116, offset 0x7e8 -	{value: 0x0020, lo: 0x0f}, -	{value: 0xded1, lo: 0x80, hi: 0x89}, -	{value: 0x8e35, lo: 0x8a, hi: 0x8a}, -	{value: 0xe011, lo: 0x8b, hi: 0x9c}, -	{value: 0x8e55, lo: 0x9d, hi: 0x9d}, -	{value: 0xe251, lo: 0x9e, hi: 0xa2}, -	{value: 0x8e75, lo: 0xa3, hi: 0xa3}, -	{value: 0xe2f1, lo: 0xa4, hi: 0xab}, -	{value: 0x7f0d, lo: 0xac, hi: 0xac}, -	{value: 0xe3f1, lo: 0xad, hi: 0xaf}, -	{value: 0x8e95, lo: 0xb0, hi: 0xb0}, -	{value: 0xe451, lo: 0xb1, hi: 0xb6}, -	{value: 0x8eb5, lo: 0xb7, hi: 0xb9}, -	{value: 0xe511, lo: 0xba, hi: 0xba}, -	{value: 0x8f15, lo: 0xbb, hi: 0xbb}, -	{value: 0xe531, lo: 0xbc, hi: 0xbf}, -	// Block 0x117, offset 0x7f8 -	{value: 0x0020, lo: 0x10}, -	{value: 0x93b5, lo: 0x80, hi: 0x80}, -	{value: 0xf0b1, lo: 0x81, hi: 0x86}, -	{value: 0x93d5, lo: 0x87, hi: 0x8a}, -	{value: 0xda11, lo: 0x8b, hi: 0x8b}, -	{value: 0xf171, lo: 0x8c, hi: 0x96}, -	{value: 0x9455, lo: 0x97, hi: 0x97}, -	{value: 0xf2d1, lo: 0x98, hi: 0xa3}, -	{value: 0x9475, lo: 0xa4, hi: 0xa6}, -	{value: 0xf451, lo: 0xa7, hi: 0xaa}, -	{value: 0x94d5, lo: 0xab, hi: 0xab}, -	{value: 0xf4d1, lo: 0xac, hi: 0xac}, -	{value: 0x94f5, lo: 0xad, hi: 0xad}, -	{value: 0xf4f1, lo: 0xae, hi: 0xaf}, -	{value: 0x9515, lo: 0xb0, hi: 0xb1}, -	{value: 0xf531, lo: 0xb2, hi: 0xbe}, -	{value: 0x2040, lo: 0xbf, hi: 0xbf}, -	// Block 0x118, offset 0x809 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0x119, offset 0x80e -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x11a, offset 0x810 -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x11b, offset 0x812 -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 42780 bytes (41KiB); checksum: 29936AB9 diff --git a/vendor/golang.org/x/net/idna/tables13.0.0.go b/vendor/golang.org/x/net/idna/tables13.0.0.go deleted file mode 100644 index 2fb768ef6..000000000 --- a/vendor/golang.org/x/net/idna/tables13.0.0.go +++ /dev/null @@ -1,4959 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build go1.16 && !go1.21 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "13.0.0" - -var mappings string = "" + // Size: 6539 bytes -	"  ̈a ̄23 ́ ̧1o1⁄41⁄23⁄4i̇l·ʼnsdžⱥⱦhjrwy ̆ ̇ ̊ ̨ ̃ ̋lẍ́ ι; ̈́եւاٴوٴۇٴيٴक" + -	"़ख़ग़ज़ड़ढ़फ़य़ড়ঢ়য়ਲ਼ਸ਼ਖ਼ਗ਼ਜ਼ਫ਼ଡ଼ଢ଼ําໍາຫນຫມགྷཌྷདྷབྷཛྷཀྵཱཱིུྲྀྲཱྀླྀླཱ" + -	"ཱྀྀྒྷྜྷྡྷྦྷྫྷྐྵвдостъѣæbdeǝgikmnȣptuɐɑəɛɜŋɔɯvβγδφχρнɒcɕðfɟɡɥɨɩɪʝɭʟɱɰɲɳ" + -	"ɴɵɸʂʃƫʉʊʋʌzʐʑʒθssάέήίόύώἀιἁιἂιἃιἄιἅιἆιἇιἠιἡιἢιἣιἤιἥιἦιἧιὠιὡιὢιὣιὤιὥιὦιὧ" + -	"ιὰιαιάιᾶιι ̈͂ὴιηιήιῆι ̓̀ ̓́ ̓͂ΐ ̔̀ ̔́ ̔͂ΰ ̈̀`ὼιωιώιῶι′′′′′‵‵‵‵‵!!???!!?" + -	"′′′′0456789+=()rsħnoqsmtmωåאבגדπ1⁄71⁄91⁄101⁄32⁄31⁄52⁄53⁄54⁄51⁄65⁄61⁄83" + -	"⁄85⁄87⁄81⁄iiivviviiiixxi0⁄3∫∫∫∫∫∮∮∮∮∮1011121314151617181920(10)(11)(12" + -	")(13)(14)(15)(16)(17)(18)(19)(20)∫∫∫∫==⫝̸ɫɽȿɀ. ゙ ゚よりコト(ᄀ)(ᄂ)(ᄃ)(ᄅ)(ᄆ)(ᄇ)" + -	"(ᄉ)(ᄋ)(ᄌ)(ᄎ)(ᄏ)(ᄐ)(ᄑ)(ᄒ)(가)(나)(다)(라)(마)(바)(사)(아)(자)(차)(카)(타)(파)(하)(주)(오전" + -	")(오후)(一)(二)(三)(四)(五)(六)(七)(八)(九)(十)(月)(火)(水)(木)(金)(土)(日)(株)(有)(社)(名)(特)(" + -	"財)(祝)(労)(代)(呼)(学)(監)(企)(資)(協)(祭)(休)(自)(至)21222324252627282930313233343" + -	"5참고주의3637383940414243444546474849501月2月3月4月5月6月7月8月9月10月11月12月hgev令和アパート" + -	"アルファアンペアアールイニングインチウォンエスクードエーカーオンスオームカイリカラットカロリーガロンガンマギガギニーキュリーギルダーキロキロ" + -	"グラムキロメートルキロワットグラムグラムトンクルゼイロクローネケースコルナコーポサイクルサンチームシリングセンチセントダースデシドルトンナノ" + -	"ノットハイツパーセントパーツバーレルピアストルピクルピコビルファラッドフィートブッシェルフランヘクタールペソペニヒヘルツペンスページベータポ" + -	"イントボルトホンポンドホールホーンマイクロマイルマッハマルクマンションミクロンミリミリバールメガメガトンメートルヤードヤールユアンリットルリ" + -	"ラルピールーブルレムレントゲンワット0点1点2点3点4点5点6点7点8点9点10点11点12点13点14点15点16点17点18点19点20" + -	"点21点22点23点24点daauovpcdmiu平成昭和大正明治株式会社panamakakbmbgbkcalpfnfmgkghzmldlk" + -	"lfmnmmmcmkmm2m3m∕sm∕s2rad∕srad∕s2psnsmspvnvmvkvpwnwmwkwbqcccdc∕kgdbgyhah" + -	"pinkkktlmlnlxphprsrsvwbv∕ma∕m1日2日3日4日5日6日7日8日9日10日11日12日13日14日15日16日17日1" + -	"8日19日20日21日22日23日24日25日26日27日28日29日30日31日ьɦɬʞʇœʍ𤋮𢡊𢡄𣏕𥉉𥳐𧻓fffiflstմնմեմիվնմ" + -	"խיִײַעהכלםרתשׁשׂשּׁשּׂאַאָאּבּגּדּהּוּזּטּיּךּכּלּמּנּסּףּפּצּקּרּשּתּו" + -	"ֹבֿכֿפֿאלٱٻپڀٺٿٹڤڦڄڃچڇڍڌڎڈژڑکگڳڱںڻۀہھےۓڭۇۆۈۋۅۉېىئائەئوئۇئۆئۈئېئىیئجئحئم" + -	"ئيبجبحبخبمبىبيتجتحتختمتىتيثجثمثىثيجحجمحجحمخجخحخمسجسحسخسمصحصمضجضحضخضمطحط" + -	"مظمعجعمغجغمفجفحفخفمفىفيقحقمقىقيكاكجكحكخكلكمكىكيلجلحلخلملىليمجمحمخمممىمي" + -	"نجنحنخنمنىنيهجهمهىهييجيحيخيميىييذٰرٰىٰ ٌّ ٍّ َّ ُّ ِّ ّٰئرئزئنبربزبنترت" + -	"زتنثرثزثنمانرنزننيريزينئخئهبهتهصخلهنههٰيهثهسهشمشهـَّـُّـِّطىطيعىعيغىغيس" + -	"ىسيشىشيحىحيجىجيخىخيصىصيضىضيشجشحشخشرسرصرضراًتجمتحجتحمتخمتمجتمحتمخجمححميح" + -	"مىسحجسجحسجىسمحسمجسممصححصممشحمشجيشمخشممضحىضخمطمحطممطميعجمعممعمىغممغميغمى" + -	"فخمقمحقمملحملحيلحىلججلخملمحمحجمحممحيمجحمجممخجمخممجخهمجهممنحمنحىنجمنجىنم" + -	"ينمىيممبخيتجيتجىتخيتخىتميتمىجميجحىجمىسخىصحيشحيضحيلجيلمييحييجييميمميقمين" + -	"حيعميكمينجحمخيلجمكممجحيحجيمجيفميبحيسخينجيصلےقلےاللهاكبرمحمدصلعمرسولعليه" + -	"وسلمصلىصلى الله عليه وسلمجل جلالهریال,:!?_{}[]#&*-<>\\$%@ـًـَـُـِـّـْءآ" + -	"أؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهويلآلألإلا\x22'/^|~¢£¬¦¥𝅗𝅥𝅘𝅥𝅘𝅥𝅮𝅘𝅥𝅯𝅘𝅥𝅰𝅘𝅥𝅱" + -	"𝅘𝅥𝅲𝆹𝅥𝆺𝅥𝆹𝅥𝅮𝆺𝅥𝅮𝆹𝅥𝅯𝆺𝅥𝅯ıȷαεζηκλμνξοστυψ∇∂ϝٮڡٯ0,1,2,3,4,5,6,7,8,9,(a)(b)(c" + -	")(d)(e)(f)(g)(h)(i)(j)(k)(l)(m)(n)(o)(p)(q)(r)(s)(t)(u)(v)(w)(x)(y)(z)〔s" + -	"〕wzhvsdppvwcmcmdmrdjほかココサ手字双デ二多解天交映無料前後再新初終生販声吹演投捕一三遊左中右指走打禁空合満有月申割営配〔" + -	"本〕〔三〕〔二〕〔安〕〔点〕〔打〕〔盗〕〔勝〕〔敗〕得可丽丸乁你侮侻倂偺備僧像㒞免兔兤具㒹內冗冤仌冬况凵刃㓟刻剆剷㔕勇勉勤勺包匆北卉卑博即卽" + -	"卿灰及叟叫叱吆咞吸呈周咢哶唐啓啣善喙喫喳嗂圖嘆圗噑噴切壮城埴堍型堲報墬売壷夆夢奢姬娛娧姘婦㛮嬈嬾寃寘寧寳寿将尢㞁屠屮峀岍嵃嵮嵫嵼巡巢㠯巽帨帽" + -	"幩㡢㡼庰庳庶廊廾舁弢㣇形彫㣣徚忍志忹悁㤺㤜悔惇慈慌慎慺憎憲憤憯懞懲懶成戛扝抱拔捐挽拼捨掃揤搢揅掩㨮摩摾撝摷㩬敏敬旣書晉㬙暑㬈㫤冒冕最暜肭䏙朗" + -	"望朡杞杓㭉柺枅桒梅梎栟椔㮝楂榣槪檨櫛㰘次歔㱎歲殟殺殻汎沿泍汧洖派海流浩浸涅洴港湮㴳滋滇淹潮濆瀹瀞瀛㶖灊災灷炭煅熜爨爵牐犀犕獺王㺬玥㺸瑇瑜瑱璅" + -	"瓊㼛甤甾異瘐㿼䀈直眞真睊䀹瞋䁆䂖硎碌磌䃣祖福秫䄯穀穊穏䈂篆築䈧糒䊠糨糣紀絣䌁緇縂繅䌴䍙罺羕翺者聠聰䏕育脃䐋脾媵舄辞䑫芑芋芝劳花芳芽苦若茝荣莭" + -	"茣莽菧著荓菊菌菜䔫蓱蓳蔖蕤䕝䕡䕫虐虜虧虩蚩蚈蜎蛢蝹蜨蝫螆蟡蠁䗹衠衣裗裞䘵裺㒻䚾䛇誠諭變豕貫賁贛起跋趼跰軔輸邔郱鄑鄛鈸鋗鋘鉼鏹鐕開䦕閷䧦雃嶲霣" + -	"䩮䩶韠䪲頋頩飢䬳餩馧駂駾䯎鬒鱀鳽䳎䳭鵧䳸麻䵖黹黾鼅鼏鼖鼻" - -var mappingIndex = []uint16{ // 1650 elements -	// Entry 0 - 3F -	0x0000, 0x0000, 0x0001, 0x0004, 0x0005, 0x0008, 0x0009, 0x000a, -	0x000d, 0x0010, 0x0011, 0x0012, 0x0017, 0x001c, 0x0021, 0x0024, -	0x0027, 0x002a, 0x002b, 0x002e, 0x0031, 0x0034, 0x0035, 0x0036, -	0x0037, 0x0038, 0x0039, 0x003c, 0x003f, 0x0042, 0x0045, 0x0048, -	0x004b, 0x004c, 0x004d, 0x0051, 0x0054, 0x0055, 0x005a, 0x005e, -	0x0062, 0x0066, 0x006a, 0x006e, 0x0074, 0x007a, 0x0080, 0x0086, -	0x008c, 0x0092, 0x0098, 0x009e, 0x00a4, 0x00aa, 0x00b0, 0x00b6, -	0x00bc, 0x00c2, 0x00c8, 0x00ce, 0x00d4, 0x00da, 0x00e0, 0x00e6, -	// Entry 40 - 7F -	0x00ec, 0x00f2, 0x00f8, 0x00fe, 0x0104, 0x010a, 0x0110, 0x0116, -	0x011c, 0x0122, 0x0128, 0x012e, 0x0137, 0x013d, 0x0146, 0x014c, -	0x0152, 0x0158, 0x015e, 0x0164, 0x016a, 0x0170, 0x0172, 0x0174, -	0x0176, 0x0178, 0x017a, 0x017c, 0x017e, 0x0180, 0x0181, 0x0182, -	0x0183, 0x0185, 0x0186, 0x0187, 0x0188, 0x0189, 0x018a, 0x018c, -	0x018d, 0x018e, 0x018f, 0x0191, 0x0193, 0x0195, 0x0197, 0x0199, -	0x019b, 0x019d, 0x019f, 0x01a0, 0x01a2, 0x01a4, 0x01a6, 0x01a8, -	0x01aa, 0x01ac, 0x01ae, 0x01b0, 0x01b1, 0x01b3, 0x01b5, 0x01b6, -	// Entry 80 - BF -	0x01b8, 0x01ba, 0x01bc, 0x01be, 0x01c0, 0x01c2, 0x01c4, 0x01c6, -	0x01c8, 0x01ca, 0x01cc, 0x01ce, 0x01d0, 0x01d2, 0x01d4, 0x01d6, -	0x01d8, 0x01da, 0x01dc, 0x01de, 0x01e0, 0x01e2, 0x01e4, 0x01e5, -	0x01e7, 0x01e9, 0x01eb, 0x01ed, 0x01ef, 0x01f1, 0x01f3, 0x01f5, -	0x01f7, 0x01f9, 0x01fb, 0x01fd, 0x0202, 0x0207, 0x020c, 0x0211, -	0x0216, 0x021b, 0x0220, 0x0225, 0x022a, 0x022f, 0x0234, 0x0239, -	0x023e, 0x0243, 0x0248, 0x024d, 0x0252, 0x0257, 0x025c, 0x0261, -	0x0266, 0x026b, 0x0270, 0x0275, 0x027a, 0x027e, 0x0282, 0x0287, -	// Entry C0 - FF -	0x0289, 0x028e, 0x0293, 0x0297, 0x029b, 0x02a0, 0x02a5, 0x02aa, -	0x02af, 0x02b1, 0x02b6, 0x02bb, 0x02c0, 0x02c2, 0x02c7, 0x02c8, -	0x02cd, 0x02d1, 0x02d5, 0x02da, 0x02e0, 0x02e9, 0x02ef, 0x02f8, -	0x02fa, 0x02fc, 0x02fe, 0x0300, 0x030c, 0x030d, 0x030e, 0x030f, -	0x0310, 0x0311, 0x0312, 0x0313, 0x0314, 0x0315, 0x0316, 0x0317, -	0x0319, 0x031b, 0x031d, 0x031e, 0x0320, 0x0322, 0x0324, 0x0326, -	0x0328, 0x032a, 0x032c, 0x032e, 0x0330, 0x0335, 0x033a, 0x0340, -	0x0345, 0x034a, 0x034f, 0x0354, 0x0359, 0x035e, 0x0363, 0x0368, -	// Entry 100 - 13F -	0x036d, 0x0372, 0x0377, 0x037c, 0x0380, 0x0382, 0x0384, 0x0386, -	0x038a, 0x038c, 0x038e, 0x0393, 0x0399, 0x03a2, 0x03a8, 0x03b1, -	0x03b3, 0x03b5, 0x03b7, 0x03b9, 0x03bb, 0x03bd, 0x03bf, 0x03c1, -	0x03c3, 0x03c5, 0x03c7, 0x03cb, 0x03cf, 0x03d3, 0x03d7, 0x03db, -	0x03df, 0x03e3, 0x03e7, 0x03eb, 0x03ef, 0x03f3, 0x03ff, 0x0401, -	0x0406, 0x0408, 0x040a, 0x040c, 0x040e, 0x040f, 0x0413, 0x0417, -	0x041d, 0x0423, 0x0428, 0x042d, 0x0432, 0x0437, 0x043c, 0x0441, -	0x0446, 0x044b, 0x0450, 0x0455, 0x045a, 0x045f, 0x0464, 0x0469, -	// Entry 140 - 17F -	0x046e, 0x0473, 0x0478, 0x047d, 0x0482, 0x0487, 0x048c, 0x0491, -	0x0496, 0x049b, 0x04a0, 0x04a5, 0x04aa, 0x04af, 0x04b4, 0x04bc, -	0x04c4, 0x04c9, 0x04ce, 0x04d3, 0x04d8, 0x04dd, 0x04e2, 0x04e7, -	0x04ec, 0x04f1, 0x04f6, 0x04fb, 0x0500, 0x0505, 0x050a, 0x050f, -	0x0514, 0x0519, 0x051e, 0x0523, 0x0528, 0x052d, 0x0532, 0x0537, -	0x053c, 0x0541, 0x0546, 0x054b, 0x0550, 0x0555, 0x055a, 0x055f, -	0x0564, 0x0569, 0x056e, 0x0573, 0x0578, 0x057a, 0x057c, 0x057e, -	0x0580, 0x0582, 0x0584, 0x0586, 0x0588, 0x058a, 0x058c, 0x058e, -	// Entry 180 - 1BF -	0x0590, 0x0592, 0x0594, 0x0596, 0x059c, 0x05a2, 0x05a4, 0x05a6, -	0x05a8, 0x05aa, 0x05ac, 0x05ae, 0x05b0, 0x05b2, 0x05b4, 0x05b6, -	0x05b8, 0x05ba, 0x05bc, 0x05be, 0x05c0, 0x05c4, 0x05c8, 0x05cc, -	0x05d0, 0x05d4, 0x05d8, 0x05dc, 0x05e0, 0x05e4, 0x05e9, 0x05ee, -	0x05f3, 0x05f5, 0x05f7, 0x05fd, 0x0609, 0x0615, 0x0621, 0x062a, -	0x0636, 0x063f, 0x0648, 0x0657, 0x0663, 0x066c, 0x0675, 0x067e, -	0x068a, 0x0696, 0x069f, 0x06a8, 0x06ae, 0x06b7, 0x06c3, 0x06cf, -	0x06d5, 0x06e4, 0x06f6, 0x0705, 0x070e, 0x071d, 0x072c, 0x0738, -	// Entry 1C0 - 1FF -	0x0741, 0x074a, 0x0753, 0x075f, 0x076e, 0x077a, 0x0783, 0x078c, -	0x0795, 0x079b, 0x07a1, 0x07a7, 0x07ad, 0x07b6, 0x07bf, 0x07ce, -	0x07d7, 0x07e3, 0x07f2, 0x07fb, 0x0801, 0x0807, 0x0816, 0x0822, -	0x0831, 0x083a, 0x0849, 0x084f, 0x0858, 0x0861, 0x086a, 0x0873, -	0x087c, 0x0888, 0x0891, 0x0897, 0x08a0, 0x08a9, 0x08b2, 0x08be, -	0x08c7, 0x08d0, 0x08d9, 0x08e8, 0x08f4, 0x08fa, 0x0909, 0x090f, -	0x091b, 0x0927, 0x0930, 0x0939, 0x0942, 0x094e, 0x0954, 0x095d, -	0x0969, 0x096f, 0x097e, 0x0987, 0x098b, 0x098f, 0x0993, 0x0997, -	// Entry 200 - 23F -	0x099b, 0x099f, 0x09a3, 0x09a7, 0x09ab, 0x09af, 0x09b4, 0x09b9, -	0x09be, 0x09c3, 0x09c8, 0x09cd, 0x09d2, 0x09d7, 0x09dc, 0x09e1, -	0x09e6, 0x09eb, 0x09f0, 0x09f5, 0x09fa, 0x09fc, 0x09fe, 0x0a00, -	0x0a02, 0x0a04, 0x0a06, 0x0a0c, 0x0a12, 0x0a18, 0x0a1e, 0x0a2a, -	0x0a2c, 0x0a2e, 0x0a30, 0x0a32, 0x0a34, 0x0a36, 0x0a38, 0x0a3c, -	0x0a3e, 0x0a40, 0x0a42, 0x0a44, 0x0a46, 0x0a48, 0x0a4a, 0x0a4c, -	0x0a4e, 0x0a50, 0x0a52, 0x0a54, 0x0a56, 0x0a58, 0x0a5a, 0x0a5f, -	0x0a65, 0x0a6c, 0x0a74, 0x0a76, 0x0a78, 0x0a7a, 0x0a7c, 0x0a7e, -	// Entry 240 - 27F -	0x0a80, 0x0a82, 0x0a84, 0x0a86, 0x0a88, 0x0a8a, 0x0a8c, 0x0a8e, -	0x0a90, 0x0a96, 0x0a98, 0x0a9a, 0x0a9c, 0x0a9e, 0x0aa0, 0x0aa2, -	0x0aa4, 0x0aa6, 0x0aa8, 0x0aaa, 0x0aac, 0x0aae, 0x0ab0, 0x0ab2, -	0x0ab4, 0x0ab9, 0x0abe, 0x0ac2, 0x0ac6, 0x0aca, 0x0ace, 0x0ad2, -	0x0ad6, 0x0ada, 0x0ade, 0x0ae2, 0x0ae7, 0x0aec, 0x0af1, 0x0af6, -	0x0afb, 0x0b00, 0x0b05, 0x0b0a, 0x0b0f, 0x0b14, 0x0b19, 0x0b1e, -	0x0b23, 0x0b28, 0x0b2d, 0x0b32, 0x0b37, 0x0b3c, 0x0b41, 0x0b46, -	0x0b4b, 0x0b50, 0x0b52, 0x0b54, 0x0b56, 0x0b58, 0x0b5a, 0x0b5c, -	// Entry 280 - 2BF -	0x0b5e, 0x0b62, 0x0b66, 0x0b6a, 0x0b6e, 0x0b72, 0x0b76, 0x0b7a, -	0x0b7c, 0x0b7e, 0x0b80, 0x0b82, 0x0b86, 0x0b8a, 0x0b8e, 0x0b92, -	0x0b96, 0x0b9a, 0x0b9e, 0x0ba0, 0x0ba2, 0x0ba4, 0x0ba6, 0x0ba8, -	0x0baa, 0x0bac, 0x0bb0, 0x0bb4, 0x0bba, 0x0bc0, 0x0bc4, 0x0bc8, -	0x0bcc, 0x0bd0, 0x0bd4, 0x0bd8, 0x0bdc, 0x0be0, 0x0be4, 0x0be8, -	0x0bec, 0x0bf0, 0x0bf4, 0x0bf8, 0x0bfc, 0x0c00, 0x0c04, 0x0c08, -	0x0c0c, 0x0c10, 0x0c14, 0x0c18, 0x0c1c, 0x0c20, 0x0c24, 0x0c28, -	0x0c2c, 0x0c30, 0x0c34, 0x0c36, 0x0c38, 0x0c3a, 0x0c3c, 0x0c3e, -	// Entry 2C0 - 2FF -	0x0c40, 0x0c42, 0x0c44, 0x0c46, 0x0c48, 0x0c4a, 0x0c4c, 0x0c4e, -	0x0c50, 0x0c52, 0x0c54, 0x0c56, 0x0c58, 0x0c5a, 0x0c5c, 0x0c5e, -	0x0c60, 0x0c62, 0x0c64, 0x0c66, 0x0c68, 0x0c6a, 0x0c6c, 0x0c6e, -	0x0c70, 0x0c72, 0x0c74, 0x0c76, 0x0c78, 0x0c7a, 0x0c7c, 0x0c7e, -	0x0c80, 0x0c82, 0x0c86, 0x0c8a, 0x0c8e, 0x0c92, 0x0c96, 0x0c9a, -	0x0c9e, 0x0ca2, 0x0ca4, 0x0ca8, 0x0cac, 0x0cb0, 0x0cb4, 0x0cb8, -	0x0cbc, 0x0cc0, 0x0cc4, 0x0cc8, 0x0ccc, 0x0cd0, 0x0cd4, 0x0cd8, -	0x0cdc, 0x0ce0, 0x0ce4, 0x0ce8, 0x0cec, 0x0cf0, 0x0cf4, 0x0cf8, -	// Entry 300 - 33F -	0x0cfc, 0x0d00, 0x0d04, 0x0d08, 0x0d0c, 0x0d10, 0x0d14, 0x0d18, -	0x0d1c, 0x0d20, 0x0d24, 0x0d28, 0x0d2c, 0x0d30, 0x0d34, 0x0d38, -	0x0d3c, 0x0d40, 0x0d44, 0x0d48, 0x0d4c, 0x0d50, 0x0d54, 0x0d58, -	0x0d5c, 0x0d60, 0x0d64, 0x0d68, 0x0d6c, 0x0d70, 0x0d74, 0x0d78, -	0x0d7c, 0x0d80, 0x0d84, 0x0d88, 0x0d8c, 0x0d90, 0x0d94, 0x0d98, -	0x0d9c, 0x0da0, 0x0da4, 0x0da8, 0x0dac, 0x0db0, 0x0db4, 0x0db8, -	0x0dbc, 0x0dc0, 0x0dc4, 0x0dc8, 0x0dcc, 0x0dd0, 0x0dd4, 0x0dd8, -	0x0ddc, 0x0de0, 0x0de4, 0x0de8, 0x0dec, 0x0df0, 0x0df4, 0x0df8, -	// Entry 340 - 37F -	0x0dfc, 0x0e00, 0x0e04, 0x0e08, 0x0e0c, 0x0e10, 0x0e14, 0x0e18, -	0x0e1d, 0x0e22, 0x0e27, 0x0e2c, 0x0e31, 0x0e36, 0x0e3a, 0x0e3e, -	0x0e42, 0x0e46, 0x0e4a, 0x0e4e, 0x0e52, 0x0e56, 0x0e5a, 0x0e5e, -	0x0e62, 0x0e66, 0x0e6a, 0x0e6e, 0x0e72, 0x0e76, 0x0e7a, 0x0e7e, -	0x0e82, 0x0e86, 0x0e8a, 0x0e8e, 0x0e92, 0x0e96, 0x0e9a, 0x0e9e, -	0x0ea2, 0x0ea6, 0x0eaa, 0x0eae, 0x0eb2, 0x0eb6, 0x0ebc, 0x0ec2, -	0x0ec8, 0x0ecc, 0x0ed0, 0x0ed4, 0x0ed8, 0x0edc, 0x0ee0, 0x0ee4, -	0x0ee8, 0x0eec, 0x0ef0, 0x0ef4, 0x0ef8, 0x0efc, 0x0f00, 0x0f04, -	// Entry 380 - 3BF -	0x0f08, 0x0f0c, 0x0f10, 0x0f14, 0x0f18, 0x0f1c, 0x0f20, 0x0f24, -	0x0f28, 0x0f2c, 0x0f30, 0x0f34, 0x0f38, 0x0f3e, 0x0f44, 0x0f4a, -	0x0f50, 0x0f56, 0x0f5c, 0x0f62, 0x0f68, 0x0f6e, 0x0f74, 0x0f7a, -	0x0f80, 0x0f86, 0x0f8c, 0x0f92, 0x0f98, 0x0f9e, 0x0fa4, 0x0faa, -	0x0fb0, 0x0fb6, 0x0fbc, 0x0fc2, 0x0fc8, 0x0fce, 0x0fd4, 0x0fda, -	0x0fe0, 0x0fe6, 0x0fec, 0x0ff2, 0x0ff8, 0x0ffe, 0x1004, 0x100a, -	0x1010, 0x1016, 0x101c, 0x1022, 0x1028, 0x102e, 0x1034, 0x103a, -	0x1040, 0x1046, 0x104c, 0x1052, 0x1058, 0x105e, 0x1064, 0x106a, -	// Entry 3C0 - 3FF -	0x1070, 0x1076, 0x107c, 0x1082, 0x1088, 0x108e, 0x1094, 0x109a, -	0x10a0, 0x10a6, 0x10ac, 0x10b2, 0x10b8, 0x10be, 0x10c4, 0x10ca, -	0x10d0, 0x10d6, 0x10dc, 0x10e2, 0x10e8, 0x10ee, 0x10f4, 0x10fa, -	0x1100, 0x1106, 0x110c, 0x1112, 0x1118, 0x111e, 0x1124, 0x112a, -	0x1130, 0x1136, 0x113c, 0x1142, 0x1148, 0x114e, 0x1154, 0x115a, -	0x1160, 0x1166, 0x116c, 0x1172, 0x1178, 0x1180, 0x1188, 0x1190, -	0x1198, 0x11a0, 0x11a8, 0x11b0, 0x11b6, 0x11d7, 0x11e6, 0x11ee, -	0x11ef, 0x11f0, 0x11f1, 0x11f2, 0x11f3, 0x11f4, 0x11f5, 0x11f6, -	// Entry 400 - 43F -	0x11f7, 0x11f8, 0x11f9, 0x11fa, 0x11fb, 0x11fc, 0x11fd, 0x11fe, -	0x11ff, 0x1200, 0x1201, 0x1205, 0x1209, 0x120d, 0x1211, 0x1215, -	0x1219, 0x121b, 0x121d, 0x121f, 0x1221, 0x1223, 0x1225, 0x1227, -	0x1229, 0x122b, 0x122d, 0x122f, 0x1231, 0x1233, 0x1235, 0x1237, -	0x1239, 0x123b, 0x123d, 0x123f, 0x1241, 0x1243, 0x1245, 0x1247, -	0x1249, 0x124b, 0x124d, 0x124f, 0x1251, 0x1253, 0x1255, 0x1257, -	0x1259, 0x125b, 0x125d, 0x125f, 0x1263, 0x1267, 0x126b, 0x126f, -	0x1270, 0x1271, 0x1272, 0x1273, 0x1274, 0x1275, 0x1277, 0x1279, -	// Entry 440 - 47F -	0x127b, 0x127d, 0x127f, 0x1287, 0x128f, 0x129b, 0x12a7, 0x12b3, -	0x12bf, 0x12cb, 0x12d3, 0x12db, 0x12e7, 0x12f3, 0x12ff, 0x130b, -	0x130d, 0x130f, 0x1311, 0x1313, 0x1315, 0x1317, 0x1319, 0x131b, -	0x131d, 0x131f, 0x1321, 0x1323, 0x1325, 0x1327, 0x1329, 0x132b, -	0x132e, 0x1331, 0x1333, 0x1335, 0x1337, 0x1339, 0x133b, 0x133d, -	0x133f, 0x1341, 0x1343, 0x1345, 0x1347, 0x1349, 0x134b, 0x134d, -	0x1350, 0x1353, 0x1356, 0x1359, 0x135c, 0x135f, 0x1362, 0x1365, -	0x1368, 0x136b, 0x136e, 0x1371, 0x1374, 0x1377, 0x137a, 0x137d, -	// Entry 480 - 4BF -	0x1380, 0x1383, 0x1386, 0x1389, 0x138c, 0x138f, 0x1392, 0x1395, -	0x1398, 0x139b, 0x13a2, 0x13a4, 0x13a6, 0x13a8, 0x13ab, 0x13ad, -	0x13af, 0x13b1, 0x13b3, 0x13b5, 0x13bb, 0x13c1, 0x13c4, 0x13c7, -	0x13ca, 0x13cd, 0x13d0, 0x13d3, 0x13d6, 0x13d9, 0x13dc, 0x13df, -	0x13e2, 0x13e5, 0x13e8, 0x13eb, 0x13ee, 0x13f1, 0x13f4, 0x13f7, -	0x13fa, 0x13fd, 0x1400, 0x1403, 0x1406, 0x1409, 0x140c, 0x140f, -	0x1412, 0x1415, 0x1418, 0x141b, 0x141e, 0x1421, 0x1424, 0x1427, -	0x142a, 0x142d, 0x1430, 0x1433, 0x1436, 0x1439, 0x143c, 0x143f, -	// Entry 4C0 - 4FF -	0x1442, 0x1445, 0x1448, 0x1451, 0x145a, 0x1463, 0x146c, 0x1475, -	0x147e, 0x1487, 0x1490, 0x1499, 0x149c, 0x149f, 0x14a2, 0x14a5, -	0x14a8, 0x14ab, 0x14ae, 0x14b1, 0x14b4, 0x14b7, 0x14ba, 0x14bd, -	0x14c0, 0x14c3, 0x14c6, 0x14c9, 0x14cc, 0x14cf, 0x14d2, 0x14d5, -	0x14d8, 0x14db, 0x14de, 0x14e1, 0x14e4, 0x14e7, 0x14ea, 0x14ed, -	0x14f0, 0x14f3, 0x14f6, 0x14f9, 0x14fc, 0x14ff, 0x1502, 0x1505, -	0x1508, 0x150b, 0x150e, 0x1511, 0x1514, 0x1517, 0x151a, 0x151d, -	0x1520, 0x1523, 0x1526, 0x1529, 0x152c, 0x152f, 0x1532, 0x1535, -	// Entry 500 - 53F -	0x1538, 0x153b, 0x153e, 0x1541, 0x1544, 0x1547, 0x154a, 0x154d, -	0x1550, 0x1553, 0x1556, 0x1559, 0x155c, 0x155f, 0x1562, 0x1565, -	0x1568, 0x156b, 0x156e, 0x1571, 0x1574, 0x1577, 0x157a, 0x157d, -	0x1580, 0x1583, 0x1586, 0x1589, 0x158c, 0x158f, 0x1592, 0x1595, -	0x1598, 0x159b, 0x159e, 0x15a1, 0x15a4, 0x15a7, 0x15aa, 0x15ad, -	0x15b0, 0x15b3, 0x15b6, 0x15b9, 0x15bc, 0x15bf, 0x15c2, 0x15c5, -	0x15c8, 0x15cb, 0x15ce, 0x15d1, 0x15d4, 0x15d7, 0x15da, 0x15dd, -	0x15e0, 0x15e3, 0x15e6, 0x15e9, 0x15ec, 0x15ef, 0x15f2, 0x15f5, -	// Entry 540 - 57F -	0x15f8, 0x15fb, 0x15fe, 0x1601, 0x1604, 0x1607, 0x160a, 0x160d, -	0x1610, 0x1613, 0x1616, 0x1619, 0x161c, 0x161f, 0x1622, 0x1625, -	0x1628, 0x162b, 0x162e, 0x1631, 0x1634, 0x1637, 0x163a, 0x163d, -	0x1640, 0x1643, 0x1646, 0x1649, 0x164c, 0x164f, 0x1652, 0x1655, -	0x1658, 0x165b, 0x165e, 0x1661, 0x1664, 0x1667, 0x166a, 0x166d, -	0x1670, 0x1673, 0x1676, 0x1679, 0x167c, 0x167f, 0x1682, 0x1685, -	0x1688, 0x168b, 0x168e, 0x1691, 0x1694, 0x1697, 0x169a, 0x169d, -	0x16a0, 0x16a3, 0x16a6, 0x16a9, 0x16ac, 0x16af, 0x16b2, 0x16b5, -	// Entry 580 - 5BF -	0x16b8, 0x16bb, 0x16be, 0x16c1, 0x16c4, 0x16c7, 0x16ca, 0x16cd, -	0x16d0, 0x16d3, 0x16d6, 0x16d9, 0x16dc, 0x16df, 0x16e2, 0x16e5, -	0x16e8, 0x16eb, 0x16ee, 0x16f1, 0x16f4, 0x16f7, 0x16fa, 0x16fd, -	0x1700, 0x1703, 0x1706, 0x1709, 0x170c, 0x170f, 0x1712, 0x1715, -	0x1718, 0x171b, 0x171e, 0x1721, 0x1724, 0x1727, 0x172a, 0x172d, -	0x1730, 0x1733, 0x1736, 0x1739, 0x173c, 0x173f, 0x1742, 0x1745, -	0x1748, 0x174b, 0x174e, 0x1751, 0x1754, 0x1757, 0x175a, 0x175d, -	0x1760, 0x1763, 0x1766, 0x1769, 0x176c, 0x176f, 0x1772, 0x1775, -	// Entry 5C0 - 5FF -	0x1778, 0x177b, 0x177e, 0x1781, 0x1784, 0x1787, 0x178a, 0x178d, -	0x1790, 0x1793, 0x1796, 0x1799, 0x179c, 0x179f, 0x17a2, 0x17a5, -	0x17a8, 0x17ab, 0x17ae, 0x17b1, 0x17b4, 0x17b7, 0x17ba, 0x17bd, -	0x17c0, 0x17c3, 0x17c6, 0x17c9, 0x17cc, 0x17cf, 0x17d2, 0x17d5, -	0x17d8, 0x17db, 0x17de, 0x17e1, 0x17e4, 0x17e7, 0x17ea, 0x17ed, -	0x17f0, 0x17f3, 0x17f6, 0x17f9, 0x17fc, 0x17ff, 0x1802, 0x1805, -	0x1808, 0x180b, 0x180e, 0x1811, 0x1814, 0x1817, 0x181a, 0x181d, -	0x1820, 0x1823, 0x1826, 0x1829, 0x182c, 0x182f, 0x1832, 0x1835, -	// Entry 600 - 63F -	0x1838, 0x183b, 0x183e, 0x1841, 0x1844, 0x1847, 0x184a, 0x184d, -	0x1850, 0x1853, 0x1856, 0x1859, 0x185c, 0x185f, 0x1862, 0x1865, -	0x1868, 0x186b, 0x186e, 0x1871, 0x1874, 0x1877, 0x187a, 0x187d, -	0x1880, 0x1883, 0x1886, 0x1889, 0x188c, 0x188f, 0x1892, 0x1895, -	0x1898, 0x189b, 0x189e, 0x18a1, 0x18a4, 0x18a7, 0x18aa, 0x18ad, -	0x18b0, 0x18b3, 0x18b6, 0x18b9, 0x18bc, 0x18bf, 0x18c2, 0x18c5, -	0x18c8, 0x18cb, 0x18ce, 0x18d1, 0x18d4, 0x18d7, 0x18da, 0x18dd, -	0x18e0, 0x18e3, 0x18e6, 0x18e9, 0x18ec, 0x18ef, 0x18f2, 0x18f5, -	// Entry 640 - 67F -	0x18f8, 0x18fb, 0x18fe, 0x1901, 0x1904, 0x1907, 0x190a, 0x190d, -	0x1910, 0x1913, 0x1916, 0x1919, 0x191c, 0x191f, 0x1922, 0x1925, -	0x1928, 0x192b, 0x192e, 0x1931, 0x1934, 0x1937, 0x193a, 0x193d, -	0x1940, 0x1943, 0x1946, 0x1949, 0x194c, 0x194f, 0x1952, 0x1955, -	0x1958, 0x195b, 0x195e, 0x1961, 0x1964, 0x1967, 0x196a, 0x196d, -	0x1970, 0x1973, 0x1976, 0x1979, 0x197c, 0x197f, 0x1982, 0x1985, -	0x1988, 0x198b, -} // Size: 3324 bytes - -var xorData string = "" + // Size: 4862 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x021\x00\x02\x01\x04\x02\x01\x02\x02\x019\x02" + -	"\x03\x1c\x02\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03" + -	"\xc1r\x02\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<" + -	"\x03\xc1s*\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03" + -	"\x83\xab\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96" + -	"\xe1\xcd\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03" + -	"\x9a\xec\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c" + -	"!\x03\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03" + -	"ʦ\x93\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7" + -	"\x03\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca" + -	"\xfa\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e" + -	"\x03\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca" + -	"\xe3\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99" + -	"\x03\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca" + -	"\xe8\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03" + -	"\x0b\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06" + -	"\x05\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03" + -	"\x0786\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/" + -	"\x03\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f" + -	"\x03\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-" + -	"\x03\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03" + -	"\x07\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03" + -	"\x07\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03" + -	"\x07\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b" + -	"\x0a\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03" + -	"\x07\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+" + -	"\x03\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03" + -	"\x044\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03" + -	"\x04+ \x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!" + -	"\x22\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04" + -	"\x03\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>" + -	"\x03\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03" + -	"\x054\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03" + -	"\x05):\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$" + -	"\x1e\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226" + -	"\x03\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05" + -	"\x1b\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05" + -	"\x03\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03" + -	"\x06\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08" + -	"\x03\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03" + -	"\x0a6\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a" + -	"\x1f\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03" + -	"\x0a\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f" + -	"\x02\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/" + -	"\x03\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a" + -	"\x00\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+" + -	"\x10\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#" + -	"<\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!" + -	"\x00\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18." + -	"\x03\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15" + -	"\x22\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b" + -	"\x12\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05" + -	"<\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x03\x0b)\x08\x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!" + -	"\x10\x03\x0b!0\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b" + -	"\x03\x09\x1f\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14" + -	"\x03\x0a\x01\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03" + -	"\x08='\x03\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03" + -	"\x09\x0c\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06" + -	"!3\x03\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05" + -	"\x03\x07<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07" + -	"\x01\x00\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03" + -	"\x09\x11\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03" + -	"\x0a/1\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03" + -	"\x07<3\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06" + -	"\x13\x00\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(" + -	";\x03\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08" + -	"\x14$\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03" + -	"\x0a\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19" + -	"\x01\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18" + -	"\x03\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03" + -	"\x07\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03" + -	"\x0a\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03" + -	"\x0b\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03" + -	"\x08\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05" + -	"\x03\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11" + -	"\x03\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03" + -	"\x09\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a" + -	".\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x01\x1e\x03\x0f$!\x03" + -	"\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08\x18\x03\x0f" + -	"\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$\x03\x0e\x0d)" + -	"\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d\x03\x0d. \x03" + -	"\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03\x0d\x0d\x0f\x03" + -	"\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03\x0c\x09:\x03\x0e" + -	"\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18\x03\x0c\x1f\x1c" + -	"\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03\x0b<+\x03\x0b8" + -	"\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d\x22&\x03\x0b\x1a" + -	"\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03\x0a!\x1a\x03\x0a!" + -	"7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03\x0a\x00 \x03\x0a" + -	"\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a\x1b-\x03\x09-" + -	"\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091\x1f\x03\x093" + -	"\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(\x16\x03\x09" + -	"\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!\x03\x09\x1a" + -	"\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03\x08\x02*" + -	"\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03\x070\x0c" + -	"\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x0671\x03" + -	"\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 \x1d\x03" + -	"\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 30196 bytes (29.49 KiB). Checksum: e2ae95a945f04016. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 126: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 126 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 128 blocks, 8192 entries, 16384 bytes -// The third block is the zero block. -var idnaValues = [8192]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x0012, 0xe9: 0x0018, -	0xea: 0x0019, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x0022, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0029, 0xf3: 0x0031, 0xf4: 0x003a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x0042, 0xf9: 0x0049, 0xfa: 0x0051, 0xfb: 0x0018, -	0xfc: 0x0059, 0xfd: 0x0061, 0xfe: 0x0069, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0071, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0079, -	// Block 0x5, offset 0x140 -	0x140: 0x0079, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x0081, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x0089, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x0091, 0x1c5: 0x0091, -	0x1c6: 0x0091, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0099, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x00a1, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x00d2, 0x259: 0x00da, 0x25a: 0x00e2, 0x25b: 0x00ea, 0x25c: 0x00f2, 0x25d: 0x00fa, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0101, 0x262: 0x0089, 0x263: 0x0109, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0111, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x011a, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x0122, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x003a, 0x2c5: 0x012a, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0040, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0139, -	0x4b6: 0x0141, 0x4b7: 0x0149, 0x4b8: 0x0151, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x0c08, 0x541: 0x0a08, 0x542: 0x0a08, 0x543: 0x0a08, 0x544: 0x0a08, 0x545: 0x0a08, -	0x546: 0x0c08, 0x547: 0x0c08, 0x548: 0x0a08, 0x549: 0x0c08, 0x54a: 0x0a08, 0x54b: 0x0a08, -	0x54c: 0x0a08, 0x54d: 0x0a08, 0x54e: 0x0a08, 0x54f: 0x0a08, 0x550: 0x0a08, 0x551: 0x0a08, -	0x552: 0x0a08, 0x553: 0x0a08, 0x554: 0x0c08, 0x555: 0x0a08, 0x556: 0x0c08, 0x557: 0x0c08, -	0x558: 0x0c08, 0x559: 0x3308, 0x55a: 0x3308, 0x55b: 0x3308, 0x55c: 0x0040, 0x55d: 0x0040, -	0x55e: 0x0818, 0x55f: 0x0040, 0x560: 0x0a08, 0x561: 0x0808, 0x562: 0x0a08, 0x563: 0x0a08, -	0x564: 0x0a08, 0x565: 0x0a08, 0x566: 0x0808, 0x567: 0x0c08, 0x568: 0x0a08, 0x569: 0x0c08, -	0x56a: 0x0c08, 0x56b: 0x0040, 0x56c: 0x0040, 0x56d: 0x0040, 0x56e: 0x0040, 0x56f: 0x0040, -	0x570: 0x0040, 0x571: 0x0040, 0x572: 0x0040, 0x573: 0x0040, 0x574: 0x0040, 0x575: 0x0040, -	0x576: 0x0040, 0x577: 0x0040, 0x578: 0x0040, 0x579: 0x0040, 0x57a: 0x0040, 0x57b: 0x0040, -	0x57c: 0x0040, 0x57d: 0x0040, 0x57e: 0x0040, 0x57f: 0x0040, -	// Block 0x16, offset 0x580 -	0x580: 0x3008, 0x581: 0x3308, 0x582: 0x3308, 0x583: 0x3308, 0x584: 0x3308, 0x585: 0x3308, -	0x586: 0x3308, 0x587: 0x3308, 0x588: 0x3308, 0x589: 0x3008, 0x58a: 0x3008, 0x58b: 0x3008, -	0x58c: 0x3008, 0x58d: 0x3b08, 0x58e: 0x3008, 0x58f: 0x3008, 0x590: 0x0008, 0x591: 0x3308, -	0x592: 0x3308, 0x593: 0x3308, 0x594: 0x3308, 0x595: 0x3308, 0x596: 0x3308, 0x597: 0x3308, -	0x598: 0x0159, 0x599: 0x0161, 0x59a: 0x0169, 0x59b: 0x0171, 0x59c: 0x0179, 0x59d: 0x0181, -	0x59e: 0x0189, 0x59f: 0x0191, 0x5a0: 0x0008, 0x5a1: 0x0008, 0x5a2: 0x3308, 0x5a3: 0x3308, -	0x5a4: 0x0018, 0x5a5: 0x0018, 0x5a6: 0x0008, 0x5a7: 0x0008, 0x5a8: 0x0008, 0x5a9: 0x0008, -	0x5aa: 0x0008, 0x5ab: 0x0008, 0x5ac: 0x0008, 0x5ad: 0x0008, 0x5ae: 0x0008, 0x5af: 0x0008, -	0x5b0: 0x0018, 0x5b1: 0x0008, 0x5b2: 0x0008, 0x5b3: 0x0008, 0x5b4: 0x0008, 0x5b5: 0x0008, -	0x5b6: 0x0008, 0x5b7: 0x0008, 0x5b8: 0x0008, 0x5b9: 0x0008, 0x5ba: 0x0008, 0x5bb: 0x0008, -	0x5bc: 0x0008, 0x5bd: 0x0008, 0x5be: 0x0008, 0x5bf: 0x0008, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x0008, 0x5c1: 0x3308, 0x5c2: 0x3008, 0x5c3: 0x3008, 0x5c4: 0x0040, 0x5c5: 0x0008, -	0x5c6: 0x0008, 0x5c7: 0x0008, 0x5c8: 0x0008, 0x5c9: 0x0008, 0x5ca: 0x0008, 0x5cb: 0x0008, -	0x5cc: 0x0008, 0x5cd: 0x0040, 0x5ce: 0x0040, 0x5cf: 0x0008, 0x5d0: 0x0008, 0x5d1: 0x0040, -	0x5d2: 0x0040, 0x5d3: 0x0008, 0x5d4: 0x0008, 0x5d5: 0x0008, 0x5d6: 0x0008, 0x5d7: 0x0008, -	0x5d8: 0x0008, 0x5d9: 0x0008, 0x5da: 0x0008, 0x5db: 0x0008, 0x5dc: 0x0008, 0x5dd: 0x0008, -	0x5de: 0x0008, 0x5df: 0x0008, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x0008, 0x5e3: 0x0008, -	0x5e4: 0x0008, 0x5e5: 0x0008, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0040, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0008, 0x5f1: 0x0040, 0x5f2: 0x0008, 0x5f3: 0x0040, 0x5f4: 0x0040, 0x5f5: 0x0040, -	0x5f6: 0x0008, 0x5f7: 0x0008, 0x5f8: 0x0008, 0x5f9: 0x0008, 0x5fa: 0x0040, 0x5fb: 0x0040, -	0x5fc: 0x3308, 0x5fd: 0x0008, 0x5fe: 0x3008, 0x5ff: 0x3008, -	// Block 0x18, offset 0x600 -	0x600: 0x3008, 0x601: 0x3308, 0x602: 0x3308, 0x603: 0x3308, 0x604: 0x3308, 0x605: 0x0040, -	0x606: 0x0040, 0x607: 0x3008, 0x608: 0x3008, 0x609: 0x0040, 0x60a: 0x0040, 0x60b: 0x3008, -	0x60c: 0x3008, 0x60d: 0x3b08, 0x60e: 0x0008, 0x60f: 0x0040, 0x610: 0x0040, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0040, 0x614: 0x0040, 0x615: 0x0040, 0x616: 0x0040, 0x617: 0x3008, -	0x618: 0x0040, 0x619: 0x0040, 0x61a: 0x0040, 0x61b: 0x0040, 0x61c: 0x0199, 0x61d: 0x01a1, -	0x61e: 0x0040, 0x61f: 0x01a9, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x3308, 0x623: 0x3308, -	0x624: 0x0040, 0x625: 0x0040, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0008, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0008, 0x632: 0x0018, 0x633: 0x0018, 0x634: 0x0018, 0x635: 0x0018, -	0x636: 0x0018, 0x637: 0x0018, 0x638: 0x0018, 0x639: 0x0018, 0x63a: 0x0018, 0x63b: 0x0018, -	0x63c: 0x0008, 0x63d: 0x0018, 0x63e: 0x3308, 0x63f: 0x0040, -	// Block 0x19, offset 0x640 -	0x640: 0x0040, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x3008, 0x644: 0x0040, 0x645: 0x0008, -	0x646: 0x0008, 0x647: 0x0008, 0x648: 0x0008, 0x649: 0x0008, 0x64a: 0x0008, 0x64b: 0x0040, -	0x64c: 0x0040, 0x64d: 0x0040, 0x64e: 0x0040, 0x64f: 0x0008, 0x650: 0x0008, 0x651: 0x0040, -	0x652: 0x0040, 0x653: 0x0008, 0x654: 0x0008, 0x655: 0x0008, 0x656: 0x0008, 0x657: 0x0008, -	0x658: 0x0008, 0x659: 0x0008, 0x65a: 0x0008, 0x65b: 0x0008, 0x65c: 0x0008, 0x65d: 0x0008, -	0x65e: 0x0008, 0x65f: 0x0008, 0x660: 0x0008, 0x661: 0x0008, 0x662: 0x0008, 0x663: 0x0008, -	0x664: 0x0008, 0x665: 0x0008, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0040, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x0008, 0x671: 0x0040, 0x672: 0x0008, 0x673: 0x01b1, 0x674: 0x0040, 0x675: 0x0008, -	0x676: 0x01b9, 0x677: 0x0040, 0x678: 0x0008, 0x679: 0x0008, 0x67a: 0x0040, 0x67b: 0x0040, -	0x67c: 0x3308, 0x67d: 0x0040, 0x67e: 0x3008, 0x67f: 0x3008, -	// Block 0x1a, offset 0x680 -	0x680: 0x3008, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x0040, 0x684: 0x0040, 0x685: 0x0040, -	0x686: 0x0040, 0x687: 0x3308, 0x688: 0x3308, 0x689: 0x0040, 0x68a: 0x0040, 0x68b: 0x3308, -	0x68c: 0x3308, 0x68d: 0x3b08, 0x68e: 0x0040, 0x68f: 0x0040, 0x690: 0x0040, 0x691: 0x3308, -	0x692: 0x0040, 0x693: 0x0040, 0x694: 0x0040, 0x695: 0x0040, 0x696: 0x0040, 0x697: 0x0040, -	0x698: 0x0040, 0x699: 0x01c1, 0x69a: 0x01c9, 0x69b: 0x01d1, 0x69c: 0x0008, 0x69d: 0x0040, -	0x69e: 0x01d9, 0x69f: 0x0040, 0x6a0: 0x0040, 0x6a1: 0x0040, 0x6a2: 0x0040, 0x6a3: 0x0040, -	0x6a4: 0x0040, 0x6a5: 0x0040, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0008, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x3308, 0x6b1: 0x3308, 0x6b2: 0x0008, 0x6b3: 0x0008, 0x6b4: 0x0008, 0x6b5: 0x3308, -	0x6b6: 0x0018, 0x6b7: 0x0040, 0x6b8: 0x0040, 0x6b9: 0x0040, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x0040, 0x6bd: 0x0040, 0x6be: 0x0040, 0x6bf: 0x0040, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x0040, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x3008, 0x6c4: 0x0040, 0x6c5: 0x0008, -	0x6c6: 0x0008, 0x6c7: 0x0008, 0x6c8: 0x0008, 0x6c9: 0x0008, 0x6ca: 0x0008, 0x6cb: 0x0008, -	0x6cc: 0x0008, 0x6cd: 0x0008, 0x6ce: 0x0040, 0x6cf: 0x0008, 0x6d0: 0x0008, 0x6d1: 0x0008, -	0x6d2: 0x0040, 0x6d3: 0x0008, 0x6d4: 0x0008, 0x6d5: 0x0008, 0x6d6: 0x0008, 0x6d7: 0x0008, -	0x6d8: 0x0008, 0x6d9: 0x0008, 0x6da: 0x0008, 0x6db: 0x0008, 0x6dc: 0x0008, 0x6dd: 0x0008, -	0x6de: 0x0008, 0x6df: 0x0008, 0x6e0: 0x0008, 0x6e1: 0x0008, 0x6e2: 0x0008, 0x6e3: 0x0008, -	0x6e4: 0x0008, 0x6e5: 0x0008, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0040, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x0008, 0x6f1: 0x0040, 0x6f2: 0x0008, 0x6f3: 0x0008, 0x6f4: 0x0040, 0x6f5: 0x0008, -	0x6f6: 0x0008, 0x6f7: 0x0008, 0x6f8: 0x0008, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x3308, 0x6fd: 0x0008, 0x6fe: 0x3008, 0x6ff: 0x3008, -	// Block 0x1c, offset 0x700 -	0x700: 0x3008, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3308, 0x704: 0x3308, 0x705: 0x3308, -	0x706: 0x0040, 0x707: 0x3308, 0x708: 0x3308, 0x709: 0x3008, 0x70a: 0x0040, 0x70b: 0x3008, -	0x70c: 0x3008, 0x70d: 0x3b08, 0x70e: 0x0040, 0x70f: 0x0040, 0x710: 0x0008, 0x711: 0x0040, -	0x712: 0x0040, 0x713: 0x0040, 0x714: 0x0040, 0x715: 0x0040, 0x716: 0x0040, 0x717: 0x0040, -	0x718: 0x0040, 0x719: 0x0040, 0x71a: 0x0040, 0x71b: 0x0040, 0x71c: 0x0040, 0x71d: 0x0040, -	0x71e: 0x0040, 0x71f: 0x0040, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x3308, 0x723: 0x3308, -	0x724: 0x0040, 0x725: 0x0040, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0008, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0018, 0x731: 0x0018, 0x732: 0x0040, 0x733: 0x0040, 0x734: 0x0040, 0x735: 0x0040, -	0x736: 0x0040, 0x737: 0x0040, 0x738: 0x0040, 0x739: 0x0008, 0x73a: 0x3308, 0x73b: 0x3308, -	0x73c: 0x3308, 0x73d: 0x3308, 0x73e: 0x3308, 0x73f: 0x3308, -	// Block 0x1d, offset 0x740 -	0x740: 0x0040, 0x741: 0x3308, 0x742: 0x3008, 0x743: 0x3008, 0x744: 0x0040, 0x745: 0x0008, -	0x746: 0x0008, 0x747: 0x0008, 0x748: 0x0008, 0x749: 0x0008, 0x74a: 0x0008, 0x74b: 0x0008, -	0x74c: 0x0008, 0x74d: 0x0040, 0x74e: 0x0040, 0x74f: 0x0008, 0x750: 0x0008, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0008, 0x754: 0x0008, 0x755: 0x0008, 0x756: 0x0008, 0x757: 0x0008, -	0x758: 0x0008, 0x759: 0x0008, 0x75a: 0x0008, 0x75b: 0x0008, 0x75c: 0x0008, 0x75d: 0x0008, -	0x75e: 0x0008, 0x75f: 0x0008, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x0008, 0x763: 0x0008, -	0x764: 0x0008, 0x765: 0x0008, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0040, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0008, 0x771: 0x0040, 0x772: 0x0008, 0x773: 0x0008, 0x774: 0x0040, 0x775: 0x0008, -	0x776: 0x0008, 0x777: 0x0008, 0x778: 0x0008, 0x779: 0x0008, 0x77a: 0x0040, 0x77b: 0x0040, -	0x77c: 0x3308, 0x77d: 0x0008, 0x77e: 0x3008, 0x77f: 0x3308, -	// Block 0x1e, offset 0x780 -	0x780: 0x3008, 0x781: 0x3308, 0x782: 0x3308, 0x783: 0x3308, 0x784: 0x3308, 0x785: 0x0040, -	0x786: 0x0040, 0x787: 0x3008, 0x788: 0x3008, 0x789: 0x0040, 0x78a: 0x0040, 0x78b: 0x3008, -	0x78c: 0x3008, 0x78d: 0x3b08, 0x78e: 0x0040, 0x78f: 0x0040, 0x790: 0x0040, 0x791: 0x0040, -	0x792: 0x0040, 0x793: 0x0040, 0x794: 0x0040, 0x795: 0x3308, 0x796: 0x3308, 0x797: 0x3008, -	0x798: 0x0040, 0x799: 0x0040, 0x79a: 0x0040, 0x79b: 0x0040, 0x79c: 0x01e1, 0x79d: 0x01e9, -	0x79e: 0x0040, 0x79f: 0x0008, 0x7a0: 0x0008, 0x7a1: 0x0008, 0x7a2: 0x3308, 0x7a3: 0x3308, -	0x7a4: 0x0040, 0x7a5: 0x0040, 0x7a6: 0x0008, 0x7a7: 0x0008, 0x7a8: 0x0008, 0x7a9: 0x0008, -	0x7aa: 0x0008, 0x7ab: 0x0008, 0x7ac: 0x0008, 0x7ad: 0x0008, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0018, 0x7b1: 0x0008, 0x7b2: 0x0018, 0x7b3: 0x0018, 0x7b4: 0x0018, 0x7b5: 0x0018, -	0x7b6: 0x0018, 0x7b7: 0x0018, 0x7b8: 0x0040, 0x7b9: 0x0040, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x0040, 0x7bd: 0x0040, 0x7be: 0x0040, 0x7bf: 0x0040, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x0040, 0x7c1: 0x0040, 0x7c2: 0x3308, 0x7c3: 0x0008, 0x7c4: 0x0040, 0x7c5: 0x0008, -	0x7c6: 0x0008, 0x7c7: 0x0008, 0x7c8: 0x0008, 0x7c9: 0x0008, 0x7ca: 0x0008, 0x7cb: 0x0040, -	0x7cc: 0x0040, 0x7cd: 0x0040, 0x7ce: 0x0008, 0x7cf: 0x0008, 0x7d0: 0x0008, 0x7d1: 0x0040, -	0x7d2: 0x0008, 0x7d3: 0x0008, 0x7d4: 0x0008, 0x7d5: 0x0008, 0x7d6: 0x0040, 0x7d7: 0x0040, -	0x7d8: 0x0040, 0x7d9: 0x0008, 0x7da: 0x0008, 0x7db: 0x0040, 0x7dc: 0x0008, 0x7dd: 0x0040, -	0x7de: 0x0008, 0x7df: 0x0008, 0x7e0: 0x0040, 0x7e1: 0x0040, 0x7e2: 0x0040, 0x7e3: 0x0008, -	0x7e4: 0x0008, 0x7e5: 0x0040, 0x7e6: 0x0040, 0x7e7: 0x0040, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0040, 0x7ec: 0x0040, 0x7ed: 0x0040, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0008, 0x7f1: 0x0008, 0x7f2: 0x0008, 0x7f3: 0x0008, 0x7f4: 0x0008, 0x7f5: 0x0008, -	0x7f6: 0x0008, 0x7f7: 0x0008, 0x7f8: 0x0008, 0x7f9: 0x0008, 0x7fa: 0x0040, 0x7fb: 0x0040, -	0x7fc: 0x0040, 0x7fd: 0x0040, 0x7fe: 0x3008, 0x7ff: 0x3008, -	// Block 0x20, offset 0x800 -	0x800: 0x3308, 0x801: 0x3008, 0x802: 0x3008, 0x803: 0x3008, 0x804: 0x3008, 0x805: 0x0040, -	0x806: 0x3308, 0x807: 0x3308, 0x808: 0x3308, 0x809: 0x0040, 0x80a: 0x3308, 0x80b: 0x3308, -	0x80c: 0x3308, 0x80d: 0x3b08, 0x80e: 0x0040, 0x80f: 0x0040, 0x810: 0x0040, 0x811: 0x0040, -	0x812: 0x0040, 0x813: 0x0040, 0x814: 0x0040, 0x815: 0x3308, 0x816: 0x3308, 0x817: 0x0040, -	0x818: 0x0008, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0040, 0x81c: 0x0040, 0x81d: 0x0040, -	0x81e: 0x0040, 0x81f: 0x0040, 0x820: 0x0008, 0x821: 0x0008, 0x822: 0x3308, 0x823: 0x3308, -	0x824: 0x0040, 0x825: 0x0040, 0x826: 0x0008, 0x827: 0x0008, 0x828: 0x0008, 0x829: 0x0008, -	0x82a: 0x0008, 0x82b: 0x0008, 0x82c: 0x0008, 0x82d: 0x0008, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0040, 0x831: 0x0040, 0x832: 0x0040, 0x833: 0x0040, 0x834: 0x0040, 0x835: 0x0040, -	0x836: 0x0040, 0x837: 0x0018, 0x838: 0x0018, 0x839: 0x0018, 0x83a: 0x0018, 0x83b: 0x0018, -	0x83c: 0x0018, 0x83d: 0x0018, 0x83e: 0x0018, 0x83f: 0x0018, -	// Block 0x21, offset 0x840 -	0x840: 0x0008, 0x841: 0x3308, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x0018, 0x845: 0x0008, -	0x846: 0x0008, 0x847: 0x0008, 0x848: 0x0008, 0x849: 0x0008, 0x84a: 0x0008, 0x84b: 0x0008, -	0x84c: 0x0008, 0x84d: 0x0040, 0x84e: 0x0008, 0x84f: 0x0008, 0x850: 0x0008, 0x851: 0x0040, -	0x852: 0x0008, 0x853: 0x0008, 0x854: 0x0008, 0x855: 0x0008, 0x856: 0x0008, 0x857: 0x0008, -	0x858: 0x0008, 0x859: 0x0008, 0x85a: 0x0008, 0x85b: 0x0008, 0x85c: 0x0008, 0x85d: 0x0008, -	0x85e: 0x0008, 0x85f: 0x0008, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x0008, 0x863: 0x0008, -	0x864: 0x0008, 0x865: 0x0008, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0040, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0008, 0x871: 0x0008, 0x872: 0x0008, 0x873: 0x0008, 0x874: 0x0040, 0x875: 0x0008, -	0x876: 0x0008, 0x877: 0x0008, 0x878: 0x0008, 0x879: 0x0008, 0x87a: 0x0040, 0x87b: 0x0040, -	0x87c: 0x3308, 0x87d: 0x0008, 0x87e: 0x3008, 0x87f: 0x3308, -	// Block 0x22, offset 0x880 -	0x880: 0x3008, 0x881: 0x3008, 0x882: 0x3008, 0x883: 0x3008, 0x884: 0x3008, 0x885: 0x0040, -	0x886: 0x3308, 0x887: 0x3008, 0x888: 0x3008, 0x889: 0x0040, 0x88a: 0x3008, 0x88b: 0x3008, -	0x88c: 0x3308, 0x88d: 0x3b08, 0x88e: 0x0040, 0x88f: 0x0040, 0x890: 0x0040, 0x891: 0x0040, -	0x892: 0x0040, 0x893: 0x0040, 0x894: 0x0040, 0x895: 0x3008, 0x896: 0x3008, 0x897: 0x0040, -	0x898: 0x0040, 0x899: 0x0040, 0x89a: 0x0040, 0x89b: 0x0040, 0x89c: 0x0040, 0x89d: 0x0040, -	0x89e: 0x0008, 0x89f: 0x0040, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x3308, 0x8a3: 0x3308, -	0x8a4: 0x0040, 0x8a5: 0x0040, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0008, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0040, 0x8b1: 0x0008, 0x8b2: 0x0008, 0x8b3: 0x0040, 0x8b4: 0x0040, 0x8b5: 0x0040, -	0x8b6: 0x0040, 0x8b7: 0x0040, 0x8b8: 0x0040, 0x8b9: 0x0040, 0x8ba: 0x0040, 0x8bb: 0x0040, -	0x8bc: 0x0040, 0x8bd: 0x0040, 0x8be: 0x0040, 0x8bf: 0x0040, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x3008, 0x8c1: 0x3308, 0x8c2: 0x3308, 0x8c3: 0x3308, 0x8c4: 0x3308, 0x8c5: 0x0040, -	0x8c6: 0x3008, 0x8c7: 0x3008, 0x8c8: 0x3008, 0x8c9: 0x0040, 0x8ca: 0x3008, 0x8cb: 0x3008, -	0x8cc: 0x3008, 0x8cd: 0x3b08, 0x8ce: 0x0008, 0x8cf: 0x0018, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0008, 0x8d5: 0x0008, 0x8d6: 0x0008, 0x8d7: 0x3008, -	0x8d8: 0x0018, 0x8d9: 0x0018, 0x8da: 0x0018, 0x8db: 0x0018, 0x8dc: 0x0018, 0x8dd: 0x0018, -	0x8de: 0x0018, 0x8df: 0x0008, 0x8e0: 0x0008, 0x8e1: 0x0008, 0x8e2: 0x3308, 0x8e3: 0x3308, -	0x8e4: 0x0040, 0x8e5: 0x0040, 0x8e6: 0x0008, 0x8e7: 0x0008, 0x8e8: 0x0008, 0x8e9: 0x0008, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0008, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0018, 0x8f1: 0x0018, 0x8f2: 0x0018, 0x8f3: 0x0018, 0x8f4: 0x0018, 0x8f5: 0x0018, -	0x8f6: 0x0018, 0x8f7: 0x0018, 0x8f8: 0x0018, 0x8f9: 0x0018, 0x8fa: 0x0008, 0x8fb: 0x0008, -	0x8fc: 0x0008, 0x8fd: 0x0008, 0x8fe: 0x0008, 0x8ff: 0x0008, -	// Block 0x24, offset 0x900 -	0x900: 0x0040, 0x901: 0x0008, 0x902: 0x0008, 0x903: 0x0040, 0x904: 0x0008, 0x905: 0x0040, -	0x906: 0x0008, 0x907: 0x0008, 0x908: 0x0008, 0x909: 0x0008, 0x90a: 0x0008, 0x90b: 0x0040, -	0x90c: 0x0008, 0x90d: 0x0008, 0x90e: 0x0008, 0x90f: 0x0008, 0x910: 0x0008, 0x911: 0x0008, -	0x912: 0x0008, 0x913: 0x0008, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x0008, -	0x918: 0x0008, 0x919: 0x0008, 0x91a: 0x0008, 0x91b: 0x0008, 0x91c: 0x0008, 0x91d: 0x0008, -	0x91e: 0x0008, 0x91f: 0x0008, 0x920: 0x0008, 0x921: 0x0008, 0x922: 0x0008, 0x923: 0x0008, -	0x924: 0x0040, 0x925: 0x0008, 0x926: 0x0040, 0x927: 0x0008, 0x928: 0x0008, 0x929: 0x0008, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0008, 0x92d: 0x0008, 0x92e: 0x0008, 0x92f: 0x0008, -	0x930: 0x0008, 0x931: 0x3308, 0x932: 0x0008, 0x933: 0x01f9, 0x934: 0x3308, 0x935: 0x3308, -	0x936: 0x3308, 0x937: 0x3308, 0x938: 0x3308, 0x939: 0x3308, 0x93a: 0x3b08, 0x93b: 0x3308, -	0x93c: 0x3308, 0x93d: 0x0008, 0x93e: 0x0040, 0x93f: 0x0040, -	// Block 0x25, offset 0x940 -	0x940: 0x0008, 0x941: 0x0008, 0x942: 0x0008, 0x943: 0x0211, 0x944: 0x0008, 0x945: 0x0008, -	0x946: 0x0008, 0x947: 0x0008, 0x948: 0x0040, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0008, -	0x94c: 0x0008, 0x94d: 0x0219, 0x94e: 0x0008, 0x94f: 0x0008, 0x950: 0x0008, 0x951: 0x0008, -	0x952: 0x0221, 0x953: 0x0008, 0x954: 0x0008, 0x955: 0x0008, 0x956: 0x0008, 0x957: 0x0229, -	0x958: 0x0008, 0x959: 0x0008, 0x95a: 0x0008, 0x95b: 0x0008, 0x95c: 0x0231, 0x95d: 0x0008, -	0x95e: 0x0008, 0x95f: 0x0008, 0x960: 0x0008, 0x961: 0x0008, 0x962: 0x0008, 0x963: 0x0008, -	0x964: 0x0008, 0x965: 0x0008, 0x966: 0x0008, 0x967: 0x0008, 0x968: 0x0008, 0x969: 0x0239, -	0x96a: 0x0008, 0x96b: 0x0008, 0x96c: 0x0008, 0x96d: 0x0040, 0x96e: 0x0040, 0x96f: 0x0040, -	0x970: 0x0040, 0x971: 0x3308, 0x972: 0x3308, 0x973: 0x0241, 0x974: 0x3308, 0x975: 0x0249, -	0x976: 0x0251, 0x977: 0x0259, 0x978: 0x0261, 0x979: 0x0269, 0x97a: 0x3308, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x3308, 0x97e: 0x3308, 0x97f: 0x3008, -	// Block 0x26, offset 0x980 -	0x980: 0x3308, 0x981: 0x0271, 0x982: 0x3308, 0x983: 0x3308, 0x984: 0x3b08, 0x985: 0x0018, -	0x986: 0x3308, 0x987: 0x3308, 0x988: 0x0008, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x3308, 0x98e: 0x3308, 0x98f: 0x3308, 0x990: 0x3308, 0x991: 0x3308, -	0x992: 0x3308, 0x993: 0x0279, 0x994: 0x3308, 0x995: 0x3308, 0x996: 0x3308, 0x997: 0x3308, -	0x998: 0x0040, 0x999: 0x3308, 0x99a: 0x3308, 0x99b: 0x3308, 0x99c: 0x3308, 0x99d: 0x0281, -	0x99e: 0x3308, 0x99f: 0x3308, 0x9a0: 0x3308, 0x9a1: 0x3308, 0x9a2: 0x0289, 0x9a3: 0x3308, -	0x9a4: 0x3308, 0x9a5: 0x3308, 0x9a6: 0x3308, 0x9a7: 0x0291, 0x9a8: 0x3308, 0x9a9: 0x3308, -	0x9aa: 0x3308, 0x9ab: 0x3308, 0x9ac: 0x0299, 0x9ad: 0x3308, 0x9ae: 0x3308, 0x9af: 0x3308, -	0x9b0: 0x3308, 0x9b1: 0x3308, 0x9b2: 0x3308, 0x9b3: 0x3308, 0x9b4: 0x3308, 0x9b5: 0x3308, -	0x9b6: 0x3308, 0x9b7: 0x3308, 0x9b8: 0x3308, 0x9b9: 0x02a1, 0x9ba: 0x3308, 0x9bb: 0x3308, -	0x9bc: 0x3308, 0x9bd: 0x0040, 0x9be: 0x0018, 0x9bf: 0x0018, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x0008, 0x9c1: 0x0008, 0x9c2: 0x0008, 0x9c3: 0x0008, 0x9c4: 0x0008, 0x9c5: 0x0008, -	0x9c6: 0x0008, 0x9c7: 0x0008, 0x9c8: 0x0008, 0x9c9: 0x0008, 0x9ca: 0x0008, 0x9cb: 0x0008, -	0x9cc: 0x0008, 0x9cd: 0x0008, 0x9ce: 0x0008, 0x9cf: 0x0008, 0x9d0: 0x0008, 0x9d1: 0x0008, -	0x9d2: 0x0008, 0x9d3: 0x0008, 0x9d4: 0x0008, 0x9d5: 0x0008, 0x9d6: 0x0008, 0x9d7: 0x0008, -	0x9d8: 0x0008, 0x9d9: 0x0008, 0x9da: 0x0008, 0x9db: 0x0008, 0x9dc: 0x0008, 0x9dd: 0x0008, -	0x9de: 0x0008, 0x9df: 0x0008, 0x9e0: 0x0008, 0x9e1: 0x0008, 0x9e2: 0x0008, 0x9e3: 0x0008, -	0x9e4: 0x0008, 0x9e5: 0x0008, 0x9e6: 0x0008, 0x9e7: 0x0008, 0x9e8: 0x0008, 0x9e9: 0x0008, -	0x9ea: 0x0008, 0x9eb: 0x0008, 0x9ec: 0x0019, 0x9ed: 0x02e1, 0x9ee: 0x02e9, 0x9ef: 0x0008, -	0x9f0: 0x02f1, 0x9f1: 0x02f9, 0x9f2: 0x0301, 0x9f3: 0x0309, 0x9f4: 0x00a9, 0x9f5: 0x0311, -	0x9f6: 0x00b1, 0x9f7: 0x0319, 0x9f8: 0x0101, 0x9f9: 0x0321, 0x9fa: 0x0329, 0x9fb: 0x0008, -	0x9fc: 0x0051, 0x9fd: 0x0331, 0x9fe: 0x0339, 0x9ff: 0x00b9, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0341, 0xa01: 0x0349, 0xa02: 0x00c1, 0xa03: 0x0019, 0xa04: 0x0351, 0xa05: 0x0359, -	0xa06: 0x05b5, 0xa07: 0x02e9, 0xa08: 0x02f1, 0xa09: 0x02f9, 0xa0a: 0x0361, 0xa0b: 0x0369, -	0xa0c: 0x0371, 0xa0d: 0x0309, 0xa0e: 0x0008, 0xa0f: 0x0319, 0xa10: 0x0321, 0xa11: 0x0379, -	0xa12: 0x0051, 0xa13: 0x0381, 0xa14: 0x05cd, 0xa15: 0x05cd, 0xa16: 0x0339, 0xa17: 0x0341, -	0xa18: 0x0349, 0xa19: 0x05b5, 0xa1a: 0x0389, 0xa1b: 0x0391, 0xa1c: 0x05e5, 0xa1d: 0x0399, -	0xa1e: 0x03a1, 0xa1f: 0x03a9, 0xa20: 0x03b1, 0xa21: 0x03b9, 0xa22: 0x0311, 0xa23: 0x00b9, -	0xa24: 0x0349, 0xa25: 0x0391, 0xa26: 0x0399, 0xa27: 0x03a1, 0xa28: 0x03c1, 0xa29: 0x03b1, -	0xa2a: 0x03b9, 0xa2b: 0x0008, 0xa2c: 0x0008, 0xa2d: 0x0008, 0xa2e: 0x0008, 0xa2f: 0x0008, -	0xa30: 0x0008, 0xa31: 0x0008, 0xa32: 0x0008, 0xa33: 0x0008, 0xa34: 0x0008, 0xa35: 0x0008, -	0xa36: 0x0008, 0xa37: 0x0008, 0xa38: 0x03c9, 0xa39: 0x0008, 0xa3a: 0x0008, 0xa3b: 0x0008, -	0xa3c: 0x0008, 0xa3d: 0x0008, 0xa3e: 0x0008, 0xa3f: 0x0008, -	// Block 0x29, offset 0xa40 -	0xa40: 0x0008, 0xa41: 0x0008, 0xa42: 0x0008, 0xa43: 0x0008, 0xa44: 0x0008, 0xa45: 0x0008, -	0xa46: 0x0008, 0xa47: 0x0008, 0xa48: 0x0008, 0xa49: 0x0008, 0xa4a: 0x0008, 0xa4b: 0x0008, -	0xa4c: 0x0008, 0xa4d: 0x0008, 0xa4e: 0x0008, 0xa4f: 0x0008, 0xa50: 0x0008, 0xa51: 0x0008, -	0xa52: 0x0008, 0xa53: 0x0008, 0xa54: 0x0008, 0xa55: 0x0008, 0xa56: 0x0008, 0xa57: 0x0008, -	0xa58: 0x0008, 0xa59: 0x0008, 0xa5a: 0x0008, 0xa5b: 0x03d1, 0xa5c: 0x03d9, 0xa5d: 0x03e1, -	0xa5e: 0x03e9, 0xa5f: 0x0371, 0xa60: 0x03f1, 0xa61: 0x03f9, 0xa62: 0x0401, 0xa63: 0x0409, -	0xa64: 0x0411, 0xa65: 0x0419, 0xa66: 0x0421, 0xa67: 0x05fd, 0xa68: 0x0429, 0xa69: 0x0431, -	0xa6a: 0xe17d, 0xa6b: 0x0439, 0xa6c: 0x0441, 0xa6d: 0x0449, 0xa6e: 0x0451, 0xa6f: 0x0459, -	0xa70: 0x0461, 0xa71: 0x0469, 0xa72: 0x0471, 0xa73: 0x0479, 0xa74: 0x0481, 0xa75: 0x0489, -	0xa76: 0x0491, 0xa77: 0x0499, 0xa78: 0x0615, 0xa79: 0x04a1, 0xa7a: 0x04a9, 0xa7b: 0x04b1, -	0xa7c: 0x04b9, 0xa7d: 0x04c1, 0xa7e: 0x04c9, 0xa7f: 0x04d1, -	// Block 0x2a, offset 0xa80 -	0xa80: 0xe00d, 0xa81: 0x0008, 0xa82: 0xe00d, 0xa83: 0x0008, 0xa84: 0xe00d, 0xa85: 0x0008, -	0xa86: 0xe00d, 0xa87: 0x0008, 0xa88: 0xe00d, 0xa89: 0x0008, 0xa8a: 0xe00d, 0xa8b: 0x0008, -	0xa8c: 0xe00d, 0xa8d: 0x0008, 0xa8e: 0xe00d, 0xa8f: 0x0008, 0xa90: 0xe00d, 0xa91: 0x0008, -	0xa92: 0xe00d, 0xa93: 0x0008, 0xa94: 0xe00d, 0xa95: 0x0008, 0xa96: 0xe00d, 0xa97: 0x0008, -	0xa98: 0xe00d, 0xa99: 0x0008, 0xa9a: 0xe00d, 0xa9b: 0x0008, 0xa9c: 0xe00d, 0xa9d: 0x0008, -	0xa9e: 0xe00d, 0xa9f: 0x0008, 0xaa0: 0xe00d, 0xaa1: 0x0008, 0xaa2: 0xe00d, 0xaa3: 0x0008, -	0xaa4: 0xe00d, 0xaa5: 0x0008, 0xaa6: 0xe00d, 0xaa7: 0x0008, 0xaa8: 0xe00d, 0xaa9: 0x0008, -	0xaaa: 0xe00d, 0xaab: 0x0008, 0xaac: 0xe00d, 0xaad: 0x0008, 0xaae: 0xe00d, 0xaaf: 0x0008, -	0xab0: 0xe00d, 0xab1: 0x0008, 0xab2: 0xe00d, 0xab3: 0x0008, 0xab4: 0xe00d, 0xab5: 0x0008, -	0xab6: 0xe00d, 0xab7: 0x0008, 0xab8: 0xe00d, 0xab9: 0x0008, 0xaba: 0xe00d, 0xabb: 0x0008, -	0xabc: 0xe00d, 0xabd: 0x0008, 0xabe: 0xe00d, 0xabf: 0x0008, -	// Block 0x2b, offset 0xac0 -	0xac0: 0xe00d, 0xac1: 0x0008, 0xac2: 0xe00d, 0xac3: 0x0008, 0xac4: 0xe00d, 0xac5: 0x0008, -	0xac6: 0xe00d, 0xac7: 0x0008, 0xac8: 0xe00d, 0xac9: 0x0008, 0xaca: 0xe00d, 0xacb: 0x0008, -	0xacc: 0xe00d, 0xacd: 0x0008, 0xace: 0xe00d, 0xacf: 0x0008, 0xad0: 0xe00d, 0xad1: 0x0008, -	0xad2: 0xe00d, 0xad3: 0x0008, 0xad4: 0xe00d, 0xad5: 0x0008, 0xad6: 0x0008, 0xad7: 0x0008, -	0xad8: 0x0008, 0xad9: 0x0008, 0xada: 0x062d, 0xadb: 0x064d, 0xadc: 0x0008, 0xadd: 0x0008, -	0xade: 0x04d9, 0xadf: 0x0008, 0xae0: 0xe00d, 0xae1: 0x0008, 0xae2: 0xe00d, 0xae3: 0x0008, -	0xae4: 0xe00d, 0xae5: 0x0008, 0xae6: 0xe00d, 0xae7: 0x0008, 0xae8: 0xe00d, 0xae9: 0x0008, -	0xaea: 0xe00d, 0xaeb: 0x0008, 0xaec: 0xe00d, 0xaed: 0x0008, 0xaee: 0xe00d, 0xaef: 0x0008, -	0xaf0: 0xe00d, 0xaf1: 0x0008, 0xaf2: 0xe00d, 0xaf3: 0x0008, 0xaf4: 0xe00d, 0xaf5: 0x0008, -	0xaf6: 0xe00d, 0xaf7: 0x0008, 0xaf8: 0xe00d, 0xaf9: 0x0008, 0xafa: 0xe00d, 0xafb: 0x0008, -	0xafc: 0xe00d, 0xafd: 0x0008, 0xafe: 0xe00d, 0xaff: 0x0008, -	// Block 0x2c, offset 0xb00 -	0xb00: 0x0008, 0xb01: 0x0008, 0xb02: 0x0008, 0xb03: 0x0008, 0xb04: 0x0008, 0xb05: 0x0008, -	0xb06: 0x0040, 0xb07: 0x0040, 0xb08: 0xe045, 0xb09: 0xe045, 0xb0a: 0xe045, 0xb0b: 0xe045, -	0xb0c: 0xe045, 0xb0d: 0xe045, 0xb0e: 0x0040, 0xb0f: 0x0040, 0xb10: 0x0008, 0xb11: 0x0008, -	0xb12: 0x0008, 0xb13: 0x0008, 0xb14: 0x0008, 0xb15: 0x0008, 0xb16: 0x0008, 0xb17: 0x0008, -	0xb18: 0x0040, 0xb19: 0xe045, 0xb1a: 0x0040, 0xb1b: 0xe045, 0xb1c: 0x0040, 0xb1d: 0xe045, -	0xb1e: 0x0040, 0xb1f: 0xe045, 0xb20: 0x0008, 0xb21: 0x0008, 0xb22: 0x0008, 0xb23: 0x0008, -	0xb24: 0x0008, 0xb25: 0x0008, 0xb26: 0x0008, 0xb27: 0x0008, 0xb28: 0xe045, 0xb29: 0xe045, -	0xb2a: 0xe045, 0xb2b: 0xe045, 0xb2c: 0xe045, 0xb2d: 0xe045, 0xb2e: 0xe045, 0xb2f: 0xe045, -	0xb30: 0x0008, 0xb31: 0x04e1, 0xb32: 0x0008, 0xb33: 0x04e9, 0xb34: 0x0008, 0xb35: 0x04f1, -	0xb36: 0x0008, 0xb37: 0x04f9, 0xb38: 0x0008, 0xb39: 0x0501, 0xb3a: 0x0008, 0xb3b: 0x0509, -	0xb3c: 0x0008, 0xb3d: 0x0511, 0xb3e: 0x0040, 0xb3f: 0x0040, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x0519, 0xb41: 0x0521, 0xb42: 0x0529, 0xb43: 0x0531, 0xb44: 0x0539, 0xb45: 0x0541, -	0xb46: 0x0549, 0xb47: 0x0551, 0xb48: 0x0519, 0xb49: 0x0521, 0xb4a: 0x0529, 0xb4b: 0x0531, -	0xb4c: 0x0539, 0xb4d: 0x0541, 0xb4e: 0x0549, 0xb4f: 0x0551, 0xb50: 0x0559, 0xb51: 0x0561, -	0xb52: 0x0569, 0xb53: 0x0571, 0xb54: 0x0579, 0xb55: 0x0581, 0xb56: 0x0589, 0xb57: 0x0591, -	0xb58: 0x0559, 0xb59: 0x0561, 0xb5a: 0x0569, 0xb5b: 0x0571, 0xb5c: 0x0579, 0xb5d: 0x0581, -	0xb5e: 0x0589, 0xb5f: 0x0591, 0xb60: 0x0599, 0xb61: 0x05a1, 0xb62: 0x05a9, 0xb63: 0x05b1, -	0xb64: 0x05b9, 0xb65: 0x05c1, 0xb66: 0x05c9, 0xb67: 0x05d1, 0xb68: 0x0599, 0xb69: 0x05a1, -	0xb6a: 0x05a9, 0xb6b: 0x05b1, 0xb6c: 0x05b9, 0xb6d: 0x05c1, 0xb6e: 0x05c9, 0xb6f: 0x05d1, -	0xb70: 0x0008, 0xb71: 0x0008, 0xb72: 0x05d9, 0xb73: 0x05e1, 0xb74: 0x05e9, 0xb75: 0x0040, -	0xb76: 0x0008, 0xb77: 0x05f1, 0xb78: 0xe045, 0xb79: 0xe045, 0xb7a: 0x0665, 0xb7b: 0x04e1, -	0xb7c: 0x05e1, 0xb7d: 0x067e, 0xb7e: 0x05f9, 0xb7f: 0x069e, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x06be, 0xb81: 0x0602, 0xb82: 0x0609, 0xb83: 0x0611, 0xb84: 0x0619, 0xb85: 0x0040, -	0xb86: 0x0008, 0xb87: 0x0621, 0xb88: 0x06dd, 0xb89: 0x04e9, 0xb8a: 0x06f5, 0xb8b: 0x04f1, -	0xb8c: 0x0611, 0xb8d: 0x062a, 0xb8e: 0x0632, 0xb8f: 0x063a, 0xb90: 0x0008, 0xb91: 0x0008, -	0xb92: 0x0008, 0xb93: 0x0641, 0xb94: 0x0040, 0xb95: 0x0040, 0xb96: 0x0008, 0xb97: 0x0008, -	0xb98: 0xe045, 0xb99: 0xe045, 0xb9a: 0x070d, 0xb9b: 0x04f9, 0xb9c: 0x0040, 0xb9d: 0x064a, -	0xb9e: 0x0652, 0xb9f: 0x065a, 0xba0: 0x0008, 0xba1: 0x0008, 0xba2: 0x0008, 0xba3: 0x0661, -	0xba4: 0x0008, 0xba5: 0x0008, 0xba6: 0x0008, 0xba7: 0x0008, 0xba8: 0xe045, 0xba9: 0xe045, -	0xbaa: 0x0725, 0xbab: 0x0509, 0xbac: 0xe04d, 0xbad: 0x066a, 0xbae: 0x012a, 0xbaf: 0x0672, -	0xbb0: 0x0040, 0xbb1: 0x0040, 0xbb2: 0x0679, 0xbb3: 0x0681, 0xbb4: 0x0689, 0xbb5: 0x0040, -	0xbb6: 0x0008, 0xbb7: 0x0691, 0xbb8: 0x073d, 0xbb9: 0x0501, 0xbba: 0x0515, 0xbbb: 0x0511, -	0xbbc: 0x0681, 0xbbd: 0x0756, 0xbbe: 0x0776, 0xbbf: 0x0040, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x000a, 0xbc1: 0x000a, 0xbc2: 0x000a, 0xbc3: 0x000a, 0xbc4: 0x000a, 0xbc5: 0x000a, -	0xbc6: 0x000a, 0xbc7: 0x000a, 0xbc8: 0x000a, 0xbc9: 0x000a, 0xbca: 0x000a, 0xbcb: 0x03c0, -	0xbcc: 0x0003, 0xbcd: 0x0003, 0xbce: 0x0340, 0xbcf: 0x0b40, 0xbd0: 0x0018, 0xbd1: 0xe00d, -	0xbd2: 0x0018, 0xbd3: 0x0018, 0xbd4: 0x0018, 0xbd5: 0x0018, 0xbd6: 0x0018, 0xbd7: 0x0796, -	0xbd8: 0x0018, 0xbd9: 0x0018, 0xbda: 0x0018, 0xbdb: 0x0018, 0xbdc: 0x0018, 0xbdd: 0x0018, -	0xbde: 0x0018, 0xbdf: 0x0018, 0xbe0: 0x0018, 0xbe1: 0x0018, 0xbe2: 0x0018, 0xbe3: 0x0018, -	0xbe4: 0x0040, 0xbe5: 0x0040, 0xbe6: 0x0040, 0xbe7: 0x0018, 0xbe8: 0x0040, 0xbe9: 0x0040, -	0xbea: 0x0340, 0xbeb: 0x0340, 0xbec: 0x0340, 0xbed: 0x0340, 0xbee: 0x0340, 0xbef: 0x000a, -	0xbf0: 0x0018, 0xbf1: 0x0018, 0xbf2: 0x0018, 0xbf3: 0x0699, 0xbf4: 0x06a1, 0xbf5: 0x0018, -	0xbf6: 0x06a9, 0xbf7: 0x06b1, 0xbf8: 0x0018, 0xbf9: 0x0018, 0xbfa: 0x0018, 0xbfb: 0x0018, -	0xbfc: 0x06ba, 0xbfd: 0x0018, 0xbfe: 0x07b6, 0xbff: 0x0018, -	// Block 0x30, offset 0xc00 -	0xc00: 0x0018, 0xc01: 0x0018, 0xc02: 0x0018, 0xc03: 0x0018, 0xc04: 0x0018, 0xc05: 0x0018, -	0xc06: 0x0018, 0xc07: 0x06c2, 0xc08: 0x06ca, 0xc09: 0x06d2, 0xc0a: 0x0018, 0xc0b: 0x0018, -	0xc0c: 0x0018, 0xc0d: 0x0018, 0xc0e: 0x0018, 0xc0f: 0x0018, 0xc10: 0x0018, 0xc11: 0x0018, -	0xc12: 0x0018, 0xc13: 0x0018, 0xc14: 0x0018, 0xc15: 0x0018, 0xc16: 0x0018, 0xc17: 0x06d9, -	0xc18: 0x0018, 0xc19: 0x0018, 0xc1a: 0x0018, 0xc1b: 0x0018, 0xc1c: 0x0018, 0xc1d: 0x0018, -	0xc1e: 0x0018, 0xc1f: 0x000a, 0xc20: 0x03c0, 0xc21: 0x0340, 0xc22: 0x0340, 0xc23: 0x0340, -	0xc24: 0x03c0, 0xc25: 0x0040, 0xc26: 0x0040, 0xc27: 0x0040, 0xc28: 0x0040, 0xc29: 0x0040, -	0xc2a: 0x0340, 0xc2b: 0x0340, 0xc2c: 0x0340, 0xc2d: 0x0340, 0xc2e: 0x0340, 0xc2f: 0x0340, -	0xc30: 0x06e1, 0xc31: 0x0311, 0xc32: 0x0040, 0xc33: 0x0040, 0xc34: 0x06e9, 0xc35: 0x06f1, -	0xc36: 0x06f9, 0xc37: 0x0701, 0xc38: 0x0709, 0xc39: 0x0711, 0xc3a: 0x071a, 0xc3b: 0x07d5, -	0xc3c: 0x0722, 0xc3d: 0x072a, 0xc3e: 0x0732, 0xc3f: 0x0329, -	// Block 0x31, offset 0xc40 -	0xc40: 0x06e1, 0xc41: 0x0049, 0xc42: 0x0029, 0xc43: 0x0031, 0xc44: 0x06e9, 0xc45: 0x06f1, -	0xc46: 0x06f9, 0xc47: 0x0701, 0xc48: 0x0709, 0xc49: 0x0711, 0xc4a: 0x071a, 0xc4b: 0x07ed, -	0xc4c: 0x0722, 0xc4d: 0x072a, 0xc4e: 0x0732, 0xc4f: 0x0040, 0xc50: 0x0019, 0xc51: 0x02f9, -	0xc52: 0x0051, 0xc53: 0x0109, 0xc54: 0x0361, 0xc55: 0x00a9, 0xc56: 0x0319, 0xc57: 0x0101, -	0xc58: 0x0321, 0xc59: 0x0329, 0xc5a: 0x0339, 0xc5b: 0x0089, 0xc5c: 0x0341, 0xc5d: 0x0040, -	0xc5e: 0x0040, 0xc5f: 0x0040, 0xc60: 0x0018, 0xc61: 0x0018, 0xc62: 0x0018, 0xc63: 0x0018, -	0xc64: 0x0018, 0xc65: 0x0018, 0xc66: 0x0018, 0xc67: 0x0018, 0xc68: 0x0739, 0xc69: 0x0018, -	0xc6a: 0x0018, 0xc6b: 0x0018, 0xc6c: 0x0018, 0xc6d: 0x0018, 0xc6e: 0x0018, 0xc6f: 0x0018, -	0xc70: 0x0018, 0xc71: 0x0018, 0xc72: 0x0018, 0xc73: 0x0018, 0xc74: 0x0018, 0xc75: 0x0018, -	0xc76: 0x0018, 0xc77: 0x0018, 0xc78: 0x0018, 0xc79: 0x0018, 0xc7a: 0x0018, 0xc7b: 0x0018, -	0xc7c: 0x0018, 0xc7d: 0x0018, 0xc7e: 0x0018, 0xc7f: 0x0018, -	// Block 0x32, offset 0xc80 -	0xc80: 0x0806, 0xc81: 0x0826, 0xc82: 0x03d9, 0xc83: 0x0845, 0xc84: 0x0018, 0xc85: 0x0866, -	0xc86: 0x0886, 0xc87: 0x0369, 0xc88: 0x0018, 0xc89: 0x08a5, 0xc8a: 0x0309, 0xc8b: 0x00a9, -	0xc8c: 0x00a9, 0xc8d: 0x00a9, 0xc8e: 0x00a9, 0xc8f: 0x0741, 0xc90: 0x0311, 0xc91: 0x0311, -	0xc92: 0x0101, 0xc93: 0x0101, 0xc94: 0x0018, 0xc95: 0x0329, 0xc96: 0x0749, 0xc97: 0x0018, -	0xc98: 0x0018, 0xc99: 0x0339, 0xc9a: 0x0751, 0xc9b: 0x00b9, 0xc9c: 0x00b9, 0xc9d: 0x00b9, -	0xc9e: 0x0018, 0xc9f: 0x0018, 0xca0: 0x0759, 0xca1: 0x08c5, 0xca2: 0x0761, 0xca3: 0x0018, -	0xca4: 0x04b1, 0xca5: 0x0018, 0xca6: 0x0769, 0xca7: 0x0018, 0xca8: 0x04b1, 0xca9: 0x0018, -	0xcaa: 0x0319, 0xcab: 0x0771, 0xcac: 0x02e9, 0xcad: 0x03d9, 0xcae: 0x0018, 0xcaf: 0x02f9, -	0xcb0: 0x02f9, 0xcb1: 0x03f1, 0xcb2: 0x0040, 0xcb3: 0x0321, 0xcb4: 0x0051, 0xcb5: 0x0779, -	0xcb6: 0x0781, 0xcb7: 0x0789, 0xcb8: 0x0791, 0xcb9: 0x0311, 0xcba: 0x0018, 0xcbb: 0x08e5, -	0xcbc: 0x0799, 0xcbd: 0x03a1, 0xcbe: 0x03a1, 0xcbf: 0x0799, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x0905, 0xcc1: 0x0018, 0xcc2: 0x0018, 0xcc3: 0x0018, 0xcc4: 0x0018, 0xcc5: 0x02f1, -	0xcc6: 0x02f1, 0xcc7: 0x02f9, 0xcc8: 0x0311, 0xcc9: 0x00b1, 0xcca: 0x0018, 0xccb: 0x0018, -	0xccc: 0x0018, 0xccd: 0x0018, 0xcce: 0x0008, 0xccf: 0x0018, 0xcd0: 0x07a1, 0xcd1: 0x07a9, -	0xcd2: 0x07b1, 0xcd3: 0x07b9, 0xcd4: 0x07c1, 0xcd5: 0x07c9, 0xcd6: 0x07d1, 0xcd7: 0x07d9, -	0xcd8: 0x07e1, 0xcd9: 0x07e9, 0xcda: 0x07f1, 0xcdb: 0x07f9, 0xcdc: 0x0801, 0xcdd: 0x0809, -	0xcde: 0x0811, 0xcdf: 0x0819, 0xce0: 0x0311, 0xce1: 0x0821, 0xce2: 0x091d, 0xce3: 0x0829, -	0xce4: 0x0391, 0xce5: 0x0831, 0xce6: 0x093d, 0xce7: 0x0839, 0xce8: 0x0841, 0xce9: 0x0109, -	0xcea: 0x0849, 0xceb: 0x095d, 0xcec: 0x0101, 0xced: 0x03d9, 0xcee: 0x02f1, 0xcef: 0x0321, -	0xcf0: 0x0311, 0xcf1: 0x0821, 0xcf2: 0x097d, 0xcf3: 0x0829, 0xcf4: 0x0391, 0xcf5: 0x0831, -	0xcf6: 0x099d, 0xcf7: 0x0839, 0xcf8: 0x0841, 0xcf9: 0x0109, 0xcfa: 0x0849, 0xcfb: 0x09bd, -	0xcfc: 0x0101, 0xcfd: 0x03d9, 0xcfe: 0x02f1, 0xcff: 0x0321, -	// Block 0x34, offset 0xd00 -	0xd00: 0x0018, 0xd01: 0x0018, 0xd02: 0x0018, 0xd03: 0x0018, 0xd04: 0x0018, 0xd05: 0x0018, -	0xd06: 0x0018, 0xd07: 0x0018, 0xd08: 0x0018, 0xd09: 0x0018, 0xd0a: 0x0018, 0xd0b: 0x0040, -	0xd0c: 0x0040, 0xd0d: 0x0040, 0xd0e: 0x0040, 0xd0f: 0x0040, 0xd10: 0x0040, 0xd11: 0x0040, -	0xd12: 0x0040, 0xd13: 0x0040, 0xd14: 0x0040, 0xd15: 0x0040, 0xd16: 0x0040, 0xd17: 0x0040, -	0xd18: 0x0040, 0xd19: 0x0040, 0xd1a: 0x0040, 0xd1b: 0x0040, 0xd1c: 0x0040, 0xd1d: 0x0040, -	0xd1e: 0x0040, 0xd1f: 0x0040, 0xd20: 0x0049, 0xd21: 0x0029, 0xd22: 0x0031, 0xd23: 0x06e9, -	0xd24: 0x06f1, 0xd25: 0x06f9, 0xd26: 0x0701, 0xd27: 0x0709, 0xd28: 0x0711, 0xd29: 0x0879, -	0xd2a: 0x0881, 0xd2b: 0x0889, 0xd2c: 0x0891, 0xd2d: 0x0899, 0xd2e: 0x08a1, 0xd2f: 0x08a9, -	0xd30: 0x08b1, 0xd31: 0x08b9, 0xd32: 0x08c1, 0xd33: 0x08c9, 0xd34: 0x0a1e, 0xd35: 0x0a3e, -	0xd36: 0x0a5e, 0xd37: 0x0a7e, 0xd38: 0x0a9e, 0xd39: 0x0abe, 0xd3a: 0x0ade, 0xd3b: 0x0afe, -	0xd3c: 0x0b1e, 0xd3d: 0x08d2, 0xd3e: 0x08da, 0xd3f: 0x08e2, -	// Block 0x35, offset 0xd40 -	0xd40: 0x08ea, 0xd41: 0x08f2, 0xd42: 0x08fa, 0xd43: 0x0902, 0xd44: 0x090a, 0xd45: 0x0912, -	0xd46: 0x091a, 0xd47: 0x0922, 0xd48: 0x0040, 0xd49: 0x0040, 0xd4a: 0x0040, 0xd4b: 0x0040, -	0xd4c: 0x0040, 0xd4d: 0x0040, 0xd4e: 0x0040, 0xd4f: 0x0040, 0xd50: 0x0040, 0xd51: 0x0040, -	0xd52: 0x0040, 0xd53: 0x0040, 0xd54: 0x0040, 0xd55: 0x0040, 0xd56: 0x0040, 0xd57: 0x0040, -	0xd58: 0x0040, 0xd59: 0x0040, 0xd5a: 0x0040, 0xd5b: 0x0040, 0xd5c: 0x0b3e, 0xd5d: 0x0b5e, -	0xd5e: 0x0b7e, 0xd5f: 0x0b9e, 0xd60: 0x0bbe, 0xd61: 0x0bde, 0xd62: 0x0bfe, 0xd63: 0x0c1e, -	0xd64: 0x0c3e, 0xd65: 0x0c5e, 0xd66: 0x0c7e, 0xd67: 0x0c9e, 0xd68: 0x0cbe, 0xd69: 0x0cde, -	0xd6a: 0x0cfe, 0xd6b: 0x0d1e, 0xd6c: 0x0d3e, 0xd6d: 0x0d5e, 0xd6e: 0x0d7e, 0xd6f: 0x0d9e, -	0xd70: 0x0dbe, 0xd71: 0x0dde, 0xd72: 0x0dfe, 0xd73: 0x0e1e, 0xd74: 0x0e3e, 0xd75: 0x0e5e, -	0xd76: 0x0019, 0xd77: 0x02e9, 0xd78: 0x03d9, 0xd79: 0x02f1, 0xd7a: 0x02f9, 0xd7b: 0x03f1, -	0xd7c: 0x0309, 0xd7d: 0x00a9, 0xd7e: 0x0311, 0xd7f: 0x00b1, -	// Block 0x36, offset 0xd80 -	0xd80: 0x0319, 0xd81: 0x0101, 0xd82: 0x0321, 0xd83: 0x0329, 0xd84: 0x0051, 0xd85: 0x0339, -	0xd86: 0x0751, 0xd87: 0x00b9, 0xd88: 0x0089, 0xd89: 0x0341, 0xd8a: 0x0349, 0xd8b: 0x0391, -	0xd8c: 0x00c1, 0xd8d: 0x0109, 0xd8e: 0x00c9, 0xd8f: 0x04b1, 0xd90: 0x0019, 0xd91: 0x02e9, -	0xd92: 0x03d9, 0xd93: 0x02f1, 0xd94: 0x02f9, 0xd95: 0x03f1, 0xd96: 0x0309, 0xd97: 0x00a9, -	0xd98: 0x0311, 0xd99: 0x00b1, 0xd9a: 0x0319, 0xd9b: 0x0101, 0xd9c: 0x0321, 0xd9d: 0x0329, -	0xd9e: 0x0051, 0xd9f: 0x0339, 0xda0: 0x0751, 0xda1: 0x00b9, 0xda2: 0x0089, 0xda3: 0x0341, -	0xda4: 0x0349, 0xda5: 0x0391, 0xda6: 0x00c1, 0xda7: 0x0109, 0xda8: 0x00c9, 0xda9: 0x04b1, -	0xdaa: 0x06e1, 0xdab: 0x0018, 0xdac: 0x0018, 0xdad: 0x0018, 0xdae: 0x0018, 0xdaf: 0x0018, -	0xdb0: 0x0018, 0xdb1: 0x0018, 0xdb2: 0x0018, 0xdb3: 0x0018, 0xdb4: 0x0018, 0xdb5: 0x0018, -	0xdb6: 0x0018, 0xdb7: 0x0018, 0xdb8: 0x0018, 0xdb9: 0x0018, 0xdba: 0x0018, 0xdbb: 0x0018, -	0xdbc: 0x0018, 0xdbd: 0x0018, 0xdbe: 0x0018, 0xdbf: 0x0018, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0x0008, 0xdc1: 0x0008, 0xdc2: 0x0008, 0xdc3: 0x0008, 0xdc4: 0x0008, 0xdc5: 0x0008, -	0xdc6: 0x0008, 0xdc7: 0x0008, 0xdc8: 0x0008, 0xdc9: 0x0008, 0xdca: 0x0008, 0xdcb: 0x0008, -	0xdcc: 0x0008, 0xdcd: 0x0008, 0xdce: 0x0008, 0xdcf: 0x0008, 0xdd0: 0x0008, 0xdd1: 0x0008, -	0xdd2: 0x0008, 0xdd3: 0x0008, 0xdd4: 0x0008, 0xdd5: 0x0008, 0xdd6: 0x0008, 0xdd7: 0x0008, -	0xdd8: 0x0008, 0xdd9: 0x0008, 0xdda: 0x0008, 0xddb: 0x0008, 0xddc: 0x0008, 0xddd: 0x0008, -	0xdde: 0x0008, 0xddf: 0x0040, 0xde0: 0xe00d, 0xde1: 0x0008, 0xde2: 0x0941, 0xde3: 0x0ed5, -	0xde4: 0x0949, 0xde5: 0x0008, 0xde6: 0x0008, 0xde7: 0xe07d, 0xde8: 0x0008, 0xde9: 0xe01d, -	0xdea: 0x0008, 0xdeb: 0xe03d, 0xdec: 0x0008, 0xded: 0x0359, 0xdee: 0x0441, 0xdef: 0x0351, -	0xdf0: 0x03d1, 0xdf1: 0x0008, 0xdf2: 0xe00d, 0xdf3: 0x0008, 0xdf4: 0x0008, 0xdf5: 0xe01d, -	0xdf6: 0x0008, 0xdf7: 0x0008, 0xdf8: 0x0008, 0xdf9: 0x0008, 0xdfa: 0x0008, 0xdfb: 0x0008, -	0xdfc: 0x00b1, 0xdfd: 0x0391, 0xdfe: 0x0951, 0xdff: 0x0959, -	// Block 0x38, offset 0xe00 -	0xe00: 0xe00d, 0xe01: 0x0008, 0xe02: 0xe00d, 0xe03: 0x0008, 0xe04: 0xe00d, 0xe05: 0x0008, -	0xe06: 0xe00d, 0xe07: 0x0008, 0xe08: 0xe00d, 0xe09: 0x0008, 0xe0a: 0xe00d, 0xe0b: 0x0008, -	0xe0c: 0xe00d, 0xe0d: 0x0008, 0xe0e: 0xe00d, 0xe0f: 0x0008, 0xe10: 0xe00d, 0xe11: 0x0008, -	0xe12: 0xe00d, 0xe13: 0x0008, 0xe14: 0xe00d, 0xe15: 0x0008, 0xe16: 0xe00d, 0xe17: 0x0008, -	0xe18: 0xe00d, 0xe19: 0x0008, 0xe1a: 0xe00d, 0xe1b: 0x0008, 0xe1c: 0xe00d, 0xe1d: 0x0008, -	0xe1e: 0xe00d, 0xe1f: 0x0008, 0xe20: 0xe00d, 0xe21: 0x0008, 0xe22: 0xe00d, 0xe23: 0x0008, -	0xe24: 0x0008, 0xe25: 0x0018, 0xe26: 0x0018, 0xe27: 0x0018, 0xe28: 0x0018, 0xe29: 0x0018, -	0xe2a: 0x0018, 0xe2b: 0xe03d, 0xe2c: 0x0008, 0xe2d: 0xe01d, 0xe2e: 0x0008, 0xe2f: 0x3308, -	0xe30: 0x3308, 0xe31: 0x3308, 0xe32: 0xe00d, 0xe33: 0x0008, 0xe34: 0x0040, 0xe35: 0x0040, -	0xe36: 0x0040, 0xe37: 0x0040, 0xe38: 0x0040, 0xe39: 0x0018, 0xe3a: 0x0018, 0xe3b: 0x0018, -	0xe3c: 0x0018, 0xe3d: 0x0018, 0xe3e: 0x0018, 0xe3f: 0x0018, -	// Block 0x39, offset 0xe40 -	0xe40: 0x2715, 0xe41: 0x2735, 0xe42: 0x2755, 0xe43: 0x2775, 0xe44: 0x2795, 0xe45: 0x27b5, -	0xe46: 0x27d5, 0xe47: 0x27f5, 0xe48: 0x2815, 0xe49: 0x2835, 0xe4a: 0x2855, 0xe4b: 0x2875, -	0xe4c: 0x2895, 0xe4d: 0x28b5, 0xe4e: 0x28d5, 0xe4f: 0x28f5, 0xe50: 0x2915, 0xe51: 0x2935, -	0xe52: 0x2955, 0xe53: 0x2975, 0xe54: 0x2995, 0xe55: 0x29b5, 0xe56: 0x0040, 0xe57: 0x0040, -	0xe58: 0x0040, 0xe59: 0x0040, 0xe5a: 0x0040, 0xe5b: 0x0040, 0xe5c: 0x0040, 0xe5d: 0x0040, -	0xe5e: 0x0040, 0xe5f: 0x0040, 0xe60: 0x0040, 0xe61: 0x0040, 0xe62: 0x0040, 0xe63: 0x0040, -	0xe64: 0x0040, 0xe65: 0x0040, 0xe66: 0x0040, 0xe67: 0x0040, 0xe68: 0x0040, 0xe69: 0x0040, -	0xe6a: 0x0040, 0xe6b: 0x0040, 0xe6c: 0x0040, 0xe6d: 0x0040, 0xe6e: 0x0040, 0xe6f: 0x0040, -	0xe70: 0x0040, 0xe71: 0x0040, 0xe72: 0x0040, 0xe73: 0x0040, 0xe74: 0x0040, 0xe75: 0x0040, -	0xe76: 0x0040, 0xe77: 0x0040, 0xe78: 0x0040, 0xe79: 0x0040, 0xe7a: 0x0040, 0xe7b: 0x0040, -	0xe7c: 0x0040, 0xe7d: 0x0040, 0xe7e: 0x0040, 0xe7f: 0x0040, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x000a, 0xe81: 0x0018, 0xe82: 0x0961, 0xe83: 0x0018, 0xe84: 0x0018, 0xe85: 0x0008, -	0xe86: 0x0008, 0xe87: 0x0008, 0xe88: 0x0018, 0xe89: 0x0018, 0xe8a: 0x0018, 0xe8b: 0x0018, -	0xe8c: 0x0018, 0xe8d: 0x0018, 0xe8e: 0x0018, 0xe8f: 0x0018, 0xe90: 0x0018, 0xe91: 0x0018, -	0xe92: 0x0018, 0xe93: 0x0018, 0xe94: 0x0018, 0xe95: 0x0018, 0xe96: 0x0018, 0xe97: 0x0018, -	0xe98: 0x0018, 0xe99: 0x0018, 0xe9a: 0x0018, 0xe9b: 0x0018, 0xe9c: 0x0018, 0xe9d: 0x0018, -	0xe9e: 0x0018, 0xe9f: 0x0018, 0xea0: 0x0018, 0xea1: 0x0018, 0xea2: 0x0018, 0xea3: 0x0018, -	0xea4: 0x0018, 0xea5: 0x0018, 0xea6: 0x0018, 0xea7: 0x0018, 0xea8: 0x0018, 0xea9: 0x0018, -	0xeaa: 0x3308, 0xeab: 0x3308, 0xeac: 0x3308, 0xead: 0x3308, 0xeae: 0x3018, 0xeaf: 0x3018, -	0xeb0: 0x0018, 0xeb1: 0x0018, 0xeb2: 0x0018, 0xeb3: 0x0018, 0xeb4: 0x0018, 0xeb5: 0x0018, -	0xeb6: 0xe125, 0xeb7: 0x0018, 0xeb8: 0x29d5, 0xeb9: 0x29f5, 0xeba: 0x2a15, 0xebb: 0x0018, -	0xebc: 0x0008, 0xebd: 0x0018, 0xebe: 0x0018, 0xebf: 0x0018, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x2b55, 0xec1: 0x2b75, 0xec2: 0x2b95, 0xec3: 0x2bb5, 0xec4: 0x2bd5, 0xec5: 0x2bf5, -	0xec6: 0x2bf5, 0xec7: 0x2bf5, 0xec8: 0x2c15, 0xec9: 0x2c15, 0xeca: 0x2c15, 0xecb: 0x2c15, -	0xecc: 0x2c35, 0xecd: 0x2c35, 0xece: 0x2c35, 0xecf: 0x2c55, 0xed0: 0x2c75, 0xed1: 0x2c75, -	0xed2: 0x2a95, 0xed3: 0x2a95, 0xed4: 0x2c75, 0xed5: 0x2c75, 0xed6: 0x2c95, 0xed7: 0x2c95, -	0xed8: 0x2c75, 0xed9: 0x2c75, 0xeda: 0x2a95, 0xedb: 0x2a95, 0xedc: 0x2c75, 0xedd: 0x2c75, -	0xede: 0x2c55, 0xedf: 0x2c55, 0xee0: 0x2cb5, 0xee1: 0x2cb5, 0xee2: 0x2cd5, 0xee3: 0x2cd5, -	0xee4: 0x0040, 0xee5: 0x2cf5, 0xee6: 0x2d15, 0xee7: 0x2d35, 0xee8: 0x2d35, 0xee9: 0x2d55, -	0xeea: 0x2d75, 0xeeb: 0x2d95, 0xeec: 0x2db5, 0xeed: 0x2dd5, 0xeee: 0x2df5, 0xeef: 0x2e15, -	0xef0: 0x2e35, 0xef1: 0x2e55, 0xef2: 0x2e55, 0xef3: 0x2e75, 0xef4: 0x2e95, 0xef5: 0x2e95, -	0xef6: 0x2eb5, 0xef7: 0x2ed5, 0xef8: 0x2e75, 0xef9: 0x2ef5, 0xefa: 0x2f15, 0xefb: 0x2ef5, -	0xefc: 0x2e75, 0xefd: 0x2f35, 0xefe: 0x2f55, 0xeff: 0x2f75, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x2f95, 0xf01: 0x2fb5, 0xf02: 0x2d15, 0xf03: 0x2cf5, 0xf04: 0x2fd5, 0xf05: 0x2ff5, -	0xf06: 0x3015, 0xf07: 0x3035, 0xf08: 0x3055, 0xf09: 0x3075, 0xf0a: 0x3095, 0xf0b: 0x30b5, -	0xf0c: 0x30d5, 0xf0d: 0x30f5, 0xf0e: 0x3115, 0xf0f: 0x0040, 0xf10: 0x0018, 0xf11: 0x0018, -	0xf12: 0x3135, 0xf13: 0x3155, 0xf14: 0x3175, 0xf15: 0x3195, 0xf16: 0x31b5, 0xf17: 0x31d5, -	0xf18: 0x31f5, 0xf19: 0x3215, 0xf1a: 0x3235, 0xf1b: 0x3255, 0xf1c: 0x3175, 0xf1d: 0x3275, -	0xf1e: 0x3295, 0xf1f: 0x32b5, 0xf20: 0x0008, 0xf21: 0x0008, 0xf22: 0x0008, 0xf23: 0x0008, -	0xf24: 0x0008, 0xf25: 0x0008, 0xf26: 0x0008, 0xf27: 0x0008, 0xf28: 0x0008, 0xf29: 0x0008, -	0xf2a: 0x0008, 0xf2b: 0x0008, 0xf2c: 0x0008, 0xf2d: 0x0008, 0xf2e: 0x0008, 0xf2f: 0x0008, -	0xf30: 0x0008, 0xf31: 0x0008, 0xf32: 0x0008, 0xf33: 0x0008, 0xf34: 0x0008, 0xf35: 0x0008, -	0xf36: 0x0008, 0xf37: 0x0008, 0xf38: 0x0008, 0xf39: 0x0008, 0xf3a: 0x0008, 0xf3b: 0x0008, -	0xf3c: 0x0008, 0xf3d: 0x0008, 0xf3e: 0x0008, 0xf3f: 0x0008, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x0b82, 0xf41: 0x0b8a, 0xf42: 0x0b92, 0xf43: 0x0b9a, 0xf44: 0x32d5, 0xf45: 0x32f5, -	0xf46: 0x3315, 0xf47: 0x3335, 0xf48: 0x0018, 0xf49: 0x0018, 0xf4a: 0x0018, 0xf4b: 0x0018, -	0xf4c: 0x0018, 0xf4d: 0x0018, 0xf4e: 0x0018, 0xf4f: 0x0018, 0xf50: 0x3355, 0xf51: 0x0ba1, -	0xf52: 0x0ba9, 0xf53: 0x0bb1, 0xf54: 0x0bb9, 0xf55: 0x0bc1, 0xf56: 0x0bc9, 0xf57: 0x0bd1, -	0xf58: 0x0bd9, 0xf59: 0x0be1, 0xf5a: 0x0be9, 0xf5b: 0x0bf1, 0xf5c: 0x0bf9, 0xf5d: 0x0c01, -	0xf5e: 0x0c09, 0xf5f: 0x0c11, 0xf60: 0x3375, 0xf61: 0x3395, 0xf62: 0x33b5, 0xf63: 0x33d5, -	0xf64: 0x33f5, 0xf65: 0x33f5, 0xf66: 0x3415, 0xf67: 0x3435, 0xf68: 0x3455, 0xf69: 0x3475, -	0xf6a: 0x3495, 0xf6b: 0x34b5, 0xf6c: 0x34d5, 0xf6d: 0x34f5, 0xf6e: 0x3515, 0xf6f: 0x3535, -	0xf70: 0x3555, 0xf71: 0x3575, 0xf72: 0x3595, 0xf73: 0x35b5, 0xf74: 0x35d5, 0xf75: 0x35f5, -	0xf76: 0x3615, 0xf77: 0x3635, 0xf78: 0x3655, 0xf79: 0x3675, 0xf7a: 0x3695, 0xf7b: 0x36b5, -	0xf7c: 0x0c19, 0xf7d: 0x0c21, 0xf7e: 0x36d5, 0xf7f: 0x0018, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x36f5, 0xf81: 0x3715, 0xf82: 0x3735, 0xf83: 0x3755, 0xf84: 0x3775, 0xf85: 0x3795, -	0xf86: 0x37b5, 0xf87: 0x37d5, 0xf88: 0x37f5, 0xf89: 0x3815, 0xf8a: 0x3835, 0xf8b: 0x3855, -	0xf8c: 0x3875, 0xf8d: 0x3895, 0xf8e: 0x38b5, 0xf8f: 0x38d5, 0xf90: 0x38f5, 0xf91: 0x3915, -	0xf92: 0x3935, 0xf93: 0x3955, 0xf94: 0x3975, 0xf95: 0x3995, 0xf96: 0x39b5, 0xf97: 0x39d5, -	0xf98: 0x39f5, 0xf99: 0x3a15, 0xf9a: 0x3a35, 0xf9b: 0x3a55, 0xf9c: 0x3a75, 0xf9d: 0x3a95, -	0xf9e: 0x3ab5, 0xf9f: 0x3ad5, 0xfa0: 0x3af5, 0xfa1: 0x3b15, 0xfa2: 0x3b35, 0xfa3: 0x3b55, -	0xfa4: 0x3b75, 0xfa5: 0x3b95, 0xfa6: 0x1295, 0xfa7: 0x3bb5, 0xfa8: 0x3bd5, 0xfa9: 0x3bf5, -	0xfaa: 0x3c15, 0xfab: 0x3c35, 0xfac: 0x3c55, 0xfad: 0x3c75, 0xfae: 0x23b5, 0xfaf: 0x3c95, -	0xfb0: 0x3cb5, 0xfb1: 0x0c29, 0xfb2: 0x0c31, 0xfb3: 0x0c39, 0xfb4: 0x0c41, 0xfb5: 0x0c49, -	0xfb6: 0x0c51, 0xfb7: 0x0c59, 0xfb8: 0x0c61, 0xfb9: 0x0c69, 0xfba: 0x0c71, 0xfbb: 0x0c79, -	0xfbc: 0x0c81, 0xfbd: 0x0c89, 0xfbe: 0x0c91, 0xfbf: 0x0c99, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x0ca1, 0xfc1: 0x0ca9, 0xfc2: 0x0cb1, 0xfc3: 0x0cb9, 0xfc4: 0x0cc1, 0xfc5: 0x0cc9, -	0xfc6: 0x0cd1, 0xfc7: 0x0cd9, 0xfc8: 0x0ce1, 0xfc9: 0x0ce9, 0xfca: 0x0cf1, 0xfcb: 0x0cf9, -	0xfcc: 0x0d01, 0xfcd: 0x3cd5, 0xfce: 0x0d09, 0xfcf: 0x3cf5, 0xfd0: 0x3d15, 0xfd1: 0x3d2d, -	0xfd2: 0x3d45, 0xfd3: 0x3d5d, 0xfd4: 0x3d75, 0xfd5: 0x3d75, 0xfd6: 0x3d5d, 0xfd7: 0x3d8d, -	0xfd8: 0x07d5, 0xfd9: 0x3da5, 0xfda: 0x3dbd, 0xfdb: 0x3dd5, 0xfdc: 0x3ded, 0xfdd: 0x3e05, -	0xfde: 0x3e1d, 0xfdf: 0x3e35, 0xfe0: 0x3e4d, 0xfe1: 0x3e65, 0xfe2: 0x3e7d, 0xfe3: 0x3e95, -	0xfe4: 0x3ead, 0xfe5: 0x3ead, 0xfe6: 0x3ec5, 0xfe7: 0x3ec5, 0xfe8: 0x3edd, 0xfe9: 0x3edd, -	0xfea: 0x3ef5, 0xfeb: 0x3f0d, 0xfec: 0x3f25, 0xfed: 0x3f3d, 0xfee: 0x3f55, 0xfef: 0x3f55, -	0xff0: 0x3f6d, 0xff1: 0x3f6d, 0xff2: 0x3f6d, 0xff3: 0x3f85, 0xff4: 0x3f9d, 0xff5: 0x3fb5, -	0xff6: 0x3fcd, 0xff7: 0x3fb5, 0xff8: 0x3fe5, 0xff9: 0x3ffd, 0xffa: 0x3f85, 0xffb: 0x4015, -	0xffc: 0x402d, 0xffd: 0x402d, 0xffe: 0x402d, 0xfff: 0x0d11, -	// Block 0x40, offset 0x1000 -	0x1000: 0x10f9, 0x1001: 0x1101, 0x1002: 0x40a5, 0x1003: 0x1109, 0x1004: 0x1111, 0x1005: 0x1119, -	0x1006: 0x1121, 0x1007: 0x1129, 0x1008: 0x40c5, 0x1009: 0x1131, 0x100a: 0x1139, 0x100b: 0x1141, -	0x100c: 0x40e5, 0x100d: 0x40e5, 0x100e: 0x1149, 0x100f: 0x1151, 0x1010: 0x1159, 0x1011: 0x4105, -	0x1012: 0x4125, 0x1013: 0x4145, 0x1014: 0x4165, 0x1015: 0x4185, 0x1016: 0x1161, 0x1017: 0x1169, -	0x1018: 0x1171, 0x1019: 0x1179, 0x101a: 0x1181, 0x101b: 0x41a5, 0x101c: 0x1189, 0x101d: 0x1191, -	0x101e: 0x1199, 0x101f: 0x41c5, 0x1020: 0x41e5, 0x1021: 0x11a1, 0x1022: 0x4205, 0x1023: 0x4225, -	0x1024: 0x4245, 0x1025: 0x11a9, 0x1026: 0x4265, 0x1027: 0x11b1, 0x1028: 0x11b9, 0x1029: 0x10f9, -	0x102a: 0x4285, 0x102b: 0x42a5, 0x102c: 0x42c5, 0x102d: 0x42e5, 0x102e: 0x11c1, 0x102f: 0x11c9, -	0x1030: 0x11d1, 0x1031: 0x11d9, 0x1032: 0x4305, 0x1033: 0x11e1, 0x1034: 0x11e9, 0x1035: 0x11f1, -	0x1036: 0x4325, 0x1037: 0x11f9, 0x1038: 0x1201, 0x1039: 0x11f9, 0x103a: 0x1209, 0x103b: 0x1211, -	0x103c: 0x4345, 0x103d: 0x1219, 0x103e: 0x1221, 0x103f: 0x1219, -	// Block 0x41, offset 0x1040 -	0x1040: 0x4365, 0x1041: 0x4385, 0x1042: 0x0040, 0x1043: 0x1229, 0x1044: 0x1231, 0x1045: 0x1239, -	0x1046: 0x1241, 0x1047: 0x0040, 0x1048: 0x1249, 0x1049: 0x1251, 0x104a: 0x1259, 0x104b: 0x1261, -	0x104c: 0x1269, 0x104d: 0x1271, 0x104e: 0x1199, 0x104f: 0x1279, 0x1050: 0x1281, 0x1051: 0x1289, -	0x1052: 0x43a5, 0x1053: 0x1291, 0x1054: 0x1121, 0x1055: 0x43c5, 0x1056: 0x43e5, 0x1057: 0x1299, -	0x1058: 0x0040, 0x1059: 0x4405, 0x105a: 0x12a1, 0x105b: 0x12a9, 0x105c: 0x12b1, 0x105d: 0x12b9, -	0x105e: 0x12c1, 0x105f: 0x12c9, 0x1060: 0x12d1, 0x1061: 0x12d9, 0x1062: 0x12e1, 0x1063: 0x12e9, -	0x1064: 0x12f1, 0x1065: 0x12f9, 0x1066: 0x1301, 0x1067: 0x1309, 0x1068: 0x1311, 0x1069: 0x1319, -	0x106a: 0x1321, 0x106b: 0x1329, 0x106c: 0x1331, 0x106d: 0x1339, 0x106e: 0x1341, 0x106f: 0x1349, -	0x1070: 0x1351, 0x1071: 0x1359, 0x1072: 0x1361, 0x1073: 0x1369, 0x1074: 0x1371, 0x1075: 0x1379, -	0x1076: 0x1381, 0x1077: 0x1389, 0x1078: 0x1391, 0x1079: 0x1399, 0x107a: 0x13a1, 0x107b: 0x13a9, -	0x107c: 0x13b1, 0x107d: 0x13b9, 0x107e: 0x13c1, 0x107f: 0x4425, -	// Block 0x42, offset 0x1080 -	0x1080: 0xe00d, 0x1081: 0x0008, 0x1082: 0xe00d, 0x1083: 0x0008, 0x1084: 0xe00d, 0x1085: 0x0008, -	0x1086: 0xe00d, 0x1087: 0x0008, 0x1088: 0xe00d, 0x1089: 0x0008, 0x108a: 0xe00d, 0x108b: 0x0008, -	0x108c: 0xe00d, 0x108d: 0x0008, 0x108e: 0xe00d, 0x108f: 0x0008, 0x1090: 0xe00d, 0x1091: 0x0008, -	0x1092: 0xe00d, 0x1093: 0x0008, 0x1094: 0xe00d, 0x1095: 0x0008, 0x1096: 0xe00d, 0x1097: 0x0008, -	0x1098: 0xe00d, 0x1099: 0x0008, 0x109a: 0xe00d, 0x109b: 0x0008, 0x109c: 0xe00d, 0x109d: 0x0008, -	0x109e: 0xe00d, 0x109f: 0x0008, 0x10a0: 0xe00d, 0x10a1: 0x0008, 0x10a2: 0xe00d, 0x10a3: 0x0008, -	0x10a4: 0xe00d, 0x10a5: 0x0008, 0x10a6: 0xe00d, 0x10a7: 0x0008, 0x10a8: 0xe00d, 0x10a9: 0x0008, -	0x10aa: 0xe00d, 0x10ab: 0x0008, 0x10ac: 0xe00d, 0x10ad: 0x0008, 0x10ae: 0x0008, 0x10af: 0x3308, -	0x10b0: 0x3318, 0x10b1: 0x3318, 0x10b2: 0x3318, 0x10b3: 0x0018, 0x10b4: 0x3308, 0x10b5: 0x3308, -	0x10b6: 0x3308, 0x10b7: 0x3308, 0x10b8: 0x3308, 0x10b9: 0x3308, 0x10ba: 0x3308, 0x10bb: 0x3308, -	0x10bc: 0x3308, 0x10bd: 0x3308, 0x10be: 0x0018, 0x10bf: 0x0008, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0xe00d, 0x10c1: 0x0008, 0x10c2: 0xe00d, 0x10c3: 0x0008, 0x10c4: 0xe00d, 0x10c5: 0x0008, -	0x10c6: 0xe00d, 0x10c7: 0x0008, 0x10c8: 0xe00d, 0x10c9: 0x0008, 0x10ca: 0xe00d, 0x10cb: 0x0008, -	0x10cc: 0xe00d, 0x10cd: 0x0008, 0x10ce: 0xe00d, 0x10cf: 0x0008, 0x10d0: 0xe00d, 0x10d1: 0x0008, -	0x10d2: 0xe00d, 0x10d3: 0x0008, 0x10d4: 0xe00d, 0x10d5: 0x0008, 0x10d6: 0xe00d, 0x10d7: 0x0008, -	0x10d8: 0xe00d, 0x10d9: 0x0008, 0x10da: 0xe00d, 0x10db: 0x0008, 0x10dc: 0x02d1, 0x10dd: 0x13c9, -	0x10de: 0x3308, 0x10df: 0x3308, 0x10e0: 0x0008, 0x10e1: 0x0008, 0x10e2: 0x0008, 0x10e3: 0x0008, -	0x10e4: 0x0008, 0x10e5: 0x0008, 0x10e6: 0x0008, 0x10e7: 0x0008, 0x10e8: 0x0008, 0x10e9: 0x0008, -	0x10ea: 0x0008, 0x10eb: 0x0008, 0x10ec: 0x0008, 0x10ed: 0x0008, 0x10ee: 0x0008, 0x10ef: 0x0008, -	0x10f0: 0x0008, 0x10f1: 0x0008, 0x10f2: 0x0008, 0x10f3: 0x0008, 0x10f4: 0x0008, 0x10f5: 0x0008, -	0x10f6: 0x0008, 0x10f7: 0x0008, 0x10f8: 0x0008, 0x10f9: 0x0008, 0x10fa: 0x0008, 0x10fb: 0x0008, -	0x10fc: 0x0008, 0x10fd: 0x0008, 0x10fe: 0x0008, 0x10ff: 0x0008, -	// Block 0x44, offset 0x1100 -	0x1100: 0x0018, 0x1101: 0x0018, 0x1102: 0x0018, 0x1103: 0x0018, 0x1104: 0x0018, 0x1105: 0x0018, -	0x1106: 0x0018, 0x1107: 0x0018, 0x1108: 0x0018, 0x1109: 0x0018, 0x110a: 0x0018, 0x110b: 0x0018, -	0x110c: 0x0018, 0x110d: 0x0018, 0x110e: 0x0018, 0x110f: 0x0018, 0x1110: 0x0018, 0x1111: 0x0018, -	0x1112: 0x0018, 0x1113: 0x0018, 0x1114: 0x0018, 0x1115: 0x0018, 0x1116: 0x0018, 0x1117: 0x0008, -	0x1118: 0x0008, 0x1119: 0x0008, 0x111a: 0x0008, 0x111b: 0x0008, 0x111c: 0x0008, 0x111d: 0x0008, -	0x111e: 0x0008, 0x111f: 0x0008, 0x1120: 0x0018, 0x1121: 0x0018, 0x1122: 0xe00d, 0x1123: 0x0008, -	0x1124: 0xe00d, 0x1125: 0x0008, 0x1126: 0xe00d, 0x1127: 0x0008, 0x1128: 0xe00d, 0x1129: 0x0008, -	0x112a: 0xe00d, 0x112b: 0x0008, 0x112c: 0xe00d, 0x112d: 0x0008, 0x112e: 0xe00d, 0x112f: 0x0008, -	0x1130: 0x0008, 0x1131: 0x0008, 0x1132: 0xe00d, 0x1133: 0x0008, 0x1134: 0xe00d, 0x1135: 0x0008, -	0x1136: 0xe00d, 0x1137: 0x0008, 0x1138: 0xe00d, 0x1139: 0x0008, 0x113a: 0xe00d, 0x113b: 0x0008, -	0x113c: 0xe00d, 0x113d: 0x0008, 0x113e: 0xe00d, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0xe00d, 0x1141: 0x0008, 0x1142: 0xe00d, 0x1143: 0x0008, 0x1144: 0xe00d, 0x1145: 0x0008, -	0x1146: 0xe00d, 0x1147: 0x0008, 0x1148: 0xe00d, 0x1149: 0x0008, 0x114a: 0xe00d, 0x114b: 0x0008, -	0x114c: 0xe00d, 0x114d: 0x0008, 0x114e: 0xe00d, 0x114f: 0x0008, 0x1150: 0xe00d, 0x1151: 0x0008, -	0x1152: 0xe00d, 0x1153: 0x0008, 0x1154: 0xe00d, 0x1155: 0x0008, 0x1156: 0xe00d, 0x1157: 0x0008, -	0x1158: 0xe00d, 0x1159: 0x0008, 0x115a: 0xe00d, 0x115b: 0x0008, 0x115c: 0xe00d, 0x115d: 0x0008, -	0x115e: 0xe00d, 0x115f: 0x0008, 0x1160: 0xe00d, 0x1161: 0x0008, 0x1162: 0xe00d, 0x1163: 0x0008, -	0x1164: 0xe00d, 0x1165: 0x0008, 0x1166: 0xe00d, 0x1167: 0x0008, 0x1168: 0xe00d, 0x1169: 0x0008, -	0x116a: 0xe00d, 0x116b: 0x0008, 0x116c: 0xe00d, 0x116d: 0x0008, 0x116e: 0xe00d, 0x116f: 0x0008, -	0x1170: 0xe0fd, 0x1171: 0x0008, 0x1172: 0x0008, 0x1173: 0x0008, 0x1174: 0x0008, 0x1175: 0x0008, -	0x1176: 0x0008, 0x1177: 0x0008, 0x1178: 0x0008, 0x1179: 0xe01d, 0x117a: 0x0008, 0x117b: 0xe03d, -	0x117c: 0x0008, 0x117d: 0x4445, 0x117e: 0xe00d, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0xe00d, 0x1181: 0x0008, 0x1182: 0xe00d, 0x1183: 0x0008, 0x1184: 0xe00d, 0x1185: 0x0008, -	0x1186: 0xe00d, 0x1187: 0x0008, 0x1188: 0x0008, 0x1189: 0x0018, 0x118a: 0x0018, 0x118b: 0xe03d, -	0x118c: 0x0008, 0x118d: 0x0409, 0x118e: 0x0008, 0x118f: 0x0008, 0x1190: 0xe00d, 0x1191: 0x0008, -	0x1192: 0xe00d, 0x1193: 0x0008, 0x1194: 0x0008, 0x1195: 0x0008, 0x1196: 0xe00d, 0x1197: 0x0008, -	0x1198: 0xe00d, 0x1199: 0x0008, 0x119a: 0xe00d, 0x119b: 0x0008, 0x119c: 0xe00d, 0x119d: 0x0008, -	0x119e: 0xe00d, 0x119f: 0x0008, 0x11a0: 0xe00d, 0x11a1: 0x0008, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0x13d1, 0x11ab: 0x0371, 0x11ac: 0x0401, 0x11ad: 0x13d9, 0x11ae: 0x0421, 0x11af: 0x0008, -	0x11b0: 0x13e1, 0x11b1: 0x13e9, 0x11b2: 0x0429, 0x11b3: 0x4465, 0x11b4: 0xe00d, 0x11b5: 0x0008, -	0x11b6: 0xe00d, 0x11b7: 0x0008, 0x11b8: 0xe00d, 0x11b9: 0x0008, 0x11ba: 0xe00d, 0x11bb: 0x0008, -	0x11bc: 0xe00d, 0x11bd: 0x0008, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0x650d, 0x11c1: 0x652d, 0x11c2: 0x654d, 0x11c3: 0x656d, 0x11c4: 0x658d, 0x11c5: 0x65ad, -	0x11c6: 0x65cd, 0x11c7: 0x65ed, 0x11c8: 0x660d, 0x11c9: 0x662d, 0x11ca: 0x664d, 0x11cb: 0x666d, -	0x11cc: 0x668d, 0x11cd: 0x66ad, 0x11ce: 0x0008, 0x11cf: 0x0008, 0x11d0: 0x66cd, 0x11d1: 0x0008, -	0x11d2: 0x66ed, 0x11d3: 0x0008, 0x11d4: 0x0008, 0x11d5: 0x670d, 0x11d6: 0x672d, 0x11d7: 0x674d, -	0x11d8: 0x676d, 0x11d9: 0x678d, 0x11da: 0x67ad, 0x11db: 0x67cd, 0x11dc: 0x67ed, 0x11dd: 0x680d, -	0x11de: 0x682d, 0x11df: 0x0008, 0x11e0: 0x684d, 0x11e1: 0x0008, 0x11e2: 0x686d, 0x11e3: 0x0008, -	0x11e4: 0x0008, 0x11e5: 0x688d, 0x11e6: 0x68ad, 0x11e7: 0x0008, 0x11e8: 0x0008, 0x11e9: 0x0008, -	0x11ea: 0x68cd, 0x11eb: 0x68ed, 0x11ec: 0x690d, 0x11ed: 0x692d, 0x11ee: 0x694d, 0x11ef: 0x696d, -	0x11f0: 0x698d, 0x11f1: 0x69ad, 0x11f2: 0x69cd, 0x11f3: 0x69ed, 0x11f4: 0x6a0d, 0x11f5: 0x6a2d, -	0x11f6: 0x6a4d, 0x11f7: 0x6a6d, 0x11f8: 0x6a8d, 0x11f9: 0x6aad, 0x11fa: 0x6acd, 0x11fb: 0x6aed, -	0x11fc: 0x6b0d, 0x11fd: 0x6b2d, 0x11fe: 0x6b4d, 0x11ff: 0x6b6d, -	// Block 0x48, offset 0x1200 -	0x1200: 0x7acd, 0x1201: 0x7aed, 0x1202: 0x7b0d, 0x1203: 0x7b2d, 0x1204: 0x7b4d, 0x1205: 0x7b6d, -	0x1206: 0x7b8d, 0x1207: 0x7bad, 0x1208: 0x7bcd, 0x1209: 0x7bed, 0x120a: 0x7c0d, 0x120b: 0x7c2d, -	0x120c: 0x7c4d, 0x120d: 0x7c6d, 0x120e: 0x7c8d, 0x120f: 0x1409, 0x1210: 0x1411, 0x1211: 0x1419, -	0x1212: 0x7cad, 0x1213: 0x7ccd, 0x1214: 0x7ced, 0x1215: 0x1421, 0x1216: 0x1429, 0x1217: 0x1431, -	0x1218: 0x7d0d, 0x1219: 0x7d2d, 0x121a: 0x0040, 0x121b: 0x0040, 0x121c: 0x0040, 0x121d: 0x0040, -	0x121e: 0x0040, 0x121f: 0x0040, 0x1220: 0x0040, 0x1221: 0x0040, 0x1222: 0x0040, 0x1223: 0x0040, -	0x1224: 0x0040, 0x1225: 0x0040, 0x1226: 0x0040, 0x1227: 0x0040, 0x1228: 0x0040, 0x1229: 0x0040, -	0x122a: 0x0040, 0x122b: 0x0040, 0x122c: 0x0040, 0x122d: 0x0040, 0x122e: 0x0040, 0x122f: 0x0040, -	0x1230: 0x0040, 0x1231: 0x0040, 0x1232: 0x0040, 0x1233: 0x0040, 0x1234: 0x0040, 0x1235: 0x0040, -	0x1236: 0x0040, 0x1237: 0x0040, 0x1238: 0x0040, 0x1239: 0x0040, 0x123a: 0x0040, 0x123b: 0x0040, -	0x123c: 0x0040, 0x123d: 0x0040, 0x123e: 0x0040, 0x123f: 0x0040, -	// Block 0x49, offset 0x1240 -	0x1240: 0x1439, 0x1241: 0x1441, 0x1242: 0x1449, 0x1243: 0x7d4d, 0x1244: 0x7d6d, 0x1245: 0x1451, -	0x1246: 0x1451, 0x1247: 0x0040, 0x1248: 0x0040, 0x1249: 0x0040, 0x124a: 0x0040, 0x124b: 0x0040, -	0x124c: 0x0040, 0x124d: 0x0040, 0x124e: 0x0040, 0x124f: 0x0040, 0x1250: 0x0040, 0x1251: 0x0040, -	0x1252: 0x0040, 0x1253: 0x1459, 0x1254: 0x1461, 0x1255: 0x1469, 0x1256: 0x1471, 0x1257: 0x1479, -	0x1258: 0x0040, 0x1259: 0x0040, 0x125a: 0x0040, 0x125b: 0x0040, 0x125c: 0x0040, 0x125d: 0x1481, -	0x125e: 0x3308, 0x125f: 0x1489, 0x1260: 0x1491, 0x1261: 0x0779, 0x1262: 0x0791, 0x1263: 0x1499, -	0x1264: 0x14a1, 0x1265: 0x14a9, 0x1266: 0x14b1, 0x1267: 0x14b9, 0x1268: 0x14c1, 0x1269: 0x071a, -	0x126a: 0x14c9, 0x126b: 0x14d1, 0x126c: 0x14d9, 0x126d: 0x14e1, 0x126e: 0x14e9, 0x126f: 0x14f1, -	0x1270: 0x14f9, 0x1271: 0x1501, 0x1272: 0x1509, 0x1273: 0x1511, 0x1274: 0x1519, 0x1275: 0x1521, -	0x1276: 0x1529, 0x1277: 0x0040, 0x1278: 0x1531, 0x1279: 0x1539, 0x127a: 0x1541, 0x127b: 0x1549, -	0x127c: 0x1551, 0x127d: 0x0040, 0x127e: 0x1559, 0x127f: 0x0040, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x1561, 0x1281: 0x1569, 0x1282: 0x0040, 0x1283: 0x1571, 0x1284: 0x1579, 0x1285: 0x0040, -	0x1286: 0x1581, 0x1287: 0x1589, 0x1288: 0x1591, 0x1289: 0x1599, 0x128a: 0x15a1, 0x128b: 0x15a9, -	0x128c: 0x15b1, 0x128d: 0x15b9, 0x128e: 0x15c1, 0x128f: 0x15c9, 0x1290: 0x15d1, 0x1291: 0x15d1, -	0x1292: 0x15d9, 0x1293: 0x15d9, 0x1294: 0x15d9, 0x1295: 0x15d9, 0x1296: 0x15e1, 0x1297: 0x15e1, -	0x1298: 0x15e1, 0x1299: 0x15e1, 0x129a: 0x15e9, 0x129b: 0x15e9, 0x129c: 0x15e9, 0x129d: 0x15e9, -	0x129e: 0x15f1, 0x129f: 0x15f1, 0x12a0: 0x15f1, 0x12a1: 0x15f1, 0x12a2: 0x15f9, 0x12a3: 0x15f9, -	0x12a4: 0x15f9, 0x12a5: 0x15f9, 0x12a6: 0x1601, 0x12a7: 0x1601, 0x12a8: 0x1601, 0x12a9: 0x1601, -	0x12aa: 0x1609, 0x12ab: 0x1609, 0x12ac: 0x1609, 0x12ad: 0x1609, 0x12ae: 0x1611, 0x12af: 0x1611, -	0x12b0: 0x1611, 0x12b1: 0x1611, 0x12b2: 0x1619, 0x12b3: 0x1619, 0x12b4: 0x1619, 0x12b5: 0x1619, -	0x12b6: 0x1621, 0x12b7: 0x1621, 0x12b8: 0x1621, 0x12b9: 0x1621, 0x12ba: 0x1629, 0x12bb: 0x1629, -	0x12bc: 0x1629, 0x12bd: 0x1629, 0x12be: 0x1631, 0x12bf: 0x1631, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x1631, 0x12c1: 0x1631, 0x12c2: 0x1639, 0x12c3: 0x1639, 0x12c4: 0x1641, 0x12c5: 0x1641, -	0x12c6: 0x1649, 0x12c7: 0x1649, 0x12c8: 0x1651, 0x12c9: 0x1651, 0x12ca: 0x1659, 0x12cb: 0x1659, -	0x12cc: 0x1661, 0x12cd: 0x1661, 0x12ce: 0x1669, 0x12cf: 0x1669, 0x12d0: 0x1669, 0x12d1: 0x1669, -	0x12d2: 0x1671, 0x12d3: 0x1671, 0x12d4: 0x1671, 0x12d5: 0x1671, 0x12d6: 0x1679, 0x12d7: 0x1679, -	0x12d8: 0x1679, 0x12d9: 0x1679, 0x12da: 0x1681, 0x12db: 0x1681, 0x12dc: 0x1681, 0x12dd: 0x1681, -	0x12de: 0x1689, 0x12df: 0x1689, 0x12e0: 0x1691, 0x12e1: 0x1691, 0x12e2: 0x1691, 0x12e3: 0x1691, -	0x12e4: 0x1699, 0x12e5: 0x1699, 0x12e6: 0x16a1, 0x12e7: 0x16a1, 0x12e8: 0x16a1, 0x12e9: 0x16a1, -	0x12ea: 0x16a9, 0x12eb: 0x16a9, 0x12ec: 0x16a9, 0x12ed: 0x16a9, 0x12ee: 0x16b1, 0x12ef: 0x16b1, -	0x12f0: 0x16b9, 0x12f1: 0x16b9, 0x12f2: 0x0818, 0x12f3: 0x0818, 0x12f4: 0x0818, 0x12f5: 0x0818, -	0x12f6: 0x0818, 0x12f7: 0x0818, 0x12f8: 0x0818, 0x12f9: 0x0818, 0x12fa: 0x0818, 0x12fb: 0x0818, -	0x12fc: 0x0818, 0x12fd: 0x0818, 0x12fe: 0x0818, 0x12ff: 0x0818, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x0818, 0x1301: 0x0818, 0x1302: 0x0040, 0x1303: 0x0040, 0x1304: 0x0040, 0x1305: 0x0040, -	0x1306: 0x0040, 0x1307: 0x0040, 0x1308: 0x0040, 0x1309: 0x0040, 0x130a: 0x0040, 0x130b: 0x0040, -	0x130c: 0x0040, 0x130d: 0x0040, 0x130e: 0x0040, 0x130f: 0x0040, 0x1310: 0x0040, 0x1311: 0x0040, -	0x1312: 0x0040, 0x1313: 0x16c1, 0x1314: 0x16c1, 0x1315: 0x16c1, 0x1316: 0x16c1, 0x1317: 0x16c9, -	0x1318: 0x16c9, 0x1319: 0x16d1, 0x131a: 0x16d1, 0x131b: 0x16d9, 0x131c: 0x16d9, 0x131d: 0x0149, -	0x131e: 0x16e1, 0x131f: 0x16e1, 0x1320: 0x16e9, 0x1321: 0x16e9, 0x1322: 0x16f1, 0x1323: 0x16f1, -	0x1324: 0x16f9, 0x1325: 0x16f9, 0x1326: 0x16f9, 0x1327: 0x16f9, 0x1328: 0x1701, 0x1329: 0x1701, -	0x132a: 0x1709, 0x132b: 0x1709, 0x132c: 0x1711, 0x132d: 0x1711, 0x132e: 0x1719, 0x132f: 0x1719, -	0x1330: 0x1721, 0x1331: 0x1721, 0x1332: 0x1729, 0x1333: 0x1729, 0x1334: 0x1731, 0x1335: 0x1731, -	0x1336: 0x1739, 0x1337: 0x1739, 0x1338: 0x1739, 0x1339: 0x1741, 0x133a: 0x1741, 0x133b: 0x1741, -	0x133c: 0x1749, 0x133d: 0x1749, 0x133e: 0x1749, 0x133f: 0x1749, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x1949, 0x1341: 0x1951, 0x1342: 0x1959, 0x1343: 0x1961, 0x1344: 0x1969, 0x1345: 0x1971, -	0x1346: 0x1979, 0x1347: 0x1981, 0x1348: 0x1989, 0x1349: 0x1991, 0x134a: 0x1999, 0x134b: 0x19a1, -	0x134c: 0x19a9, 0x134d: 0x19b1, 0x134e: 0x19b9, 0x134f: 0x19c1, 0x1350: 0x19c9, 0x1351: 0x19d1, -	0x1352: 0x19d9, 0x1353: 0x19e1, 0x1354: 0x19e9, 0x1355: 0x19f1, 0x1356: 0x19f9, 0x1357: 0x1a01, -	0x1358: 0x1a09, 0x1359: 0x1a11, 0x135a: 0x1a19, 0x135b: 0x1a21, 0x135c: 0x1a29, 0x135d: 0x1a31, -	0x135e: 0x1a3a, 0x135f: 0x1a42, 0x1360: 0x1a4a, 0x1361: 0x1a52, 0x1362: 0x1a5a, 0x1363: 0x1a62, -	0x1364: 0x1a69, 0x1365: 0x1a71, 0x1366: 0x1761, 0x1367: 0x1a79, 0x1368: 0x1741, 0x1369: 0x1769, -	0x136a: 0x1a81, 0x136b: 0x1a89, 0x136c: 0x1789, 0x136d: 0x1a91, 0x136e: 0x1791, 0x136f: 0x1799, -	0x1370: 0x1a99, 0x1371: 0x1aa1, 0x1372: 0x17b9, 0x1373: 0x1aa9, 0x1374: 0x17c1, 0x1375: 0x17c9, -	0x1376: 0x1ab1, 0x1377: 0x1ab9, 0x1378: 0x17d9, 0x1379: 0x1ac1, 0x137a: 0x17e1, 0x137b: 0x17e9, -	0x137c: 0x18d1, 0x137d: 0x18d9, 0x137e: 0x18f1, 0x137f: 0x18f9, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x1901, 0x1381: 0x1921, 0x1382: 0x1929, 0x1383: 0x1931, 0x1384: 0x1939, 0x1385: 0x1959, -	0x1386: 0x1961, 0x1387: 0x1969, 0x1388: 0x1ac9, 0x1389: 0x1989, 0x138a: 0x1ad1, 0x138b: 0x1ad9, -	0x138c: 0x19b9, 0x138d: 0x1ae1, 0x138e: 0x19c1, 0x138f: 0x19c9, 0x1390: 0x1a31, 0x1391: 0x1ae9, -	0x1392: 0x1af1, 0x1393: 0x1a09, 0x1394: 0x1af9, 0x1395: 0x1a11, 0x1396: 0x1a19, 0x1397: 0x1751, -	0x1398: 0x1759, 0x1399: 0x1b01, 0x139a: 0x1761, 0x139b: 0x1b09, 0x139c: 0x1771, 0x139d: 0x1779, -	0x139e: 0x1781, 0x139f: 0x1789, 0x13a0: 0x1b11, 0x13a1: 0x17a1, 0x13a2: 0x17a9, 0x13a3: 0x17b1, -	0x13a4: 0x17b9, 0x13a5: 0x1b19, 0x13a6: 0x17d9, 0x13a7: 0x17f1, 0x13a8: 0x17f9, 0x13a9: 0x1801, -	0x13aa: 0x1809, 0x13ab: 0x1811, 0x13ac: 0x1821, 0x13ad: 0x1829, 0x13ae: 0x1831, 0x13af: 0x1839, -	0x13b0: 0x1841, 0x13b1: 0x1849, 0x13b2: 0x1b21, 0x13b3: 0x1851, 0x13b4: 0x1859, 0x13b5: 0x1861, -	0x13b6: 0x1869, 0x13b7: 0x1871, 0x13b8: 0x1879, 0x13b9: 0x1889, 0x13ba: 0x1891, 0x13bb: 0x1899, -	0x13bc: 0x18a1, 0x13bd: 0x18a9, 0x13be: 0x18b1, 0x13bf: 0x18b9, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x18c1, 0x13c1: 0x18c9, 0x13c2: 0x18e1, 0x13c3: 0x18e9, 0x13c4: 0x1909, 0x13c5: 0x1911, -	0x13c6: 0x1919, 0x13c7: 0x1921, 0x13c8: 0x1929, 0x13c9: 0x1941, 0x13ca: 0x1949, 0x13cb: 0x1951, -	0x13cc: 0x1959, 0x13cd: 0x1b29, 0x13ce: 0x1971, 0x13cf: 0x1979, 0x13d0: 0x1981, 0x13d1: 0x1989, -	0x13d2: 0x19a1, 0x13d3: 0x19a9, 0x13d4: 0x19b1, 0x13d5: 0x19b9, 0x13d6: 0x1b31, 0x13d7: 0x19d1, -	0x13d8: 0x19d9, 0x13d9: 0x1b39, 0x13da: 0x19f1, 0x13db: 0x19f9, 0x13dc: 0x1a01, 0x13dd: 0x1a09, -	0x13de: 0x1b41, 0x13df: 0x1761, 0x13e0: 0x1b09, 0x13e1: 0x1789, 0x13e2: 0x1b11, 0x13e3: 0x17b9, -	0x13e4: 0x1b19, 0x13e5: 0x17d9, 0x13e6: 0x1b49, 0x13e7: 0x1841, 0x13e8: 0x1b51, 0x13e9: 0x1b59, -	0x13ea: 0x1b61, 0x13eb: 0x1921, 0x13ec: 0x1929, 0x13ed: 0x1959, 0x13ee: 0x19b9, 0x13ef: 0x1b31, -	0x13f0: 0x1a09, 0x13f1: 0x1b41, 0x13f2: 0x1b69, 0x13f3: 0x1b71, 0x13f4: 0x1b79, 0x13f5: 0x1b81, -	0x13f6: 0x1b89, 0x13f7: 0x1b91, 0x13f8: 0x1b99, 0x13f9: 0x1ba1, 0x13fa: 0x1ba9, 0x13fb: 0x1bb1, -	0x13fc: 0x1bb9, 0x13fd: 0x1bc1, 0x13fe: 0x1bc9, 0x13ff: 0x1bd1, -	// Block 0x50, offset 0x1400 -	0x1400: 0x1bd9, 0x1401: 0x1be1, 0x1402: 0x1be9, 0x1403: 0x1bf1, 0x1404: 0x1bf9, 0x1405: 0x1c01, -	0x1406: 0x1c09, 0x1407: 0x1c11, 0x1408: 0x1c19, 0x1409: 0x1c21, 0x140a: 0x1c29, 0x140b: 0x1c31, -	0x140c: 0x1b59, 0x140d: 0x1c39, 0x140e: 0x1c41, 0x140f: 0x1c49, 0x1410: 0x1c51, 0x1411: 0x1b81, -	0x1412: 0x1b89, 0x1413: 0x1b91, 0x1414: 0x1b99, 0x1415: 0x1ba1, 0x1416: 0x1ba9, 0x1417: 0x1bb1, -	0x1418: 0x1bb9, 0x1419: 0x1bc1, 0x141a: 0x1bc9, 0x141b: 0x1bd1, 0x141c: 0x1bd9, 0x141d: 0x1be1, -	0x141e: 0x1be9, 0x141f: 0x1bf1, 0x1420: 0x1bf9, 0x1421: 0x1c01, 0x1422: 0x1c09, 0x1423: 0x1c11, -	0x1424: 0x1c19, 0x1425: 0x1c21, 0x1426: 0x1c29, 0x1427: 0x1c31, 0x1428: 0x1b59, 0x1429: 0x1c39, -	0x142a: 0x1c41, 0x142b: 0x1c49, 0x142c: 0x1c51, 0x142d: 0x1c21, 0x142e: 0x1c29, 0x142f: 0x1c31, -	0x1430: 0x1b59, 0x1431: 0x1b51, 0x1432: 0x1b61, 0x1433: 0x1881, 0x1434: 0x1829, 0x1435: 0x1831, -	0x1436: 0x1839, 0x1437: 0x1c21, 0x1438: 0x1c29, 0x1439: 0x1c31, 0x143a: 0x1881, 0x143b: 0x1889, -	0x143c: 0x1c59, 0x143d: 0x1c59, 0x143e: 0x0018, 0x143f: 0x0018, -	// Block 0x51, offset 0x1440 -	0x1440: 0x0040, 0x1441: 0x0040, 0x1442: 0x0040, 0x1443: 0x0040, 0x1444: 0x0040, 0x1445: 0x0040, -	0x1446: 0x0040, 0x1447: 0x0040, 0x1448: 0x0040, 0x1449: 0x0040, 0x144a: 0x0040, 0x144b: 0x0040, -	0x144c: 0x0040, 0x144d: 0x0040, 0x144e: 0x0040, 0x144f: 0x0040, 0x1450: 0x1c61, 0x1451: 0x1c69, -	0x1452: 0x1c69, 0x1453: 0x1c71, 0x1454: 0x1c79, 0x1455: 0x1c81, 0x1456: 0x1c89, 0x1457: 0x1c91, -	0x1458: 0x1c99, 0x1459: 0x1c99, 0x145a: 0x1ca1, 0x145b: 0x1ca9, 0x145c: 0x1cb1, 0x145d: 0x1cb9, -	0x145e: 0x1cc1, 0x145f: 0x1cc9, 0x1460: 0x1cc9, 0x1461: 0x1cd1, 0x1462: 0x1cd9, 0x1463: 0x1cd9, -	0x1464: 0x1ce1, 0x1465: 0x1ce1, 0x1466: 0x1ce9, 0x1467: 0x1cf1, 0x1468: 0x1cf1, 0x1469: 0x1cf9, -	0x146a: 0x1d01, 0x146b: 0x1d01, 0x146c: 0x1d09, 0x146d: 0x1d09, 0x146e: 0x1d11, 0x146f: 0x1d19, -	0x1470: 0x1d19, 0x1471: 0x1d21, 0x1472: 0x1d21, 0x1473: 0x1d29, 0x1474: 0x1d31, 0x1475: 0x1d39, -	0x1476: 0x1d41, 0x1477: 0x1d41, 0x1478: 0x1d49, 0x1479: 0x1d51, 0x147a: 0x1d59, 0x147b: 0x1d61, -	0x147c: 0x1d69, 0x147d: 0x1d69, 0x147e: 0x1d71, 0x147f: 0x1d79, -	// Block 0x52, offset 0x1480 -	0x1480: 0x1f29, 0x1481: 0x1f31, 0x1482: 0x1f39, 0x1483: 0x1f11, 0x1484: 0x1d39, 0x1485: 0x1ce9, -	0x1486: 0x1f41, 0x1487: 0x1f49, 0x1488: 0x0040, 0x1489: 0x0040, 0x148a: 0x0040, 0x148b: 0x0040, -	0x148c: 0x0040, 0x148d: 0x0040, 0x148e: 0x0040, 0x148f: 0x0040, 0x1490: 0x0040, 0x1491: 0x0040, -	0x1492: 0x0040, 0x1493: 0x0040, 0x1494: 0x0040, 0x1495: 0x0040, 0x1496: 0x0040, 0x1497: 0x0040, -	0x1498: 0x0040, 0x1499: 0x0040, 0x149a: 0x0040, 0x149b: 0x0040, 0x149c: 0x0040, 0x149d: 0x0040, -	0x149e: 0x0040, 0x149f: 0x0040, 0x14a0: 0x0040, 0x14a1: 0x0040, 0x14a2: 0x0040, 0x14a3: 0x0040, -	0x14a4: 0x0040, 0x14a5: 0x0040, 0x14a6: 0x0040, 0x14a7: 0x0040, 0x14a8: 0x0040, 0x14a9: 0x0040, -	0x14aa: 0x0040, 0x14ab: 0x0040, 0x14ac: 0x0040, 0x14ad: 0x0040, 0x14ae: 0x0040, 0x14af: 0x0040, -	0x14b0: 0x1f51, 0x14b1: 0x1f59, 0x14b2: 0x1f61, 0x14b3: 0x1f69, 0x14b4: 0x1f71, 0x14b5: 0x1f79, -	0x14b6: 0x1f81, 0x14b7: 0x1f89, 0x14b8: 0x1f91, 0x14b9: 0x1f99, 0x14ba: 0x1fa2, 0x14bb: 0x1faa, -	0x14bc: 0x1fb1, 0x14bd: 0x0018, 0x14be: 0x0040, 0x14bf: 0x0040, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0x33c0, 0x14c1: 0x33c0, 0x14c2: 0x33c0, 0x14c3: 0x33c0, 0x14c4: 0x33c0, 0x14c5: 0x33c0, -	0x14c6: 0x33c0, 0x14c7: 0x33c0, 0x14c8: 0x33c0, 0x14c9: 0x33c0, 0x14ca: 0x33c0, 0x14cb: 0x33c0, -	0x14cc: 0x33c0, 0x14cd: 0x33c0, 0x14ce: 0x33c0, 0x14cf: 0x33c0, 0x14d0: 0x1fba, 0x14d1: 0x7d8d, -	0x14d2: 0x0040, 0x14d3: 0x1fc2, 0x14d4: 0x0122, 0x14d5: 0x1fca, 0x14d6: 0x1fd2, 0x14d7: 0x7dad, -	0x14d8: 0x7dcd, 0x14d9: 0x0040, 0x14da: 0x0040, 0x14db: 0x0040, 0x14dc: 0x0040, 0x14dd: 0x0040, -	0x14de: 0x0040, 0x14df: 0x0040, 0x14e0: 0x3308, 0x14e1: 0x3308, 0x14e2: 0x3308, 0x14e3: 0x3308, -	0x14e4: 0x3308, 0x14e5: 0x3308, 0x14e6: 0x3308, 0x14e7: 0x3308, 0x14e8: 0x3308, 0x14e9: 0x3308, -	0x14ea: 0x3308, 0x14eb: 0x3308, 0x14ec: 0x3308, 0x14ed: 0x3308, 0x14ee: 0x3308, 0x14ef: 0x3308, -	0x14f0: 0x0040, 0x14f1: 0x7ded, 0x14f2: 0x7e0d, 0x14f3: 0x1fda, 0x14f4: 0x1fda, 0x14f5: 0x072a, -	0x14f6: 0x0732, 0x14f7: 0x1fe2, 0x14f8: 0x1fea, 0x14f9: 0x7e2d, 0x14fa: 0x7e4d, 0x14fb: 0x7e6d, -	0x14fc: 0x7e2d, 0x14fd: 0x7e8d, 0x14fe: 0x7ead, 0x14ff: 0x7e8d, -	// Block 0x54, offset 0x1500 -	0x1500: 0x7ecd, 0x1501: 0x7eed, 0x1502: 0x7f0d, 0x1503: 0x7eed, 0x1504: 0x7f2d, 0x1505: 0x0018, -	0x1506: 0x0018, 0x1507: 0x1ff2, 0x1508: 0x1ffa, 0x1509: 0x7f4e, 0x150a: 0x7f6e, 0x150b: 0x7f8e, -	0x150c: 0x7fae, 0x150d: 0x1fda, 0x150e: 0x1fda, 0x150f: 0x1fda, 0x1510: 0x1fba, 0x1511: 0x7fcd, -	0x1512: 0x0040, 0x1513: 0x0040, 0x1514: 0x0122, 0x1515: 0x1fc2, 0x1516: 0x1fd2, 0x1517: 0x1fca, -	0x1518: 0x7fed, 0x1519: 0x072a, 0x151a: 0x0732, 0x151b: 0x1fe2, 0x151c: 0x1fea, 0x151d: 0x7ecd, -	0x151e: 0x7f2d, 0x151f: 0x2002, 0x1520: 0x200a, 0x1521: 0x2012, 0x1522: 0x071a, 0x1523: 0x2019, -	0x1524: 0x2022, 0x1525: 0x202a, 0x1526: 0x0722, 0x1527: 0x0040, 0x1528: 0x2032, 0x1529: 0x203a, -	0x152a: 0x2042, 0x152b: 0x204a, 0x152c: 0x0040, 0x152d: 0x0040, 0x152e: 0x0040, 0x152f: 0x0040, -	0x1530: 0x800e, 0x1531: 0x2051, 0x1532: 0x802e, 0x1533: 0x0808, 0x1534: 0x804e, 0x1535: 0x0040, -	0x1536: 0x806e, 0x1537: 0x2059, 0x1538: 0x808e, 0x1539: 0x2061, 0x153a: 0x80ae, 0x153b: 0x2069, -	0x153c: 0x80ce, 0x153d: 0x2071, 0x153e: 0x80ee, 0x153f: 0x2079, -	// Block 0x55, offset 0x1540 -	0x1540: 0x2081, 0x1541: 0x2089, 0x1542: 0x2089, 0x1543: 0x2091, 0x1544: 0x2091, 0x1545: 0x2099, -	0x1546: 0x2099, 0x1547: 0x20a1, 0x1548: 0x20a1, 0x1549: 0x20a9, 0x154a: 0x20a9, 0x154b: 0x20a9, -	0x154c: 0x20a9, 0x154d: 0x20b1, 0x154e: 0x20b1, 0x154f: 0x20b9, 0x1550: 0x20b9, 0x1551: 0x20b9, -	0x1552: 0x20b9, 0x1553: 0x20c1, 0x1554: 0x20c1, 0x1555: 0x20c9, 0x1556: 0x20c9, 0x1557: 0x20c9, -	0x1558: 0x20c9, 0x1559: 0x20d1, 0x155a: 0x20d1, 0x155b: 0x20d1, 0x155c: 0x20d1, 0x155d: 0x20d9, -	0x155e: 0x20d9, 0x155f: 0x20d9, 0x1560: 0x20d9, 0x1561: 0x20e1, 0x1562: 0x20e1, 0x1563: 0x20e1, -	0x1564: 0x20e1, 0x1565: 0x20e9, 0x1566: 0x20e9, 0x1567: 0x20e9, 0x1568: 0x20e9, 0x1569: 0x20f1, -	0x156a: 0x20f1, 0x156b: 0x20f9, 0x156c: 0x20f9, 0x156d: 0x2101, 0x156e: 0x2101, 0x156f: 0x2109, -	0x1570: 0x2109, 0x1571: 0x2111, 0x1572: 0x2111, 0x1573: 0x2111, 0x1574: 0x2111, 0x1575: 0x2119, -	0x1576: 0x2119, 0x1577: 0x2119, 0x1578: 0x2119, 0x1579: 0x2121, 0x157a: 0x2121, 0x157b: 0x2121, -	0x157c: 0x2121, 0x157d: 0x2129, 0x157e: 0x2129, 0x157f: 0x2129, -	// Block 0x56, offset 0x1580 -	0x1580: 0x2129, 0x1581: 0x2131, 0x1582: 0x2131, 0x1583: 0x2131, 0x1584: 0x2131, 0x1585: 0x2139, -	0x1586: 0x2139, 0x1587: 0x2139, 0x1588: 0x2139, 0x1589: 0x2141, 0x158a: 0x2141, 0x158b: 0x2141, -	0x158c: 0x2141, 0x158d: 0x2149, 0x158e: 0x2149, 0x158f: 0x2149, 0x1590: 0x2149, 0x1591: 0x2151, -	0x1592: 0x2151, 0x1593: 0x2151, 0x1594: 0x2151, 0x1595: 0x2159, 0x1596: 0x2159, 0x1597: 0x2159, -	0x1598: 0x2159, 0x1599: 0x2161, 0x159a: 0x2161, 0x159b: 0x2161, 0x159c: 0x2161, 0x159d: 0x2169, -	0x159e: 0x2169, 0x159f: 0x2169, 0x15a0: 0x2169, 0x15a1: 0x2171, 0x15a2: 0x2171, 0x15a3: 0x2171, -	0x15a4: 0x2171, 0x15a5: 0x2179, 0x15a6: 0x2179, 0x15a7: 0x2179, 0x15a8: 0x2179, 0x15a9: 0x2181, -	0x15aa: 0x2181, 0x15ab: 0x2181, 0x15ac: 0x2181, 0x15ad: 0x2189, 0x15ae: 0x2189, 0x15af: 0x1701, -	0x15b0: 0x1701, 0x15b1: 0x2191, 0x15b2: 0x2191, 0x15b3: 0x2191, 0x15b4: 0x2191, 0x15b5: 0x2199, -	0x15b6: 0x2199, 0x15b7: 0x21a1, 0x15b8: 0x21a1, 0x15b9: 0x21a9, 0x15ba: 0x21a9, 0x15bb: 0x21b1, -	0x15bc: 0x21b1, 0x15bd: 0x0040, 0x15be: 0x0040, 0x15bf: 0x03c0, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0x0040, 0x15c1: 0x1fca, 0x15c2: 0x21ba, 0x15c3: 0x2002, 0x15c4: 0x203a, 0x15c5: 0x2042, -	0x15c6: 0x200a, 0x15c7: 0x21c2, 0x15c8: 0x072a, 0x15c9: 0x0732, 0x15ca: 0x2012, 0x15cb: 0x071a, -	0x15cc: 0x1fba, 0x15cd: 0x2019, 0x15ce: 0x0961, 0x15cf: 0x21ca, 0x15d0: 0x06e1, 0x15d1: 0x0049, -	0x15d2: 0x0029, 0x15d3: 0x0031, 0x15d4: 0x06e9, 0x15d5: 0x06f1, 0x15d6: 0x06f9, 0x15d7: 0x0701, -	0x15d8: 0x0709, 0x15d9: 0x0711, 0x15da: 0x1fc2, 0x15db: 0x0122, 0x15dc: 0x2022, 0x15dd: 0x0722, -	0x15de: 0x202a, 0x15df: 0x1fd2, 0x15e0: 0x204a, 0x15e1: 0x0019, 0x15e2: 0x02e9, 0x15e3: 0x03d9, -	0x15e4: 0x02f1, 0x15e5: 0x02f9, 0x15e6: 0x03f1, 0x15e7: 0x0309, 0x15e8: 0x00a9, 0x15e9: 0x0311, -	0x15ea: 0x00b1, 0x15eb: 0x0319, 0x15ec: 0x0101, 0x15ed: 0x0321, 0x15ee: 0x0329, 0x15ef: 0x0051, -	0x15f0: 0x0339, 0x15f1: 0x0751, 0x15f2: 0x00b9, 0x15f3: 0x0089, 0x15f4: 0x0341, 0x15f5: 0x0349, -	0x15f6: 0x0391, 0x15f7: 0x00c1, 0x15f8: 0x0109, 0x15f9: 0x00c9, 0x15fa: 0x04b1, 0x15fb: 0x1ff2, -	0x15fc: 0x2032, 0x15fd: 0x1ffa, 0x15fe: 0x21d2, 0x15ff: 0x1fda, -	// Block 0x58, offset 0x1600 -	0x1600: 0x0672, 0x1601: 0x0019, 0x1602: 0x02e9, 0x1603: 0x03d9, 0x1604: 0x02f1, 0x1605: 0x02f9, -	0x1606: 0x03f1, 0x1607: 0x0309, 0x1608: 0x00a9, 0x1609: 0x0311, 0x160a: 0x00b1, 0x160b: 0x0319, -	0x160c: 0x0101, 0x160d: 0x0321, 0x160e: 0x0329, 0x160f: 0x0051, 0x1610: 0x0339, 0x1611: 0x0751, -	0x1612: 0x00b9, 0x1613: 0x0089, 0x1614: 0x0341, 0x1615: 0x0349, 0x1616: 0x0391, 0x1617: 0x00c1, -	0x1618: 0x0109, 0x1619: 0x00c9, 0x161a: 0x04b1, 0x161b: 0x1fe2, 0x161c: 0x21da, 0x161d: 0x1fea, -	0x161e: 0x21e2, 0x161f: 0x810d, 0x1620: 0x812d, 0x1621: 0x0961, 0x1622: 0x814d, 0x1623: 0x814d, -	0x1624: 0x816d, 0x1625: 0x818d, 0x1626: 0x81ad, 0x1627: 0x81cd, 0x1628: 0x81ed, 0x1629: 0x820d, -	0x162a: 0x822d, 0x162b: 0x824d, 0x162c: 0x826d, 0x162d: 0x828d, 0x162e: 0x82ad, 0x162f: 0x82cd, -	0x1630: 0x82ed, 0x1631: 0x830d, 0x1632: 0x832d, 0x1633: 0x834d, 0x1634: 0x836d, 0x1635: 0x838d, -	0x1636: 0x83ad, 0x1637: 0x83cd, 0x1638: 0x83ed, 0x1639: 0x840d, 0x163a: 0x842d, 0x163b: 0x844d, -	0x163c: 0x81ed, 0x163d: 0x846d, 0x163e: 0x848d, 0x163f: 0x824d, -	// Block 0x59, offset 0x1640 -	0x1640: 0x84ad, 0x1641: 0x84cd, 0x1642: 0x84ed, 0x1643: 0x850d, 0x1644: 0x852d, 0x1645: 0x854d, -	0x1646: 0x856d, 0x1647: 0x858d, 0x1648: 0x850d, 0x1649: 0x85ad, 0x164a: 0x850d, 0x164b: 0x85cd, -	0x164c: 0x85cd, 0x164d: 0x85ed, 0x164e: 0x85ed, 0x164f: 0x860d, 0x1650: 0x854d, 0x1651: 0x862d, -	0x1652: 0x864d, 0x1653: 0x862d, 0x1654: 0x866d, 0x1655: 0x864d, 0x1656: 0x868d, 0x1657: 0x868d, -	0x1658: 0x86ad, 0x1659: 0x86ad, 0x165a: 0x86cd, 0x165b: 0x86cd, 0x165c: 0x864d, 0x165d: 0x814d, -	0x165e: 0x86ed, 0x165f: 0x870d, 0x1660: 0x0040, 0x1661: 0x872d, 0x1662: 0x874d, 0x1663: 0x876d, -	0x1664: 0x878d, 0x1665: 0x876d, 0x1666: 0x87ad, 0x1667: 0x87cd, 0x1668: 0x87ed, 0x1669: 0x87ed, -	0x166a: 0x880d, 0x166b: 0x880d, 0x166c: 0x882d, 0x166d: 0x882d, 0x166e: 0x880d, 0x166f: 0x880d, -	0x1670: 0x884d, 0x1671: 0x886d, 0x1672: 0x888d, 0x1673: 0x88ad, 0x1674: 0x88cd, 0x1675: 0x88ed, -	0x1676: 0x88ed, 0x1677: 0x88ed, 0x1678: 0x890d, 0x1679: 0x890d, 0x167a: 0x890d, 0x167b: 0x890d, -	0x167c: 0x87ed, 0x167d: 0x87ed, 0x167e: 0x87ed, 0x167f: 0x0040, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x0040, 0x1681: 0x0040, 0x1682: 0x874d, 0x1683: 0x872d, 0x1684: 0x892d, 0x1685: 0x872d, -	0x1686: 0x874d, 0x1687: 0x872d, 0x1688: 0x0040, 0x1689: 0x0040, 0x168a: 0x894d, 0x168b: 0x874d, -	0x168c: 0x896d, 0x168d: 0x892d, 0x168e: 0x896d, 0x168f: 0x874d, 0x1690: 0x0040, 0x1691: 0x0040, -	0x1692: 0x898d, 0x1693: 0x89ad, 0x1694: 0x88ad, 0x1695: 0x896d, 0x1696: 0x892d, 0x1697: 0x896d, -	0x1698: 0x0040, 0x1699: 0x0040, 0x169a: 0x89cd, 0x169b: 0x89ed, 0x169c: 0x89cd, 0x169d: 0x0040, -	0x169e: 0x0040, 0x169f: 0x0040, 0x16a0: 0x21e9, 0x16a1: 0x21f1, 0x16a2: 0x21f9, 0x16a3: 0x8a0e, -	0x16a4: 0x2201, 0x16a5: 0x2209, 0x16a6: 0x8a2d, 0x16a7: 0x0040, 0x16a8: 0x8a4d, 0x16a9: 0x8a6d, -	0x16aa: 0x8a8d, 0x16ab: 0x8a6d, 0x16ac: 0x8aad, 0x16ad: 0x8acd, 0x16ae: 0x8aed, 0x16af: 0x0040, -	0x16b0: 0x0040, 0x16b1: 0x0040, 0x16b2: 0x0040, 0x16b3: 0x0040, 0x16b4: 0x0040, 0x16b5: 0x0040, -	0x16b6: 0x0040, 0x16b7: 0x0040, 0x16b8: 0x0040, 0x16b9: 0x0340, 0x16ba: 0x0340, 0x16bb: 0x0340, -	0x16bc: 0x0040, 0x16bd: 0x0040, 0x16be: 0x0040, 0x16bf: 0x0040, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x0a08, 0x16c1: 0x0a08, 0x16c2: 0x0a08, 0x16c3: 0x0a08, 0x16c4: 0x0a08, 0x16c5: 0x0c08, -	0x16c6: 0x0808, 0x16c7: 0x0c08, 0x16c8: 0x0818, 0x16c9: 0x0c08, 0x16ca: 0x0c08, 0x16cb: 0x0808, -	0x16cc: 0x0808, 0x16cd: 0x0908, 0x16ce: 0x0c08, 0x16cf: 0x0c08, 0x16d0: 0x0c08, 0x16d1: 0x0c08, -	0x16d2: 0x0c08, 0x16d3: 0x0a08, 0x16d4: 0x0a08, 0x16d5: 0x0a08, 0x16d6: 0x0a08, 0x16d7: 0x0908, -	0x16d8: 0x0a08, 0x16d9: 0x0a08, 0x16da: 0x0a08, 0x16db: 0x0a08, 0x16dc: 0x0a08, 0x16dd: 0x0c08, -	0x16de: 0x0a08, 0x16df: 0x0a08, 0x16e0: 0x0a08, 0x16e1: 0x0c08, 0x16e2: 0x0808, 0x16e3: 0x0808, -	0x16e4: 0x0c08, 0x16e5: 0x3308, 0x16e6: 0x3308, 0x16e7: 0x0040, 0x16e8: 0x0040, 0x16e9: 0x0040, -	0x16ea: 0x0040, 0x16eb: 0x0a18, 0x16ec: 0x0a18, 0x16ed: 0x0a18, 0x16ee: 0x0a18, 0x16ef: 0x0c18, -	0x16f0: 0x0818, 0x16f1: 0x0818, 0x16f2: 0x0818, 0x16f3: 0x0818, 0x16f4: 0x0818, 0x16f5: 0x0818, -	0x16f6: 0x0818, 0x16f7: 0x0040, 0x16f8: 0x0040, 0x16f9: 0x0040, 0x16fa: 0x0040, 0x16fb: 0x0040, -	0x16fc: 0x0040, 0x16fd: 0x0040, 0x16fe: 0x0040, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0a08, 0x1701: 0x0c08, 0x1702: 0x0a08, 0x1703: 0x0c08, 0x1704: 0x0c08, 0x1705: 0x0c08, -	0x1706: 0x0a08, 0x1707: 0x0a08, 0x1708: 0x0a08, 0x1709: 0x0c08, 0x170a: 0x0a08, 0x170b: 0x0a08, -	0x170c: 0x0c08, 0x170d: 0x0a08, 0x170e: 0x0c08, 0x170f: 0x0c08, 0x1710: 0x0a08, 0x1711: 0x0c08, -	0x1712: 0x0040, 0x1713: 0x0040, 0x1714: 0x0040, 0x1715: 0x0040, 0x1716: 0x0040, 0x1717: 0x0040, -	0x1718: 0x0040, 0x1719: 0x0818, 0x171a: 0x0818, 0x171b: 0x0818, 0x171c: 0x0818, 0x171d: 0x0040, -	0x171e: 0x0040, 0x171f: 0x0040, 0x1720: 0x0040, 0x1721: 0x0040, 0x1722: 0x0040, 0x1723: 0x0040, -	0x1724: 0x0040, 0x1725: 0x0040, 0x1726: 0x0040, 0x1727: 0x0040, 0x1728: 0x0040, 0x1729: 0x0c18, -	0x172a: 0x0c18, 0x172b: 0x0c18, 0x172c: 0x0c18, 0x172d: 0x0a18, 0x172e: 0x0a18, 0x172f: 0x0818, -	0x1730: 0x0040, 0x1731: 0x0040, 0x1732: 0x0040, 0x1733: 0x0040, 0x1734: 0x0040, 0x1735: 0x0040, -	0x1736: 0x0040, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0040, 0x173a: 0x0040, 0x173b: 0x0040, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x3308, 0x1741: 0x3308, 0x1742: 0x3008, 0x1743: 0x3008, 0x1744: 0x0040, 0x1745: 0x0008, -	0x1746: 0x0008, 0x1747: 0x0008, 0x1748: 0x0008, 0x1749: 0x0008, 0x174a: 0x0008, 0x174b: 0x0008, -	0x174c: 0x0008, 0x174d: 0x0040, 0x174e: 0x0040, 0x174f: 0x0008, 0x1750: 0x0008, 0x1751: 0x0040, -	0x1752: 0x0040, 0x1753: 0x0008, 0x1754: 0x0008, 0x1755: 0x0008, 0x1756: 0x0008, 0x1757: 0x0008, -	0x1758: 0x0008, 0x1759: 0x0008, 0x175a: 0x0008, 0x175b: 0x0008, 0x175c: 0x0008, 0x175d: 0x0008, -	0x175e: 0x0008, 0x175f: 0x0008, 0x1760: 0x0008, 0x1761: 0x0008, 0x1762: 0x0008, 0x1763: 0x0008, -	0x1764: 0x0008, 0x1765: 0x0008, 0x1766: 0x0008, 0x1767: 0x0008, 0x1768: 0x0008, 0x1769: 0x0040, -	0x176a: 0x0008, 0x176b: 0x0008, 0x176c: 0x0008, 0x176d: 0x0008, 0x176e: 0x0008, 0x176f: 0x0008, -	0x1770: 0x0008, 0x1771: 0x0040, 0x1772: 0x0008, 0x1773: 0x0008, 0x1774: 0x0040, 0x1775: 0x0008, -	0x1776: 0x0008, 0x1777: 0x0008, 0x1778: 0x0008, 0x1779: 0x0008, 0x177a: 0x0040, 0x177b: 0x3308, -	0x177c: 0x3308, 0x177d: 0x0008, 0x177e: 0x3008, 0x177f: 0x3008, -	// Block 0x5e, offset 0x1780 -	0x1780: 0x3308, 0x1781: 0x3008, 0x1782: 0x3008, 0x1783: 0x3008, 0x1784: 0x3008, 0x1785: 0x0040, -	0x1786: 0x0040, 0x1787: 0x3008, 0x1788: 0x3008, 0x1789: 0x0040, 0x178a: 0x0040, 0x178b: 0x3008, -	0x178c: 0x3008, 0x178d: 0x3808, 0x178e: 0x0040, 0x178f: 0x0040, 0x1790: 0x0008, 0x1791: 0x0040, -	0x1792: 0x0040, 0x1793: 0x0040, 0x1794: 0x0040, 0x1795: 0x0040, 0x1796: 0x0040, 0x1797: 0x3008, -	0x1798: 0x0040, 0x1799: 0x0040, 0x179a: 0x0040, 0x179b: 0x0040, 0x179c: 0x0040, 0x179d: 0x0008, -	0x179e: 0x0008, 0x179f: 0x0008, 0x17a0: 0x0008, 0x17a1: 0x0008, 0x17a2: 0x3008, 0x17a3: 0x3008, -	0x17a4: 0x0040, 0x17a5: 0x0040, 0x17a6: 0x3308, 0x17a7: 0x3308, 0x17a8: 0x3308, 0x17a9: 0x3308, -	0x17aa: 0x3308, 0x17ab: 0x3308, 0x17ac: 0x3308, 0x17ad: 0x0040, 0x17ae: 0x0040, 0x17af: 0x0040, -	0x17b0: 0x3308, 0x17b1: 0x3308, 0x17b2: 0x3308, 0x17b3: 0x3308, 0x17b4: 0x3308, 0x17b5: 0x0040, -	0x17b6: 0x0040, 0x17b7: 0x0040, 0x17b8: 0x0040, 0x17b9: 0x0040, 0x17ba: 0x0040, 0x17bb: 0x0040, -	0x17bc: 0x0040, 0x17bd: 0x0040, 0x17be: 0x0040, 0x17bf: 0x0040, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x0008, 0x17c1: 0x0008, 0x17c2: 0x0008, 0x17c3: 0x0008, 0x17c4: 0x0008, 0x17c5: 0x0008, -	0x17c6: 0x0008, 0x17c7: 0x0040, 0x17c8: 0x0040, 0x17c9: 0x0008, 0x17ca: 0x0040, 0x17cb: 0x0040, -	0x17cc: 0x0008, 0x17cd: 0x0008, 0x17ce: 0x0008, 0x17cf: 0x0008, 0x17d0: 0x0008, 0x17d1: 0x0008, -	0x17d2: 0x0008, 0x17d3: 0x0008, 0x17d4: 0x0040, 0x17d5: 0x0008, 0x17d6: 0x0008, 0x17d7: 0x0040, -	0x17d8: 0x0008, 0x17d9: 0x0008, 0x17da: 0x0008, 0x17db: 0x0008, 0x17dc: 0x0008, 0x17dd: 0x0008, -	0x17de: 0x0008, 0x17df: 0x0008, 0x17e0: 0x0008, 0x17e1: 0x0008, 0x17e2: 0x0008, 0x17e3: 0x0008, -	0x17e4: 0x0008, 0x17e5: 0x0008, 0x17e6: 0x0008, 0x17e7: 0x0008, 0x17e8: 0x0008, 0x17e9: 0x0008, -	0x17ea: 0x0008, 0x17eb: 0x0008, 0x17ec: 0x0008, 0x17ed: 0x0008, 0x17ee: 0x0008, 0x17ef: 0x0008, -	0x17f0: 0x3008, 0x17f1: 0x3008, 0x17f2: 0x3008, 0x17f3: 0x3008, 0x17f4: 0x3008, 0x17f5: 0x3008, -	0x17f6: 0x0040, 0x17f7: 0x3008, 0x17f8: 0x3008, 0x17f9: 0x0040, 0x17fa: 0x0040, 0x17fb: 0x3308, -	0x17fc: 0x3308, 0x17fd: 0x3808, 0x17fe: 0x3b08, 0x17ff: 0x0008, -	// Block 0x60, offset 0x1800 -	0x1800: 0x0019, 0x1801: 0x02e9, 0x1802: 0x03d9, 0x1803: 0x02f1, 0x1804: 0x02f9, 0x1805: 0x03f1, -	0x1806: 0x0309, 0x1807: 0x00a9, 0x1808: 0x0311, 0x1809: 0x00b1, 0x180a: 0x0319, 0x180b: 0x0101, -	0x180c: 0x0321, 0x180d: 0x0329, 0x180e: 0x0051, 0x180f: 0x0339, 0x1810: 0x0751, 0x1811: 0x00b9, -	0x1812: 0x0089, 0x1813: 0x0341, 0x1814: 0x0349, 0x1815: 0x0391, 0x1816: 0x00c1, 0x1817: 0x0109, -	0x1818: 0x00c9, 0x1819: 0x04b1, 0x181a: 0x0019, 0x181b: 0x02e9, 0x181c: 0x03d9, 0x181d: 0x02f1, -	0x181e: 0x02f9, 0x181f: 0x03f1, 0x1820: 0x0309, 0x1821: 0x00a9, 0x1822: 0x0311, 0x1823: 0x00b1, -	0x1824: 0x0319, 0x1825: 0x0101, 0x1826: 0x0321, 0x1827: 0x0329, 0x1828: 0x0051, 0x1829: 0x0339, -	0x182a: 0x0751, 0x182b: 0x00b9, 0x182c: 0x0089, 0x182d: 0x0341, 0x182e: 0x0349, 0x182f: 0x0391, -	0x1830: 0x00c1, 0x1831: 0x0109, 0x1832: 0x00c9, 0x1833: 0x04b1, 0x1834: 0x0019, 0x1835: 0x02e9, -	0x1836: 0x03d9, 0x1837: 0x02f1, 0x1838: 0x02f9, 0x1839: 0x03f1, 0x183a: 0x0309, 0x183b: 0x00a9, -	0x183c: 0x0311, 0x183d: 0x00b1, 0x183e: 0x0319, 0x183f: 0x0101, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0321, 0x1841: 0x0329, 0x1842: 0x0051, 0x1843: 0x0339, 0x1844: 0x0751, 0x1845: 0x00b9, -	0x1846: 0x0089, 0x1847: 0x0341, 0x1848: 0x0349, 0x1849: 0x0391, 0x184a: 0x00c1, 0x184b: 0x0109, -	0x184c: 0x00c9, 0x184d: 0x04b1, 0x184e: 0x0019, 0x184f: 0x02e9, 0x1850: 0x03d9, 0x1851: 0x02f1, -	0x1852: 0x02f9, 0x1853: 0x03f1, 0x1854: 0x0309, 0x1855: 0x0040, 0x1856: 0x0311, 0x1857: 0x00b1, -	0x1858: 0x0319, 0x1859: 0x0101, 0x185a: 0x0321, 0x185b: 0x0329, 0x185c: 0x0051, 0x185d: 0x0339, -	0x185e: 0x0751, 0x185f: 0x00b9, 0x1860: 0x0089, 0x1861: 0x0341, 0x1862: 0x0349, 0x1863: 0x0391, -	0x1864: 0x00c1, 0x1865: 0x0109, 0x1866: 0x00c9, 0x1867: 0x04b1, 0x1868: 0x0019, 0x1869: 0x02e9, -	0x186a: 0x03d9, 0x186b: 0x02f1, 0x186c: 0x02f9, 0x186d: 0x03f1, 0x186e: 0x0309, 0x186f: 0x00a9, -	0x1870: 0x0311, 0x1871: 0x00b1, 0x1872: 0x0319, 0x1873: 0x0101, 0x1874: 0x0321, 0x1875: 0x0329, -	0x1876: 0x0051, 0x1877: 0x0339, 0x1878: 0x0751, 0x1879: 0x00b9, 0x187a: 0x0089, 0x187b: 0x0341, -	0x187c: 0x0349, 0x187d: 0x0391, 0x187e: 0x00c1, 0x187f: 0x0109, -	// Block 0x62, offset 0x1880 -	0x1880: 0x00c9, 0x1881: 0x04b1, 0x1882: 0x0019, 0x1883: 0x02e9, 0x1884: 0x03d9, 0x1885: 0x02f1, -	0x1886: 0x02f9, 0x1887: 0x03f1, 0x1888: 0x0309, 0x1889: 0x00a9, 0x188a: 0x0311, 0x188b: 0x00b1, -	0x188c: 0x0319, 0x188d: 0x0101, 0x188e: 0x0321, 0x188f: 0x0329, 0x1890: 0x0051, 0x1891: 0x0339, -	0x1892: 0x0751, 0x1893: 0x00b9, 0x1894: 0x0089, 0x1895: 0x0341, 0x1896: 0x0349, 0x1897: 0x0391, -	0x1898: 0x00c1, 0x1899: 0x0109, 0x189a: 0x00c9, 0x189b: 0x04b1, 0x189c: 0x0019, 0x189d: 0x0040, -	0x189e: 0x03d9, 0x189f: 0x02f1, 0x18a0: 0x0040, 0x18a1: 0x0040, 0x18a2: 0x0309, 0x18a3: 0x0040, -	0x18a4: 0x0040, 0x18a5: 0x00b1, 0x18a6: 0x0319, 0x18a7: 0x0040, 0x18a8: 0x0040, 0x18a9: 0x0329, -	0x18aa: 0x0051, 0x18ab: 0x0339, 0x18ac: 0x0751, 0x18ad: 0x0040, 0x18ae: 0x0089, 0x18af: 0x0341, -	0x18b0: 0x0349, 0x18b1: 0x0391, 0x18b2: 0x00c1, 0x18b3: 0x0109, 0x18b4: 0x00c9, 0x18b5: 0x04b1, -	0x18b6: 0x0019, 0x18b7: 0x02e9, 0x18b8: 0x03d9, 0x18b9: 0x02f1, 0x18ba: 0x0040, 0x18bb: 0x03f1, -	0x18bc: 0x0040, 0x18bd: 0x00a9, 0x18be: 0x0311, 0x18bf: 0x00b1, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x0319, 0x18c1: 0x0101, 0x18c2: 0x0321, 0x18c3: 0x0329, 0x18c4: 0x0040, 0x18c5: 0x0339, -	0x18c6: 0x0751, 0x18c7: 0x00b9, 0x18c8: 0x0089, 0x18c9: 0x0341, 0x18ca: 0x0349, 0x18cb: 0x0391, -	0x18cc: 0x00c1, 0x18cd: 0x0109, 0x18ce: 0x00c9, 0x18cf: 0x04b1, 0x18d0: 0x0019, 0x18d1: 0x02e9, -	0x18d2: 0x03d9, 0x18d3: 0x02f1, 0x18d4: 0x02f9, 0x18d5: 0x03f1, 0x18d6: 0x0309, 0x18d7: 0x00a9, -	0x18d8: 0x0311, 0x18d9: 0x00b1, 0x18da: 0x0319, 0x18db: 0x0101, 0x18dc: 0x0321, 0x18dd: 0x0329, -	0x18de: 0x0051, 0x18df: 0x0339, 0x18e0: 0x0751, 0x18e1: 0x00b9, 0x18e2: 0x0089, 0x18e3: 0x0341, -	0x18e4: 0x0349, 0x18e5: 0x0391, 0x18e6: 0x00c1, 0x18e7: 0x0109, 0x18e8: 0x00c9, 0x18e9: 0x04b1, -	0x18ea: 0x0019, 0x18eb: 0x02e9, 0x18ec: 0x03d9, 0x18ed: 0x02f1, 0x18ee: 0x02f9, 0x18ef: 0x03f1, -	0x18f0: 0x0309, 0x18f1: 0x00a9, 0x18f2: 0x0311, 0x18f3: 0x00b1, 0x18f4: 0x0319, 0x18f5: 0x0101, -	0x18f6: 0x0321, 0x18f7: 0x0329, 0x18f8: 0x0051, 0x18f9: 0x0339, 0x18fa: 0x0751, 0x18fb: 0x00b9, -	0x18fc: 0x0089, 0x18fd: 0x0341, 0x18fe: 0x0349, 0x18ff: 0x0391, -	// Block 0x64, offset 0x1900 -	0x1900: 0x00c1, 0x1901: 0x0109, 0x1902: 0x00c9, 0x1903: 0x04b1, 0x1904: 0x0019, 0x1905: 0x02e9, -	0x1906: 0x0040, 0x1907: 0x02f1, 0x1908: 0x02f9, 0x1909: 0x03f1, 0x190a: 0x0309, 0x190b: 0x0040, -	0x190c: 0x0040, 0x190d: 0x00b1, 0x190e: 0x0319, 0x190f: 0x0101, 0x1910: 0x0321, 0x1911: 0x0329, -	0x1912: 0x0051, 0x1913: 0x0339, 0x1914: 0x0751, 0x1915: 0x0040, 0x1916: 0x0089, 0x1917: 0x0341, -	0x1918: 0x0349, 0x1919: 0x0391, 0x191a: 0x00c1, 0x191b: 0x0109, 0x191c: 0x00c9, 0x191d: 0x0040, -	0x191e: 0x0019, 0x191f: 0x02e9, 0x1920: 0x03d9, 0x1921: 0x02f1, 0x1922: 0x02f9, 0x1923: 0x03f1, -	0x1924: 0x0309, 0x1925: 0x00a9, 0x1926: 0x0311, 0x1927: 0x00b1, 0x1928: 0x0319, 0x1929: 0x0101, -	0x192a: 0x0321, 0x192b: 0x0329, 0x192c: 0x0051, 0x192d: 0x0339, 0x192e: 0x0751, 0x192f: 0x00b9, -	0x1930: 0x0089, 0x1931: 0x0341, 0x1932: 0x0349, 0x1933: 0x0391, 0x1934: 0x00c1, 0x1935: 0x0109, -	0x1936: 0x00c9, 0x1937: 0x04b1, 0x1938: 0x0019, 0x1939: 0x02e9, 0x193a: 0x0040, 0x193b: 0x02f1, -	0x193c: 0x02f9, 0x193d: 0x03f1, 0x193e: 0x0309, 0x193f: 0x0040, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0311, 0x1941: 0x00b1, 0x1942: 0x0319, 0x1943: 0x0101, 0x1944: 0x0321, 0x1945: 0x0040, -	0x1946: 0x0051, 0x1947: 0x0040, 0x1948: 0x0040, 0x1949: 0x0040, 0x194a: 0x0089, 0x194b: 0x0341, -	0x194c: 0x0349, 0x194d: 0x0391, 0x194e: 0x00c1, 0x194f: 0x0109, 0x1950: 0x00c9, 0x1951: 0x0040, -	0x1952: 0x0019, 0x1953: 0x02e9, 0x1954: 0x03d9, 0x1955: 0x02f1, 0x1956: 0x02f9, 0x1957: 0x03f1, -	0x1958: 0x0309, 0x1959: 0x00a9, 0x195a: 0x0311, 0x195b: 0x00b1, 0x195c: 0x0319, 0x195d: 0x0101, -	0x195e: 0x0321, 0x195f: 0x0329, 0x1960: 0x0051, 0x1961: 0x0339, 0x1962: 0x0751, 0x1963: 0x00b9, -	0x1964: 0x0089, 0x1965: 0x0341, 0x1966: 0x0349, 0x1967: 0x0391, 0x1968: 0x00c1, 0x1969: 0x0109, -	0x196a: 0x00c9, 0x196b: 0x04b1, 0x196c: 0x0019, 0x196d: 0x02e9, 0x196e: 0x03d9, 0x196f: 0x02f1, -	0x1970: 0x02f9, 0x1971: 0x03f1, 0x1972: 0x0309, 0x1973: 0x00a9, 0x1974: 0x0311, 0x1975: 0x00b1, -	0x1976: 0x0319, 0x1977: 0x0101, 0x1978: 0x0321, 0x1979: 0x0329, 0x197a: 0x0051, 0x197b: 0x0339, -	0x197c: 0x0751, 0x197d: 0x00b9, 0x197e: 0x0089, 0x197f: 0x0341, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0349, 0x1981: 0x0391, 0x1982: 0x00c1, 0x1983: 0x0109, 0x1984: 0x00c9, 0x1985: 0x04b1, -	0x1986: 0x0019, 0x1987: 0x02e9, 0x1988: 0x03d9, 0x1989: 0x02f1, 0x198a: 0x02f9, 0x198b: 0x03f1, -	0x198c: 0x0309, 0x198d: 0x00a9, 0x198e: 0x0311, 0x198f: 0x00b1, 0x1990: 0x0319, 0x1991: 0x0101, -	0x1992: 0x0321, 0x1993: 0x0329, 0x1994: 0x0051, 0x1995: 0x0339, 0x1996: 0x0751, 0x1997: 0x00b9, -	0x1998: 0x0089, 0x1999: 0x0341, 0x199a: 0x0349, 0x199b: 0x0391, 0x199c: 0x00c1, 0x199d: 0x0109, -	0x199e: 0x00c9, 0x199f: 0x04b1, 0x19a0: 0x0019, 0x19a1: 0x02e9, 0x19a2: 0x03d9, 0x19a3: 0x02f1, -	0x19a4: 0x02f9, 0x19a5: 0x03f1, 0x19a6: 0x0309, 0x19a7: 0x00a9, 0x19a8: 0x0311, 0x19a9: 0x00b1, -	0x19aa: 0x0319, 0x19ab: 0x0101, 0x19ac: 0x0321, 0x19ad: 0x0329, 0x19ae: 0x0051, 0x19af: 0x0339, -	0x19b0: 0x0751, 0x19b1: 0x00b9, 0x19b2: 0x0089, 0x19b3: 0x0341, 0x19b4: 0x0349, 0x19b5: 0x0391, -	0x19b6: 0x00c1, 0x19b7: 0x0109, 0x19b8: 0x00c9, 0x19b9: 0x04b1, 0x19ba: 0x0019, 0x19bb: 0x02e9, -	0x19bc: 0x03d9, 0x19bd: 0x02f1, 0x19be: 0x02f9, 0x19bf: 0x03f1, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x0309, 0x19c1: 0x00a9, 0x19c2: 0x0311, 0x19c3: 0x00b1, 0x19c4: 0x0319, 0x19c5: 0x0101, -	0x19c6: 0x0321, 0x19c7: 0x0329, 0x19c8: 0x0051, 0x19c9: 0x0339, 0x19ca: 0x0751, 0x19cb: 0x00b9, -	0x19cc: 0x0089, 0x19cd: 0x0341, 0x19ce: 0x0349, 0x19cf: 0x0391, 0x19d0: 0x00c1, 0x19d1: 0x0109, -	0x19d2: 0x00c9, 0x19d3: 0x04b1, 0x19d4: 0x0019, 0x19d5: 0x02e9, 0x19d6: 0x03d9, 0x19d7: 0x02f1, -	0x19d8: 0x02f9, 0x19d9: 0x03f1, 0x19da: 0x0309, 0x19db: 0x00a9, 0x19dc: 0x0311, 0x19dd: 0x00b1, -	0x19de: 0x0319, 0x19df: 0x0101, 0x19e0: 0x0321, 0x19e1: 0x0329, 0x19e2: 0x0051, 0x19e3: 0x0339, -	0x19e4: 0x0751, 0x19e5: 0x00b9, 0x19e6: 0x0089, 0x19e7: 0x0341, 0x19e8: 0x0349, 0x19e9: 0x0391, -	0x19ea: 0x00c1, 0x19eb: 0x0109, 0x19ec: 0x00c9, 0x19ed: 0x04b1, 0x19ee: 0x0019, 0x19ef: 0x02e9, -	0x19f0: 0x03d9, 0x19f1: 0x02f1, 0x19f2: 0x02f9, 0x19f3: 0x03f1, 0x19f4: 0x0309, 0x19f5: 0x00a9, -	0x19f6: 0x0311, 0x19f7: 0x00b1, 0x19f8: 0x0319, 0x19f9: 0x0101, 0x19fa: 0x0321, 0x19fb: 0x0329, -	0x19fc: 0x0051, 0x19fd: 0x0339, 0x19fe: 0x0751, 0x19ff: 0x00b9, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x0089, 0x1a01: 0x0341, 0x1a02: 0x0349, 0x1a03: 0x0391, 0x1a04: 0x00c1, 0x1a05: 0x0109, -	0x1a06: 0x00c9, 0x1a07: 0x04b1, 0x1a08: 0x0019, 0x1a09: 0x02e9, 0x1a0a: 0x03d9, 0x1a0b: 0x02f1, -	0x1a0c: 0x02f9, 0x1a0d: 0x03f1, 0x1a0e: 0x0309, 0x1a0f: 0x00a9, 0x1a10: 0x0311, 0x1a11: 0x00b1, -	0x1a12: 0x0319, 0x1a13: 0x0101, 0x1a14: 0x0321, 0x1a15: 0x0329, 0x1a16: 0x0051, 0x1a17: 0x0339, -	0x1a18: 0x0751, 0x1a19: 0x00b9, 0x1a1a: 0x0089, 0x1a1b: 0x0341, 0x1a1c: 0x0349, 0x1a1d: 0x0391, -	0x1a1e: 0x00c1, 0x1a1f: 0x0109, 0x1a20: 0x00c9, 0x1a21: 0x04b1, 0x1a22: 0x0019, 0x1a23: 0x02e9, -	0x1a24: 0x03d9, 0x1a25: 0x02f1, 0x1a26: 0x02f9, 0x1a27: 0x03f1, 0x1a28: 0x0309, 0x1a29: 0x00a9, -	0x1a2a: 0x0311, 0x1a2b: 0x00b1, 0x1a2c: 0x0319, 0x1a2d: 0x0101, 0x1a2e: 0x0321, 0x1a2f: 0x0329, -	0x1a30: 0x0051, 0x1a31: 0x0339, 0x1a32: 0x0751, 0x1a33: 0x00b9, 0x1a34: 0x0089, 0x1a35: 0x0341, -	0x1a36: 0x0349, 0x1a37: 0x0391, 0x1a38: 0x00c1, 0x1a39: 0x0109, 0x1a3a: 0x00c9, 0x1a3b: 0x04b1, -	0x1a3c: 0x0019, 0x1a3d: 0x02e9, 0x1a3e: 0x03d9, 0x1a3f: 0x02f1, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x02f9, 0x1a41: 0x03f1, 0x1a42: 0x0309, 0x1a43: 0x00a9, 0x1a44: 0x0311, 0x1a45: 0x00b1, -	0x1a46: 0x0319, 0x1a47: 0x0101, 0x1a48: 0x0321, 0x1a49: 0x0329, 0x1a4a: 0x0051, 0x1a4b: 0x0339, -	0x1a4c: 0x0751, 0x1a4d: 0x00b9, 0x1a4e: 0x0089, 0x1a4f: 0x0341, 0x1a50: 0x0349, 0x1a51: 0x0391, -	0x1a52: 0x00c1, 0x1a53: 0x0109, 0x1a54: 0x00c9, 0x1a55: 0x04b1, 0x1a56: 0x0019, 0x1a57: 0x02e9, -	0x1a58: 0x03d9, 0x1a59: 0x02f1, 0x1a5a: 0x02f9, 0x1a5b: 0x03f1, 0x1a5c: 0x0309, 0x1a5d: 0x00a9, -	0x1a5e: 0x0311, 0x1a5f: 0x00b1, 0x1a60: 0x0319, 0x1a61: 0x0101, 0x1a62: 0x0321, 0x1a63: 0x0329, -	0x1a64: 0x0051, 0x1a65: 0x0339, 0x1a66: 0x0751, 0x1a67: 0x00b9, 0x1a68: 0x0089, 0x1a69: 0x0341, -	0x1a6a: 0x0349, 0x1a6b: 0x0391, 0x1a6c: 0x00c1, 0x1a6d: 0x0109, 0x1a6e: 0x00c9, 0x1a6f: 0x04b1, -	0x1a70: 0x0019, 0x1a71: 0x02e9, 0x1a72: 0x03d9, 0x1a73: 0x02f1, 0x1a74: 0x02f9, 0x1a75: 0x03f1, -	0x1a76: 0x0309, 0x1a77: 0x00a9, 0x1a78: 0x0311, 0x1a79: 0x00b1, 0x1a7a: 0x0319, 0x1a7b: 0x0101, -	0x1a7c: 0x0321, 0x1a7d: 0x0329, 0x1a7e: 0x0051, 0x1a7f: 0x0339, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x0751, 0x1a81: 0x00b9, 0x1a82: 0x0089, 0x1a83: 0x0341, 0x1a84: 0x0349, 0x1a85: 0x0391, -	0x1a86: 0x00c1, 0x1a87: 0x0109, 0x1a88: 0x00c9, 0x1a89: 0x04b1, 0x1a8a: 0x0019, 0x1a8b: 0x02e9, -	0x1a8c: 0x03d9, 0x1a8d: 0x02f1, 0x1a8e: 0x02f9, 0x1a8f: 0x03f1, 0x1a90: 0x0309, 0x1a91: 0x00a9, -	0x1a92: 0x0311, 0x1a93: 0x00b1, 0x1a94: 0x0319, 0x1a95: 0x0101, 0x1a96: 0x0321, 0x1a97: 0x0329, -	0x1a98: 0x0051, 0x1a99: 0x0339, 0x1a9a: 0x0751, 0x1a9b: 0x00b9, 0x1a9c: 0x0089, 0x1a9d: 0x0341, -	0x1a9e: 0x0349, 0x1a9f: 0x0391, 0x1aa0: 0x00c1, 0x1aa1: 0x0109, 0x1aa2: 0x00c9, 0x1aa3: 0x04b1, -	0x1aa4: 0x2279, 0x1aa5: 0x2281, 0x1aa6: 0x0040, 0x1aa7: 0x0040, 0x1aa8: 0x2289, 0x1aa9: 0x0399, -	0x1aaa: 0x03a1, 0x1aab: 0x03a9, 0x1aac: 0x2291, 0x1aad: 0x2299, 0x1aae: 0x22a1, 0x1aaf: 0x04d1, -	0x1ab0: 0x05f9, 0x1ab1: 0x22a9, 0x1ab2: 0x22b1, 0x1ab3: 0x22b9, 0x1ab4: 0x22c1, 0x1ab5: 0x22c9, -	0x1ab6: 0x22d1, 0x1ab7: 0x0799, 0x1ab8: 0x03c1, 0x1ab9: 0x04d1, 0x1aba: 0x22d9, 0x1abb: 0x22e1, -	0x1abc: 0x22e9, 0x1abd: 0x03b1, 0x1abe: 0x03b9, 0x1abf: 0x22f1, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x0769, 0x1ac1: 0x22f9, 0x1ac2: 0x2289, 0x1ac3: 0x0399, 0x1ac4: 0x03a1, 0x1ac5: 0x03a9, -	0x1ac6: 0x2291, 0x1ac7: 0x2299, 0x1ac8: 0x22a1, 0x1ac9: 0x04d1, 0x1aca: 0x05f9, 0x1acb: 0x22a9, -	0x1acc: 0x22b1, 0x1acd: 0x22b9, 0x1ace: 0x22c1, 0x1acf: 0x22c9, 0x1ad0: 0x22d1, 0x1ad1: 0x0799, -	0x1ad2: 0x03c1, 0x1ad3: 0x22d9, 0x1ad4: 0x22d9, 0x1ad5: 0x22e1, 0x1ad6: 0x22e9, 0x1ad7: 0x03b1, -	0x1ad8: 0x03b9, 0x1ad9: 0x22f1, 0x1ada: 0x0769, 0x1adb: 0x2301, 0x1adc: 0x2291, 0x1add: 0x04d1, -	0x1ade: 0x22a9, 0x1adf: 0x03b1, 0x1ae0: 0x03c1, 0x1ae1: 0x0799, 0x1ae2: 0x2289, 0x1ae3: 0x0399, -	0x1ae4: 0x03a1, 0x1ae5: 0x03a9, 0x1ae6: 0x2291, 0x1ae7: 0x2299, 0x1ae8: 0x22a1, 0x1ae9: 0x04d1, -	0x1aea: 0x05f9, 0x1aeb: 0x22a9, 0x1aec: 0x22b1, 0x1aed: 0x22b9, 0x1aee: 0x22c1, 0x1aef: 0x22c9, -	0x1af0: 0x22d1, 0x1af1: 0x0799, 0x1af2: 0x03c1, 0x1af3: 0x04d1, 0x1af4: 0x22d9, 0x1af5: 0x22e1, -	0x1af6: 0x22e9, 0x1af7: 0x03b1, 0x1af8: 0x03b9, 0x1af9: 0x22f1, 0x1afa: 0x0769, 0x1afb: 0x22f9, -	0x1afc: 0x2289, 0x1afd: 0x0399, 0x1afe: 0x03a1, 0x1aff: 0x03a9, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0x2291, 0x1b01: 0x2299, 0x1b02: 0x22a1, 0x1b03: 0x04d1, 0x1b04: 0x05f9, 0x1b05: 0x22a9, -	0x1b06: 0x22b1, 0x1b07: 0x22b9, 0x1b08: 0x22c1, 0x1b09: 0x22c9, 0x1b0a: 0x22d1, 0x1b0b: 0x0799, -	0x1b0c: 0x03c1, 0x1b0d: 0x22d9, 0x1b0e: 0x22d9, 0x1b0f: 0x22e1, 0x1b10: 0x22e9, 0x1b11: 0x03b1, -	0x1b12: 0x03b9, 0x1b13: 0x22f1, 0x1b14: 0x0769, 0x1b15: 0x2301, 0x1b16: 0x2291, 0x1b17: 0x04d1, -	0x1b18: 0x22a9, 0x1b19: 0x03b1, 0x1b1a: 0x03c1, 0x1b1b: 0x0799, 0x1b1c: 0x2289, 0x1b1d: 0x0399, -	0x1b1e: 0x03a1, 0x1b1f: 0x03a9, 0x1b20: 0x2291, 0x1b21: 0x2299, 0x1b22: 0x22a1, 0x1b23: 0x04d1, -	0x1b24: 0x05f9, 0x1b25: 0x22a9, 0x1b26: 0x22b1, 0x1b27: 0x22b9, 0x1b28: 0x22c1, 0x1b29: 0x22c9, -	0x1b2a: 0x22d1, 0x1b2b: 0x0799, 0x1b2c: 0x03c1, 0x1b2d: 0x04d1, 0x1b2e: 0x22d9, 0x1b2f: 0x22e1, -	0x1b30: 0x22e9, 0x1b31: 0x03b1, 0x1b32: 0x03b9, 0x1b33: 0x22f1, 0x1b34: 0x0769, 0x1b35: 0x22f9, -	0x1b36: 0x2289, 0x1b37: 0x0399, 0x1b38: 0x03a1, 0x1b39: 0x03a9, 0x1b3a: 0x2291, 0x1b3b: 0x2299, -	0x1b3c: 0x22a1, 0x1b3d: 0x04d1, 0x1b3e: 0x05f9, 0x1b3f: 0x22a9, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0x22b1, 0x1b41: 0x22b9, 0x1b42: 0x22c1, 0x1b43: 0x22c9, 0x1b44: 0x22d1, 0x1b45: 0x0799, -	0x1b46: 0x03c1, 0x1b47: 0x22d9, 0x1b48: 0x22d9, 0x1b49: 0x22e1, 0x1b4a: 0x22e9, 0x1b4b: 0x03b1, -	0x1b4c: 0x03b9, 0x1b4d: 0x22f1, 0x1b4e: 0x0769, 0x1b4f: 0x2301, 0x1b50: 0x2291, 0x1b51: 0x04d1, -	0x1b52: 0x22a9, 0x1b53: 0x03b1, 0x1b54: 0x03c1, 0x1b55: 0x0799, 0x1b56: 0x2289, 0x1b57: 0x0399, -	0x1b58: 0x03a1, 0x1b59: 0x03a9, 0x1b5a: 0x2291, 0x1b5b: 0x2299, 0x1b5c: 0x22a1, 0x1b5d: 0x04d1, -	0x1b5e: 0x05f9, 0x1b5f: 0x22a9, 0x1b60: 0x22b1, 0x1b61: 0x22b9, 0x1b62: 0x22c1, 0x1b63: 0x22c9, -	0x1b64: 0x22d1, 0x1b65: 0x0799, 0x1b66: 0x03c1, 0x1b67: 0x04d1, 0x1b68: 0x22d9, 0x1b69: 0x22e1, -	0x1b6a: 0x22e9, 0x1b6b: 0x03b1, 0x1b6c: 0x03b9, 0x1b6d: 0x22f1, 0x1b6e: 0x0769, 0x1b6f: 0x22f9, -	0x1b70: 0x2289, 0x1b71: 0x0399, 0x1b72: 0x03a1, 0x1b73: 0x03a9, 0x1b74: 0x2291, 0x1b75: 0x2299, -	0x1b76: 0x22a1, 0x1b77: 0x04d1, 0x1b78: 0x05f9, 0x1b79: 0x22a9, 0x1b7a: 0x22b1, 0x1b7b: 0x22b9, -	0x1b7c: 0x22c1, 0x1b7d: 0x22c9, 0x1b7e: 0x22d1, 0x1b7f: 0x0799, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0x03c1, 0x1b81: 0x22d9, 0x1b82: 0x22d9, 0x1b83: 0x22e1, 0x1b84: 0x22e9, 0x1b85: 0x03b1, -	0x1b86: 0x03b9, 0x1b87: 0x22f1, 0x1b88: 0x0769, 0x1b89: 0x2301, 0x1b8a: 0x2291, 0x1b8b: 0x04d1, -	0x1b8c: 0x22a9, 0x1b8d: 0x03b1, 0x1b8e: 0x03c1, 0x1b8f: 0x0799, 0x1b90: 0x2289, 0x1b91: 0x0399, -	0x1b92: 0x03a1, 0x1b93: 0x03a9, 0x1b94: 0x2291, 0x1b95: 0x2299, 0x1b96: 0x22a1, 0x1b97: 0x04d1, -	0x1b98: 0x05f9, 0x1b99: 0x22a9, 0x1b9a: 0x22b1, 0x1b9b: 0x22b9, 0x1b9c: 0x22c1, 0x1b9d: 0x22c9, -	0x1b9e: 0x22d1, 0x1b9f: 0x0799, 0x1ba0: 0x03c1, 0x1ba1: 0x04d1, 0x1ba2: 0x22d9, 0x1ba3: 0x22e1, -	0x1ba4: 0x22e9, 0x1ba5: 0x03b1, 0x1ba6: 0x03b9, 0x1ba7: 0x22f1, 0x1ba8: 0x0769, 0x1ba9: 0x22f9, -	0x1baa: 0x2289, 0x1bab: 0x0399, 0x1bac: 0x03a1, 0x1bad: 0x03a9, 0x1bae: 0x2291, 0x1baf: 0x2299, -	0x1bb0: 0x22a1, 0x1bb1: 0x04d1, 0x1bb2: 0x05f9, 0x1bb3: 0x22a9, 0x1bb4: 0x22b1, 0x1bb5: 0x22b9, -	0x1bb6: 0x22c1, 0x1bb7: 0x22c9, 0x1bb8: 0x22d1, 0x1bb9: 0x0799, 0x1bba: 0x03c1, 0x1bbb: 0x22d9, -	0x1bbc: 0x22d9, 0x1bbd: 0x22e1, 0x1bbe: 0x22e9, 0x1bbf: 0x03b1, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x03b9, 0x1bc1: 0x22f1, 0x1bc2: 0x0769, 0x1bc3: 0x2301, 0x1bc4: 0x2291, 0x1bc5: 0x04d1, -	0x1bc6: 0x22a9, 0x1bc7: 0x03b1, 0x1bc8: 0x03c1, 0x1bc9: 0x0799, 0x1bca: 0x2309, 0x1bcb: 0x2309, -	0x1bcc: 0x0040, 0x1bcd: 0x0040, 0x1bce: 0x06e1, 0x1bcf: 0x0049, 0x1bd0: 0x0029, 0x1bd1: 0x0031, -	0x1bd2: 0x06e9, 0x1bd3: 0x06f1, 0x1bd4: 0x06f9, 0x1bd5: 0x0701, 0x1bd6: 0x0709, 0x1bd7: 0x0711, -	0x1bd8: 0x06e1, 0x1bd9: 0x0049, 0x1bda: 0x0029, 0x1bdb: 0x0031, 0x1bdc: 0x06e9, 0x1bdd: 0x06f1, -	0x1bde: 0x06f9, 0x1bdf: 0x0701, 0x1be0: 0x0709, 0x1be1: 0x0711, 0x1be2: 0x06e1, 0x1be3: 0x0049, -	0x1be4: 0x0029, 0x1be5: 0x0031, 0x1be6: 0x06e9, 0x1be7: 0x06f1, 0x1be8: 0x06f9, 0x1be9: 0x0701, -	0x1bea: 0x0709, 0x1beb: 0x0711, 0x1bec: 0x06e1, 0x1bed: 0x0049, 0x1bee: 0x0029, 0x1bef: 0x0031, -	0x1bf0: 0x06e9, 0x1bf1: 0x06f1, 0x1bf2: 0x06f9, 0x1bf3: 0x0701, 0x1bf4: 0x0709, 0x1bf5: 0x0711, -	0x1bf6: 0x06e1, 0x1bf7: 0x0049, 0x1bf8: 0x0029, 0x1bf9: 0x0031, 0x1bfa: 0x06e9, 0x1bfb: 0x06f1, -	0x1bfc: 0x06f9, 0x1bfd: 0x0701, 0x1bfe: 0x0709, 0x1bff: 0x0711, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0xe115, 0x1c01: 0xe115, 0x1c02: 0xe135, 0x1c03: 0xe135, 0x1c04: 0xe115, 0x1c05: 0xe115, -	0x1c06: 0xe175, 0x1c07: 0xe175, 0x1c08: 0xe115, 0x1c09: 0xe115, 0x1c0a: 0xe135, 0x1c0b: 0xe135, -	0x1c0c: 0xe115, 0x1c0d: 0xe115, 0x1c0e: 0xe1f5, 0x1c0f: 0xe1f5, 0x1c10: 0xe115, 0x1c11: 0xe115, -	0x1c12: 0xe135, 0x1c13: 0xe135, 0x1c14: 0xe115, 0x1c15: 0xe115, 0x1c16: 0xe175, 0x1c17: 0xe175, -	0x1c18: 0xe115, 0x1c19: 0xe115, 0x1c1a: 0xe135, 0x1c1b: 0xe135, 0x1c1c: 0xe115, 0x1c1d: 0xe115, -	0x1c1e: 0x8b3d, 0x1c1f: 0x8b3d, 0x1c20: 0x04b5, 0x1c21: 0x04b5, 0x1c22: 0x0a08, 0x1c23: 0x0a08, -	0x1c24: 0x0a08, 0x1c25: 0x0a08, 0x1c26: 0x0a08, 0x1c27: 0x0a08, 0x1c28: 0x0a08, 0x1c29: 0x0a08, -	0x1c2a: 0x0a08, 0x1c2b: 0x0a08, 0x1c2c: 0x0a08, 0x1c2d: 0x0a08, 0x1c2e: 0x0a08, 0x1c2f: 0x0a08, -	0x1c30: 0x0a08, 0x1c31: 0x0a08, 0x1c32: 0x0a08, 0x1c33: 0x0a08, 0x1c34: 0x0a08, 0x1c35: 0x0a08, -	0x1c36: 0x0a08, 0x1c37: 0x0a08, 0x1c38: 0x0a08, 0x1c39: 0x0a08, 0x1c3a: 0x0a08, 0x1c3b: 0x0a08, -	0x1c3c: 0x0a08, 0x1c3d: 0x0a08, 0x1c3e: 0x0a08, 0x1c3f: 0x0a08, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0x20b1, 0x1c41: 0x20b9, 0x1c42: 0x20d9, 0x1c43: 0x20f1, 0x1c44: 0x0040, 0x1c45: 0x2189, -	0x1c46: 0x2109, 0x1c47: 0x20e1, 0x1c48: 0x2131, 0x1c49: 0x2191, 0x1c4a: 0x2161, 0x1c4b: 0x2169, -	0x1c4c: 0x2171, 0x1c4d: 0x2179, 0x1c4e: 0x2111, 0x1c4f: 0x2141, 0x1c50: 0x2151, 0x1c51: 0x2121, -	0x1c52: 0x2159, 0x1c53: 0x2101, 0x1c54: 0x2119, 0x1c55: 0x20c9, 0x1c56: 0x20d1, 0x1c57: 0x20e9, -	0x1c58: 0x20f9, 0x1c59: 0x2129, 0x1c5a: 0x2139, 0x1c5b: 0x2149, 0x1c5c: 0x2311, 0x1c5d: 0x1689, -	0x1c5e: 0x2319, 0x1c5f: 0x2321, 0x1c60: 0x0040, 0x1c61: 0x20b9, 0x1c62: 0x20d9, 0x1c63: 0x0040, -	0x1c64: 0x2181, 0x1c65: 0x0040, 0x1c66: 0x0040, 0x1c67: 0x20e1, 0x1c68: 0x0040, 0x1c69: 0x2191, -	0x1c6a: 0x2161, 0x1c6b: 0x2169, 0x1c6c: 0x2171, 0x1c6d: 0x2179, 0x1c6e: 0x2111, 0x1c6f: 0x2141, -	0x1c70: 0x2151, 0x1c71: 0x2121, 0x1c72: 0x2159, 0x1c73: 0x0040, 0x1c74: 0x2119, 0x1c75: 0x20c9, -	0x1c76: 0x20d1, 0x1c77: 0x20e9, 0x1c78: 0x0040, 0x1c79: 0x2129, 0x1c7a: 0x0040, 0x1c7b: 0x2149, -	0x1c7c: 0x0040, 0x1c7d: 0x0040, 0x1c7e: 0x0040, 0x1c7f: 0x0040, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0x0040, 0x1c81: 0x0040, 0x1c82: 0x20d9, 0x1c83: 0x0040, 0x1c84: 0x0040, 0x1c85: 0x0040, -	0x1c86: 0x0040, 0x1c87: 0x20e1, 0x1c88: 0x0040, 0x1c89: 0x2191, 0x1c8a: 0x0040, 0x1c8b: 0x2169, -	0x1c8c: 0x0040, 0x1c8d: 0x2179, 0x1c8e: 0x2111, 0x1c8f: 0x2141, 0x1c90: 0x0040, 0x1c91: 0x2121, -	0x1c92: 0x2159, 0x1c93: 0x0040, 0x1c94: 0x2119, 0x1c95: 0x0040, 0x1c96: 0x0040, 0x1c97: 0x20e9, -	0x1c98: 0x0040, 0x1c99: 0x2129, 0x1c9a: 0x0040, 0x1c9b: 0x2149, 0x1c9c: 0x0040, 0x1c9d: 0x1689, -	0x1c9e: 0x0040, 0x1c9f: 0x2321, 0x1ca0: 0x0040, 0x1ca1: 0x20b9, 0x1ca2: 0x20d9, 0x1ca3: 0x0040, -	0x1ca4: 0x2181, 0x1ca5: 0x0040, 0x1ca6: 0x0040, 0x1ca7: 0x20e1, 0x1ca8: 0x2131, 0x1ca9: 0x2191, -	0x1caa: 0x2161, 0x1cab: 0x0040, 0x1cac: 0x2171, 0x1cad: 0x2179, 0x1cae: 0x2111, 0x1caf: 0x2141, -	0x1cb0: 0x2151, 0x1cb1: 0x2121, 0x1cb2: 0x2159, 0x1cb3: 0x0040, 0x1cb4: 0x2119, 0x1cb5: 0x20c9, -	0x1cb6: 0x20d1, 0x1cb7: 0x20e9, 0x1cb8: 0x0040, 0x1cb9: 0x2129, 0x1cba: 0x2139, 0x1cbb: 0x2149, -	0x1cbc: 0x2311, 0x1cbd: 0x0040, 0x1cbe: 0x2319, 0x1cbf: 0x0040, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0x20b1, 0x1cc1: 0x20b9, 0x1cc2: 0x20d9, 0x1cc3: 0x20f1, 0x1cc4: 0x2181, 0x1cc5: 0x2189, -	0x1cc6: 0x2109, 0x1cc7: 0x20e1, 0x1cc8: 0x2131, 0x1cc9: 0x2191, 0x1cca: 0x0040, 0x1ccb: 0x2169, -	0x1ccc: 0x2171, 0x1ccd: 0x2179, 0x1cce: 0x2111, 0x1ccf: 0x2141, 0x1cd0: 0x2151, 0x1cd1: 0x2121, -	0x1cd2: 0x2159, 0x1cd3: 0x2101, 0x1cd4: 0x2119, 0x1cd5: 0x20c9, 0x1cd6: 0x20d1, 0x1cd7: 0x20e9, -	0x1cd8: 0x20f9, 0x1cd9: 0x2129, 0x1cda: 0x2139, 0x1cdb: 0x2149, 0x1cdc: 0x0040, 0x1cdd: 0x0040, -	0x1cde: 0x0040, 0x1cdf: 0x0040, 0x1ce0: 0x0040, 0x1ce1: 0x20b9, 0x1ce2: 0x20d9, 0x1ce3: 0x20f1, -	0x1ce4: 0x0040, 0x1ce5: 0x2189, 0x1ce6: 0x2109, 0x1ce7: 0x20e1, 0x1ce8: 0x2131, 0x1ce9: 0x2191, -	0x1cea: 0x0040, 0x1ceb: 0x2169, 0x1cec: 0x2171, 0x1ced: 0x2179, 0x1cee: 0x2111, 0x1cef: 0x2141, -	0x1cf0: 0x2151, 0x1cf1: 0x2121, 0x1cf2: 0x2159, 0x1cf3: 0x2101, 0x1cf4: 0x2119, 0x1cf5: 0x20c9, -	0x1cf6: 0x20d1, 0x1cf7: 0x20e9, 0x1cf8: 0x20f9, 0x1cf9: 0x2129, 0x1cfa: 0x2139, 0x1cfb: 0x2149, -	0x1cfc: 0x0040, 0x1cfd: 0x0040, 0x1cfe: 0x0040, 0x1cff: 0x0040, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0x0040, 0x1d01: 0x232a, 0x1d02: 0x2332, 0x1d03: 0x233a, 0x1d04: 0x2342, 0x1d05: 0x234a, -	0x1d06: 0x2352, 0x1d07: 0x235a, 0x1d08: 0x2362, 0x1d09: 0x236a, 0x1d0a: 0x2372, 0x1d0b: 0x0018, -	0x1d0c: 0x0018, 0x1d0d: 0x0018, 0x1d0e: 0x0018, 0x1d0f: 0x0018, 0x1d10: 0x237a, 0x1d11: 0x2382, -	0x1d12: 0x238a, 0x1d13: 0x2392, 0x1d14: 0x239a, 0x1d15: 0x23a2, 0x1d16: 0x23aa, 0x1d17: 0x23b2, -	0x1d18: 0x23ba, 0x1d19: 0x23c2, 0x1d1a: 0x23ca, 0x1d1b: 0x23d2, 0x1d1c: 0x23da, 0x1d1d: 0x23e2, -	0x1d1e: 0x23ea, 0x1d1f: 0x23f2, 0x1d20: 0x23fa, 0x1d21: 0x2402, 0x1d22: 0x240a, 0x1d23: 0x2412, -	0x1d24: 0x241a, 0x1d25: 0x2422, 0x1d26: 0x242a, 0x1d27: 0x2432, 0x1d28: 0x243a, 0x1d29: 0x2442, -	0x1d2a: 0x2449, 0x1d2b: 0x03d9, 0x1d2c: 0x00b9, 0x1d2d: 0x1239, 0x1d2e: 0x2451, 0x1d2f: 0x0018, -	0x1d30: 0x0019, 0x1d31: 0x02e9, 0x1d32: 0x03d9, 0x1d33: 0x02f1, 0x1d34: 0x02f9, 0x1d35: 0x03f1, -	0x1d36: 0x0309, 0x1d37: 0x00a9, 0x1d38: 0x0311, 0x1d39: 0x00b1, 0x1d3a: 0x0319, 0x1d3b: 0x0101, -	0x1d3c: 0x0321, 0x1d3d: 0x0329, 0x1d3e: 0x0051, 0x1d3f: 0x0339, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x0751, 0x1d41: 0x00b9, 0x1d42: 0x0089, 0x1d43: 0x0341, 0x1d44: 0x0349, 0x1d45: 0x0391, -	0x1d46: 0x00c1, 0x1d47: 0x0109, 0x1d48: 0x00c9, 0x1d49: 0x04b1, 0x1d4a: 0x2459, 0x1d4b: 0x11f9, -	0x1d4c: 0x2461, 0x1d4d: 0x04d9, 0x1d4e: 0x2469, 0x1d4f: 0x2471, 0x1d50: 0x0018, 0x1d51: 0x0018, -	0x1d52: 0x0018, 0x1d53: 0x0018, 0x1d54: 0x0018, 0x1d55: 0x0018, 0x1d56: 0x0018, 0x1d57: 0x0018, -	0x1d58: 0x0018, 0x1d59: 0x0018, 0x1d5a: 0x0018, 0x1d5b: 0x0018, 0x1d5c: 0x0018, 0x1d5d: 0x0018, -	0x1d5e: 0x0018, 0x1d5f: 0x0018, 0x1d60: 0x0018, 0x1d61: 0x0018, 0x1d62: 0x0018, 0x1d63: 0x0018, -	0x1d64: 0x0018, 0x1d65: 0x0018, 0x1d66: 0x0018, 0x1d67: 0x0018, 0x1d68: 0x0018, 0x1d69: 0x0018, -	0x1d6a: 0x2479, 0x1d6b: 0x2481, 0x1d6c: 0x2489, 0x1d6d: 0x0018, 0x1d6e: 0x0018, 0x1d6f: 0x0018, -	0x1d70: 0x0018, 0x1d71: 0x0018, 0x1d72: 0x0018, 0x1d73: 0x0018, 0x1d74: 0x0018, 0x1d75: 0x0018, -	0x1d76: 0x0018, 0x1d77: 0x0018, 0x1d78: 0x0018, 0x1d79: 0x0018, 0x1d7a: 0x0018, 0x1d7b: 0x0018, -	0x1d7c: 0x0018, 0x1d7d: 0x0018, 0x1d7e: 0x0018, 0x1d7f: 0x0018, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0x2499, 0x1d81: 0x24a1, 0x1d82: 0x24a9, 0x1d83: 0x0040, 0x1d84: 0x0040, 0x1d85: 0x0040, -	0x1d86: 0x0040, 0x1d87: 0x0040, 0x1d88: 0x0040, 0x1d89: 0x0040, 0x1d8a: 0x0040, 0x1d8b: 0x0040, -	0x1d8c: 0x0040, 0x1d8d: 0x0040, 0x1d8e: 0x0040, 0x1d8f: 0x0040, 0x1d90: 0x24b1, 0x1d91: 0x24b9, -	0x1d92: 0x24c1, 0x1d93: 0x24c9, 0x1d94: 0x24d1, 0x1d95: 0x24d9, 0x1d96: 0x24e1, 0x1d97: 0x24e9, -	0x1d98: 0x24f1, 0x1d99: 0x24f9, 0x1d9a: 0x2501, 0x1d9b: 0x2509, 0x1d9c: 0x2511, 0x1d9d: 0x2519, -	0x1d9e: 0x2521, 0x1d9f: 0x2529, 0x1da0: 0x2531, 0x1da1: 0x2539, 0x1da2: 0x2541, 0x1da3: 0x2549, -	0x1da4: 0x2551, 0x1da5: 0x2559, 0x1da6: 0x2561, 0x1da7: 0x2569, 0x1da8: 0x2571, 0x1da9: 0x2579, -	0x1daa: 0x2581, 0x1dab: 0x2589, 0x1dac: 0x2591, 0x1dad: 0x2599, 0x1dae: 0x25a1, 0x1daf: 0x25a9, -	0x1db0: 0x25b1, 0x1db1: 0x25b9, 0x1db2: 0x25c1, 0x1db3: 0x25c9, 0x1db4: 0x25d1, 0x1db5: 0x25d9, -	0x1db6: 0x25e1, 0x1db7: 0x25e9, 0x1db8: 0x25f1, 0x1db9: 0x25f9, 0x1dba: 0x2601, 0x1dbb: 0x2609, -	0x1dbc: 0x0040, 0x1dbd: 0x0040, 0x1dbe: 0x0040, 0x1dbf: 0x0040, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0x2669, 0x1dc1: 0x2671, 0x1dc2: 0x2679, 0x1dc3: 0x8b55, 0x1dc4: 0x2681, 0x1dc5: 0x2689, -	0x1dc6: 0x2691, 0x1dc7: 0x2699, 0x1dc8: 0x26a1, 0x1dc9: 0x26a9, 0x1dca: 0x26b1, 0x1dcb: 0x26b9, -	0x1dcc: 0x26c1, 0x1dcd: 0x8b75, 0x1dce: 0x26c9, 0x1dcf: 0x26d1, 0x1dd0: 0x26d9, 0x1dd1: 0x26e1, -	0x1dd2: 0x8b95, 0x1dd3: 0x26e9, 0x1dd4: 0x26f1, 0x1dd5: 0x2521, 0x1dd6: 0x8bb5, 0x1dd7: 0x26f9, -	0x1dd8: 0x2701, 0x1dd9: 0x2709, 0x1dda: 0x2711, 0x1ddb: 0x2719, 0x1ddc: 0x8bd5, 0x1ddd: 0x2721, -	0x1dde: 0x2729, 0x1ddf: 0x2731, 0x1de0: 0x2739, 0x1de1: 0x2741, 0x1de2: 0x25f9, 0x1de3: 0x2749, -	0x1de4: 0x2751, 0x1de5: 0x2759, 0x1de6: 0x2761, 0x1de7: 0x2769, 0x1de8: 0x2771, 0x1de9: 0x2779, -	0x1dea: 0x2781, 0x1deb: 0x2789, 0x1dec: 0x2791, 0x1ded: 0x2799, 0x1dee: 0x27a1, 0x1def: 0x27a9, -	0x1df0: 0x27b1, 0x1df1: 0x27b9, 0x1df2: 0x27b9, 0x1df3: 0x27b9, 0x1df4: 0x8bf5, 0x1df5: 0x27c1, -	0x1df6: 0x27c9, 0x1df7: 0x27d1, 0x1df8: 0x8c15, 0x1df9: 0x27d9, 0x1dfa: 0x27e1, 0x1dfb: 0x27e9, -	0x1dfc: 0x27f1, 0x1dfd: 0x27f9, 0x1dfe: 0x2801, 0x1dff: 0x2809, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0x2811, 0x1e01: 0x2819, 0x1e02: 0x2821, 0x1e03: 0x2829, 0x1e04: 0x2831, 0x1e05: 0x2839, -	0x1e06: 0x2839, 0x1e07: 0x2841, 0x1e08: 0x2849, 0x1e09: 0x2851, 0x1e0a: 0x2859, 0x1e0b: 0x2861, -	0x1e0c: 0x2869, 0x1e0d: 0x2871, 0x1e0e: 0x2879, 0x1e0f: 0x2881, 0x1e10: 0x2889, 0x1e11: 0x2891, -	0x1e12: 0x2899, 0x1e13: 0x28a1, 0x1e14: 0x28a9, 0x1e15: 0x28b1, 0x1e16: 0x28b9, 0x1e17: 0x28c1, -	0x1e18: 0x28c9, 0x1e19: 0x8c35, 0x1e1a: 0x28d1, 0x1e1b: 0x28d9, 0x1e1c: 0x28e1, 0x1e1d: 0x24d9, -	0x1e1e: 0x28e9, 0x1e1f: 0x28f1, 0x1e20: 0x8c55, 0x1e21: 0x8c75, 0x1e22: 0x28f9, 0x1e23: 0x2901, -	0x1e24: 0x2909, 0x1e25: 0x2911, 0x1e26: 0x2919, 0x1e27: 0x2921, 0x1e28: 0x2040, 0x1e29: 0x2929, -	0x1e2a: 0x2931, 0x1e2b: 0x2931, 0x1e2c: 0x8c95, 0x1e2d: 0x2939, 0x1e2e: 0x2941, 0x1e2f: 0x2949, -	0x1e30: 0x2951, 0x1e31: 0x8cb5, 0x1e32: 0x2959, 0x1e33: 0x2961, 0x1e34: 0x2040, 0x1e35: 0x2969, -	0x1e36: 0x2971, 0x1e37: 0x2979, 0x1e38: 0x2981, 0x1e39: 0x2989, 0x1e3a: 0x2991, 0x1e3b: 0x8cd5, -	0x1e3c: 0x2999, 0x1e3d: 0x8cf5, 0x1e3e: 0x29a1, 0x1e3f: 0x29a9, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0x29b1, 0x1e41: 0x29b9, 0x1e42: 0x29c1, 0x1e43: 0x29c9, 0x1e44: 0x29d1, 0x1e45: 0x29d9, -	0x1e46: 0x29e1, 0x1e47: 0x29e9, 0x1e48: 0x29f1, 0x1e49: 0x8d15, 0x1e4a: 0x29f9, 0x1e4b: 0x2a01, -	0x1e4c: 0x2a09, 0x1e4d: 0x2a11, 0x1e4e: 0x2a19, 0x1e4f: 0x8d35, 0x1e50: 0x2a21, 0x1e51: 0x8d55, -	0x1e52: 0x8d75, 0x1e53: 0x2a29, 0x1e54: 0x2a31, 0x1e55: 0x2a31, 0x1e56: 0x2a39, 0x1e57: 0x8d95, -	0x1e58: 0x8db5, 0x1e59: 0x2a41, 0x1e5a: 0x2a49, 0x1e5b: 0x2a51, 0x1e5c: 0x2a59, 0x1e5d: 0x2a61, -	0x1e5e: 0x2a69, 0x1e5f: 0x2a71, 0x1e60: 0x2a79, 0x1e61: 0x2a81, 0x1e62: 0x2a89, 0x1e63: 0x2a91, -	0x1e64: 0x8dd5, 0x1e65: 0x2a99, 0x1e66: 0x2aa1, 0x1e67: 0x2aa9, 0x1e68: 0x2ab1, 0x1e69: 0x2aa9, -	0x1e6a: 0x2ab9, 0x1e6b: 0x2ac1, 0x1e6c: 0x2ac9, 0x1e6d: 0x2ad1, 0x1e6e: 0x2ad9, 0x1e6f: 0x2ae1, -	0x1e70: 0x2ae9, 0x1e71: 0x2af1, 0x1e72: 0x2af9, 0x1e73: 0x2b01, 0x1e74: 0x2b09, 0x1e75: 0x2b11, -	0x1e76: 0x2b19, 0x1e77: 0x2b21, 0x1e78: 0x8df5, 0x1e79: 0x2b29, 0x1e7a: 0x2b31, 0x1e7b: 0x2b39, -	0x1e7c: 0x2b41, 0x1e7d: 0x2b49, 0x1e7e: 0x8e15, 0x1e7f: 0x2b51, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0x2b59, 0x1e81: 0x2b61, 0x1e82: 0x2b69, 0x1e83: 0x2b71, 0x1e84: 0x2b79, 0x1e85: 0x2b81, -	0x1e86: 0x2b89, 0x1e87: 0x2b91, 0x1e88: 0x2b99, 0x1e89: 0x2ba1, 0x1e8a: 0x8e35, 0x1e8b: 0x2ba9, -	0x1e8c: 0x2bb1, 0x1e8d: 0x2bb9, 0x1e8e: 0x2bc1, 0x1e8f: 0x2bc9, 0x1e90: 0x2bd1, 0x1e91: 0x2bd9, -	0x1e92: 0x2be1, 0x1e93: 0x2be9, 0x1e94: 0x2bf1, 0x1e95: 0x2bf9, 0x1e96: 0x2c01, 0x1e97: 0x2c09, -	0x1e98: 0x2c11, 0x1e99: 0x2c19, 0x1e9a: 0x2c21, 0x1e9b: 0x2c29, 0x1e9c: 0x2c31, 0x1e9d: 0x8e55, -	0x1e9e: 0x2c39, 0x1e9f: 0x2c41, 0x1ea0: 0x2c49, 0x1ea1: 0x2c51, 0x1ea2: 0x2c59, 0x1ea3: 0x8e75, -	0x1ea4: 0x2c61, 0x1ea5: 0x2c69, 0x1ea6: 0x2c71, 0x1ea7: 0x2c79, 0x1ea8: 0x2c81, 0x1ea9: 0x2c89, -	0x1eaa: 0x2c91, 0x1eab: 0x2c99, 0x1eac: 0x7f0d, 0x1ead: 0x2ca1, 0x1eae: 0x2ca9, 0x1eaf: 0x2cb1, -	0x1eb0: 0x8e95, 0x1eb1: 0x2cb9, 0x1eb2: 0x2cc1, 0x1eb3: 0x2cc9, 0x1eb4: 0x2cd1, 0x1eb5: 0x2cd9, -	0x1eb6: 0x2ce1, 0x1eb7: 0x8eb5, 0x1eb8: 0x8ed5, 0x1eb9: 0x8ef5, 0x1eba: 0x2ce9, 0x1ebb: 0x8f15, -	0x1ebc: 0x2cf1, 0x1ebd: 0x2cf9, 0x1ebe: 0x2d01, 0x1ebf: 0x2d09, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0x2d11, 0x1ec1: 0x2d19, 0x1ec2: 0x2d21, 0x1ec3: 0x2d29, 0x1ec4: 0x2d31, 0x1ec5: 0x2d39, -	0x1ec6: 0x8f35, 0x1ec7: 0x2d41, 0x1ec8: 0x2d49, 0x1ec9: 0x2d51, 0x1eca: 0x2d59, 0x1ecb: 0x2d61, -	0x1ecc: 0x2d69, 0x1ecd: 0x8f55, 0x1ece: 0x2d71, 0x1ecf: 0x2d79, 0x1ed0: 0x8f75, 0x1ed1: 0x8f95, -	0x1ed2: 0x2d81, 0x1ed3: 0x2d89, 0x1ed4: 0x2d91, 0x1ed5: 0x2d99, 0x1ed6: 0x2da1, 0x1ed7: 0x2da9, -	0x1ed8: 0x2db1, 0x1ed9: 0x2db9, 0x1eda: 0x2dc1, 0x1edb: 0x8fb5, 0x1edc: 0x2dc9, 0x1edd: 0x8fd5, -	0x1ede: 0x2dd1, 0x1edf: 0x2040, 0x1ee0: 0x2dd9, 0x1ee1: 0x2de1, 0x1ee2: 0x2de9, 0x1ee3: 0x8ff5, -	0x1ee4: 0x2df1, 0x1ee5: 0x2df9, 0x1ee6: 0x9015, 0x1ee7: 0x9035, 0x1ee8: 0x2e01, 0x1ee9: 0x2e09, -	0x1eea: 0x2e11, 0x1eeb: 0x2e19, 0x1eec: 0x2e21, 0x1eed: 0x2e21, 0x1eee: 0x2e29, 0x1eef: 0x2e31, -	0x1ef0: 0x2e39, 0x1ef1: 0x2e41, 0x1ef2: 0x2e49, 0x1ef3: 0x2e51, 0x1ef4: 0x2e59, 0x1ef5: 0x9055, -	0x1ef6: 0x2e61, 0x1ef7: 0x9075, 0x1ef8: 0x2e69, 0x1ef9: 0x9095, 0x1efa: 0x2e71, 0x1efb: 0x90b5, -	0x1efc: 0x90d5, 0x1efd: 0x90f5, 0x1efe: 0x2e79, 0x1eff: 0x2e81, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0x2e89, 0x1f01: 0x9115, 0x1f02: 0x9135, 0x1f03: 0x9155, 0x1f04: 0x9175, 0x1f05: 0x2e91, -	0x1f06: 0x2e99, 0x1f07: 0x2e99, 0x1f08: 0x2ea1, 0x1f09: 0x2ea9, 0x1f0a: 0x2eb1, 0x1f0b: 0x2eb9, -	0x1f0c: 0x2ec1, 0x1f0d: 0x9195, 0x1f0e: 0x2ec9, 0x1f0f: 0x2ed1, 0x1f10: 0x2ed9, 0x1f11: 0x2ee1, -	0x1f12: 0x91b5, 0x1f13: 0x2ee9, 0x1f14: 0x91d5, 0x1f15: 0x91f5, 0x1f16: 0x2ef1, 0x1f17: 0x2ef9, -	0x1f18: 0x2f01, 0x1f19: 0x2f09, 0x1f1a: 0x2f11, 0x1f1b: 0x2f19, 0x1f1c: 0x9215, 0x1f1d: 0x9235, -	0x1f1e: 0x9255, 0x1f1f: 0x2040, 0x1f20: 0x2f21, 0x1f21: 0x9275, 0x1f22: 0x2f29, 0x1f23: 0x2f31, -	0x1f24: 0x2f39, 0x1f25: 0x9295, 0x1f26: 0x2f41, 0x1f27: 0x2f49, 0x1f28: 0x2f51, 0x1f29: 0x2f59, -	0x1f2a: 0x2f61, 0x1f2b: 0x92b5, 0x1f2c: 0x2f69, 0x1f2d: 0x2f71, 0x1f2e: 0x2f79, 0x1f2f: 0x2f81, -	0x1f30: 0x2f89, 0x1f31: 0x2f91, 0x1f32: 0x92d5, 0x1f33: 0x92f5, 0x1f34: 0x2f99, 0x1f35: 0x9315, -	0x1f36: 0x2fa1, 0x1f37: 0x9335, 0x1f38: 0x2fa9, 0x1f39: 0x2fb1, 0x1f3a: 0x2fb9, 0x1f3b: 0x9355, -	0x1f3c: 0x9375, 0x1f3d: 0x2fc1, 0x1f3e: 0x9395, 0x1f3f: 0x2fc9, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0x93b5, 0x1f41: 0x2fd1, 0x1f42: 0x2fd9, 0x1f43: 0x2fe1, 0x1f44: 0x2fe9, 0x1f45: 0x2ff1, -	0x1f46: 0x2ff9, 0x1f47: 0x93d5, 0x1f48: 0x93f5, 0x1f49: 0x9415, 0x1f4a: 0x9435, 0x1f4b: 0x2a29, -	0x1f4c: 0x3001, 0x1f4d: 0x3009, 0x1f4e: 0x3011, 0x1f4f: 0x3019, 0x1f50: 0x3021, 0x1f51: 0x3029, -	0x1f52: 0x3031, 0x1f53: 0x3039, 0x1f54: 0x3041, 0x1f55: 0x3049, 0x1f56: 0x3051, 0x1f57: 0x9455, -	0x1f58: 0x3059, 0x1f59: 0x3061, 0x1f5a: 0x3069, 0x1f5b: 0x3071, 0x1f5c: 0x3079, 0x1f5d: 0x3081, -	0x1f5e: 0x3089, 0x1f5f: 0x3091, 0x1f60: 0x3099, 0x1f61: 0x30a1, 0x1f62: 0x30a9, 0x1f63: 0x30b1, -	0x1f64: 0x9475, 0x1f65: 0x9495, 0x1f66: 0x94b5, 0x1f67: 0x30b9, 0x1f68: 0x30c1, 0x1f69: 0x30c9, -	0x1f6a: 0x30d1, 0x1f6b: 0x94d5, 0x1f6c: 0x30d9, 0x1f6d: 0x94f5, 0x1f6e: 0x30e1, 0x1f6f: 0x30e9, -	0x1f70: 0x9515, 0x1f71: 0x9535, 0x1f72: 0x30f1, 0x1f73: 0x30f9, 0x1f74: 0x3101, 0x1f75: 0x3109, -	0x1f76: 0x3111, 0x1f77: 0x3119, 0x1f78: 0x3121, 0x1f79: 0x3129, 0x1f7a: 0x3131, 0x1f7b: 0x3139, -	0x1f7c: 0x3141, 0x1f7d: 0x3149, 0x1f7e: 0x3151, 0x1f7f: 0x2040, -	// Block 0x7e, offset 0x1f80 -	0x1f80: 0x3159, 0x1f81: 0x3161, 0x1f82: 0x3169, 0x1f83: 0x3171, 0x1f84: 0x3179, 0x1f85: 0x9555, -	0x1f86: 0x3181, 0x1f87: 0x3189, 0x1f88: 0x3191, 0x1f89: 0x3199, 0x1f8a: 0x31a1, 0x1f8b: 0x9575, -	0x1f8c: 0x9595, 0x1f8d: 0x31a9, 0x1f8e: 0x31b1, 0x1f8f: 0x31b9, 0x1f90: 0x31c1, 0x1f91: 0x31c9, -	0x1f92: 0x31d1, 0x1f93: 0x95b5, 0x1f94: 0x31d9, 0x1f95: 0x31e1, 0x1f96: 0x31e9, 0x1f97: 0x31f1, -	0x1f98: 0x95d5, 0x1f99: 0x95f5, 0x1f9a: 0x31f9, 0x1f9b: 0x3201, 0x1f9c: 0x3209, 0x1f9d: 0x9615, -	0x1f9e: 0x3211, 0x1f9f: 0x3219, 0x1fa0: 0x684d, 0x1fa1: 0x9635, 0x1fa2: 0x3221, 0x1fa3: 0x3229, -	0x1fa4: 0x3231, 0x1fa5: 0x9655, 0x1fa6: 0x3239, 0x1fa7: 0x3241, 0x1fa8: 0x3249, 0x1fa9: 0x3251, -	0x1faa: 0x3259, 0x1fab: 0x3261, 0x1fac: 0x3269, 0x1fad: 0x9675, 0x1fae: 0x3271, 0x1faf: 0x3279, -	0x1fb0: 0x3281, 0x1fb1: 0x9695, 0x1fb2: 0x3289, 0x1fb3: 0x3291, 0x1fb4: 0x3299, 0x1fb5: 0x32a1, -	0x1fb6: 0x7b6d, 0x1fb7: 0x96b5, 0x1fb8: 0x32a9, 0x1fb9: 0x32b1, 0x1fba: 0x32b9, 0x1fbb: 0x96d5, -	0x1fbc: 0x32c1, 0x1fbd: 0x96f5, 0x1fbe: 0x32c9, 0x1fbf: 0x32c9, -	// Block 0x7f, offset 0x1fc0 -	0x1fc0: 0x32d1, 0x1fc1: 0x9715, 0x1fc2: 0x32d9, 0x1fc3: 0x32e1, 0x1fc4: 0x32e9, 0x1fc5: 0x32f1, -	0x1fc6: 0x32f9, 0x1fc7: 0x3301, 0x1fc8: 0x3309, 0x1fc9: 0x9735, 0x1fca: 0x3311, 0x1fcb: 0x3319, -	0x1fcc: 0x3321, 0x1fcd: 0x3329, 0x1fce: 0x3331, 0x1fcf: 0x3339, 0x1fd0: 0x9755, 0x1fd1: 0x3341, -	0x1fd2: 0x9775, 0x1fd3: 0x9795, 0x1fd4: 0x97b5, 0x1fd5: 0x3349, 0x1fd6: 0x3351, 0x1fd7: 0x3359, -	0x1fd8: 0x3361, 0x1fd9: 0x3369, 0x1fda: 0x3371, 0x1fdb: 0x3379, 0x1fdc: 0x3381, 0x1fdd: 0x97d5, -	0x1fde: 0x0040, 0x1fdf: 0x0040, 0x1fe0: 0x0040, 0x1fe1: 0x0040, 0x1fe2: 0x0040, 0x1fe3: 0x0040, -	0x1fe4: 0x0040, 0x1fe5: 0x0040, 0x1fe6: 0x0040, 0x1fe7: 0x0040, 0x1fe8: 0x0040, 0x1fe9: 0x0040, -	0x1fea: 0x0040, 0x1feb: 0x0040, 0x1fec: 0x0040, 0x1fed: 0x0040, 0x1fee: 0x0040, 0x1fef: 0x0040, -	0x1ff0: 0x0040, 0x1ff1: 0x0040, 0x1ff2: 0x0040, 0x1ff3: 0x0040, 0x1ff4: 0x0040, 0x1ff5: 0x0040, -	0x1ff6: 0x0040, 0x1ff7: 0x0040, 0x1ff8: 0x0040, 0x1ff9: 0x0040, 0x1ffa: 0x0040, 0x1ffb: 0x0040, -	0x1ffc: 0x0040, 0x1ffd: 0x0040, 0x1ffe: 0x0040, 0x1fff: 0x0040, -} - -// idnaIndex: 37 blocks, 2368 entries, 4736 bytes -// Block 0 is the zero block. -var idnaIndex = [2368]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x7e, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x7f, 0xca: 0x80, 0xcb: 0x07, 0xcc: 0x81, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x82, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x83, 0xd6: 0x84, 0xd7: 0x85, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x86, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x87, 0xde: 0x88, 0xdf: 0x89, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x08, 0xea: 0x09, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x0a, 0xee: 0x0b, 0xef: 0x0c, -	0xf0: 0x1e, 0xf1: 0x1f, 0xf2: 0x1f, 0xf3: 0x21, 0xf4: 0x22, -	// Block 0x4, offset 0x100 -	0x120: 0x8a, 0x121: 0x13, 0x122: 0x8b, 0x123: 0x8c, 0x124: 0x8d, 0x125: 0x14, 0x126: 0x15, 0x127: 0x16, -	0x128: 0x17, 0x129: 0x18, 0x12a: 0x19, 0x12b: 0x1a, 0x12c: 0x1b, 0x12d: 0x1c, 0x12e: 0x1d, 0x12f: 0x8e, -	0x130: 0x8f, 0x131: 0x1e, 0x132: 0x1f, 0x133: 0x20, 0x134: 0x90, 0x135: 0x21, 0x136: 0x91, 0x137: 0x92, -	0x138: 0x93, 0x139: 0x94, 0x13a: 0x22, 0x13b: 0x95, 0x13c: 0x96, 0x13d: 0x23, 0x13e: 0x24, 0x13f: 0x97, -	// Block 0x5, offset 0x140 -	0x140: 0x98, 0x141: 0x99, 0x142: 0x9a, 0x143: 0x9b, 0x144: 0x9c, 0x145: 0x9d, 0x146: 0x9e, 0x147: 0x9f, -	0x148: 0xa0, 0x149: 0xa1, 0x14a: 0xa2, 0x14b: 0xa3, 0x14c: 0xa4, 0x14d: 0xa5, 0x14e: 0xa6, 0x14f: 0xa7, -	0x150: 0xa8, 0x151: 0xa0, 0x152: 0xa0, 0x153: 0xa0, 0x154: 0xa0, 0x155: 0xa0, 0x156: 0xa0, 0x157: 0xa0, -	0x158: 0xa0, 0x159: 0xa9, 0x15a: 0xaa, 0x15b: 0xab, 0x15c: 0xac, 0x15d: 0xad, 0x15e: 0xae, 0x15f: 0xaf, -	0x160: 0xb0, 0x161: 0xb1, 0x162: 0xb2, 0x163: 0xb3, 0x164: 0xb4, 0x165: 0xb5, 0x166: 0xb6, 0x167: 0xb7, -	0x168: 0xb8, 0x169: 0xb9, 0x16a: 0xba, 0x16b: 0xbb, 0x16c: 0xbc, 0x16d: 0xbd, 0x16e: 0xbe, 0x16f: 0xbf, -	0x170: 0xc0, 0x171: 0xc1, 0x172: 0xc2, 0x173: 0xc3, 0x174: 0x25, 0x175: 0x26, 0x176: 0x27, 0x177: 0xc4, -	0x178: 0x28, 0x179: 0x28, 0x17a: 0x29, 0x17b: 0x28, 0x17c: 0xc5, 0x17d: 0x2a, 0x17e: 0x2b, 0x17f: 0x2c, -	// Block 0x6, offset 0x180 -	0x180: 0x2d, 0x181: 0x2e, 0x182: 0x2f, 0x183: 0xc6, 0x184: 0x30, 0x185: 0x31, 0x186: 0xc7, 0x187: 0x9c, -	0x188: 0xc8, 0x189: 0xc9, 0x18a: 0x9c, 0x18b: 0x9c, 0x18c: 0xca, 0x18d: 0x9c, 0x18e: 0x9c, 0x18f: 0x9c, -	0x190: 0xcb, 0x191: 0x32, 0x192: 0x33, 0x193: 0x34, 0x194: 0x9c, 0x195: 0x9c, 0x196: 0x9c, 0x197: 0x9c, -	0x198: 0x9c, 0x199: 0x9c, 0x19a: 0x9c, 0x19b: 0x9c, 0x19c: 0x9c, 0x19d: 0x9c, 0x19e: 0x9c, 0x19f: 0x9c, -	0x1a0: 0x9c, 0x1a1: 0x9c, 0x1a2: 0x9c, 0x1a3: 0x9c, 0x1a4: 0x9c, 0x1a5: 0x9c, 0x1a6: 0x9c, 0x1a7: 0x9c, -	0x1a8: 0xcc, 0x1a9: 0xcd, 0x1aa: 0x9c, 0x1ab: 0xce, 0x1ac: 0x9c, 0x1ad: 0xcf, 0x1ae: 0xd0, 0x1af: 0x9c, -	0x1b0: 0xd1, 0x1b1: 0x35, 0x1b2: 0x28, 0x1b3: 0x36, 0x1b4: 0xd2, 0x1b5: 0xd3, 0x1b6: 0xd4, 0x1b7: 0xd5, -	0x1b8: 0xd6, 0x1b9: 0xd7, 0x1ba: 0xd8, 0x1bb: 0xd9, 0x1bc: 0xda, 0x1bd: 0xdb, 0x1be: 0xdc, 0x1bf: 0x37, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x38, 0x1c1: 0xdd, 0x1c2: 0xde, 0x1c3: 0xdf, 0x1c4: 0xe0, 0x1c5: 0x39, 0x1c6: 0x3a, 0x1c7: 0xe1, -	0x1c8: 0xe2, 0x1c9: 0x3b, 0x1ca: 0x3c, 0x1cb: 0x3d, 0x1cc: 0xe3, 0x1cd: 0xe4, 0x1ce: 0x3e, 0x1cf: 0x3f, -	0x1d0: 0xa0, 0x1d1: 0xa0, 0x1d2: 0xa0, 0x1d3: 0xa0, 0x1d4: 0xa0, 0x1d5: 0xa0, 0x1d6: 0xa0, 0x1d7: 0xa0, -	0x1d8: 0xa0, 0x1d9: 0xa0, 0x1da: 0xa0, 0x1db: 0xa0, 0x1dc: 0xa0, 0x1dd: 0xa0, 0x1de: 0xa0, 0x1df: 0xa0, -	0x1e0: 0xa0, 0x1e1: 0xa0, 0x1e2: 0xa0, 0x1e3: 0xa0, 0x1e4: 0xa0, 0x1e5: 0xa0, 0x1e6: 0xa0, 0x1e7: 0xa0, -	0x1e8: 0xa0, 0x1e9: 0xa0, 0x1ea: 0xa0, 0x1eb: 0xa0, 0x1ec: 0xa0, 0x1ed: 0xa0, 0x1ee: 0xa0, 0x1ef: 0xa0, -	0x1f0: 0xa0, 0x1f1: 0xa0, 0x1f2: 0xa0, 0x1f3: 0xa0, 0x1f4: 0xa0, 0x1f5: 0xa0, 0x1f6: 0xa0, 0x1f7: 0xa0, -	0x1f8: 0xa0, 0x1f9: 0xa0, 0x1fa: 0xa0, 0x1fb: 0xa0, 0x1fc: 0xa0, 0x1fd: 0xa0, 0x1fe: 0xa0, 0x1ff: 0xa0, -	// Block 0x8, offset 0x200 -	0x200: 0xa0, 0x201: 0xa0, 0x202: 0xa0, 0x203: 0xa0, 0x204: 0xa0, 0x205: 0xa0, 0x206: 0xa0, 0x207: 0xa0, -	0x208: 0xa0, 0x209: 0xa0, 0x20a: 0xa0, 0x20b: 0xa0, 0x20c: 0xa0, 0x20d: 0xa0, 0x20e: 0xa0, 0x20f: 0xa0, -	0x210: 0xa0, 0x211: 0xa0, 0x212: 0xa0, 0x213: 0xa0, 0x214: 0xa0, 0x215: 0xa0, 0x216: 0xa0, 0x217: 0xa0, -	0x218: 0xa0, 0x219: 0xa0, 0x21a: 0xa0, 0x21b: 0xa0, 0x21c: 0xa0, 0x21d: 0xa0, 0x21e: 0xa0, 0x21f: 0xa0, -	0x220: 0xa0, 0x221: 0xa0, 0x222: 0xa0, 0x223: 0xa0, 0x224: 0xa0, 0x225: 0xa0, 0x226: 0xa0, 0x227: 0xa0, -	0x228: 0xa0, 0x229: 0xa0, 0x22a: 0xa0, 0x22b: 0xa0, 0x22c: 0xa0, 0x22d: 0xa0, 0x22e: 0xa0, 0x22f: 0xa0, -	0x230: 0xa0, 0x231: 0xa0, 0x232: 0xa0, 0x233: 0xa0, 0x234: 0xa0, 0x235: 0xa0, 0x236: 0xa0, 0x237: 0x9c, -	0x238: 0xa0, 0x239: 0xa0, 0x23a: 0xa0, 0x23b: 0xa0, 0x23c: 0xa0, 0x23d: 0xa0, 0x23e: 0xa0, 0x23f: 0xa0, -	// Block 0x9, offset 0x240 -	0x240: 0xa0, 0x241: 0xa0, 0x242: 0xa0, 0x243: 0xa0, 0x244: 0xa0, 0x245: 0xa0, 0x246: 0xa0, 0x247: 0xa0, -	0x248: 0xa0, 0x249: 0xa0, 0x24a: 0xa0, 0x24b: 0xa0, 0x24c: 0xa0, 0x24d: 0xa0, 0x24e: 0xa0, 0x24f: 0xa0, -	0x250: 0xa0, 0x251: 0xa0, 0x252: 0xa0, 0x253: 0xa0, 0x254: 0xa0, 0x255: 0xa0, 0x256: 0xa0, 0x257: 0xa0, -	0x258: 0xa0, 0x259: 0xa0, 0x25a: 0xa0, 0x25b: 0xa0, 0x25c: 0xa0, 0x25d: 0xa0, 0x25e: 0xa0, 0x25f: 0xa0, -	0x260: 0xa0, 0x261: 0xa0, 0x262: 0xa0, 0x263: 0xa0, 0x264: 0xa0, 0x265: 0xa0, 0x266: 0xa0, 0x267: 0xa0, -	0x268: 0xa0, 0x269: 0xa0, 0x26a: 0xa0, 0x26b: 0xa0, 0x26c: 0xa0, 0x26d: 0xa0, 0x26e: 0xa0, 0x26f: 0xa0, -	0x270: 0xa0, 0x271: 0xa0, 0x272: 0xa0, 0x273: 0xa0, 0x274: 0xa0, 0x275: 0xa0, 0x276: 0xa0, 0x277: 0xa0, -	0x278: 0xa0, 0x279: 0xa0, 0x27a: 0xa0, 0x27b: 0xa0, 0x27c: 0xa0, 0x27d: 0xa0, 0x27e: 0xa0, 0x27f: 0xa0, -	// Block 0xa, offset 0x280 -	0x280: 0xa0, 0x281: 0xa0, 0x282: 0xa0, 0x283: 0xa0, 0x284: 0xa0, 0x285: 0xa0, 0x286: 0xa0, 0x287: 0xa0, -	0x288: 0xa0, 0x289: 0xa0, 0x28a: 0xa0, 0x28b: 0xa0, 0x28c: 0xa0, 0x28d: 0xa0, 0x28e: 0xa0, 0x28f: 0xa0, -	0x290: 0xa0, 0x291: 0xa0, 0x292: 0xa0, 0x293: 0xa0, 0x294: 0xa0, 0x295: 0xa0, 0x296: 0xa0, 0x297: 0xa0, -	0x298: 0xa0, 0x299: 0xa0, 0x29a: 0xa0, 0x29b: 0xa0, 0x29c: 0xa0, 0x29d: 0xa0, 0x29e: 0xa0, 0x29f: 0xa0, -	0x2a0: 0xa0, 0x2a1: 0xa0, 0x2a2: 0xa0, 0x2a3: 0xa0, 0x2a4: 0xa0, 0x2a5: 0xa0, 0x2a6: 0xa0, 0x2a7: 0xa0, -	0x2a8: 0xa0, 0x2a9: 0xa0, 0x2aa: 0xa0, 0x2ab: 0xa0, 0x2ac: 0xa0, 0x2ad: 0xa0, 0x2ae: 0xa0, 0x2af: 0xa0, -	0x2b0: 0xa0, 0x2b1: 0xa0, 0x2b2: 0xa0, 0x2b3: 0xa0, 0x2b4: 0xa0, 0x2b5: 0xa0, 0x2b6: 0xa0, 0x2b7: 0xa0, -	0x2b8: 0xa0, 0x2b9: 0xa0, 0x2ba: 0xa0, 0x2bb: 0xa0, 0x2bc: 0xa0, 0x2bd: 0xa0, 0x2be: 0xa0, 0x2bf: 0xe5, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0xa0, 0x2c1: 0xa0, 0x2c2: 0xa0, 0x2c3: 0xa0, 0x2c4: 0xa0, 0x2c5: 0xa0, 0x2c6: 0xa0, 0x2c7: 0xa0, -	0x2c8: 0xa0, 0x2c9: 0xa0, 0x2ca: 0xa0, 0x2cb: 0xa0, 0x2cc: 0xa0, 0x2cd: 0xa0, 0x2ce: 0xa0, 0x2cf: 0xa0, -	0x2d0: 0xa0, 0x2d1: 0xa0, 0x2d2: 0xe6, 0x2d3: 0xe7, 0x2d4: 0xa0, 0x2d5: 0xa0, 0x2d6: 0xa0, 0x2d7: 0xa0, -	0x2d8: 0xe8, 0x2d9: 0x40, 0x2da: 0x41, 0x2db: 0xe9, 0x2dc: 0x42, 0x2dd: 0x43, 0x2de: 0x44, 0x2df: 0xea, -	0x2e0: 0xeb, 0x2e1: 0xec, 0x2e2: 0xed, 0x2e3: 0xee, 0x2e4: 0xef, 0x2e5: 0xf0, 0x2e6: 0xf1, 0x2e7: 0xf2, -	0x2e8: 0xf3, 0x2e9: 0xf4, 0x2ea: 0xf5, 0x2eb: 0xf6, 0x2ec: 0xf7, 0x2ed: 0xf8, 0x2ee: 0xf9, 0x2ef: 0xfa, -	0x2f0: 0xa0, 0x2f1: 0xa0, 0x2f2: 0xa0, 0x2f3: 0xa0, 0x2f4: 0xa0, 0x2f5: 0xa0, 0x2f6: 0xa0, 0x2f7: 0xa0, -	0x2f8: 0xa0, 0x2f9: 0xa0, 0x2fa: 0xa0, 0x2fb: 0xa0, 0x2fc: 0xa0, 0x2fd: 0xa0, 0x2fe: 0xa0, 0x2ff: 0xa0, -	// Block 0xc, offset 0x300 -	0x300: 0xa0, 0x301: 0xa0, 0x302: 0xa0, 0x303: 0xa0, 0x304: 0xa0, 0x305: 0xa0, 0x306: 0xa0, 0x307: 0xa0, -	0x308: 0xa0, 0x309: 0xa0, 0x30a: 0xa0, 0x30b: 0xa0, 0x30c: 0xa0, 0x30d: 0xa0, 0x30e: 0xa0, 0x30f: 0xa0, -	0x310: 0xa0, 0x311: 0xa0, 0x312: 0xa0, 0x313: 0xa0, 0x314: 0xa0, 0x315: 0xa0, 0x316: 0xa0, 0x317: 0xa0, -	0x318: 0xa0, 0x319: 0xa0, 0x31a: 0xa0, 0x31b: 0xa0, 0x31c: 0xa0, 0x31d: 0xa0, 0x31e: 0xfb, 0x31f: 0xfc, -	// Block 0xd, offset 0x340 -	0x340: 0xfd, 0x341: 0xfd, 0x342: 0xfd, 0x343: 0xfd, 0x344: 0xfd, 0x345: 0xfd, 0x346: 0xfd, 0x347: 0xfd, -	0x348: 0xfd, 0x349: 0xfd, 0x34a: 0xfd, 0x34b: 0xfd, 0x34c: 0xfd, 0x34d: 0xfd, 0x34e: 0xfd, 0x34f: 0xfd, -	0x350: 0xfd, 0x351: 0xfd, 0x352: 0xfd, 0x353: 0xfd, 0x354: 0xfd, 0x355: 0xfd, 0x356: 0xfd, 0x357: 0xfd, -	0x358: 0xfd, 0x359: 0xfd, 0x35a: 0xfd, 0x35b: 0xfd, 0x35c: 0xfd, 0x35d: 0xfd, 0x35e: 0xfd, 0x35f: 0xfd, -	0x360: 0xfd, 0x361: 0xfd, 0x362: 0xfd, 0x363: 0xfd, 0x364: 0xfd, 0x365: 0xfd, 0x366: 0xfd, 0x367: 0xfd, -	0x368: 0xfd, 0x369: 0xfd, 0x36a: 0xfd, 0x36b: 0xfd, 0x36c: 0xfd, 0x36d: 0xfd, 0x36e: 0xfd, 0x36f: 0xfd, -	0x370: 0xfd, 0x371: 0xfd, 0x372: 0xfd, 0x373: 0xfd, 0x374: 0xfd, 0x375: 0xfd, 0x376: 0xfd, 0x377: 0xfd, -	0x378: 0xfd, 0x379: 0xfd, 0x37a: 0xfd, 0x37b: 0xfd, 0x37c: 0xfd, 0x37d: 0xfd, 0x37e: 0xfd, 0x37f: 0xfd, -	// Block 0xe, offset 0x380 -	0x380: 0xfd, 0x381: 0xfd, 0x382: 0xfd, 0x383: 0xfd, 0x384: 0xfd, 0x385: 0xfd, 0x386: 0xfd, 0x387: 0xfd, -	0x388: 0xfd, 0x389: 0xfd, 0x38a: 0xfd, 0x38b: 0xfd, 0x38c: 0xfd, 0x38d: 0xfd, 0x38e: 0xfd, 0x38f: 0xfd, -	0x390: 0xfd, 0x391: 0xfd, 0x392: 0xfd, 0x393: 0xfd, 0x394: 0xfd, 0x395: 0xfd, 0x396: 0xfd, 0x397: 0xfd, -	0x398: 0xfd, 0x399: 0xfd, 0x39a: 0xfd, 0x39b: 0xfd, 0x39c: 0xfd, 0x39d: 0xfd, 0x39e: 0xfd, 0x39f: 0xfd, -	0x3a0: 0xfd, 0x3a1: 0xfd, 0x3a2: 0xfd, 0x3a3: 0xfd, 0x3a4: 0xfe, 0x3a5: 0xff, 0x3a6: 0x100, 0x3a7: 0x101, -	0x3a8: 0x45, 0x3a9: 0x102, 0x3aa: 0x103, 0x3ab: 0x46, 0x3ac: 0x47, 0x3ad: 0x48, 0x3ae: 0x49, 0x3af: 0x4a, -	0x3b0: 0x104, 0x3b1: 0x4b, 0x3b2: 0x4c, 0x3b3: 0x4d, 0x3b4: 0x4e, 0x3b5: 0x4f, 0x3b6: 0x105, 0x3b7: 0x50, -	0x3b8: 0x51, 0x3b9: 0x52, 0x3ba: 0x53, 0x3bb: 0x54, 0x3bc: 0x55, 0x3bd: 0x56, 0x3be: 0x57, 0x3bf: 0x58, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x106, 0x3c1: 0x107, 0x3c2: 0xa0, 0x3c3: 0x108, 0x3c4: 0x109, 0x3c5: 0x9c, 0x3c6: 0x10a, 0x3c7: 0x10b, -	0x3c8: 0xfd, 0x3c9: 0xfd, 0x3ca: 0x10c, 0x3cb: 0x10d, 0x3cc: 0x10e, 0x3cd: 0x10f, 0x3ce: 0x110, 0x3cf: 0x111, -	0x3d0: 0x112, 0x3d1: 0xa0, 0x3d2: 0x113, 0x3d3: 0x114, 0x3d4: 0x115, 0x3d5: 0x116, 0x3d6: 0xfd, 0x3d7: 0xfd, -	0x3d8: 0xa0, 0x3d9: 0xa0, 0x3da: 0xa0, 0x3db: 0xa0, 0x3dc: 0x117, 0x3dd: 0x118, 0x3de: 0xfd, 0x3df: 0xfd, -	0x3e0: 0x119, 0x3e1: 0x11a, 0x3e2: 0x11b, 0x3e3: 0x11c, 0x3e4: 0x11d, 0x3e5: 0xfd, 0x3e6: 0x11e, 0x3e7: 0x11f, -	0x3e8: 0x120, 0x3e9: 0x121, 0x3ea: 0x122, 0x3eb: 0x59, 0x3ec: 0x123, 0x3ed: 0x124, 0x3ee: 0x5a, 0x3ef: 0xfd, -	0x3f0: 0x125, 0x3f1: 0x126, 0x3f2: 0x127, 0x3f3: 0x128, 0x3f4: 0x129, 0x3f5: 0xfd, 0x3f6: 0xfd, 0x3f7: 0xfd, -	0x3f8: 0xfd, 0x3f9: 0x12a, 0x3fa: 0x12b, 0x3fb: 0xfd, 0x3fc: 0x12c, 0x3fd: 0x12d, 0x3fe: 0x12e, 0x3ff: 0x12f, -	// Block 0x10, offset 0x400 -	0x400: 0x130, 0x401: 0x131, 0x402: 0x132, 0x403: 0x133, 0x404: 0x134, 0x405: 0x135, 0x406: 0x136, 0x407: 0x137, -	0x408: 0x138, 0x409: 0xfd, 0x40a: 0x139, 0x40b: 0x13a, 0x40c: 0x5b, 0x40d: 0x5c, 0x40e: 0xfd, 0x40f: 0xfd, -	0x410: 0x13b, 0x411: 0x13c, 0x412: 0x13d, 0x413: 0x13e, 0x414: 0xfd, 0x415: 0xfd, 0x416: 0x13f, 0x417: 0x140, -	0x418: 0x141, 0x419: 0x142, 0x41a: 0x143, 0x41b: 0x144, 0x41c: 0x145, 0x41d: 0xfd, 0x41e: 0xfd, 0x41f: 0xfd, -	0x420: 0x146, 0x421: 0xfd, 0x422: 0x147, 0x423: 0x148, 0x424: 0x5d, 0x425: 0x149, 0x426: 0x14a, 0x427: 0x14b, -	0x428: 0x14c, 0x429: 0x14d, 0x42a: 0x14e, 0x42b: 0x14f, 0x42c: 0xfd, 0x42d: 0xfd, 0x42e: 0xfd, 0x42f: 0xfd, -	0x430: 0x150, 0x431: 0x151, 0x432: 0x152, 0x433: 0xfd, 0x434: 0x153, 0x435: 0x154, 0x436: 0x155, 0x437: 0xfd, -	0x438: 0xfd, 0x439: 0xfd, 0x43a: 0xfd, 0x43b: 0x156, 0x43c: 0xfd, 0x43d: 0xfd, 0x43e: 0x157, 0x43f: 0x158, -	// Block 0x11, offset 0x440 -	0x440: 0xa0, 0x441: 0xa0, 0x442: 0xa0, 0x443: 0xa0, 0x444: 0xa0, 0x445: 0xa0, 0x446: 0xa0, 0x447: 0xa0, -	0x448: 0xa0, 0x449: 0xa0, 0x44a: 0xa0, 0x44b: 0xa0, 0x44c: 0xa0, 0x44d: 0xa0, 0x44e: 0x159, 0x44f: 0xfd, -	0x450: 0x9c, 0x451: 0x15a, 0x452: 0xa0, 0x453: 0xa0, 0x454: 0xa0, 0x455: 0x15b, 0x456: 0xfd, 0x457: 0xfd, -	0x458: 0xfd, 0x459: 0xfd, 0x45a: 0xfd, 0x45b: 0xfd, 0x45c: 0xfd, 0x45d: 0xfd, 0x45e: 0xfd, 0x45f: 0xfd, -	0x460: 0xfd, 0x461: 0xfd, 0x462: 0xfd, 0x463: 0xfd, 0x464: 0xfd, 0x465: 0xfd, 0x466: 0xfd, 0x467: 0xfd, -	0x468: 0xfd, 0x469: 0xfd, 0x46a: 0xfd, 0x46b: 0xfd, 0x46c: 0xfd, 0x46d: 0xfd, 0x46e: 0xfd, 0x46f: 0xfd, -	0x470: 0xfd, 0x471: 0xfd, 0x472: 0xfd, 0x473: 0xfd, 0x474: 0xfd, 0x475: 0xfd, 0x476: 0xfd, 0x477: 0xfd, -	0x478: 0xfd, 0x479: 0xfd, 0x47a: 0xfd, 0x47b: 0xfd, 0x47c: 0xfd, 0x47d: 0xfd, 0x47e: 0xfd, 0x47f: 0xfd, -	// Block 0x12, offset 0x480 -	0x480: 0xa0, 0x481: 0xa0, 0x482: 0xa0, 0x483: 0xa0, 0x484: 0xa0, 0x485: 0xa0, 0x486: 0xa0, 0x487: 0xa0, -	0x488: 0xa0, 0x489: 0xa0, 0x48a: 0xa0, 0x48b: 0xa0, 0x48c: 0xa0, 0x48d: 0xa0, 0x48e: 0xa0, 0x48f: 0xa0, -	0x490: 0x15c, 0x491: 0xfd, 0x492: 0xfd, 0x493: 0xfd, 0x494: 0xfd, 0x495: 0xfd, 0x496: 0xfd, 0x497: 0xfd, -	0x498: 0xfd, 0x499: 0xfd, 0x49a: 0xfd, 0x49b: 0xfd, 0x49c: 0xfd, 0x49d: 0xfd, 0x49e: 0xfd, 0x49f: 0xfd, -	0x4a0: 0xfd, 0x4a1: 0xfd, 0x4a2: 0xfd, 0x4a3: 0xfd, 0x4a4: 0xfd, 0x4a5: 0xfd, 0x4a6: 0xfd, 0x4a7: 0xfd, -	0x4a8: 0xfd, 0x4a9: 0xfd, 0x4aa: 0xfd, 0x4ab: 0xfd, 0x4ac: 0xfd, 0x4ad: 0xfd, 0x4ae: 0xfd, 0x4af: 0xfd, -	0x4b0: 0xfd, 0x4b1: 0xfd, 0x4b2: 0xfd, 0x4b3: 0xfd, 0x4b4: 0xfd, 0x4b5: 0xfd, 0x4b6: 0xfd, 0x4b7: 0xfd, -	0x4b8: 0xfd, 0x4b9: 0xfd, 0x4ba: 0xfd, 0x4bb: 0xfd, 0x4bc: 0xfd, 0x4bd: 0xfd, 0x4be: 0xfd, 0x4bf: 0xfd, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0xfd, 0x4c1: 0xfd, 0x4c2: 0xfd, 0x4c3: 0xfd, 0x4c4: 0xfd, 0x4c5: 0xfd, 0x4c6: 0xfd, 0x4c7: 0xfd, -	0x4c8: 0xfd, 0x4c9: 0xfd, 0x4ca: 0xfd, 0x4cb: 0xfd, 0x4cc: 0xfd, 0x4cd: 0xfd, 0x4ce: 0xfd, 0x4cf: 0xfd, -	0x4d0: 0xa0, 0x4d1: 0xa0, 0x4d2: 0xa0, 0x4d3: 0xa0, 0x4d4: 0xa0, 0x4d5: 0xa0, 0x4d6: 0xa0, 0x4d7: 0xa0, -	0x4d8: 0xa0, 0x4d9: 0x15d, 0x4da: 0xfd, 0x4db: 0xfd, 0x4dc: 0xfd, 0x4dd: 0xfd, 0x4de: 0xfd, 0x4df: 0xfd, -	0x4e0: 0xfd, 0x4e1: 0xfd, 0x4e2: 0xfd, 0x4e3: 0xfd, 0x4e4: 0xfd, 0x4e5: 0xfd, 0x4e6: 0xfd, 0x4e7: 0xfd, -	0x4e8: 0xfd, 0x4e9: 0xfd, 0x4ea: 0xfd, 0x4eb: 0xfd, 0x4ec: 0xfd, 0x4ed: 0xfd, 0x4ee: 0xfd, 0x4ef: 0xfd, -	0x4f0: 0xfd, 0x4f1: 0xfd, 0x4f2: 0xfd, 0x4f3: 0xfd, 0x4f4: 0xfd, 0x4f5: 0xfd, 0x4f6: 0xfd, 0x4f7: 0xfd, -	0x4f8: 0xfd, 0x4f9: 0xfd, 0x4fa: 0xfd, 0x4fb: 0xfd, 0x4fc: 0xfd, 0x4fd: 0xfd, 0x4fe: 0xfd, 0x4ff: 0xfd, -	// Block 0x14, offset 0x500 -	0x500: 0xfd, 0x501: 0xfd, 0x502: 0xfd, 0x503: 0xfd, 0x504: 0xfd, 0x505: 0xfd, 0x506: 0xfd, 0x507: 0xfd, -	0x508: 0xfd, 0x509: 0xfd, 0x50a: 0xfd, 0x50b: 0xfd, 0x50c: 0xfd, 0x50d: 0xfd, 0x50e: 0xfd, 0x50f: 0xfd, -	0x510: 0xfd, 0x511: 0xfd, 0x512: 0xfd, 0x513: 0xfd, 0x514: 0xfd, 0x515: 0xfd, 0x516: 0xfd, 0x517: 0xfd, -	0x518: 0xfd, 0x519: 0xfd, 0x51a: 0xfd, 0x51b: 0xfd, 0x51c: 0xfd, 0x51d: 0xfd, 0x51e: 0xfd, 0x51f: 0xfd, -	0x520: 0xa0, 0x521: 0xa0, 0x522: 0xa0, 0x523: 0xa0, 0x524: 0xa0, 0x525: 0xa0, 0x526: 0xa0, 0x527: 0xa0, -	0x528: 0x14f, 0x529: 0x15e, 0x52a: 0xfd, 0x52b: 0x15f, 0x52c: 0x160, 0x52d: 0x161, 0x52e: 0x162, 0x52f: 0xfd, -	0x530: 0xfd, 0x531: 0xfd, 0x532: 0xfd, 0x533: 0xfd, 0x534: 0xfd, 0x535: 0xfd, 0x536: 0xfd, 0x537: 0xfd, -	0x538: 0xfd, 0x539: 0x163, 0x53a: 0x164, 0x53b: 0xfd, 0x53c: 0xa0, 0x53d: 0x165, 0x53e: 0x166, 0x53f: 0x167, -	// Block 0x15, offset 0x540 -	0x540: 0xa0, 0x541: 0xa0, 0x542: 0xa0, 0x543: 0xa0, 0x544: 0xa0, 0x545: 0xa0, 0x546: 0xa0, 0x547: 0xa0, -	0x548: 0xa0, 0x549: 0xa0, 0x54a: 0xa0, 0x54b: 0xa0, 0x54c: 0xa0, 0x54d: 0xa0, 0x54e: 0xa0, 0x54f: 0xa0, -	0x550: 0xa0, 0x551: 0xa0, 0x552: 0xa0, 0x553: 0xa0, 0x554: 0xa0, 0x555: 0xa0, 0x556: 0xa0, 0x557: 0xa0, -	0x558: 0xa0, 0x559: 0xa0, 0x55a: 0xa0, 0x55b: 0xa0, 0x55c: 0xa0, 0x55d: 0xa0, 0x55e: 0xa0, 0x55f: 0x168, -	0x560: 0xa0, 0x561: 0xa0, 0x562: 0xa0, 0x563: 0xa0, 0x564: 0xa0, 0x565: 0xa0, 0x566: 0xa0, 0x567: 0xa0, -	0x568: 0xa0, 0x569: 0xa0, 0x56a: 0xa0, 0x56b: 0xa0, 0x56c: 0xa0, 0x56d: 0xa0, 0x56e: 0xa0, 0x56f: 0xa0, -	0x570: 0xa0, 0x571: 0xa0, 0x572: 0xa0, 0x573: 0x169, 0x574: 0x16a, 0x575: 0xfd, 0x576: 0xfd, 0x577: 0xfd, -	0x578: 0xfd, 0x579: 0xfd, 0x57a: 0xfd, 0x57b: 0xfd, 0x57c: 0xfd, 0x57d: 0xfd, 0x57e: 0xfd, 0x57f: 0xfd, -	// Block 0x16, offset 0x580 -	0x580: 0xa0, 0x581: 0xa0, 0x582: 0xa0, 0x583: 0xa0, 0x584: 0x16b, 0x585: 0x16c, 0x586: 0xa0, 0x587: 0xa0, -	0x588: 0xa0, 0x589: 0xa0, 0x58a: 0xa0, 0x58b: 0x16d, 0x58c: 0xfd, 0x58d: 0xfd, 0x58e: 0xfd, 0x58f: 0xfd, -	0x590: 0xfd, 0x591: 0xfd, 0x592: 0xfd, 0x593: 0xfd, 0x594: 0xfd, 0x595: 0xfd, 0x596: 0xfd, 0x597: 0xfd, -	0x598: 0xfd, 0x599: 0xfd, 0x59a: 0xfd, 0x59b: 0xfd, 0x59c: 0xfd, 0x59d: 0xfd, 0x59e: 0xfd, 0x59f: 0xfd, -	0x5a0: 0xfd, 0x5a1: 0xfd, 0x5a2: 0xfd, 0x5a3: 0xfd, 0x5a4: 0xfd, 0x5a5: 0xfd, 0x5a6: 0xfd, 0x5a7: 0xfd, -	0x5a8: 0xfd, 0x5a9: 0xfd, 0x5aa: 0xfd, 0x5ab: 0xfd, 0x5ac: 0xfd, 0x5ad: 0xfd, 0x5ae: 0xfd, 0x5af: 0xfd, -	0x5b0: 0xa0, 0x5b1: 0x16e, 0x5b2: 0x16f, 0x5b3: 0xfd, 0x5b4: 0xfd, 0x5b5: 0xfd, 0x5b6: 0xfd, 0x5b7: 0xfd, -	0x5b8: 0xfd, 0x5b9: 0xfd, 0x5ba: 0xfd, 0x5bb: 0xfd, 0x5bc: 0xfd, 0x5bd: 0xfd, 0x5be: 0xfd, 0x5bf: 0xfd, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x9c, 0x5c1: 0x9c, 0x5c2: 0x9c, 0x5c3: 0x170, 0x5c4: 0x171, 0x5c5: 0x172, 0x5c6: 0x173, 0x5c7: 0x174, -	0x5c8: 0x9c, 0x5c9: 0x175, 0x5ca: 0xfd, 0x5cb: 0x176, 0x5cc: 0x9c, 0x5cd: 0x177, 0x5ce: 0xfd, 0x5cf: 0xfd, -	0x5d0: 0x5e, 0x5d1: 0x5f, 0x5d2: 0x60, 0x5d3: 0x61, 0x5d4: 0x62, 0x5d5: 0x63, 0x5d6: 0x64, 0x5d7: 0x65, -	0x5d8: 0x66, 0x5d9: 0x67, 0x5da: 0x68, 0x5db: 0x69, 0x5dc: 0x6a, 0x5dd: 0x6b, 0x5de: 0x6c, 0x5df: 0x6d, -	0x5e0: 0x9c, 0x5e1: 0x9c, 0x5e2: 0x9c, 0x5e3: 0x9c, 0x5e4: 0x9c, 0x5e5: 0x9c, 0x5e6: 0x9c, 0x5e7: 0x9c, -	0x5e8: 0x178, 0x5e9: 0x179, 0x5ea: 0x17a, 0x5eb: 0xfd, 0x5ec: 0xfd, 0x5ed: 0xfd, 0x5ee: 0xfd, 0x5ef: 0xfd, -	0x5f0: 0xfd, 0x5f1: 0xfd, 0x5f2: 0xfd, 0x5f3: 0xfd, 0x5f4: 0xfd, 0x5f5: 0xfd, 0x5f6: 0xfd, 0x5f7: 0xfd, -	0x5f8: 0xfd, 0x5f9: 0xfd, 0x5fa: 0xfd, 0x5fb: 0xfd, 0x5fc: 0xfd, 0x5fd: 0xfd, 0x5fe: 0xfd, 0x5ff: 0xfd, -	// Block 0x18, offset 0x600 -	0x600: 0x17b, 0x601: 0xfd, 0x602: 0xfd, 0x603: 0xfd, 0x604: 0x17c, 0x605: 0x17d, 0x606: 0xfd, 0x607: 0xfd, -	0x608: 0xfd, 0x609: 0xfd, 0x60a: 0xfd, 0x60b: 0x17e, 0x60c: 0xfd, 0x60d: 0xfd, 0x60e: 0xfd, 0x60f: 0xfd, -	0x610: 0xfd, 0x611: 0xfd, 0x612: 0xfd, 0x613: 0xfd, 0x614: 0xfd, 0x615: 0xfd, 0x616: 0xfd, 0x617: 0xfd, -	0x618: 0xfd, 0x619: 0xfd, 0x61a: 0xfd, 0x61b: 0xfd, 0x61c: 0xfd, 0x61d: 0xfd, 0x61e: 0xfd, 0x61f: 0xfd, -	0x620: 0x125, 0x621: 0x125, 0x622: 0x125, 0x623: 0x17f, 0x624: 0x6e, 0x625: 0x180, 0x626: 0xfd, 0x627: 0xfd, -	0x628: 0xfd, 0x629: 0xfd, 0x62a: 0xfd, 0x62b: 0xfd, 0x62c: 0xfd, 0x62d: 0xfd, 0x62e: 0xfd, 0x62f: 0xfd, -	0x630: 0xfd, 0x631: 0x181, 0x632: 0x182, 0x633: 0xfd, 0x634: 0x183, 0x635: 0xfd, 0x636: 0xfd, 0x637: 0xfd, -	0x638: 0x6f, 0x639: 0x70, 0x63a: 0x71, 0x63b: 0x184, 0x63c: 0xfd, 0x63d: 0xfd, 0x63e: 0xfd, 0x63f: 0xfd, -	// Block 0x19, offset 0x640 -	0x640: 0x185, 0x641: 0x9c, 0x642: 0x186, 0x643: 0x187, 0x644: 0x72, 0x645: 0x73, 0x646: 0x188, 0x647: 0x189, -	0x648: 0x74, 0x649: 0x18a, 0x64a: 0xfd, 0x64b: 0xfd, 0x64c: 0x9c, 0x64d: 0x9c, 0x64e: 0x9c, 0x64f: 0x9c, -	0x650: 0x9c, 0x651: 0x9c, 0x652: 0x9c, 0x653: 0x9c, 0x654: 0x9c, 0x655: 0x9c, 0x656: 0x9c, 0x657: 0x9c, -	0x658: 0x9c, 0x659: 0x9c, 0x65a: 0x9c, 0x65b: 0x18b, 0x65c: 0x9c, 0x65d: 0x18c, 0x65e: 0x9c, 0x65f: 0x18d, -	0x660: 0x18e, 0x661: 0x18f, 0x662: 0x190, 0x663: 0xfd, 0x664: 0x9c, 0x665: 0x191, 0x666: 0x9c, 0x667: 0x192, -	0x668: 0x9c, 0x669: 0x193, 0x66a: 0x194, 0x66b: 0x195, 0x66c: 0x9c, 0x66d: 0x9c, 0x66e: 0x196, 0x66f: 0x197, -	0x670: 0xfd, 0x671: 0xfd, 0x672: 0xfd, 0x673: 0xfd, 0x674: 0xfd, 0x675: 0xfd, 0x676: 0xfd, 0x677: 0xfd, -	0x678: 0xfd, 0x679: 0xfd, 0x67a: 0xfd, 0x67b: 0xfd, 0x67c: 0xfd, 0x67d: 0xfd, 0x67e: 0xfd, 0x67f: 0xfd, -	// Block 0x1a, offset 0x680 -	0x680: 0xa0, 0x681: 0xa0, 0x682: 0xa0, 0x683: 0xa0, 0x684: 0xa0, 0x685: 0xa0, 0x686: 0xa0, 0x687: 0xa0, -	0x688: 0xa0, 0x689: 0xa0, 0x68a: 0xa0, 0x68b: 0xa0, 0x68c: 0xa0, 0x68d: 0xa0, 0x68e: 0xa0, 0x68f: 0xa0, -	0x690: 0xa0, 0x691: 0xa0, 0x692: 0xa0, 0x693: 0xa0, 0x694: 0xa0, 0x695: 0xa0, 0x696: 0xa0, 0x697: 0xa0, -	0x698: 0xa0, 0x699: 0xa0, 0x69a: 0xa0, 0x69b: 0x198, 0x69c: 0xa0, 0x69d: 0xa0, 0x69e: 0xa0, 0x69f: 0xa0, -	0x6a0: 0xa0, 0x6a1: 0xa0, 0x6a2: 0xa0, 0x6a3: 0xa0, 0x6a4: 0xa0, 0x6a5: 0xa0, 0x6a6: 0xa0, 0x6a7: 0xa0, -	0x6a8: 0xa0, 0x6a9: 0xa0, 0x6aa: 0xa0, 0x6ab: 0xa0, 0x6ac: 0xa0, 0x6ad: 0xa0, 0x6ae: 0xa0, 0x6af: 0xa0, -	0x6b0: 0xa0, 0x6b1: 0xa0, 0x6b2: 0xa0, 0x6b3: 0xa0, 0x6b4: 0xa0, 0x6b5: 0xa0, 0x6b6: 0xa0, 0x6b7: 0xa0, -	0x6b8: 0xa0, 0x6b9: 0xa0, 0x6ba: 0xa0, 0x6bb: 0xa0, 0x6bc: 0xa0, 0x6bd: 0xa0, 0x6be: 0xa0, 0x6bf: 0xa0, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0xa0, 0x6c1: 0xa0, 0x6c2: 0xa0, 0x6c3: 0xa0, 0x6c4: 0xa0, 0x6c5: 0xa0, 0x6c6: 0xa0, 0x6c7: 0xa0, -	0x6c8: 0xa0, 0x6c9: 0xa0, 0x6ca: 0xa0, 0x6cb: 0xa0, 0x6cc: 0xa0, 0x6cd: 0xa0, 0x6ce: 0xa0, 0x6cf: 0xa0, -	0x6d0: 0xa0, 0x6d1: 0xa0, 0x6d2: 0xa0, 0x6d3: 0xa0, 0x6d4: 0xa0, 0x6d5: 0xa0, 0x6d6: 0xa0, 0x6d7: 0xa0, -	0x6d8: 0xa0, 0x6d9: 0xa0, 0x6da: 0xa0, 0x6db: 0xa0, 0x6dc: 0x199, 0x6dd: 0xa0, 0x6de: 0xa0, 0x6df: 0xa0, -	0x6e0: 0x19a, 0x6e1: 0xa0, 0x6e2: 0xa0, 0x6e3: 0xa0, 0x6e4: 0xa0, 0x6e5: 0xa0, 0x6e6: 0xa0, 0x6e7: 0xa0, -	0x6e8: 0xa0, 0x6e9: 0xa0, 0x6ea: 0xa0, 0x6eb: 0xa0, 0x6ec: 0xa0, 0x6ed: 0xa0, 0x6ee: 0xa0, 0x6ef: 0xa0, -	0x6f0: 0xa0, 0x6f1: 0xa0, 0x6f2: 0xa0, 0x6f3: 0xa0, 0x6f4: 0xa0, 0x6f5: 0xa0, 0x6f6: 0xa0, 0x6f7: 0xa0, -	0x6f8: 0xa0, 0x6f9: 0xa0, 0x6fa: 0xa0, 0x6fb: 0xa0, 0x6fc: 0xa0, 0x6fd: 0xa0, 0x6fe: 0xa0, 0x6ff: 0xa0, -	// Block 0x1c, offset 0x700 -	0x700: 0xa0, 0x701: 0xa0, 0x702: 0xa0, 0x703: 0xa0, 0x704: 0xa0, 0x705: 0xa0, 0x706: 0xa0, 0x707: 0xa0, -	0x708: 0xa0, 0x709: 0xa0, 0x70a: 0xa0, 0x70b: 0xa0, 0x70c: 0xa0, 0x70d: 0xa0, 0x70e: 0xa0, 0x70f: 0xa0, -	0x710: 0xa0, 0x711: 0xa0, 0x712: 0xa0, 0x713: 0xa0, 0x714: 0xa0, 0x715: 0xa0, 0x716: 0xa0, 0x717: 0xa0, -	0x718: 0xa0, 0x719: 0xa0, 0x71a: 0xa0, 0x71b: 0xa0, 0x71c: 0xa0, 0x71d: 0xa0, 0x71e: 0xa0, 0x71f: 0xa0, -	0x720: 0xa0, 0x721: 0xa0, 0x722: 0xa0, 0x723: 0xa0, 0x724: 0xa0, 0x725: 0xa0, 0x726: 0xa0, 0x727: 0xa0, -	0x728: 0xa0, 0x729: 0xa0, 0x72a: 0xa0, 0x72b: 0xa0, 0x72c: 0xa0, 0x72d: 0xa0, 0x72e: 0xa0, 0x72f: 0xa0, -	0x730: 0xa0, 0x731: 0xa0, 0x732: 0xa0, 0x733: 0xa0, 0x734: 0xa0, 0x735: 0xa0, 0x736: 0xa0, 0x737: 0xa0, -	0x738: 0xa0, 0x739: 0xa0, 0x73a: 0x19b, 0x73b: 0xa0, 0x73c: 0xa0, 0x73d: 0xa0, 0x73e: 0xa0, 0x73f: 0xa0, -	// Block 0x1d, offset 0x740 -	0x740: 0xa0, 0x741: 0xa0, 0x742: 0xa0, 0x743: 0xa0, 0x744: 0xa0, 0x745: 0xa0, 0x746: 0xa0, 0x747: 0xa0, -	0x748: 0xa0, 0x749: 0xa0, 0x74a: 0xa0, 0x74b: 0xa0, 0x74c: 0xa0, 0x74d: 0xa0, 0x74e: 0xa0, 0x74f: 0xa0, -	0x750: 0xa0, 0x751: 0xa0, 0x752: 0xa0, 0x753: 0xa0, 0x754: 0xa0, 0x755: 0xa0, 0x756: 0xa0, 0x757: 0xa0, -	0x758: 0xa0, 0x759: 0xa0, 0x75a: 0xa0, 0x75b: 0xa0, 0x75c: 0xa0, 0x75d: 0xa0, 0x75e: 0xa0, 0x75f: 0xa0, -	0x760: 0xa0, 0x761: 0xa0, 0x762: 0xa0, 0x763: 0xa0, 0x764: 0xa0, 0x765: 0xa0, 0x766: 0xa0, 0x767: 0xa0, -	0x768: 0xa0, 0x769: 0xa0, 0x76a: 0xa0, 0x76b: 0xa0, 0x76c: 0xa0, 0x76d: 0xa0, 0x76e: 0xa0, 0x76f: 0x19c, -	0x770: 0xfd, 0x771: 0xfd, 0x772: 0xfd, 0x773: 0xfd, 0x774: 0xfd, 0x775: 0xfd, 0x776: 0xfd, 0x777: 0xfd, -	0x778: 0xfd, 0x779: 0xfd, 0x77a: 0xfd, 0x77b: 0xfd, 0x77c: 0xfd, 0x77d: 0xfd, 0x77e: 0xfd, 0x77f: 0xfd, -	// Block 0x1e, offset 0x780 -	0x780: 0xfd, 0x781: 0xfd, 0x782: 0xfd, 0x783: 0xfd, 0x784: 0xfd, 0x785: 0xfd, 0x786: 0xfd, 0x787: 0xfd, -	0x788: 0xfd, 0x789: 0xfd, 0x78a: 0xfd, 0x78b: 0xfd, 0x78c: 0xfd, 0x78d: 0xfd, 0x78e: 0xfd, 0x78f: 0xfd, -	0x790: 0xfd, 0x791: 0xfd, 0x792: 0xfd, 0x793: 0xfd, 0x794: 0xfd, 0x795: 0xfd, 0x796: 0xfd, 0x797: 0xfd, -	0x798: 0xfd, 0x799: 0xfd, 0x79a: 0xfd, 0x79b: 0xfd, 0x79c: 0xfd, 0x79d: 0xfd, 0x79e: 0xfd, 0x79f: 0xfd, -	0x7a0: 0x75, 0x7a1: 0x76, 0x7a2: 0x77, 0x7a3: 0x78, 0x7a4: 0x79, 0x7a5: 0x7a, 0x7a6: 0x7b, 0x7a7: 0x7c, -	0x7a8: 0x7d, 0x7a9: 0xfd, 0x7aa: 0xfd, 0x7ab: 0xfd, 0x7ac: 0xfd, 0x7ad: 0xfd, 0x7ae: 0xfd, 0x7af: 0xfd, -	0x7b0: 0xfd, 0x7b1: 0xfd, 0x7b2: 0xfd, 0x7b3: 0xfd, 0x7b4: 0xfd, 0x7b5: 0xfd, 0x7b6: 0xfd, 0x7b7: 0xfd, -	0x7b8: 0xfd, 0x7b9: 0xfd, 0x7ba: 0xfd, 0x7bb: 0xfd, 0x7bc: 0xfd, 0x7bd: 0xfd, 0x7be: 0xfd, 0x7bf: 0xfd, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0xa0, 0x7c1: 0xa0, 0x7c2: 0xa0, 0x7c3: 0xa0, 0x7c4: 0xa0, 0x7c5: 0xa0, 0x7c6: 0xa0, 0x7c7: 0xa0, -	0x7c8: 0xa0, 0x7c9: 0xa0, 0x7ca: 0xa0, 0x7cb: 0xa0, 0x7cc: 0xa0, 0x7cd: 0x19d, 0x7ce: 0xfd, 0x7cf: 0xfd, -	0x7d0: 0xfd, 0x7d1: 0xfd, 0x7d2: 0xfd, 0x7d3: 0xfd, 0x7d4: 0xfd, 0x7d5: 0xfd, 0x7d6: 0xfd, 0x7d7: 0xfd, -	0x7d8: 0xfd, 0x7d9: 0xfd, 0x7da: 0xfd, 0x7db: 0xfd, 0x7dc: 0xfd, 0x7dd: 0xfd, 0x7de: 0xfd, 0x7df: 0xfd, -	0x7e0: 0xfd, 0x7e1: 0xfd, 0x7e2: 0xfd, 0x7e3: 0xfd, 0x7e4: 0xfd, 0x7e5: 0xfd, 0x7e6: 0xfd, 0x7e7: 0xfd, -	0x7e8: 0xfd, 0x7e9: 0xfd, 0x7ea: 0xfd, 0x7eb: 0xfd, 0x7ec: 0xfd, 0x7ed: 0xfd, 0x7ee: 0xfd, 0x7ef: 0xfd, -	0x7f0: 0xfd, 0x7f1: 0xfd, 0x7f2: 0xfd, 0x7f3: 0xfd, 0x7f4: 0xfd, 0x7f5: 0xfd, 0x7f6: 0xfd, 0x7f7: 0xfd, -	0x7f8: 0xfd, 0x7f9: 0xfd, 0x7fa: 0xfd, 0x7fb: 0xfd, 0x7fc: 0xfd, 0x7fd: 0xfd, 0x7fe: 0xfd, 0x7ff: 0xfd, -	// Block 0x20, offset 0x800 -	0x810: 0x0d, 0x811: 0x0e, 0x812: 0x0f, 0x813: 0x10, 0x814: 0x11, 0x815: 0x0b, 0x816: 0x12, 0x817: 0x07, -	0x818: 0x13, 0x819: 0x0b, 0x81a: 0x0b, 0x81b: 0x14, 0x81c: 0x0b, 0x81d: 0x15, 0x81e: 0x16, 0x81f: 0x17, -	0x820: 0x07, 0x821: 0x07, 0x822: 0x07, 0x823: 0x07, 0x824: 0x07, 0x825: 0x07, 0x826: 0x07, 0x827: 0x07, -	0x828: 0x07, 0x829: 0x07, 0x82a: 0x18, 0x82b: 0x19, 0x82c: 0x1a, 0x82d: 0x07, 0x82e: 0x1b, 0x82f: 0x1c, -	0x830: 0x07, 0x831: 0x1d, 0x832: 0x0b, 0x833: 0x0b, 0x834: 0x0b, 0x835: 0x0b, 0x836: 0x0b, 0x837: 0x0b, -	0x838: 0x0b, 0x839: 0x0b, 0x83a: 0x0b, 0x83b: 0x0b, 0x83c: 0x0b, 0x83d: 0x0b, 0x83e: 0x0b, 0x83f: 0x0b, -	// Block 0x21, offset 0x840 -	0x840: 0x0b, 0x841: 0x0b, 0x842: 0x0b, 0x843: 0x0b, 0x844: 0x0b, 0x845: 0x0b, 0x846: 0x0b, 0x847: 0x0b, -	0x848: 0x0b, 0x849: 0x0b, 0x84a: 0x0b, 0x84b: 0x0b, 0x84c: 0x0b, 0x84d: 0x0b, 0x84e: 0x0b, 0x84f: 0x0b, -	0x850: 0x0b, 0x851: 0x0b, 0x852: 0x0b, 0x853: 0x0b, 0x854: 0x0b, 0x855: 0x0b, 0x856: 0x0b, 0x857: 0x0b, -	0x858: 0x0b, 0x859: 0x0b, 0x85a: 0x0b, 0x85b: 0x0b, 0x85c: 0x0b, 0x85d: 0x0b, 0x85e: 0x0b, 0x85f: 0x0b, -	0x860: 0x0b, 0x861: 0x0b, 0x862: 0x0b, 0x863: 0x0b, 0x864: 0x0b, 0x865: 0x0b, 0x866: 0x0b, 0x867: 0x0b, -	0x868: 0x0b, 0x869: 0x0b, 0x86a: 0x0b, 0x86b: 0x0b, 0x86c: 0x0b, 0x86d: 0x0b, 0x86e: 0x0b, 0x86f: 0x0b, -	0x870: 0x0b, 0x871: 0x0b, 0x872: 0x0b, 0x873: 0x0b, 0x874: 0x0b, 0x875: 0x0b, 0x876: 0x0b, 0x877: 0x0b, -	0x878: 0x0b, 0x879: 0x0b, 0x87a: 0x0b, 0x87b: 0x0b, 0x87c: 0x0b, 0x87d: 0x0b, 0x87e: 0x0b, 0x87f: 0x0b, -	// Block 0x22, offset 0x880 -	0x880: 0x19e, 0x881: 0x19f, 0x882: 0xfd, 0x883: 0xfd, 0x884: 0x1a0, 0x885: 0x1a0, 0x886: 0x1a0, 0x887: 0x1a1, -	0x888: 0xfd, 0x889: 0xfd, 0x88a: 0xfd, 0x88b: 0xfd, 0x88c: 0xfd, 0x88d: 0xfd, 0x88e: 0xfd, 0x88f: 0xfd, -	0x890: 0xfd, 0x891: 0xfd, 0x892: 0xfd, 0x893: 0xfd, 0x894: 0xfd, 0x895: 0xfd, 0x896: 0xfd, 0x897: 0xfd, -	0x898: 0xfd, 0x899: 0xfd, 0x89a: 0xfd, 0x89b: 0xfd, 0x89c: 0xfd, 0x89d: 0xfd, 0x89e: 0xfd, 0x89f: 0xfd, -	0x8a0: 0xfd, 0x8a1: 0xfd, 0x8a2: 0xfd, 0x8a3: 0xfd, 0x8a4: 0xfd, 0x8a5: 0xfd, 0x8a6: 0xfd, 0x8a7: 0xfd, -	0x8a8: 0xfd, 0x8a9: 0xfd, 0x8aa: 0xfd, 0x8ab: 0xfd, 0x8ac: 0xfd, 0x8ad: 0xfd, 0x8ae: 0xfd, 0x8af: 0xfd, -	0x8b0: 0xfd, 0x8b1: 0xfd, 0x8b2: 0xfd, 0x8b3: 0xfd, 0x8b4: 0xfd, 0x8b5: 0xfd, 0x8b6: 0xfd, 0x8b7: 0xfd, -	0x8b8: 0xfd, 0x8b9: 0xfd, 0x8ba: 0xfd, 0x8bb: 0xfd, 0x8bc: 0xfd, 0x8bd: 0xfd, 0x8be: 0xfd, 0x8bf: 0xfd, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0b, 0x8c1: 0x0b, 0x8c2: 0x0b, 0x8c3: 0x0b, 0x8c4: 0x0b, 0x8c5: 0x0b, 0x8c6: 0x0b, 0x8c7: 0x0b, -	0x8c8: 0x0b, 0x8c9: 0x0b, 0x8ca: 0x0b, 0x8cb: 0x0b, 0x8cc: 0x0b, 0x8cd: 0x0b, 0x8ce: 0x0b, 0x8cf: 0x0b, -	0x8d0: 0x0b, 0x8d1: 0x0b, 0x8d2: 0x0b, 0x8d3: 0x0b, 0x8d4: 0x0b, 0x8d5: 0x0b, 0x8d6: 0x0b, 0x8d7: 0x0b, -	0x8d8: 0x0b, 0x8d9: 0x0b, 0x8da: 0x0b, 0x8db: 0x0b, 0x8dc: 0x0b, 0x8dd: 0x0b, 0x8de: 0x0b, 0x8df: 0x0b, -	0x8e0: 0x20, 0x8e1: 0x0b, 0x8e2: 0x0b, 0x8e3: 0x0b, 0x8e4: 0x0b, 0x8e5: 0x0b, 0x8e6: 0x0b, 0x8e7: 0x0b, -	0x8e8: 0x0b, 0x8e9: 0x0b, 0x8ea: 0x0b, 0x8eb: 0x0b, 0x8ec: 0x0b, 0x8ed: 0x0b, 0x8ee: 0x0b, 0x8ef: 0x0b, -	0x8f0: 0x0b, 0x8f1: 0x0b, 0x8f2: 0x0b, 0x8f3: 0x0b, 0x8f4: 0x0b, 0x8f5: 0x0b, 0x8f6: 0x0b, 0x8f7: 0x0b, -	0x8f8: 0x0b, 0x8f9: 0x0b, 0x8fa: 0x0b, 0x8fb: 0x0b, 0x8fc: 0x0b, 0x8fd: 0x0b, 0x8fe: 0x0b, 0x8ff: 0x0b, -	// Block 0x24, offset 0x900 -	0x900: 0x0b, 0x901: 0x0b, 0x902: 0x0b, 0x903: 0x0b, 0x904: 0x0b, 0x905: 0x0b, 0x906: 0x0b, 0x907: 0x0b, -	0x908: 0x0b, 0x909: 0x0b, 0x90a: 0x0b, 0x90b: 0x0b, 0x90c: 0x0b, 0x90d: 0x0b, 0x90e: 0x0b, 0x90f: 0x0b, -} - -// idnaSparseOffset: 292 entries, 584 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x33, 0x3e, 0x4a, 0x4e, 0x5d, 0x62, 0x6c, 0x78, 0x85, 0x8b, 0x94, 0xa4, 0xb2, 0xbd, 0xca, 0xdb, 0xe5, 0xec, 0xf9, 0x10a, 0x111, 0x11c, 0x12b, 0x139, 0x143, 0x145, 0x14a, 0x14d, 0x150, 0x152, 0x15e, 0x169, 0x171, 0x177, 0x17d, 0x182, 0x187, 0x18a, 0x18e, 0x194, 0x199, 0x1a5, 0x1af, 0x1b5, 0x1c6, 0x1d0, 0x1d3, 0x1db, 0x1de, 0x1eb, 0x1f3, 0x1f7, 0x1fe, 0x206, 0x216, 0x222, 0x225, 0x22f, 0x23b, 0x247, 0x253, 0x25b, 0x260, 0x26d, 0x27e, 0x282, 0x28d, 0x291, 0x29a, 0x2a2, 0x2a8, 0x2ad, 0x2b0, 0x2b4, 0x2ba, 0x2be, 0x2c2, 0x2c6, 0x2cc, 0x2d4, 0x2db, 0x2e6, 0x2f0, 0x2f4, 0x2f7, 0x2fd, 0x301, 0x303, 0x306, 0x308, 0x30b, 0x315, 0x318, 0x327, 0x32b, 0x32f, 0x331, 0x33a, 0x33d, 0x341, 0x346, 0x34b, 0x351, 0x362, 0x372, 0x378, 0x37c, 0x38b, 0x390, 0x398, 0x3a2, 0x3ad, 0x3b5, 0x3c6, 0x3cf, 0x3df, 0x3ec, 0x3f8, 0x3fd, 0x40a, 0x40e, 0x413, 0x415, 0x417, 0x41b, 0x41d, 0x421, 0x42a, 0x430, 0x434, 0x444, 0x44e, 0x453, 0x456, 0x45c, 0x463, 0x468, 0x46c, 0x472, 0x477, 0x480, 0x485, 0x48b, 0x492, 0x499, 0x4a0, 0x4a4, 0x4a9, 0x4ac, 0x4b1, 0x4bd, 0x4c3, 0x4c8, 0x4cf, 0x4d7, 0x4dc, 0x4e0, 0x4f0, 0x4f7, 0x4fb, 0x4ff, 0x506, 0x508, 0x50b, 0x50e, 0x512, 0x51b, 0x51f, 0x527, 0x52f, 0x537, 0x543, 0x54f, 0x555, 0x55e, 0x56a, 0x571, 0x57a, 0x585, 0x58c, 0x59b, 0x5a8, 0x5b5, 0x5be, 0x5c2, 0x5d1, 0x5d9, 0x5e4, 0x5ed, 0x5f3, 0x5fb, 0x604, 0x60f, 0x612, 0x61e, 0x627, 0x62a, 0x62f, 0x638, 0x63d, 0x64a, 0x655, 0x65e, 0x668, 0x66b, 0x675, 0x67e, 0x68a, 0x697, 0x6a4, 0x6b2, 0x6b9, 0x6bd, 0x6c1, 0x6c4, 0x6c9, 0x6cc, 0x6d1, 0x6d4, 0x6db, 0x6e2, 0x6e6, 0x6f1, 0x6f4, 0x6f7, 0x6fa, 0x700, 0x706, 0x70f, 0x712, 0x715, 0x718, 0x71b, 0x722, 0x725, 0x72a, 0x734, 0x737, 0x73b, 0x74a, 0x756, 0x75a, 0x75f, 0x763, 0x768, 0x76c, 0x771, 0x77a, 0x785, 0x78b, 0x791, 0x797, 0x79d, 0x7a6, 0x7a9, 0x7ac, 0x7b0, 0x7b4, 0x7b8, 0x7be, 0x7c4, 0x7c9, 0x7cc, 0x7dc, 0x7e3, 0x7e6, 0x7eb, 0x7ef, 0x7f5, 0x7fc, 0x800, 0x804, 0x80d, 0x814, 0x819, 0x81d, 0x82b, 0x82e, 0x831, 0x835, 0x839, 0x83c, 0x83f, 0x844, 0x846, 0x848} - -// idnaSparseValues: 2123 entries, 8492 bytes -var idnaSparseValues = [2123]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x00a9, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x00b1, lo: 0xb2, hi: 0xb2}, -	{value: 0x00b9, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x00c1, lo: 0xb7, hi: 0xb7}, -	{value: 0x00c9, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x06}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x6, offset 0x33 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0131, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xae}, -	{value: 0x0808, lo: 0xaf, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x62 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbf}, -	// Block 0xc, offset 0x6c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x78 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0a08, lo: 0xa0, hi: 0xa9}, -	{value: 0x0c08, lo: 0xaa, hi: 0xac}, -	{value: 0x0808, lo: 0xad, hi: 0xad}, -	{value: 0x0c08, lo: 0xae, hi: 0xae}, -	{value: 0x0a08, lo: 0xaf, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb2}, -	{value: 0x0a08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xe, offset 0x85 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0xf, offset 0x8b -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x10, offset 0x94 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x11, offset 0xa4 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x12, offset 0xb2 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x3b08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbd -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x14, offset 0xca -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x15, offset 0xdb -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x01f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x16, offset 0xe5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x17, offset 0xec -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0201, lo: 0x9c, hi: 0x9c}, -	{value: 0x0209, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x18, offset 0xf9 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x19, offset 0x10a -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x1a, offset 0x111 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1b, offset 0x11c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1c, offset 0x12b -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1d, offset 0x139 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1e, offset 0x143 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x1f, offset 0x145 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x20, offset 0x14a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x21, offset 0x14d -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x22, offset 0x150 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x23, offset 0x152 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x24, offset 0x15e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x25, offset 0x169 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x26, offset 0x171 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x27, offset 0x177 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x28, offset 0x17d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x29, offset 0x182 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x2a, offset 0x187 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2b, offset 0x18a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2c, offset 0x18e -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2d, offset 0x194 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2e, offset 0x199 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x2f, offset 0x1a5 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x30, offset 0x1af -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x31, offset 0x1b5 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x32, offset 0x1c6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x33, offset 0x1d0 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x34, offset 0x1d3 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x35, offset 0x1db -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x36, offset 0x1de -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x37, offset 0x1eb -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x38, offset 0x1f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x39, offset 0x1f7 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x3a, offset 0x1fe -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3b, offset 0x206 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3c, offset 0x216 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3d, offset 0x222 -	{value: 0x0000, lo: 0x02}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0xbf}, -	// Block 0x3e, offset 0x225 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x3f, offset 0x22f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x40, offset 0x23b -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x41, offset 0x247 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x42, offset 0x253 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x43, offset 0x25b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x44, offset 0x260 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x02a9, lo: 0x80, hi: 0x80}, -	{value: 0x02b1, lo: 0x81, hi: 0x81}, -	{value: 0x02b9, lo: 0x82, hi: 0x82}, -	{value: 0x02c1, lo: 0x83, hi: 0x83}, -	{value: 0x02c9, lo: 0x84, hi: 0x85}, -	{value: 0x02d1, lo: 0x86, hi: 0x86}, -	{value: 0x02d9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x059d, lo: 0x90, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x059d, lo: 0xbd, hi: 0xbf}, -	// Block 0x45, offset 0x26d -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x46, offset 0x27e -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x47, offset 0x282 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x48, offset 0x28d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x49, offset 0x291 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x0851, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x4a, offset 0x29a -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0859, lo: 0xac, hi: 0xac}, -	{value: 0x0861, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x0869, lo: 0xaf, hi: 0xaf}, -	{value: 0x0871, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x4b, offset 0x2a2 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4c, offset 0x2a8 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09dd, lo: 0xa9, hi: 0xa9}, -	{value: 0x09fd, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4d, offset 0x2ad -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x4e, offset 0x2b0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0929, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x4f, offset 0x2b4 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e7e, lo: 0xb4, hi: 0xb4}, -	{value: 0x0932, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e9e, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x50, offset 0x2ba -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x0939, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x51, offset 0x2be -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x52, offset 0x2c2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0xbf}, -	// Block 0x53, offset 0x2c6 -	{value: 0x0000, lo: 0x05}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ebd, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x54, offset 0x2cc -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x55, offset 0x2d4 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x56, offset 0x2db -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x57, offset 0x2e6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x58, offset 0x2f0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x59, offset 0x2f4 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0xbf}, -	// Block 0x5a, offset 0x2f7 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0ef5, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x5b, offset 0x2fd -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0f15, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5c, offset 0x301 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f35, lo: 0x80, hi: 0xbf}, -	// Block 0x5d, offset 0x303 -	{value: 0x0020, lo: 0x02}, -	{value: 0x1735, lo: 0x80, hi: 0x8f}, -	{value: 0x1915, lo: 0x90, hi: 0xbf}, -	// Block 0x5e, offset 0x306 -	{value: 0x0020, lo: 0x01}, -	{value: 0x1f15, lo: 0x80, hi: 0xbf}, -	// Block 0x5f, offset 0x308 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x60, offset 0x30b -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x096a, lo: 0x9b, hi: 0x9b}, -	{value: 0x0972, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x0979, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x61, offset 0x315 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x0981, lo: 0xbf, hi: 0xbf}, -	// Block 0x62, offset 0x318 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb0}, -	{value: 0x2a35, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a55, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a75, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a95, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a75, lo: 0xb5, hi: 0xb5}, -	{value: 0x2ab5, lo: 0xb6, hi: 0xb6}, -	{value: 0x2ad5, lo: 0xb7, hi: 0xb7}, -	{value: 0x2af5, lo: 0xb8, hi: 0xb9}, -	{value: 0x2b15, lo: 0xba, hi: 0xbb}, -	{value: 0x2b35, lo: 0xbc, hi: 0xbd}, -	{value: 0x2b15, lo: 0xbe, hi: 0xbf}, -	// Block 0x63, offset 0x327 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x64, offset 0x32b -	{value: 0x0008, lo: 0x03}, -	{value: 0x098a, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0a82, lo: 0xa0, hi: 0xbf}, -	// Block 0x65, offset 0x32f -	{value: 0x0008, lo: 0x01}, -	{value: 0x0d19, lo: 0x80, hi: 0xbf}, -	// Block 0x66, offset 0x331 -	{value: 0x0008, lo: 0x08}, -	{value: 0x0f19, lo: 0x80, hi: 0xb0}, -	{value: 0x4045, lo: 0xb1, hi: 0xb1}, -	{value: 0x10a1, lo: 0xb2, hi: 0xb3}, -	{value: 0x4065, lo: 0xb4, hi: 0xb4}, -	{value: 0x10b1, lo: 0xb5, hi: 0xb7}, -	{value: 0x4085, lo: 0xb8, hi: 0xb8}, -	{value: 0x4085, lo: 0xb9, hi: 0xb9}, -	{value: 0x10c9, lo: 0xba, hi: 0xbf}, -	// Block 0x67, offset 0x33a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x68, offset 0x33d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x69, offset 0x341 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x6a, offset 0x346 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x6b, offset 0x34b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6c, offset 0x351 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0xe00d, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x83}, -	{value: 0x03f5, lo: 0x84, hi: 0x84}, -	{value: 0x0479, lo: 0x85, hi: 0x85}, -	{value: 0x447d, lo: 0x86, hi: 0x86}, -	{value: 0xe07d, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0xe01d, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0xb4}, -	{value: 0xe01d, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb7}, -	{value: 0x0741, lo: 0xb8, hi: 0xb8}, -	{value: 0x13f1, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xbf}, -	// Block 0x6d, offset 0x362 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x3b08, lo: 0xac, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6e, offset 0x372 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6f, offset 0x378 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x70, offset 0x37c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x71, offset 0x38b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x72, offset 0x390 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x73, offset 0x398 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x74, offset 0x3a2 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x75, offset 0x3ad -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x76, offset 0x3b5 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x77, offset 0x3c6 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x78, offset 0x3cf -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x79, offset 0x3df -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x7a, offset 0x3ec -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x449d, lo: 0x9c, hi: 0x9c}, -	{value: 0x44b5, lo: 0x9d, hi: 0x9d}, -	{value: 0x0941, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa8}, -	{value: 0x13f9, lo: 0xa9, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x44cd, lo: 0xb0, hi: 0xbf}, -	// Block 0x7b, offset 0x3f8 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44ed, lo: 0x80, hi: 0x8f}, -	{value: 0x450d, lo: 0x90, hi: 0x9f}, -	{value: 0x452d, lo: 0xa0, hi: 0xaf}, -	{value: 0x450d, lo: 0xb0, hi: 0xbf}, -	// Block 0x7c, offset 0x3fd -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x7d, offset 0x40a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7e, offset 0x40e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x7f, offset 0x413 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x80, offset 0x415 -	{value: 0x0020, lo: 0x01}, -	{value: 0x454d, lo: 0x80, hi: 0xbf}, -	// Block 0x81, offset 0x417 -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d4d, lo: 0x80, hi: 0x94}, -	{value: 0x4b0d, lo: 0x95, hi: 0x95}, -	{value: 0x4fed, lo: 0x96, hi: 0xbf}, -	// Block 0x82, offset 0x41b -	{value: 0x0020, lo: 0x01}, -	{value: 0x552d, lo: 0x80, hi: 0xbf}, -	// Block 0x83, offset 0x41d -	{value: 0x0020, lo: 0x03}, -	{value: 0x5d2d, lo: 0x80, hi: 0x84}, -	{value: 0x568d, lo: 0x85, hi: 0x85}, -	{value: 0x5dcd, lo: 0x86, hi: 0xbf}, -	// Block 0x84, offset 0x421 -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b8d, lo: 0x80, hi: 0x8f}, -	{value: 0x6d4d, lo: 0x90, hi: 0x90}, -	{value: 0x6d8d, lo: 0x91, hi: 0xab}, -	{value: 0x1401, lo: 0xac, hi: 0xac}, -	{value: 0x70ed, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x710d, lo: 0xb0, hi: 0xbf}, -	// Block 0x85, offset 0x42a -	{value: 0x0020, lo: 0x05}, -	{value: 0x730d, lo: 0x80, hi: 0xad}, -	{value: 0x656d, lo: 0xae, hi: 0xae}, -	{value: 0x78cd, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f8d, lo: 0xb6, hi: 0xb6}, -	{value: 0x79ad, lo: 0xb7, hi: 0xbf}, -	// Block 0x86, offset 0x430 -	{value: 0x0008, lo: 0x03}, -	{value: 0x1751, lo: 0x80, hi: 0x82}, -	{value: 0x1741, lo: 0x83, hi: 0x83}, -	{value: 0x1769, lo: 0x84, hi: 0xbf}, -	// Block 0x87, offset 0x434 -	{value: 0x0008, lo: 0x0f}, -	{value: 0x1d81, lo: 0x80, hi: 0x83}, -	{value: 0x1d99, lo: 0x84, hi: 0x85}, -	{value: 0x1da1, lo: 0x86, hi: 0x87}, -	{value: 0x1da9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x1de9, lo: 0x92, hi: 0x97}, -	{value: 0x1e11, lo: 0x98, hi: 0x9c}, -	{value: 0x1e31, lo: 0x9d, hi: 0xb3}, -	{value: 0x1d71, lo: 0xb4, hi: 0xb4}, -	{value: 0x1d81, lo: 0xb5, hi: 0xb5}, -	{value: 0x1ee9, lo: 0xb6, hi: 0xbb}, -	{value: 0x1f09, lo: 0xbc, hi: 0xbc}, -	{value: 0x1ef9, lo: 0xbd, hi: 0xbd}, -	{value: 0x1f19, lo: 0xbe, hi: 0xbf}, -	// Block 0x88, offset 0x444 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x89, offset 0x44e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x8a, offset 0x453 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x8b, offset 0x456 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x8c, offset 0x45c -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x8d, offset 0x463 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8e, offset 0x468 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8f, offset 0x46c -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x90, offset 0x472 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xbf}, -	// Block 0x91, offset 0x477 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x92, offset 0x480 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x93, offset 0x485 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x94, offset 0x48b -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8b0d, lo: 0x98, hi: 0x9f}, -	{value: 0x8b25, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x95, offset 0x492 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8b25, lo: 0xb0, hi: 0xb7}, -	{value: 0x8b0d, lo: 0xb8, hi: 0xbf}, -	// Block 0x96, offset 0x499 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x97, offset 0x4a0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x98, offset 0x4a4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xae}, -	{value: 0x0018, lo: 0xaf, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x99, offset 0x4a9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x9a, offset 0x4ac -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x9b, offset 0x4b1 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x9c, offset 0x4bd -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x9d, offset 0x4c3 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x9e, offset 0x4c8 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9f, offset 0x4cf -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0xa0, offset 0x4d7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0xa1, offset 0x4dc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0xa2, offset 0x4e0 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xa3, offset 0x4f0 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0xa4, offset 0x4f7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa5, offset 0x4fb -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa6, offset 0x4ff -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa7, offset 0x506 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa8, offset 0x508 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa9, offset 0x50b -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xaa, offset 0x50e -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xab, offset 0x512 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0908, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0xa1}, -	{value: 0x0c08, lo: 0xa2, hi: 0xa2}, -	{value: 0x0a08, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xac, offset 0x51b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xad, offset 0x51f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xac}, -	{value: 0x0818, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xae, offset 0x527 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0xa6}, -	{value: 0x0808, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb3}, -	{value: 0x0a08, lo: 0xb4, hi: 0xbf}, -	// Block 0xaf, offset 0x52f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x84}, -	{value: 0x0808, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x90}, -	{value: 0x0a18, lo: 0x91, hi: 0x93}, -	{value: 0x0c18, lo: 0x94, hi: 0x94}, -	{value: 0x0818, lo: 0x95, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xb0, offset 0x537 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb3}, -	{value: 0x0c08, lo: 0xb4, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb7}, -	{value: 0x0a08, lo: 0xb8, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xba}, -	{value: 0x0a08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0c08, lo: 0xbd, hi: 0xbd}, -	{value: 0x0a08, lo: 0xbe, hi: 0xbf}, -	// Block 0xb1, offset 0x543 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0x81}, -	{value: 0x0c08, lo: 0x82, hi: 0x83}, -	{value: 0x0a08, lo: 0x84, hi: 0x84}, -	{value: 0x0818, lo: 0x85, hi: 0x88}, -	{value: 0x0c18, lo: 0x89, hi: 0x89}, -	{value: 0x0a18, lo: 0x8a, hi: 0x8a}, -	{value: 0x0918, lo: 0x8b, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb2, offset 0x54f -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xb3, offset 0x555 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xb4, offset 0x55e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xb5, offset 0x56a -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb6, offset 0x571 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xb7, offset 0x57a -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb8, offset 0x585 -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb9, offset 0x58c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x3008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xba, offset 0x59b -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xbb, offset 0x5a8 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xbc, offset 0x5b5 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xbd, offset 0x5be -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xbe, offset 0x5c2 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xbf}, -	// Block 0xbf, offset 0x5d1 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xc0, offset 0x5d9 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xc1, offset 0x5e4 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xc2, offset 0x5ed -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xc3, offset 0x5f3 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xc4, offset 0x5fb -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xc5, offset 0x604 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xc6, offset 0x60f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xc7, offset 0x612 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc8, offset 0x61e -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xc9, offset 0x627 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xca, offset 0x62a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xcb, offset 0x62f -	{value: 0x0000, lo: 0x08}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xcc, offset 0x638 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xcd, offset 0x63d -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x99}, -	{value: 0x3308, lo: 0x9a, hi: 0x9b}, -	{value: 0x3008, lo: 0x9c, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xbf}, -	// Block 0xce, offset 0x64a -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xcf, offset 0x655 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x3b08, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0xbf}, -	// Block 0xd0, offset 0x65e -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x98}, -	{value: 0x3b08, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xbf}, -	// Block 0xd1, offset 0x668 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd2, offset 0x66b -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xd3, offset 0x675 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xd4, offset 0x67e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xd5, offset 0x68a -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xd6, offset 0x697 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xd7, offset 0x6a4 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x3008, lo: 0x93, hi: 0x94}, -	{value: 0x3308, lo: 0x95, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x96}, -	{value: 0x3b08, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xbf}, -	// Block 0xd8, offset 0x6b2 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd9, offset 0x6b9 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0xda, offset 0x6bd -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xdb, offset 0x6c1 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xdc, offset 0x6c4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xdd, offset 0x6c9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xde, offset 0x6cc -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0340, lo: 0xb0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xdf, offset 0x6d1 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xe0, offset 0x6d4 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xe1, offset 0x6db -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xe2, offset 0x6e2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xe3, offset 0x6e6 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xe4, offset 0x6f1 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xe5, offset 0x6f4 -	{value: 0x0000, lo: 0x02}, -	{value: 0xe105, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0xe6, offset 0x6f7 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0xe7, offset 0x6fa -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbf}, -	// Block 0xe8, offset 0x700 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xe9, offset 0x706 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xea, offset 0x70f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xeb, offset 0x712 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0xec, offset 0x715 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xed, offset 0x718 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xee, offset 0x71b -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0xa3}, -	{value: 0x0008, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xef, offset 0x722 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xf0, offset 0x725 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xf1, offset 0x72a -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xf2, offset 0x734 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xf3, offset 0x737 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xf4, offset 0x73b -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0x2211, lo: 0x9e, hi: 0x9e}, -	{value: 0x2219, lo: 0x9f, hi: 0x9f}, -	{value: 0x2221, lo: 0xa0, hi: 0xa0}, -	{value: 0x2229, lo: 0xa1, hi: 0xa1}, -	{value: 0x2231, lo: 0xa2, hi: 0xa2}, -	{value: 0x2239, lo: 0xa3, hi: 0xa3}, -	{value: 0x2241, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xf5, offset 0x74a -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0x2249, lo: 0xbb, hi: 0xbb}, -	{value: 0x2251, lo: 0xbc, hi: 0xbc}, -	{value: 0x2259, lo: 0xbd, hi: 0xbd}, -	{value: 0x2261, lo: 0xbe, hi: 0xbe}, -	{value: 0x2269, lo: 0xbf, hi: 0xbf}, -	// Block 0xf6, offset 0x756 -	{value: 0x0000, lo: 0x03}, -	{value: 0x2271, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xbf}, -	// Block 0xf7, offset 0x75a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0xf8, offset 0x75f -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0xf9, offset 0x763 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xfa, offset 0x768 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0xfb, offset 0x76c -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0xfc, offset 0x771 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xfd, offset 0x77a -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xfe, offset 0x785 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xff, offset 0x78b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0x100, offset 0x791 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x101, offset 0x797 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0x102, offset 0x79d -	{value: 0x0000, lo: 0x08}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0b08, lo: 0x8b, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x103, offset 0x7a6 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xb0}, -	{value: 0x0818, lo: 0xb1, hi: 0xbf}, -	// Block 0x104, offset 0x7a9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0818, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x105, offset 0x7ac -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0818, lo: 0x81, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x106, offset 0x7b0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0x107, offset 0x7b4 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x108, offset 0x7b8 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x109, offset 0x7be -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x10a, offset 0x7c4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0x2491, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0x10b, offset 0x7c9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0x10c, offset 0x7cc -	{value: 0x0000, lo: 0x0f}, -	{value: 0x2611, lo: 0x80, hi: 0x80}, -	{value: 0x2619, lo: 0x81, hi: 0x81}, -	{value: 0x2621, lo: 0x82, hi: 0x82}, -	{value: 0x2629, lo: 0x83, hi: 0x83}, -	{value: 0x2631, lo: 0x84, hi: 0x84}, -	{value: 0x2639, lo: 0x85, hi: 0x85}, -	{value: 0x2641, lo: 0x86, hi: 0x86}, -	{value: 0x2649, lo: 0x87, hi: 0x87}, -	{value: 0x2651, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x2659, lo: 0x90, hi: 0x90}, -	{value: 0x2661, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xbf}, -	// Block 0x10d, offset 0x7dc -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x10e, offset 0x7e3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x10f, offset 0x7e6 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x110, offset 0x7eb -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x111, offset 0x7ef -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x112, offset 0x7f5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0x113, offset 0x7fc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0x114, offset 0x800 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x115, offset 0x804 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x116, offset 0x80d -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x117, offset 0x814 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0x118, offset 0x819 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0xbf}, -	// Block 0x119, offset 0x81d -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0018, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0xaf}, -	{value: 0x06e1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0049, lo: 0xb1, hi: 0xb1}, -	{value: 0x0029, lo: 0xb2, hi: 0xb2}, -	{value: 0x0031, lo: 0xb3, hi: 0xb3}, -	{value: 0x06e9, lo: 0xb4, hi: 0xb4}, -	{value: 0x06f1, lo: 0xb5, hi: 0xb5}, -	{value: 0x06f9, lo: 0xb6, hi: 0xb6}, -	{value: 0x0701, lo: 0xb7, hi: 0xb7}, -	{value: 0x0709, lo: 0xb8, hi: 0xb8}, -	{value: 0x0711, lo: 0xb9, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x11a, offset 0x82b -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x11b, offset 0x82e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x11c, offset 0x831 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x11d, offset 0x835 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x11e, offset 0x839 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x11f, offset 0x83c -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0xbf}, -	// Block 0x120, offset 0x83f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0x121, offset 0x844 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x122, offset 0x846 -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x123, offset 0x848 -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 44953 bytes (43KiB); checksum: D51909DD diff --git a/vendor/golang.org/x/net/idna/tables15.0.0.go b/vendor/golang.org/x/net/idna/tables15.0.0.go deleted file mode 100644 index 5ff05fe1a..000000000 --- a/vendor/golang.org/x/net/idna/tables15.0.0.go +++ /dev/null @@ -1,5144 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build go1.21 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "15.0.0" - -var mappings string = "" + // Size: 6704 bytes -	"  ̈a ̄23 ́ ̧1o1⁄41⁄23⁄4i̇l·ʼnsdžⱥⱦhjrwy ̆ ̇ ̊ ̨ ̃ ̋lẍ́ ι; ̈́եւاٴوٴۇٴيٴक" + -	"़ख़ग़ज़ड़ढ़फ़य़ড়ঢ়য়ਲ਼ਸ਼ਖ਼ਗ਼ਜ਼ਫ਼ଡ଼ଢ଼ําໍາຫນຫມགྷཌྷདྷབྷཛྷཀྵཱཱིུྲྀྲཱྀླྀླཱ" + -	"ཱྀྀྒྷྜྷྡྷྦྷྫྷྐྵвдостъѣæbdeǝgikmnȣptuɐɑəɛɜŋɔɯvβγδφχρнɒcɕðfɟɡɥɨɩɪʝɭʟɱɰɲɳ" + -	"ɴɵɸʂʃƫʉʊʋʌzʐʑʒθssάέήίόύώἀιἁιἂιἃιἄιἅιἆιἇιἠιἡιἢιἣιἤιἥιἦιἧιὠιὡιὢιὣιὤιὥιὦιὧ" + -	"ιὰιαιάιᾶιι ̈͂ὴιηιήιῆι ̓̀ ̓́ ̓͂ΐ ̔̀ ̔́ ̔͂ΰ ̈̀`ὼιωιώιῶι′′′′′‵‵‵‵‵!!???!!?" + -	"′′′′0456789+=()rsħnoqsmtmωåאבגדπ1⁄71⁄91⁄101⁄32⁄31⁄52⁄53⁄54⁄51⁄65⁄61⁄83" + -	"⁄85⁄87⁄81⁄iiivviviiiixxi0⁄3∫∫∫∫∫∮∮∮∮∮1011121314151617181920(10)(11)(12" + -	")(13)(14)(15)(16)(17)(18)(19)(20)∫∫∫∫==⫝̸ɫɽȿɀ. ゙ ゚よりコト(ᄀ)(ᄂ)(ᄃ)(ᄅ)(ᄆ)(ᄇ)" + -	"(ᄉ)(ᄋ)(ᄌ)(ᄎ)(ᄏ)(ᄐ)(ᄑ)(ᄒ)(가)(나)(다)(라)(마)(바)(사)(아)(자)(차)(카)(타)(파)(하)(주)(오전" + -	")(오후)(一)(二)(三)(四)(五)(六)(七)(八)(九)(十)(月)(火)(水)(木)(金)(土)(日)(株)(有)(社)(名)(特)(" + -	"財)(祝)(労)(代)(呼)(学)(監)(企)(資)(協)(祭)(休)(自)(至)21222324252627282930313233343" + -	"5참고주의3637383940414243444546474849501月2月3月4月5月6月7月8月9月10月11月12月hgev令和アパート" + -	"アルファアンペアアールイニングインチウォンエスクードエーカーオンスオームカイリカラットカロリーガロンガンマギガギニーキュリーギルダーキロキロ" + -	"グラムキロメートルキロワットグラムグラムトンクルゼイロクローネケースコルナコーポサイクルサンチームシリングセンチセントダースデシドルトンナノ" + -	"ノットハイツパーセントパーツバーレルピアストルピクルピコビルファラッドフィートブッシェルフランヘクタールペソペニヒヘルツペンスページベータポ" + -	"イントボルトホンポンドホールホーンマイクロマイルマッハマルクマンションミクロンミリミリバールメガメガトンメートルヤードヤールユアンリットルリ" + -	"ラルピールーブルレムレントゲンワット0点1点2点3点4点5点6点7点8点9点10点11点12点13点14点15点16点17点18点19点20" + -	"点21点22点23点24点daauovpcdmiu平成昭和大正明治株式会社panamakakbmbgbkcalpfnfmgkghzmldlk" + -	"lfmnmmmcmkmm2m3m∕sm∕s2rad∕srad∕s2psnsmspvnvmvkvpwnwmwkwbqcccdc∕kgdbgyhah" + -	"pinkkktlmlnlxphprsrsvwbv∕ma∕m1日2日3日4日5日6日7日8日9日10日11日12日13日14日15日16日17日1" + -	"8日19日20日21日22日23日24日25日26日27日28日29日30日31日ьɦɬʞʇœʍ𤋮𢡊𢡄𣏕𥉉𥳐𧻓fffiflstմնմեմիվնմ" + -	"խיִײַעהכלםרתשׁשׂשּׁשּׂאַאָאּבּגּדּהּוּזּטּיּךּכּלּמּנּסּףּפּצּקּרּשּתּו" + -	"ֹבֿכֿפֿאלٱٻپڀٺٿٹڤڦڄڃچڇڍڌڎڈژڑکگڳڱںڻۀہھےۓڭۇۆۈۋۅۉېىئائەئوئۇئۆئۈئېئىیئجئحئم" + -	"ئيبجبحبخبمبىبيتجتحتختمتىتيثجثمثىثيجحجمحجحمخجخحخمسجسحسخسمصحصمضجضحضخضمطحط" + -	"مظمعجعمغجغمفجفحفخفمفىفيقحقمقىقيكاكجكحكخكلكمكىكيلجلحلخلملىليمجمحمخمممىمي" + -	"نجنحنخنمنىنيهجهمهىهييجيحيخيميىييذٰرٰىٰ ٌّ ٍّ َّ ُّ ِّ ّٰئرئزئنبربزبنترت" + -	"زتنثرثزثنمانرنزننيريزينئخئهبهتهصخلهنههٰيهثهسهشمشهـَّـُّـِّطىطيعىعيغىغيس" + -	"ىسيشىشيحىحيجىجيخىخيصىصيضىضيشجشحشخشرسرصرضراًتجمتحجتحمتخمتمجتمحتمخجمححميح" + -	"مىسحجسجحسجىسمحسمجسممصححصممشحمشجيشمخشممضحىضخمطمحطممطميعجمعممعمىغممغميغمى" + -	"فخمقمحقمملحملحيلحىلججلخملمحمحجمحممحيمجحمجممخجمخممجخهمجهممنحمنحىنجمنجىنم" + -	"ينمىيممبخيتجيتجىتخيتخىتميتمىجميجحىجمىسخىصحيشحيضحيلجيلمييحييجييميمميقمين" + -	"حيعميكمينجحمخيلجمكممجحيحجيمجيفميبحيسخينجيصلےقلےاللهاكبرمحمدصلعمرسولعليه" + -	"وسلمصلىصلى الله عليه وسلمجل جلالهریال,:!?_{}[]#&*-<>\\$%@ـًـَـُـِـّـْءآ" + -	"أؤإئابةتثجحخدذرزسشصضطظعغفقكلمنهويلآلألإلا\x22'/^|~¢£¬¦¥ːˑʙɓʣꭦʥʤɖɗᶑɘɞʩɤɢ" + -	"ɠʛʜɧʄʪʫꞎɮʎøɶɷɺɾʀʨʦꭧʧʈⱱʏʡʢʘǀǁǂ𝅗𝅥𝅘𝅥𝅘𝅥𝅮𝅘𝅥𝅯𝅘𝅥𝅰𝅘𝅥𝅱𝅘𝅥𝅲𝆹𝅥𝆺𝅥𝆹𝅥𝅮𝆺𝅥𝅮𝆹𝅥𝅯𝆺𝅥𝅯ıȷαεζηκ" + -	"λμνξοστυψ∇∂ϝабгежзиклмпруфхцчшыэюꚉәіјөүӏґѕџҫꙑұٮڡٯ0,1,2,3,4,5,6,7,8,9,(a" + -	")(b)(c)(d)(e)(f)(g)(h)(i)(j)(k)(l)(m)(n)(o)(p)(q)(r)(s)(t)(u)(v)(w)(x)(y" + -	")(z)〔s〕wzhvsdppvwcmcmdmrdjほかココサ手字双デ二多解天交映無料前後再新初終生販声吹演投捕一三遊左中右指走打禁空合満有月申" + -	"割営配〔本〕〔三〕〔二〕〔安〕〔点〕〔打〕〔盗〕〔勝〕〔敗〕得可丽丸乁你侮侻倂偺備僧像㒞免兔兤具㒹內冗冤仌冬况凵刃㓟刻剆剷㔕勇勉勤勺包匆北卉" + -	"卑博即卽卿灰及叟叫叱吆咞吸呈周咢哶唐啓啣善喙喫喳嗂圖嘆圗噑噴切壮城埴堍型堲報墬売壷夆夢奢姬娛娧姘婦㛮嬈嬾寃寘寧寳寿将尢㞁屠屮峀岍嵃嵮嵫嵼巡巢" + -	"㠯巽帨帽幩㡢㡼庰庳庶廊廾舁弢㣇形彫㣣徚忍志忹悁㤺㤜悔惇慈慌慎慺憎憲憤憯懞懲懶成戛扝抱拔捐挽拼捨掃揤搢揅掩㨮摩摾撝摷㩬敏敬旣書晉㬙暑㬈㫤冒冕最" + -	"暜肭䏙朗望朡杞杓㭉柺枅桒梅梎栟椔㮝楂榣槪檨櫛㰘次歔㱎歲殟殺殻汎沿泍汧洖派海流浩浸涅洴港湮㴳滋滇淹潮濆瀹瀞瀛㶖灊災灷炭煅熜爨爵牐犀犕獺王㺬玥㺸" + -	"瑇瑜瑱璅瓊㼛甤甾異瘐㿼䀈直眞真睊䀹瞋䁆䂖硎碌磌䃣祖福秫䄯穀穊穏䈂篆築䈧糒䊠糨糣紀絣䌁緇縂繅䌴䍙罺羕翺者聠聰䏕育脃䐋脾媵舄辞䑫芑芋芝劳花芳芽苦" + -	"若茝荣莭茣莽菧著荓菊菌菜䔫蓱蓳蔖蕤䕝䕡䕫虐虜虧虩蚩蚈蜎蛢蝹蜨蝫螆蟡蠁䗹衠衣裗裞䘵裺㒻䚾䛇誠諭變豕貫賁贛起跋趼跰軔輸邔郱鄑鄛鈸鋗鋘鉼鏹鐕開䦕閷" + -	"䧦雃嶲霣䩮䩶韠䪲頋頩飢䬳餩馧駂駾䯎鬒鱀鳽䳎䳭鵧䳸麻䵖黹黾鼅鼏鼖鼻" - -var mappingIndex = []uint16{ // 1729 elements -	// Entry 0 - 3F -	0x0000, 0x0000, 0x0001, 0x0004, 0x0005, 0x0008, 0x0009, 0x000a, -	0x000d, 0x0010, 0x0011, 0x0012, 0x0017, 0x001c, 0x0021, 0x0024, -	0x0027, 0x002a, 0x002b, 0x002e, 0x0031, 0x0034, 0x0035, 0x0036, -	0x0037, 0x0038, 0x0039, 0x003c, 0x003f, 0x0042, 0x0045, 0x0048, -	0x004b, 0x004c, 0x004d, 0x0051, 0x0054, 0x0055, 0x005a, 0x005e, -	0x0062, 0x0066, 0x006a, 0x006e, 0x0074, 0x007a, 0x0080, 0x0086, -	0x008c, 0x0092, 0x0098, 0x009e, 0x00a4, 0x00aa, 0x00b0, 0x00b6, -	0x00bc, 0x00c2, 0x00c8, 0x00ce, 0x00d4, 0x00da, 0x00e0, 0x00e6, -	// Entry 40 - 7F -	0x00ec, 0x00f2, 0x00f8, 0x00fe, 0x0104, 0x010a, 0x0110, 0x0116, -	0x011c, 0x0122, 0x0128, 0x012e, 0x0137, 0x013d, 0x0146, 0x014c, -	0x0152, 0x0158, 0x015e, 0x0164, 0x016a, 0x0170, 0x0172, 0x0174, -	0x0176, 0x0178, 0x017a, 0x017c, 0x017e, 0x0180, 0x0181, 0x0182, -	0x0183, 0x0185, 0x0186, 0x0187, 0x0188, 0x0189, 0x018a, 0x018c, -	0x018d, 0x018e, 0x018f, 0x0191, 0x0193, 0x0195, 0x0197, 0x0199, -	0x019b, 0x019d, 0x019f, 0x01a0, 0x01a2, 0x01a4, 0x01a6, 0x01a8, -	0x01aa, 0x01ac, 0x01ae, 0x01b0, 0x01b1, 0x01b3, 0x01b5, 0x01b6, -	// Entry 80 - BF -	0x01b8, 0x01ba, 0x01bc, 0x01be, 0x01c0, 0x01c2, 0x01c4, 0x01c6, -	0x01c8, 0x01ca, 0x01cc, 0x01ce, 0x01d0, 0x01d2, 0x01d4, 0x01d6, -	0x01d8, 0x01da, 0x01dc, 0x01de, 0x01e0, 0x01e2, 0x01e4, 0x01e5, -	0x01e7, 0x01e9, 0x01eb, 0x01ed, 0x01ef, 0x01f1, 0x01f3, 0x01f5, -	0x01f7, 0x01f9, 0x01fb, 0x01fd, 0x0202, 0x0207, 0x020c, 0x0211, -	0x0216, 0x021b, 0x0220, 0x0225, 0x022a, 0x022f, 0x0234, 0x0239, -	0x023e, 0x0243, 0x0248, 0x024d, 0x0252, 0x0257, 0x025c, 0x0261, -	0x0266, 0x026b, 0x0270, 0x0275, 0x027a, 0x027e, 0x0282, 0x0287, -	// Entry C0 - FF -	0x0289, 0x028e, 0x0293, 0x0297, 0x029b, 0x02a0, 0x02a5, 0x02aa, -	0x02af, 0x02b1, 0x02b6, 0x02bb, 0x02c0, 0x02c2, 0x02c7, 0x02c8, -	0x02cd, 0x02d1, 0x02d5, 0x02da, 0x02e0, 0x02e9, 0x02ef, 0x02f8, -	0x02fa, 0x02fc, 0x02fe, 0x0300, 0x030c, 0x030d, 0x030e, 0x030f, -	0x0310, 0x0311, 0x0312, 0x0313, 0x0314, 0x0315, 0x0316, 0x0317, -	0x0319, 0x031b, 0x031d, 0x031e, 0x0320, 0x0322, 0x0324, 0x0326, -	0x0328, 0x032a, 0x032c, 0x032e, 0x0330, 0x0335, 0x033a, 0x0340, -	0x0345, 0x034a, 0x034f, 0x0354, 0x0359, 0x035e, 0x0363, 0x0368, -	// Entry 100 - 13F -	0x036d, 0x0372, 0x0377, 0x037c, 0x0380, 0x0382, 0x0384, 0x0386, -	0x038a, 0x038c, 0x038e, 0x0393, 0x0399, 0x03a2, 0x03a8, 0x03b1, -	0x03b3, 0x03b5, 0x03b7, 0x03b9, 0x03bb, 0x03bd, 0x03bf, 0x03c1, -	0x03c3, 0x03c5, 0x03c7, 0x03cb, 0x03cf, 0x03d3, 0x03d7, 0x03db, -	0x03df, 0x03e3, 0x03e7, 0x03eb, 0x03ef, 0x03f3, 0x03ff, 0x0401, -	0x0406, 0x0408, 0x040a, 0x040c, 0x040e, 0x040f, 0x0413, 0x0417, -	0x041d, 0x0423, 0x0428, 0x042d, 0x0432, 0x0437, 0x043c, 0x0441, -	0x0446, 0x044b, 0x0450, 0x0455, 0x045a, 0x045f, 0x0464, 0x0469, -	// Entry 140 - 17F -	0x046e, 0x0473, 0x0478, 0x047d, 0x0482, 0x0487, 0x048c, 0x0491, -	0x0496, 0x049b, 0x04a0, 0x04a5, 0x04aa, 0x04af, 0x04b4, 0x04bc, -	0x04c4, 0x04c9, 0x04ce, 0x04d3, 0x04d8, 0x04dd, 0x04e2, 0x04e7, -	0x04ec, 0x04f1, 0x04f6, 0x04fb, 0x0500, 0x0505, 0x050a, 0x050f, -	0x0514, 0x0519, 0x051e, 0x0523, 0x0528, 0x052d, 0x0532, 0x0537, -	0x053c, 0x0541, 0x0546, 0x054b, 0x0550, 0x0555, 0x055a, 0x055f, -	0x0564, 0x0569, 0x056e, 0x0573, 0x0578, 0x057a, 0x057c, 0x057e, -	0x0580, 0x0582, 0x0584, 0x0586, 0x0588, 0x058a, 0x058c, 0x058e, -	// Entry 180 - 1BF -	0x0590, 0x0592, 0x0594, 0x0596, 0x059c, 0x05a2, 0x05a4, 0x05a6, -	0x05a8, 0x05aa, 0x05ac, 0x05ae, 0x05b0, 0x05b2, 0x05b4, 0x05b6, -	0x05b8, 0x05ba, 0x05bc, 0x05be, 0x05c0, 0x05c4, 0x05c8, 0x05cc, -	0x05d0, 0x05d4, 0x05d8, 0x05dc, 0x05e0, 0x05e4, 0x05e9, 0x05ee, -	0x05f3, 0x05f5, 0x05f7, 0x05fd, 0x0609, 0x0615, 0x0621, 0x062a, -	0x0636, 0x063f, 0x0648, 0x0657, 0x0663, 0x066c, 0x0675, 0x067e, -	0x068a, 0x0696, 0x069f, 0x06a8, 0x06ae, 0x06b7, 0x06c3, 0x06cf, -	0x06d5, 0x06e4, 0x06f6, 0x0705, 0x070e, 0x071d, 0x072c, 0x0738, -	// Entry 1C0 - 1FF -	0x0741, 0x074a, 0x0753, 0x075f, 0x076e, 0x077a, 0x0783, 0x078c, -	0x0795, 0x079b, 0x07a1, 0x07a7, 0x07ad, 0x07b6, 0x07bf, 0x07ce, -	0x07d7, 0x07e3, 0x07f2, 0x07fb, 0x0801, 0x0807, 0x0816, 0x0822, -	0x0831, 0x083a, 0x0849, 0x084f, 0x0858, 0x0861, 0x086a, 0x0873, -	0x087c, 0x0888, 0x0891, 0x0897, 0x08a0, 0x08a9, 0x08b2, 0x08be, -	0x08c7, 0x08d0, 0x08d9, 0x08e8, 0x08f4, 0x08fa, 0x0909, 0x090f, -	0x091b, 0x0927, 0x0930, 0x0939, 0x0942, 0x094e, 0x0954, 0x095d, -	0x0969, 0x096f, 0x097e, 0x0987, 0x098b, 0x098f, 0x0993, 0x0997, -	// Entry 200 - 23F -	0x099b, 0x099f, 0x09a3, 0x09a7, 0x09ab, 0x09af, 0x09b4, 0x09b9, -	0x09be, 0x09c3, 0x09c8, 0x09cd, 0x09d2, 0x09d7, 0x09dc, 0x09e1, -	0x09e6, 0x09eb, 0x09f0, 0x09f5, 0x09fa, 0x09fc, 0x09fe, 0x0a00, -	0x0a02, 0x0a04, 0x0a06, 0x0a0c, 0x0a12, 0x0a18, 0x0a1e, 0x0a2a, -	0x0a2c, 0x0a2e, 0x0a30, 0x0a32, 0x0a34, 0x0a36, 0x0a38, 0x0a3c, -	0x0a3e, 0x0a40, 0x0a42, 0x0a44, 0x0a46, 0x0a48, 0x0a4a, 0x0a4c, -	0x0a4e, 0x0a50, 0x0a52, 0x0a54, 0x0a56, 0x0a58, 0x0a5a, 0x0a5f, -	0x0a65, 0x0a6c, 0x0a74, 0x0a76, 0x0a78, 0x0a7a, 0x0a7c, 0x0a7e, -	// Entry 240 - 27F -	0x0a80, 0x0a82, 0x0a84, 0x0a86, 0x0a88, 0x0a8a, 0x0a8c, 0x0a8e, -	0x0a90, 0x0a96, 0x0a98, 0x0a9a, 0x0a9c, 0x0a9e, 0x0aa0, 0x0aa2, -	0x0aa4, 0x0aa6, 0x0aa8, 0x0aaa, 0x0aac, 0x0aae, 0x0ab0, 0x0ab2, -	0x0ab4, 0x0ab9, 0x0abe, 0x0ac2, 0x0ac6, 0x0aca, 0x0ace, 0x0ad2, -	0x0ad6, 0x0ada, 0x0ade, 0x0ae2, 0x0ae7, 0x0aec, 0x0af1, 0x0af6, -	0x0afb, 0x0b00, 0x0b05, 0x0b0a, 0x0b0f, 0x0b14, 0x0b19, 0x0b1e, -	0x0b23, 0x0b28, 0x0b2d, 0x0b32, 0x0b37, 0x0b3c, 0x0b41, 0x0b46, -	0x0b4b, 0x0b50, 0x0b52, 0x0b54, 0x0b56, 0x0b58, 0x0b5a, 0x0b5c, -	// Entry 280 - 2BF -	0x0b5e, 0x0b62, 0x0b66, 0x0b6a, 0x0b6e, 0x0b72, 0x0b76, 0x0b7a, -	0x0b7c, 0x0b7e, 0x0b80, 0x0b82, 0x0b86, 0x0b8a, 0x0b8e, 0x0b92, -	0x0b96, 0x0b9a, 0x0b9e, 0x0ba0, 0x0ba2, 0x0ba4, 0x0ba6, 0x0ba8, -	0x0baa, 0x0bac, 0x0bb0, 0x0bb4, 0x0bba, 0x0bc0, 0x0bc4, 0x0bc8, -	0x0bcc, 0x0bd0, 0x0bd4, 0x0bd8, 0x0bdc, 0x0be0, 0x0be4, 0x0be8, -	0x0bec, 0x0bf0, 0x0bf4, 0x0bf8, 0x0bfc, 0x0c00, 0x0c04, 0x0c08, -	0x0c0c, 0x0c10, 0x0c14, 0x0c18, 0x0c1c, 0x0c20, 0x0c24, 0x0c28, -	0x0c2c, 0x0c30, 0x0c34, 0x0c36, 0x0c38, 0x0c3a, 0x0c3c, 0x0c3e, -	// Entry 2C0 - 2FF -	0x0c40, 0x0c42, 0x0c44, 0x0c46, 0x0c48, 0x0c4a, 0x0c4c, 0x0c4e, -	0x0c50, 0x0c52, 0x0c54, 0x0c56, 0x0c58, 0x0c5a, 0x0c5c, 0x0c5e, -	0x0c60, 0x0c62, 0x0c64, 0x0c66, 0x0c68, 0x0c6a, 0x0c6c, 0x0c6e, -	0x0c70, 0x0c72, 0x0c74, 0x0c76, 0x0c78, 0x0c7a, 0x0c7c, 0x0c7e, -	0x0c80, 0x0c82, 0x0c86, 0x0c8a, 0x0c8e, 0x0c92, 0x0c96, 0x0c9a, -	0x0c9e, 0x0ca2, 0x0ca4, 0x0ca8, 0x0cac, 0x0cb0, 0x0cb4, 0x0cb8, -	0x0cbc, 0x0cc0, 0x0cc4, 0x0cc8, 0x0ccc, 0x0cd0, 0x0cd4, 0x0cd8, -	0x0cdc, 0x0ce0, 0x0ce4, 0x0ce8, 0x0cec, 0x0cf0, 0x0cf4, 0x0cf8, -	// Entry 300 - 33F -	0x0cfc, 0x0d00, 0x0d04, 0x0d08, 0x0d0c, 0x0d10, 0x0d14, 0x0d18, -	0x0d1c, 0x0d20, 0x0d24, 0x0d28, 0x0d2c, 0x0d30, 0x0d34, 0x0d38, -	0x0d3c, 0x0d40, 0x0d44, 0x0d48, 0x0d4c, 0x0d50, 0x0d54, 0x0d58, -	0x0d5c, 0x0d60, 0x0d64, 0x0d68, 0x0d6c, 0x0d70, 0x0d74, 0x0d78, -	0x0d7c, 0x0d80, 0x0d84, 0x0d88, 0x0d8c, 0x0d90, 0x0d94, 0x0d98, -	0x0d9c, 0x0da0, 0x0da4, 0x0da8, 0x0dac, 0x0db0, 0x0db4, 0x0db8, -	0x0dbc, 0x0dc0, 0x0dc4, 0x0dc8, 0x0dcc, 0x0dd0, 0x0dd4, 0x0dd8, -	0x0ddc, 0x0de0, 0x0de4, 0x0de8, 0x0dec, 0x0df0, 0x0df4, 0x0df8, -	// Entry 340 - 37F -	0x0dfc, 0x0e00, 0x0e04, 0x0e08, 0x0e0c, 0x0e10, 0x0e14, 0x0e18, -	0x0e1d, 0x0e22, 0x0e27, 0x0e2c, 0x0e31, 0x0e36, 0x0e3a, 0x0e3e, -	0x0e42, 0x0e46, 0x0e4a, 0x0e4e, 0x0e52, 0x0e56, 0x0e5a, 0x0e5e, -	0x0e62, 0x0e66, 0x0e6a, 0x0e6e, 0x0e72, 0x0e76, 0x0e7a, 0x0e7e, -	0x0e82, 0x0e86, 0x0e8a, 0x0e8e, 0x0e92, 0x0e96, 0x0e9a, 0x0e9e, -	0x0ea2, 0x0ea6, 0x0eaa, 0x0eae, 0x0eb2, 0x0eb6, 0x0ebc, 0x0ec2, -	0x0ec8, 0x0ecc, 0x0ed0, 0x0ed4, 0x0ed8, 0x0edc, 0x0ee0, 0x0ee4, -	0x0ee8, 0x0eec, 0x0ef0, 0x0ef4, 0x0ef8, 0x0efc, 0x0f00, 0x0f04, -	// Entry 380 - 3BF -	0x0f08, 0x0f0c, 0x0f10, 0x0f14, 0x0f18, 0x0f1c, 0x0f20, 0x0f24, -	0x0f28, 0x0f2c, 0x0f30, 0x0f34, 0x0f38, 0x0f3e, 0x0f44, 0x0f4a, -	0x0f50, 0x0f56, 0x0f5c, 0x0f62, 0x0f68, 0x0f6e, 0x0f74, 0x0f7a, -	0x0f80, 0x0f86, 0x0f8c, 0x0f92, 0x0f98, 0x0f9e, 0x0fa4, 0x0faa, -	0x0fb0, 0x0fb6, 0x0fbc, 0x0fc2, 0x0fc8, 0x0fce, 0x0fd4, 0x0fda, -	0x0fe0, 0x0fe6, 0x0fec, 0x0ff2, 0x0ff8, 0x0ffe, 0x1004, 0x100a, -	0x1010, 0x1016, 0x101c, 0x1022, 0x1028, 0x102e, 0x1034, 0x103a, -	0x1040, 0x1046, 0x104c, 0x1052, 0x1058, 0x105e, 0x1064, 0x106a, -	// Entry 3C0 - 3FF -	0x1070, 0x1076, 0x107c, 0x1082, 0x1088, 0x108e, 0x1094, 0x109a, -	0x10a0, 0x10a6, 0x10ac, 0x10b2, 0x10b8, 0x10be, 0x10c4, 0x10ca, -	0x10d0, 0x10d6, 0x10dc, 0x10e2, 0x10e8, 0x10ee, 0x10f4, 0x10fa, -	0x1100, 0x1106, 0x110c, 0x1112, 0x1118, 0x111e, 0x1124, 0x112a, -	0x1130, 0x1136, 0x113c, 0x1142, 0x1148, 0x114e, 0x1154, 0x115a, -	0x1160, 0x1166, 0x116c, 0x1172, 0x1178, 0x1180, 0x1188, 0x1190, -	0x1198, 0x11a0, 0x11a8, 0x11b0, 0x11b6, 0x11d7, 0x11e6, 0x11ee, -	0x11ef, 0x11f0, 0x11f1, 0x11f2, 0x11f3, 0x11f4, 0x11f5, 0x11f6, -	// Entry 400 - 43F -	0x11f7, 0x11f8, 0x11f9, 0x11fa, 0x11fb, 0x11fc, 0x11fd, 0x11fe, -	0x11ff, 0x1200, 0x1201, 0x1205, 0x1209, 0x120d, 0x1211, 0x1215, -	0x1219, 0x121b, 0x121d, 0x121f, 0x1221, 0x1223, 0x1225, 0x1227, -	0x1229, 0x122b, 0x122d, 0x122f, 0x1231, 0x1233, 0x1235, 0x1237, -	0x1239, 0x123b, 0x123d, 0x123f, 0x1241, 0x1243, 0x1245, 0x1247, -	0x1249, 0x124b, 0x124d, 0x124f, 0x1251, 0x1253, 0x1255, 0x1257, -	0x1259, 0x125b, 0x125d, 0x125f, 0x1263, 0x1267, 0x126b, 0x126f, -	0x1270, 0x1271, 0x1272, 0x1273, 0x1274, 0x1275, 0x1277, 0x1279, -	// Entry 440 - 47F -	0x127b, 0x127d, 0x127f, 0x1281, 0x1283, 0x1285, 0x1287, 0x1289, -	0x128c, 0x128e, 0x1290, 0x1292, 0x1294, 0x1297, 0x1299, 0x129b, -	0x129d, 0x129f, 0x12a1, 0x12a3, 0x12a5, 0x12a7, 0x12a9, 0x12ab, -	0x12ad, 0x12af, 0x12b2, 0x12b4, 0x12b6, 0x12b8, 0x12ba, 0x12bc, -	0x12be, 0x12c0, 0x12c2, 0x12c4, 0x12c6, 0x12c9, 0x12cb, 0x12cd, -	0x12d0, 0x12d2, 0x12d4, 0x12d6, 0x12d8, 0x12da, 0x12dc, 0x12de, -	0x12e6, 0x12ee, 0x12fa, 0x1306, 0x1312, 0x131e, 0x132a, 0x1332, -	0x133a, 0x1346, 0x1352, 0x135e, 0x136a, 0x136c, 0x136e, 0x1370, -	// Entry 480 - 4BF -	0x1372, 0x1374, 0x1376, 0x1378, 0x137a, 0x137c, 0x137e, 0x1380, -	0x1382, 0x1384, 0x1386, 0x1388, 0x138a, 0x138d, 0x1390, 0x1392, -	0x1394, 0x1396, 0x1398, 0x139a, 0x139c, 0x139e, 0x13a0, 0x13a2, -	0x13a4, 0x13a6, 0x13a8, 0x13aa, 0x13ac, 0x13ae, 0x13b0, 0x13b2, -	0x13b4, 0x13b6, 0x13b8, 0x13ba, 0x13bc, 0x13bf, 0x13c1, 0x13c3, -	0x13c5, 0x13c7, 0x13c9, 0x13cb, 0x13cd, 0x13cf, 0x13d1, 0x13d3, -	0x13d6, 0x13d8, 0x13da, 0x13dc, 0x13de, 0x13e0, 0x13e2, 0x13e4, -	0x13e6, 0x13e8, 0x13ea, 0x13ec, 0x13ee, 0x13f0, 0x13f2, 0x13f5, -	// Entry 4C0 - 4FF -	0x13f8, 0x13fb, 0x13fe, 0x1401, 0x1404, 0x1407, 0x140a, 0x140d, -	0x1410, 0x1413, 0x1416, 0x1419, 0x141c, 0x141f, 0x1422, 0x1425, -	0x1428, 0x142b, 0x142e, 0x1431, 0x1434, 0x1437, 0x143a, 0x143d, -	0x1440, 0x1447, 0x1449, 0x144b, 0x144d, 0x1450, 0x1452, 0x1454, -	0x1456, 0x1458, 0x145a, 0x1460, 0x1466, 0x1469, 0x146c, 0x146f, -	0x1472, 0x1475, 0x1478, 0x147b, 0x147e, 0x1481, 0x1484, 0x1487, -	0x148a, 0x148d, 0x1490, 0x1493, 0x1496, 0x1499, 0x149c, 0x149f, -	0x14a2, 0x14a5, 0x14a8, 0x14ab, 0x14ae, 0x14b1, 0x14b4, 0x14b7, -	// Entry 500 - 53F -	0x14ba, 0x14bd, 0x14c0, 0x14c3, 0x14c6, 0x14c9, 0x14cc, 0x14cf, -	0x14d2, 0x14d5, 0x14d8, 0x14db, 0x14de, 0x14e1, 0x14e4, 0x14e7, -	0x14ea, 0x14ed, 0x14f6, 0x14ff, 0x1508, 0x1511, 0x151a, 0x1523, -	0x152c, 0x1535, 0x153e, 0x1541, 0x1544, 0x1547, 0x154a, 0x154d, -	0x1550, 0x1553, 0x1556, 0x1559, 0x155c, 0x155f, 0x1562, 0x1565, -	0x1568, 0x156b, 0x156e, 0x1571, 0x1574, 0x1577, 0x157a, 0x157d, -	0x1580, 0x1583, 0x1586, 0x1589, 0x158c, 0x158f, 0x1592, 0x1595, -	0x1598, 0x159b, 0x159e, 0x15a1, 0x15a4, 0x15a7, 0x15aa, 0x15ad, -	// Entry 540 - 57F -	0x15b0, 0x15b3, 0x15b6, 0x15b9, 0x15bc, 0x15bf, 0x15c2, 0x15c5, -	0x15c8, 0x15cb, 0x15ce, 0x15d1, 0x15d4, 0x15d7, 0x15da, 0x15dd, -	0x15e0, 0x15e3, 0x15e6, 0x15e9, 0x15ec, 0x15ef, 0x15f2, 0x15f5, -	0x15f8, 0x15fb, 0x15fe, 0x1601, 0x1604, 0x1607, 0x160a, 0x160d, -	0x1610, 0x1613, 0x1616, 0x1619, 0x161c, 0x161f, 0x1622, 0x1625, -	0x1628, 0x162b, 0x162e, 0x1631, 0x1634, 0x1637, 0x163a, 0x163d, -	0x1640, 0x1643, 0x1646, 0x1649, 0x164c, 0x164f, 0x1652, 0x1655, -	0x1658, 0x165b, 0x165e, 0x1661, 0x1664, 0x1667, 0x166a, 0x166d, -	// Entry 580 - 5BF -	0x1670, 0x1673, 0x1676, 0x1679, 0x167c, 0x167f, 0x1682, 0x1685, -	0x1688, 0x168b, 0x168e, 0x1691, 0x1694, 0x1697, 0x169a, 0x169d, -	0x16a0, 0x16a3, 0x16a6, 0x16a9, 0x16ac, 0x16af, 0x16b2, 0x16b5, -	0x16b8, 0x16bb, 0x16be, 0x16c1, 0x16c4, 0x16c7, 0x16ca, 0x16cd, -	0x16d0, 0x16d3, 0x16d6, 0x16d9, 0x16dc, 0x16df, 0x16e2, 0x16e5, -	0x16e8, 0x16eb, 0x16ee, 0x16f1, 0x16f4, 0x16f7, 0x16fa, 0x16fd, -	0x1700, 0x1703, 0x1706, 0x1709, 0x170c, 0x170f, 0x1712, 0x1715, -	0x1718, 0x171b, 0x171e, 0x1721, 0x1724, 0x1727, 0x172a, 0x172d, -	// Entry 5C0 - 5FF -	0x1730, 0x1733, 0x1736, 0x1739, 0x173c, 0x173f, 0x1742, 0x1745, -	0x1748, 0x174b, 0x174e, 0x1751, 0x1754, 0x1757, 0x175a, 0x175d, -	0x1760, 0x1763, 0x1766, 0x1769, 0x176c, 0x176f, 0x1772, 0x1775, -	0x1778, 0x177b, 0x177e, 0x1781, 0x1784, 0x1787, 0x178a, 0x178d, -	0x1790, 0x1793, 0x1796, 0x1799, 0x179c, 0x179f, 0x17a2, 0x17a5, -	0x17a8, 0x17ab, 0x17ae, 0x17b1, 0x17b4, 0x17b7, 0x17ba, 0x17bd, -	0x17c0, 0x17c3, 0x17c6, 0x17c9, 0x17cc, 0x17cf, 0x17d2, 0x17d5, -	0x17d8, 0x17db, 0x17de, 0x17e1, 0x17e4, 0x17e7, 0x17ea, 0x17ed, -	// Entry 600 - 63F -	0x17f0, 0x17f3, 0x17f6, 0x17f9, 0x17fc, 0x17ff, 0x1802, 0x1805, -	0x1808, 0x180b, 0x180e, 0x1811, 0x1814, 0x1817, 0x181a, 0x181d, -	0x1820, 0x1823, 0x1826, 0x1829, 0x182c, 0x182f, 0x1832, 0x1835, -	0x1838, 0x183b, 0x183e, 0x1841, 0x1844, 0x1847, 0x184a, 0x184d, -	0x1850, 0x1853, 0x1856, 0x1859, 0x185c, 0x185f, 0x1862, 0x1865, -	0x1868, 0x186b, 0x186e, 0x1871, 0x1874, 0x1877, 0x187a, 0x187d, -	0x1880, 0x1883, 0x1886, 0x1889, 0x188c, 0x188f, 0x1892, 0x1895, -	0x1898, 0x189b, 0x189e, 0x18a1, 0x18a4, 0x18a7, 0x18aa, 0x18ad, -	// Entry 640 - 67F -	0x18b0, 0x18b3, 0x18b6, 0x18b9, 0x18bc, 0x18bf, 0x18c2, 0x18c5, -	0x18c8, 0x18cb, 0x18ce, 0x18d1, 0x18d4, 0x18d7, 0x18da, 0x18dd, -	0x18e0, 0x18e3, 0x18e6, 0x18e9, 0x18ec, 0x18ef, 0x18f2, 0x18f5, -	0x18f8, 0x18fb, 0x18fe, 0x1901, 0x1904, 0x1907, 0x190a, 0x190d, -	0x1910, 0x1913, 0x1916, 0x1919, 0x191c, 0x191f, 0x1922, 0x1925, -	0x1928, 0x192b, 0x192e, 0x1931, 0x1934, 0x1937, 0x193a, 0x193d, -	0x1940, 0x1943, 0x1946, 0x1949, 0x194c, 0x194f, 0x1952, 0x1955, -	0x1958, 0x195b, 0x195e, 0x1961, 0x1964, 0x1967, 0x196a, 0x196d, -	// Entry 680 - 6BF -	0x1970, 0x1973, 0x1976, 0x1979, 0x197c, 0x197f, 0x1982, 0x1985, -	0x1988, 0x198b, 0x198e, 0x1991, 0x1994, 0x1997, 0x199a, 0x199d, -	0x19a0, 0x19a3, 0x19a6, 0x19a9, 0x19ac, 0x19af, 0x19b2, 0x19b5, -	0x19b8, 0x19bb, 0x19be, 0x19c1, 0x19c4, 0x19c7, 0x19ca, 0x19cd, -	0x19d0, 0x19d3, 0x19d6, 0x19d9, 0x19dc, 0x19df, 0x19e2, 0x19e5, -	0x19e8, 0x19eb, 0x19ee, 0x19f1, 0x19f4, 0x19f7, 0x19fa, 0x19fd, -	0x1a00, 0x1a03, 0x1a06, 0x1a09, 0x1a0c, 0x1a0f, 0x1a12, 0x1a15, -	0x1a18, 0x1a1b, 0x1a1e, 0x1a21, 0x1a24, 0x1a27, 0x1a2a, 0x1a2d, -	// Entry 6C0 - 6FF -	0x1a30, -} // Size: 3482 bytes - -var xorData string = "" + // Size: 4907 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x021\x00\x02\x01\x04\x02\x01\x02\x02\x019\x02" + -	"\x03\x1c\x02\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03" + -	"\xc1r\x02\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<" + -	"\x03\xc1s*\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03" + -	"\x83\xab\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96" + -	"\xe1\xcd\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03" + -	"\x9a\xec\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c" + -	"!\x03\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03" + -	"ʦ\x93\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7" + -	"\x03\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca" + -	"\xfa\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e" + -	"\x03\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca" + -	"\xe3\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99" + -	"\x03\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca" + -	"\xe8\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03" + -	"\x0b\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06" + -	"\x05\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03" + -	"\x0786\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/" + -	"\x03\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f" + -	"\x03\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-" + -	"\x03\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03" + -	"\x07\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03" + -	"\x07\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03" + -	"\x07\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b" + -	"\x0a\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03" + -	"\x07\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+" + -	"\x03\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03" + -	"\x044\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03" + -	"\x04+ \x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!" + -	"\x22\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04" + -	"\x03\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>" + -	"\x03\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03" + -	"\x054\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03" + -	"\x05):\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$" + -	"\x1e\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226" + -	"\x03\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05" + -	"\x1b\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05" + -	"\x03\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03" + -	"\x06\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08" + -	"\x03\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03" + -	"\x0a6\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a" + -	"\x1f\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03" + -	"\x0a\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f" + -	"\x02\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/" + -	"\x03\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a" + -	"\x00\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+" + -	"\x10\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#" + -	"<\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!" + -	"\x00\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18." + -	"\x03\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15" + -	"\x22\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b" + -	"\x12\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05" + -	"<\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x03\x0b)\x08\x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!" + -	"\x10\x03\x0b!0\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b" + -	"\x03\x09\x1f\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14" + -	"\x03\x0a\x01\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03" + -	"\x08='\x03\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03" + -	"\x09\x0c\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06" + -	"!3\x03\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05" + -	"\x03\x07<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07" + -	"\x01\x00\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03" + -	"\x09\x11\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03" + -	"\x0a/1\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03" + -	"\x07<3\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06" + -	"\x13\x00\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(" + -	";\x03\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08" + -	"\x14$\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03" + -	"\x0a\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19" + -	"\x01\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18" + -	"\x03\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03" + -	"\x07\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03" + -	"\x0a\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03" + -	"\x0b\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03" + -	"\x08\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05" + -	"\x03\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11" + -	"\x03\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03" + -	"\x09\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a" + -	".\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x03'\x02\x03)\x02\x03+" + -	"\x02\x03/\x02\x03\x19\x02\x03\x1b\x02\x03\x1f\x03\x0d\x22\x18\x03\x0d" + -	"\x22\x1a\x03\x0d\x22'\x03\x0d\x22/\x03\x0d\x223\x03\x0d\x22$\x02\x01\x1e" + -	"\x03\x0f$!\x03\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08" + -	"\x18\x03\x0f\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$" + -	"\x03\x0e\x0d)\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d" + -	"\x03\x0d. \x03\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03" + -	"\x0d\x0d\x0f\x03\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03" + -	"\x0c\x09:\x03\x0e\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18" + -	"\x03\x0c\x1f\x1c\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03" + -	"\x0b<+\x03\x0b8\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d" + -	"\x22&\x03\x0b\x1a\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03" + -	"\x0a!\x1a\x03\x0a!7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03" + -	"\x0a\x00 \x03\x0a\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a" + -	"\x1b-\x03\x09-\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091" + -	"\x1f\x03\x093\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(" + -	"\x16\x03\x09\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!" + -	"\x03\x09\x1a\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03" + -	"\x08\x02*\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03" + -	"\x070\x0c\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x06" + -	"71\x03\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 " + -	"\x1d\x03\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 31598 bytes (30.86 KiB). Checksum: d3118eda0d6b5360. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 133: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 133 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 135 blocks, 8640 entries, 17280 bytes -// The third block is the zero block. -var idnaValues = [8640]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x0012, 0xe9: 0x0018, -	0xea: 0x0019, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x0022, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0029, 0xf3: 0x0031, 0xf4: 0x003a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x0042, 0xf9: 0x0049, 0xfa: 0x0051, 0xfb: 0x0018, -	0xfc: 0x0059, 0xfd: 0x0061, 0xfe: 0x0069, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0071, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0079, -	// Block 0x5, offset 0x140 -	0x140: 0x0079, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x0081, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x0089, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x0091, 0x1c5: 0x0091, -	0x1c6: 0x0091, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0099, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x00a1, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x00d2, 0x259: 0x00da, 0x25a: 0x00e2, 0x25b: 0x00ea, 0x25c: 0x00f2, 0x25d: 0x00fa, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0101, 0x262: 0x0089, 0x263: 0x0109, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0111, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x011a, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x0122, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x003a, 0x2c5: 0x012a, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0818, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0139, -	0x4b6: 0x0141, 0x4b7: 0x0149, 0x4b8: 0x0151, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x0c08, 0x541: 0x0a08, 0x542: 0x0a08, 0x543: 0x0a08, 0x544: 0x0a08, 0x545: 0x0a08, -	0x546: 0x0c08, 0x547: 0x0c08, 0x548: 0x0a08, 0x549: 0x0c08, 0x54a: 0x0a08, 0x54b: 0x0a08, -	0x54c: 0x0a08, 0x54d: 0x0a08, 0x54e: 0x0a08, 0x54f: 0x0a08, 0x550: 0x0a08, 0x551: 0x0a08, -	0x552: 0x0a08, 0x553: 0x0a08, 0x554: 0x0c08, 0x555: 0x0a08, 0x556: 0x0c08, 0x557: 0x0c08, -	0x558: 0x0c08, 0x559: 0x3308, 0x55a: 0x3308, 0x55b: 0x3308, 0x55c: 0x0040, 0x55d: 0x0040, -	0x55e: 0x0818, 0x55f: 0x0040, 0x560: 0x0a08, 0x561: 0x0808, 0x562: 0x0a08, 0x563: 0x0a08, -	0x564: 0x0a08, 0x565: 0x0a08, 0x566: 0x0808, 0x567: 0x0c08, 0x568: 0x0a08, 0x569: 0x0c08, -	0x56a: 0x0c08, 0x56b: 0x0040, 0x56c: 0x0040, 0x56d: 0x0040, 0x56e: 0x0040, 0x56f: 0x0040, -	0x570: 0x0c08, 0x571: 0x0c08, 0x572: 0x0c08, 0x573: 0x0c08, 0x574: 0x0c08, 0x575: 0x0c08, -	0x576: 0x0c08, 0x577: 0x0c08, 0x578: 0x0c08, 0x579: 0x0c08, 0x57a: 0x0c08, 0x57b: 0x0c08, -	0x57c: 0x0c08, 0x57d: 0x0c08, 0x57e: 0x0c08, 0x57f: 0x0c08, -	// Block 0x16, offset 0x580 -	0x580: 0x0c08, 0x581: 0x0c08, 0x582: 0x0c08, 0x583: 0x0808, 0x584: 0x0808, 0x585: 0x0808, -	0x586: 0x0a08, 0x587: 0x0808, 0x588: 0x0818, 0x589: 0x0a08, 0x58a: 0x0a08, 0x58b: 0x0a08, -	0x58c: 0x0a08, 0x58d: 0x0a08, 0x58e: 0x0c08, 0x58f: 0x0040, 0x590: 0x0840, 0x591: 0x0840, -	0x592: 0x0040, 0x593: 0x0040, 0x594: 0x0040, 0x595: 0x0040, 0x596: 0x0040, 0x597: 0x0040, -	0x598: 0x3308, 0x599: 0x3308, 0x59a: 0x3308, 0x59b: 0x3308, 0x59c: 0x3308, 0x59d: 0x3308, -	0x59e: 0x3308, 0x59f: 0x3308, 0x5a0: 0x0a08, 0x5a1: 0x0a08, 0x5a2: 0x0a08, 0x5a3: 0x0a08, -	0x5a4: 0x0a08, 0x5a5: 0x0a08, 0x5a6: 0x0a08, 0x5a7: 0x0a08, 0x5a8: 0x0a08, 0x5a9: 0x0a08, -	0x5aa: 0x0c08, 0x5ab: 0x0c08, 0x5ac: 0x0c08, 0x5ad: 0x0808, 0x5ae: 0x0c08, 0x5af: 0x0a08, -	0x5b0: 0x0a08, 0x5b1: 0x0c08, 0x5b2: 0x0c08, 0x5b3: 0x0a08, 0x5b4: 0x0a08, 0x5b5: 0x0a08, -	0x5b6: 0x0a08, 0x5b7: 0x0a08, 0x5b8: 0x0a08, 0x5b9: 0x0c08, 0x5ba: 0x0a08, 0x5bb: 0x0a08, -	0x5bc: 0x0a08, 0x5bd: 0x0a08, 0x5be: 0x0a08, 0x5bf: 0x0a08, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x3008, 0x5c1: 0x3308, 0x5c2: 0x3308, 0x5c3: 0x3308, 0x5c4: 0x3308, 0x5c5: 0x3308, -	0x5c6: 0x3308, 0x5c7: 0x3308, 0x5c8: 0x3308, 0x5c9: 0x3008, 0x5ca: 0x3008, 0x5cb: 0x3008, -	0x5cc: 0x3008, 0x5cd: 0x3b08, 0x5ce: 0x3008, 0x5cf: 0x3008, 0x5d0: 0x0008, 0x5d1: 0x3308, -	0x5d2: 0x3308, 0x5d3: 0x3308, 0x5d4: 0x3308, 0x5d5: 0x3308, 0x5d6: 0x3308, 0x5d7: 0x3308, -	0x5d8: 0x0159, 0x5d9: 0x0161, 0x5da: 0x0169, 0x5db: 0x0171, 0x5dc: 0x0179, 0x5dd: 0x0181, -	0x5de: 0x0189, 0x5df: 0x0191, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x3308, 0x5e3: 0x3308, -	0x5e4: 0x0018, 0x5e5: 0x0018, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0008, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0018, 0x5f1: 0x0008, 0x5f2: 0x0008, 0x5f3: 0x0008, 0x5f4: 0x0008, 0x5f5: 0x0008, -	0x5f6: 0x0008, 0x5f7: 0x0008, 0x5f8: 0x0008, 0x5f9: 0x0008, 0x5fa: 0x0008, 0x5fb: 0x0008, -	0x5fc: 0x0008, 0x5fd: 0x0008, 0x5fe: 0x0008, 0x5ff: 0x0008, -	// Block 0x18, offset 0x600 -	0x600: 0x0008, 0x601: 0x3308, 0x602: 0x3008, 0x603: 0x3008, 0x604: 0x0040, 0x605: 0x0008, -	0x606: 0x0008, 0x607: 0x0008, 0x608: 0x0008, 0x609: 0x0008, 0x60a: 0x0008, 0x60b: 0x0008, -	0x60c: 0x0008, 0x60d: 0x0040, 0x60e: 0x0040, 0x60f: 0x0008, 0x610: 0x0008, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0008, 0x614: 0x0008, 0x615: 0x0008, 0x616: 0x0008, 0x617: 0x0008, -	0x618: 0x0008, 0x619: 0x0008, 0x61a: 0x0008, 0x61b: 0x0008, 0x61c: 0x0008, 0x61d: 0x0008, -	0x61e: 0x0008, 0x61f: 0x0008, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x0008, 0x623: 0x0008, -	0x624: 0x0008, 0x625: 0x0008, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0040, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0040, 0x632: 0x0008, 0x633: 0x0040, 0x634: 0x0040, 0x635: 0x0040, -	0x636: 0x0008, 0x637: 0x0008, 0x638: 0x0008, 0x639: 0x0008, 0x63a: 0x0040, 0x63b: 0x0040, -	0x63c: 0x3308, 0x63d: 0x0008, 0x63e: 0x3008, 0x63f: 0x3008, -	// Block 0x19, offset 0x640 -	0x640: 0x3008, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x3308, 0x644: 0x3308, 0x645: 0x0040, -	0x646: 0x0040, 0x647: 0x3008, 0x648: 0x3008, 0x649: 0x0040, 0x64a: 0x0040, 0x64b: 0x3008, -	0x64c: 0x3008, 0x64d: 0x3b08, 0x64e: 0x0008, 0x64f: 0x0040, 0x650: 0x0040, 0x651: 0x0040, -	0x652: 0x0040, 0x653: 0x0040, 0x654: 0x0040, 0x655: 0x0040, 0x656: 0x0040, 0x657: 0x3008, -	0x658: 0x0040, 0x659: 0x0040, 0x65a: 0x0040, 0x65b: 0x0040, 0x65c: 0x0199, 0x65d: 0x01a1, -	0x65e: 0x0040, 0x65f: 0x01a9, 0x660: 0x0008, 0x661: 0x0008, 0x662: 0x3308, 0x663: 0x3308, -	0x664: 0x0040, 0x665: 0x0040, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0008, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x0008, 0x671: 0x0008, 0x672: 0x0018, 0x673: 0x0018, 0x674: 0x0018, 0x675: 0x0018, -	0x676: 0x0018, 0x677: 0x0018, 0x678: 0x0018, 0x679: 0x0018, 0x67a: 0x0018, 0x67b: 0x0018, -	0x67c: 0x0008, 0x67d: 0x0018, 0x67e: 0x3308, 0x67f: 0x0040, -	// Block 0x1a, offset 0x680 -	0x680: 0x0040, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x3008, 0x684: 0x0040, 0x685: 0x0008, -	0x686: 0x0008, 0x687: 0x0008, 0x688: 0x0008, 0x689: 0x0008, 0x68a: 0x0008, 0x68b: 0x0040, -	0x68c: 0x0040, 0x68d: 0x0040, 0x68e: 0x0040, 0x68f: 0x0008, 0x690: 0x0008, 0x691: 0x0040, -	0x692: 0x0040, 0x693: 0x0008, 0x694: 0x0008, 0x695: 0x0008, 0x696: 0x0008, 0x697: 0x0008, -	0x698: 0x0008, 0x699: 0x0008, 0x69a: 0x0008, 0x69b: 0x0008, 0x69c: 0x0008, 0x69d: 0x0008, -	0x69e: 0x0008, 0x69f: 0x0008, 0x6a0: 0x0008, 0x6a1: 0x0008, 0x6a2: 0x0008, 0x6a3: 0x0008, -	0x6a4: 0x0008, 0x6a5: 0x0008, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0040, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x0008, 0x6b1: 0x0040, 0x6b2: 0x0008, 0x6b3: 0x01b1, 0x6b4: 0x0040, 0x6b5: 0x0008, -	0x6b6: 0x01b9, 0x6b7: 0x0040, 0x6b8: 0x0008, 0x6b9: 0x0008, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x3308, 0x6bd: 0x0040, 0x6be: 0x3008, 0x6bf: 0x3008, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x3008, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x0040, 0x6c4: 0x0040, 0x6c5: 0x0040, -	0x6c6: 0x0040, 0x6c7: 0x3308, 0x6c8: 0x3308, 0x6c9: 0x0040, 0x6ca: 0x0040, 0x6cb: 0x3308, -	0x6cc: 0x3308, 0x6cd: 0x3b08, 0x6ce: 0x0040, 0x6cf: 0x0040, 0x6d0: 0x0040, 0x6d1: 0x3308, -	0x6d2: 0x0040, 0x6d3: 0x0040, 0x6d4: 0x0040, 0x6d5: 0x0040, 0x6d6: 0x0040, 0x6d7: 0x0040, -	0x6d8: 0x0040, 0x6d9: 0x01c1, 0x6da: 0x01c9, 0x6db: 0x01d1, 0x6dc: 0x0008, 0x6dd: 0x0040, -	0x6de: 0x01d9, 0x6df: 0x0040, 0x6e0: 0x0040, 0x6e1: 0x0040, 0x6e2: 0x0040, 0x6e3: 0x0040, -	0x6e4: 0x0040, 0x6e5: 0x0040, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0008, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x3308, 0x6f1: 0x3308, 0x6f2: 0x0008, 0x6f3: 0x0008, 0x6f4: 0x0008, 0x6f5: 0x3308, -	0x6f6: 0x0018, 0x6f7: 0x0040, 0x6f8: 0x0040, 0x6f9: 0x0040, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x0040, 0x6fd: 0x0040, 0x6fe: 0x0040, 0x6ff: 0x0040, -	// Block 0x1c, offset 0x700 -	0x700: 0x0040, 0x701: 0x3308, 0x702: 0x3308, 0x703: 0x3008, 0x704: 0x0040, 0x705: 0x0008, -	0x706: 0x0008, 0x707: 0x0008, 0x708: 0x0008, 0x709: 0x0008, 0x70a: 0x0008, 0x70b: 0x0008, -	0x70c: 0x0008, 0x70d: 0x0008, 0x70e: 0x0040, 0x70f: 0x0008, 0x710: 0x0008, 0x711: 0x0008, -	0x712: 0x0040, 0x713: 0x0008, 0x714: 0x0008, 0x715: 0x0008, 0x716: 0x0008, 0x717: 0x0008, -	0x718: 0x0008, 0x719: 0x0008, 0x71a: 0x0008, 0x71b: 0x0008, 0x71c: 0x0008, 0x71d: 0x0008, -	0x71e: 0x0008, 0x71f: 0x0008, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x0008, 0x723: 0x0008, -	0x724: 0x0008, 0x725: 0x0008, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0040, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0008, 0x731: 0x0040, 0x732: 0x0008, 0x733: 0x0008, 0x734: 0x0040, 0x735: 0x0008, -	0x736: 0x0008, 0x737: 0x0008, 0x738: 0x0008, 0x739: 0x0008, 0x73a: 0x0040, 0x73b: 0x0040, -	0x73c: 0x3308, 0x73d: 0x0008, 0x73e: 0x3008, 0x73f: 0x3008, -	// Block 0x1d, offset 0x740 -	0x740: 0x3008, 0x741: 0x3308, 0x742: 0x3308, 0x743: 0x3308, 0x744: 0x3308, 0x745: 0x3308, -	0x746: 0x0040, 0x747: 0x3308, 0x748: 0x3308, 0x749: 0x3008, 0x74a: 0x0040, 0x74b: 0x3008, -	0x74c: 0x3008, 0x74d: 0x3b08, 0x74e: 0x0040, 0x74f: 0x0040, 0x750: 0x0008, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0040, 0x754: 0x0040, 0x755: 0x0040, 0x756: 0x0040, 0x757: 0x0040, -	0x758: 0x0040, 0x759: 0x0040, 0x75a: 0x0040, 0x75b: 0x0040, 0x75c: 0x0040, 0x75d: 0x0040, -	0x75e: 0x0040, 0x75f: 0x0040, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x3308, 0x763: 0x3308, -	0x764: 0x0040, 0x765: 0x0040, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0008, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0018, 0x771: 0x0018, 0x772: 0x0040, 0x773: 0x0040, 0x774: 0x0040, 0x775: 0x0040, -	0x776: 0x0040, 0x777: 0x0040, 0x778: 0x0040, 0x779: 0x0008, 0x77a: 0x3308, 0x77b: 0x3308, -	0x77c: 0x3308, 0x77d: 0x3308, 0x77e: 0x3308, 0x77f: 0x3308, -	// Block 0x1e, offset 0x780 -	0x780: 0x0040, 0x781: 0x3308, 0x782: 0x3008, 0x783: 0x3008, 0x784: 0x0040, 0x785: 0x0008, -	0x786: 0x0008, 0x787: 0x0008, 0x788: 0x0008, 0x789: 0x0008, 0x78a: 0x0008, 0x78b: 0x0008, -	0x78c: 0x0008, 0x78d: 0x0040, 0x78e: 0x0040, 0x78f: 0x0008, 0x790: 0x0008, 0x791: 0x0040, -	0x792: 0x0040, 0x793: 0x0008, 0x794: 0x0008, 0x795: 0x0008, 0x796: 0x0008, 0x797: 0x0008, -	0x798: 0x0008, 0x799: 0x0008, 0x79a: 0x0008, 0x79b: 0x0008, 0x79c: 0x0008, 0x79d: 0x0008, -	0x79e: 0x0008, 0x79f: 0x0008, 0x7a0: 0x0008, 0x7a1: 0x0008, 0x7a2: 0x0008, 0x7a3: 0x0008, -	0x7a4: 0x0008, 0x7a5: 0x0008, 0x7a6: 0x0008, 0x7a7: 0x0008, 0x7a8: 0x0008, 0x7a9: 0x0040, -	0x7aa: 0x0008, 0x7ab: 0x0008, 0x7ac: 0x0008, 0x7ad: 0x0008, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0008, 0x7b1: 0x0040, 0x7b2: 0x0008, 0x7b3: 0x0008, 0x7b4: 0x0040, 0x7b5: 0x0008, -	0x7b6: 0x0008, 0x7b7: 0x0008, 0x7b8: 0x0008, 0x7b9: 0x0008, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x3308, 0x7bd: 0x0008, 0x7be: 0x3008, 0x7bf: 0x3308, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x3008, 0x7c1: 0x3308, 0x7c2: 0x3308, 0x7c3: 0x3308, 0x7c4: 0x3308, 0x7c5: 0x0040, -	0x7c6: 0x0040, 0x7c7: 0x3008, 0x7c8: 0x3008, 0x7c9: 0x0040, 0x7ca: 0x0040, 0x7cb: 0x3008, -	0x7cc: 0x3008, 0x7cd: 0x3b08, 0x7ce: 0x0040, 0x7cf: 0x0040, 0x7d0: 0x0040, 0x7d1: 0x0040, -	0x7d2: 0x0040, 0x7d3: 0x0040, 0x7d4: 0x0040, 0x7d5: 0x3308, 0x7d6: 0x3308, 0x7d7: 0x3008, -	0x7d8: 0x0040, 0x7d9: 0x0040, 0x7da: 0x0040, 0x7db: 0x0040, 0x7dc: 0x01e1, 0x7dd: 0x01e9, -	0x7de: 0x0040, 0x7df: 0x0008, 0x7e0: 0x0008, 0x7e1: 0x0008, 0x7e2: 0x3308, 0x7e3: 0x3308, -	0x7e4: 0x0040, 0x7e5: 0x0040, 0x7e6: 0x0008, 0x7e7: 0x0008, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0008, 0x7ec: 0x0008, 0x7ed: 0x0008, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0018, 0x7f1: 0x0008, 0x7f2: 0x0018, 0x7f3: 0x0018, 0x7f4: 0x0018, 0x7f5: 0x0018, -	0x7f6: 0x0018, 0x7f7: 0x0018, 0x7f8: 0x0040, 0x7f9: 0x0040, 0x7fa: 0x0040, 0x7fb: 0x0040, -	0x7fc: 0x0040, 0x7fd: 0x0040, 0x7fe: 0x0040, 0x7ff: 0x0040, -	// Block 0x20, offset 0x800 -	0x800: 0x0040, 0x801: 0x0040, 0x802: 0x3308, 0x803: 0x0008, 0x804: 0x0040, 0x805: 0x0008, -	0x806: 0x0008, 0x807: 0x0008, 0x808: 0x0008, 0x809: 0x0008, 0x80a: 0x0008, 0x80b: 0x0040, -	0x80c: 0x0040, 0x80d: 0x0040, 0x80e: 0x0008, 0x80f: 0x0008, 0x810: 0x0008, 0x811: 0x0040, -	0x812: 0x0008, 0x813: 0x0008, 0x814: 0x0008, 0x815: 0x0008, 0x816: 0x0040, 0x817: 0x0040, -	0x818: 0x0040, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0040, 0x81c: 0x0008, 0x81d: 0x0040, -	0x81e: 0x0008, 0x81f: 0x0008, 0x820: 0x0040, 0x821: 0x0040, 0x822: 0x0040, 0x823: 0x0008, -	0x824: 0x0008, 0x825: 0x0040, 0x826: 0x0040, 0x827: 0x0040, 0x828: 0x0008, 0x829: 0x0008, -	0x82a: 0x0008, 0x82b: 0x0040, 0x82c: 0x0040, 0x82d: 0x0040, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0008, 0x831: 0x0008, 0x832: 0x0008, 0x833: 0x0008, 0x834: 0x0008, 0x835: 0x0008, -	0x836: 0x0008, 0x837: 0x0008, 0x838: 0x0008, 0x839: 0x0008, 0x83a: 0x0040, 0x83b: 0x0040, -	0x83c: 0x0040, 0x83d: 0x0040, 0x83e: 0x3008, 0x83f: 0x3008, -	// Block 0x21, offset 0x840 -	0x840: 0x3308, 0x841: 0x3008, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x3008, 0x845: 0x0040, -	0x846: 0x3308, 0x847: 0x3308, 0x848: 0x3308, 0x849: 0x0040, 0x84a: 0x3308, 0x84b: 0x3308, -	0x84c: 0x3308, 0x84d: 0x3b08, 0x84e: 0x0040, 0x84f: 0x0040, 0x850: 0x0040, 0x851: 0x0040, -	0x852: 0x0040, 0x853: 0x0040, 0x854: 0x0040, 0x855: 0x3308, 0x856: 0x3308, 0x857: 0x0040, -	0x858: 0x0008, 0x859: 0x0008, 0x85a: 0x0008, 0x85b: 0x0040, 0x85c: 0x0040, 0x85d: 0x0008, -	0x85e: 0x0040, 0x85f: 0x0040, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x3308, 0x863: 0x3308, -	0x864: 0x0040, 0x865: 0x0040, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0008, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0040, 0x871: 0x0040, 0x872: 0x0040, 0x873: 0x0040, 0x874: 0x0040, 0x875: 0x0040, -	0x876: 0x0040, 0x877: 0x0018, 0x878: 0x0018, 0x879: 0x0018, 0x87a: 0x0018, 0x87b: 0x0018, -	0x87c: 0x0018, 0x87d: 0x0018, 0x87e: 0x0018, 0x87f: 0x0018, -	// Block 0x22, offset 0x880 -	0x880: 0x0008, 0x881: 0x3308, 0x882: 0x3008, 0x883: 0x3008, 0x884: 0x0018, 0x885: 0x0008, -	0x886: 0x0008, 0x887: 0x0008, 0x888: 0x0008, 0x889: 0x0008, 0x88a: 0x0008, 0x88b: 0x0008, -	0x88c: 0x0008, 0x88d: 0x0040, 0x88e: 0x0008, 0x88f: 0x0008, 0x890: 0x0008, 0x891: 0x0040, -	0x892: 0x0008, 0x893: 0x0008, 0x894: 0x0008, 0x895: 0x0008, 0x896: 0x0008, 0x897: 0x0008, -	0x898: 0x0008, 0x899: 0x0008, 0x89a: 0x0008, 0x89b: 0x0008, 0x89c: 0x0008, 0x89d: 0x0008, -	0x89e: 0x0008, 0x89f: 0x0008, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x0008, 0x8a3: 0x0008, -	0x8a4: 0x0008, 0x8a5: 0x0008, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0040, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0008, 0x8b1: 0x0008, 0x8b2: 0x0008, 0x8b3: 0x0008, 0x8b4: 0x0040, 0x8b5: 0x0008, -	0x8b6: 0x0008, 0x8b7: 0x0008, 0x8b8: 0x0008, 0x8b9: 0x0008, 0x8ba: 0x0040, 0x8bb: 0x0040, -	0x8bc: 0x3308, 0x8bd: 0x0008, 0x8be: 0x3008, 0x8bf: 0x3308, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x3008, 0x8c1: 0x3008, 0x8c2: 0x3008, 0x8c3: 0x3008, 0x8c4: 0x3008, 0x8c5: 0x0040, -	0x8c6: 0x3308, 0x8c7: 0x3008, 0x8c8: 0x3008, 0x8c9: 0x0040, 0x8ca: 0x3008, 0x8cb: 0x3008, -	0x8cc: 0x3308, 0x8cd: 0x3b08, 0x8ce: 0x0040, 0x8cf: 0x0040, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0040, 0x8d5: 0x3008, 0x8d6: 0x3008, 0x8d7: 0x0040, -	0x8d8: 0x0040, 0x8d9: 0x0040, 0x8da: 0x0040, 0x8db: 0x0040, 0x8dc: 0x0040, 0x8dd: 0x0008, -	0x8de: 0x0008, 0x8df: 0x0040, 0x8e0: 0x0008, 0x8e1: 0x0008, 0x8e2: 0x3308, 0x8e3: 0x3308, -	0x8e4: 0x0040, 0x8e5: 0x0040, 0x8e6: 0x0008, 0x8e7: 0x0008, 0x8e8: 0x0008, 0x8e9: 0x0008, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0008, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0040, 0x8f1: 0x0008, 0x8f2: 0x0008, 0x8f3: 0x3008, 0x8f4: 0x0040, 0x8f5: 0x0040, -	0x8f6: 0x0040, 0x8f7: 0x0040, 0x8f8: 0x0040, 0x8f9: 0x0040, 0x8fa: 0x0040, 0x8fb: 0x0040, -	0x8fc: 0x0040, 0x8fd: 0x0040, 0x8fe: 0x0040, 0x8ff: 0x0040, -	// Block 0x24, offset 0x900 -	0x900: 0x3008, 0x901: 0x3308, 0x902: 0x3308, 0x903: 0x3308, 0x904: 0x3308, 0x905: 0x0040, -	0x906: 0x3008, 0x907: 0x3008, 0x908: 0x3008, 0x909: 0x0040, 0x90a: 0x3008, 0x90b: 0x3008, -	0x90c: 0x3008, 0x90d: 0x3b08, 0x90e: 0x0008, 0x90f: 0x0018, 0x910: 0x0040, 0x911: 0x0040, -	0x912: 0x0040, 0x913: 0x0040, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x3008, -	0x918: 0x0018, 0x919: 0x0018, 0x91a: 0x0018, 0x91b: 0x0018, 0x91c: 0x0018, 0x91d: 0x0018, -	0x91e: 0x0018, 0x91f: 0x0008, 0x920: 0x0008, 0x921: 0x0008, 0x922: 0x3308, 0x923: 0x3308, -	0x924: 0x0040, 0x925: 0x0040, 0x926: 0x0008, 0x927: 0x0008, 0x928: 0x0008, 0x929: 0x0008, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0008, 0x92d: 0x0008, 0x92e: 0x0008, 0x92f: 0x0008, -	0x930: 0x0018, 0x931: 0x0018, 0x932: 0x0018, 0x933: 0x0018, 0x934: 0x0018, 0x935: 0x0018, -	0x936: 0x0018, 0x937: 0x0018, 0x938: 0x0018, 0x939: 0x0018, 0x93a: 0x0008, 0x93b: 0x0008, -	0x93c: 0x0008, 0x93d: 0x0008, 0x93e: 0x0008, 0x93f: 0x0008, -	// Block 0x25, offset 0x940 -	0x940: 0x0040, 0x941: 0x0008, 0x942: 0x0008, 0x943: 0x0040, 0x944: 0x0008, 0x945: 0x0040, -	0x946: 0x0008, 0x947: 0x0008, 0x948: 0x0008, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0040, -	0x94c: 0x0008, 0x94d: 0x0008, 0x94e: 0x0008, 0x94f: 0x0008, 0x950: 0x0008, 0x951: 0x0008, -	0x952: 0x0008, 0x953: 0x0008, 0x954: 0x0008, 0x955: 0x0008, 0x956: 0x0008, 0x957: 0x0008, -	0x958: 0x0008, 0x959: 0x0008, 0x95a: 0x0008, 0x95b: 0x0008, 0x95c: 0x0008, 0x95d: 0x0008, -	0x95e: 0x0008, 0x95f: 0x0008, 0x960: 0x0008, 0x961: 0x0008, 0x962: 0x0008, 0x963: 0x0008, -	0x964: 0x0040, 0x965: 0x0008, 0x966: 0x0040, 0x967: 0x0008, 0x968: 0x0008, 0x969: 0x0008, -	0x96a: 0x0008, 0x96b: 0x0008, 0x96c: 0x0008, 0x96d: 0x0008, 0x96e: 0x0008, 0x96f: 0x0008, -	0x970: 0x0008, 0x971: 0x3308, 0x972: 0x0008, 0x973: 0x01f9, 0x974: 0x3308, 0x975: 0x3308, -	0x976: 0x3308, 0x977: 0x3308, 0x978: 0x3308, 0x979: 0x3308, 0x97a: 0x3b08, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x0008, 0x97e: 0x0040, 0x97f: 0x0040, -	// Block 0x26, offset 0x980 -	0x980: 0x0008, 0x981: 0x0008, 0x982: 0x0008, 0x983: 0x0211, 0x984: 0x0008, 0x985: 0x0008, -	0x986: 0x0008, 0x987: 0x0008, 0x988: 0x0040, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x0219, 0x98e: 0x0008, 0x98f: 0x0008, 0x990: 0x0008, 0x991: 0x0008, -	0x992: 0x0221, 0x993: 0x0008, 0x994: 0x0008, 0x995: 0x0008, 0x996: 0x0008, 0x997: 0x0229, -	0x998: 0x0008, 0x999: 0x0008, 0x99a: 0x0008, 0x99b: 0x0008, 0x99c: 0x0231, 0x99d: 0x0008, -	0x99e: 0x0008, 0x99f: 0x0008, 0x9a0: 0x0008, 0x9a1: 0x0008, 0x9a2: 0x0008, 0x9a3: 0x0008, -	0x9a4: 0x0008, 0x9a5: 0x0008, 0x9a6: 0x0008, 0x9a7: 0x0008, 0x9a8: 0x0008, 0x9a9: 0x0239, -	0x9aa: 0x0008, 0x9ab: 0x0008, 0x9ac: 0x0008, 0x9ad: 0x0040, 0x9ae: 0x0040, 0x9af: 0x0040, -	0x9b0: 0x0040, 0x9b1: 0x3308, 0x9b2: 0x3308, 0x9b3: 0x0241, 0x9b4: 0x3308, 0x9b5: 0x0249, -	0x9b6: 0x0251, 0x9b7: 0x0259, 0x9b8: 0x0261, 0x9b9: 0x0269, 0x9ba: 0x3308, 0x9bb: 0x3308, -	0x9bc: 0x3308, 0x9bd: 0x3308, 0x9be: 0x3308, 0x9bf: 0x3008, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x3308, 0x9c1: 0x0271, 0x9c2: 0x3308, 0x9c3: 0x3308, 0x9c4: 0x3b08, 0x9c5: 0x0018, -	0x9c6: 0x3308, 0x9c7: 0x3308, 0x9c8: 0x0008, 0x9c9: 0x0008, 0x9ca: 0x0008, 0x9cb: 0x0008, -	0x9cc: 0x0008, 0x9cd: 0x3308, 0x9ce: 0x3308, 0x9cf: 0x3308, 0x9d0: 0x3308, 0x9d1: 0x3308, -	0x9d2: 0x3308, 0x9d3: 0x0279, 0x9d4: 0x3308, 0x9d5: 0x3308, 0x9d6: 0x3308, 0x9d7: 0x3308, -	0x9d8: 0x0040, 0x9d9: 0x3308, 0x9da: 0x3308, 0x9db: 0x3308, 0x9dc: 0x3308, 0x9dd: 0x0281, -	0x9de: 0x3308, 0x9df: 0x3308, 0x9e0: 0x3308, 0x9e1: 0x3308, 0x9e2: 0x0289, 0x9e3: 0x3308, -	0x9e4: 0x3308, 0x9e5: 0x3308, 0x9e6: 0x3308, 0x9e7: 0x0291, 0x9e8: 0x3308, 0x9e9: 0x3308, -	0x9ea: 0x3308, 0x9eb: 0x3308, 0x9ec: 0x0299, 0x9ed: 0x3308, 0x9ee: 0x3308, 0x9ef: 0x3308, -	0x9f0: 0x3308, 0x9f1: 0x3308, 0x9f2: 0x3308, 0x9f3: 0x3308, 0x9f4: 0x3308, 0x9f5: 0x3308, -	0x9f6: 0x3308, 0x9f7: 0x3308, 0x9f8: 0x3308, 0x9f9: 0x02a1, 0x9fa: 0x3308, 0x9fb: 0x3308, -	0x9fc: 0x3308, 0x9fd: 0x0040, 0x9fe: 0x0018, 0x9ff: 0x0018, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0008, 0xa01: 0x0008, 0xa02: 0x0008, 0xa03: 0x0008, 0xa04: 0x0008, 0xa05: 0x0008, -	0xa06: 0x0008, 0xa07: 0x0008, 0xa08: 0x0008, 0xa09: 0x0008, 0xa0a: 0x0008, 0xa0b: 0x0008, -	0xa0c: 0x0008, 0xa0d: 0x0008, 0xa0e: 0x0008, 0xa0f: 0x0008, 0xa10: 0x0008, 0xa11: 0x0008, -	0xa12: 0x0008, 0xa13: 0x0008, 0xa14: 0x0008, 0xa15: 0x0008, 0xa16: 0x0008, 0xa17: 0x0008, -	0xa18: 0x0008, 0xa19: 0x0008, 0xa1a: 0x0008, 0xa1b: 0x0008, 0xa1c: 0x0008, 0xa1d: 0x0008, -	0xa1e: 0x0008, 0xa1f: 0x0008, 0xa20: 0x0008, 0xa21: 0x0008, 0xa22: 0x0008, 0xa23: 0x0008, -	0xa24: 0x0008, 0xa25: 0x0008, 0xa26: 0x0008, 0xa27: 0x0008, 0xa28: 0x0008, 0xa29: 0x0008, -	0xa2a: 0x0008, 0xa2b: 0x0008, 0xa2c: 0x0019, 0xa2d: 0x02e1, 0xa2e: 0x02e9, 0xa2f: 0x0008, -	0xa30: 0x02f1, 0xa31: 0x02f9, 0xa32: 0x0301, 0xa33: 0x0309, 0xa34: 0x00a9, 0xa35: 0x0311, -	0xa36: 0x00b1, 0xa37: 0x0319, 0xa38: 0x0101, 0xa39: 0x0321, 0xa3a: 0x0329, 0xa3b: 0x0008, -	0xa3c: 0x0051, 0xa3d: 0x0331, 0xa3e: 0x0339, 0xa3f: 0x00b9, -	// Block 0x29, offset 0xa40 -	0xa40: 0x0341, 0xa41: 0x0349, 0xa42: 0x00c1, 0xa43: 0x0019, 0xa44: 0x0351, 0xa45: 0x0359, -	0xa46: 0x05b5, 0xa47: 0x02e9, 0xa48: 0x02f1, 0xa49: 0x02f9, 0xa4a: 0x0361, 0xa4b: 0x0369, -	0xa4c: 0x0371, 0xa4d: 0x0309, 0xa4e: 0x0008, 0xa4f: 0x0319, 0xa50: 0x0321, 0xa51: 0x0379, -	0xa52: 0x0051, 0xa53: 0x0381, 0xa54: 0x05cd, 0xa55: 0x05cd, 0xa56: 0x0339, 0xa57: 0x0341, -	0xa58: 0x0349, 0xa59: 0x05b5, 0xa5a: 0x0389, 0xa5b: 0x0391, 0xa5c: 0x05e5, 0xa5d: 0x0399, -	0xa5e: 0x03a1, 0xa5f: 0x03a9, 0xa60: 0x03b1, 0xa61: 0x03b9, 0xa62: 0x0311, 0xa63: 0x00b9, -	0xa64: 0x0349, 0xa65: 0x0391, 0xa66: 0x0399, 0xa67: 0x03a1, 0xa68: 0x03c1, 0xa69: 0x03b1, -	0xa6a: 0x03b9, 0xa6b: 0x0008, 0xa6c: 0x0008, 0xa6d: 0x0008, 0xa6e: 0x0008, 0xa6f: 0x0008, -	0xa70: 0x0008, 0xa71: 0x0008, 0xa72: 0x0008, 0xa73: 0x0008, 0xa74: 0x0008, 0xa75: 0x0008, -	0xa76: 0x0008, 0xa77: 0x0008, 0xa78: 0x03c9, 0xa79: 0x0008, 0xa7a: 0x0008, 0xa7b: 0x0008, -	0xa7c: 0x0008, 0xa7d: 0x0008, 0xa7e: 0x0008, 0xa7f: 0x0008, -	// Block 0x2a, offset 0xa80 -	0xa80: 0x0008, 0xa81: 0x0008, 0xa82: 0x0008, 0xa83: 0x0008, 0xa84: 0x0008, 0xa85: 0x0008, -	0xa86: 0x0008, 0xa87: 0x0008, 0xa88: 0x0008, 0xa89: 0x0008, 0xa8a: 0x0008, 0xa8b: 0x0008, -	0xa8c: 0x0008, 0xa8d: 0x0008, 0xa8e: 0x0008, 0xa8f: 0x0008, 0xa90: 0x0008, 0xa91: 0x0008, -	0xa92: 0x0008, 0xa93: 0x0008, 0xa94: 0x0008, 0xa95: 0x0008, 0xa96: 0x0008, 0xa97: 0x0008, -	0xa98: 0x0008, 0xa99: 0x0008, 0xa9a: 0x0008, 0xa9b: 0x03d1, 0xa9c: 0x03d9, 0xa9d: 0x03e1, -	0xa9e: 0x03e9, 0xa9f: 0x0371, 0xaa0: 0x03f1, 0xaa1: 0x03f9, 0xaa2: 0x0401, 0xaa3: 0x0409, -	0xaa4: 0x0411, 0xaa5: 0x0419, 0xaa6: 0x0421, 0xaa7: 0x05fd, 0xaa8: 0x0429, 0xaa9: 0x0431, -	0xaaa: 0xe17d, 0xaab: 0x0439, 0xaac: 0x0441, 0xaad: 0x0449, 0xaae: 0x0451, 0xaaf: 0x0459, -	0xab0: 0x0461, 0xab1: 0x0469, 0xab2: 0x0471, 0xab3: 0x0479, 0xab4: 0x0481, 0xab5: 0x0489, -	0xab6: 0x0491, 0xab7: 0x0499, 0xab8: 0x0615, 0xab9: 0x04a1, 0xaba: 0x04a9, 0xabb: 0x04b1, -	0xabc: 0x04b9, 0xabd: 0x04c1, 0xabe: 0x04c9, 0xabf: 0x04d1, -	// Block 0x2b, offset 0xac0 -	0xac0: 0xe00d, 0xac1: 0x0008, 0xac2: 0xe00d, 0xac3: 0x0008, 0xac4: 0xe00d, 0xac5: 0x0008, -	0xac6: 0xe00d, 0xac7: 0x0008, 0xac8: 0xe00d, 0xac9: 0x0008, 0xaca: 0xe00d, 0xacb: 0x0008, -	0xacc: 0xe00d, 0xacd: 0x0008, 0xace: 0xe00d, 0xacf: 0x0008, 0xad0: 0xe00d, 0xad1: 0x0008, -	0xad2: 0xe00d, 0xad3: 0x0008, 0xad4: 0xe00d, 0xad5: 0x0008, 0xad6: 0xe00d, 0xad7: 0x0008, -	0xad8: 0xe00d, 0xad9: 0x0008, 0xada: 0xe00d, 0xadb: 0x0008, 0xadc: 0xe00d, 0xadd: 0x0008, -	0xade: 0xe00d, 0xadf: 0x0008, 0xae0: 0xe00d, 0xae1: 0x0008, 0xae2: 0xe00d, 0xae3: 0x0008, -	0xae4: 0xe00d, 0xae5: 0x0008, 0xae6: 0xe00d, 0xae7: 0x0008, 0xae8: 0xe00d, 0xae9: 0x0008, -	0xaea: 0xe00d, 0xaeb: 0x0008, 0xaec: 0xe00d, 0xaed: 0x0008, 0xaee: 0xe00d, 0xaef: 0x0008, -	0xaf0: 0xe00d, 0xaf1: 0x0008, 0xaf2: 0xe00d, 0xaf3: 0x0008, 0xaf4: 0xe00d, 0xaf5: 0x0008, -	0xaf6: 0xe00d, 0xaf7: 0x0008, 0xaf8: 0xe00d, 0xaf9: 0x0008, 0xafa: 0xe00d, 0xafb: 0x0008, -	0xafc: 0xe00d, 0xafd: 0x0008, 0xafe: 0xe00d, 0xaff: 0x0008, -	// Block 0x2c, offset 0xb00 -	0xb00: 0xe00d, 0xb01: 0x0008, 0xb02: 0xe00d, 0xb03: 0x0008, 0xb04: 0xe00d, 0xb05: 0x0008, -	0xb06: 0xe00d, 0xb07: 0x0008, 0xb08: 0xe00d, 0xb09: 0x0008, 0xb0a: 0xe00d, 0xb0b: 0x0008, -	0xb0c: 0xe00d, 0xb0d: 0x0008, 0xb0e: 0xe00d, 0xb0f: 0x0008, 0xb10: 0xe00d, 0xb11: 0x0008, -	0xb12: 0xe00d, 0xb13: 0x0008, 0xb14: 0xe00d, 0xb15: 0x0008, 0xb16: 0x0008, 0xb17: 0x0008, -	0xb18: 0x0008, 0xb19: 0x0008, 0xb1a: 0x062d, 0xb1b: 0x064d, 0xb1c: 0x0008, 0xb1d: 0x0008, -	0xb1e: 0x04d9, 0xb1f: 0x0008, 0xb20: 0xe00d, 0xb21: 0x0008, 0xb22: 0xe00d, 0xb23: 0x0008, -	0xb24: 0xe00d, 0xb25: 0x0008, 0xb26: 0xe00d, 0xb27: 0x0008, 0xb28: 0xe00d, 0xb29: 0x0008, -	0xb2a: 0xe00d, 0xb2b: 0x0008, 0xb2c: 0xe00d, 0xb2d: 0x0008, 0xb2e: 0xe00d, 0xb2f: 0x0008, -	0xb30: 0xe00d, 0xb31: 0x0008, 0xb32: 0xe00d, 0xb33: 0x0008, 0xb34: 0xe00d, 0xb35: 0x0008, -	0xb36: 0xe00d, 0xb37: 0x0008, 0xb38: 0xe00d, 0xb39: 0x0008, 0xb3a: 0xe00d, 0xb3b: 0x0008, -	0xb3c: 0xe00d, 0xb3d: 0x0008, 0xb3e: 0xe00d, 0xb3f: 0x0008, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x0008, 0xb41: 0x0008, 0xb42: 0x0008, 0xb43: 0x0008, 0xb44: 0x0008, 0xb45: 0x0008, -	0xb46: 0x0040, 0xb47: 0x0040, 0xb48: 0xe045, 0xb49: 0xe045, 0xb4a: 0xe045, 0xb4b: 0xe045, -	0xb4c: 0xe045, 0xb4d: 0xe045, 0xb4e: 0x0040, 0xb4f: 0x0040, 0xb50: 0x0008, 0xb51: 0x0008, -	0xb52: 0x0008, 0xb53: 0x0008, 0xb54: 0x0008, 0xb55: 0x0008, 0xb56: 0x0008, 0xb57: 0x0008, -	0xb58: 0x0040, 0xb59: 0xe045, 0xb5a: 0x0040, 0xb5b: 0xe045, 0xb5c: 0x0040, 0xb5d: 0xe045, -	0xb5e: 0x0040, 0xb5f: 0xe045, 0xb60: 0x0008, 0xb61: 0x0008, 0xb62: 0x0008, 0xb63: 0x0008, -	0xb64: 0x0008, 0xb65: 0x0008, 0xb66: 0x0008, 0xb67: 0x0008, 0xb68: 0xe045, 0xb69: 0xe045, -	0xb6a: 0xe045, 0xb6b: 0xe045, 0xb6c: 0xe045, 0xb6d: 0xe045, 0xb6e: 0xe045, 0xb6f: 0xe045, -	0xb70: 0x0008, 0xb71: 0x04e1, 0xb72: 0x0008, 0xb73: 0x04e9, 0xb74: 0x0008, 0xb75: 0x04f1, -	0xb76: 0x0008, 0xb77: 0x04f9, 0xb78: 0x0008, 0xb79: 0x0501, 0xb7a: 0x0008, 0xb7b: 0x0509, -	0xb7c: 0x0008, 0xb7d: 0x0511, 0xb7e: 0x0040, 0xb7f: 0x0040, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x0519, 0xb81: 0x0521, 0xb82: 0x0529, 0xb83: 0x0531, 0xb84: 0x0539, 0xb85: 0x0541, -	0xb86: 0x0549, 0xb87: 0x0551, 0xb88: 0x0519, 0xb89: 0x0521, 0xb8a: 0x0529, 0xb8b: 0x0531, -	0xb8c: 0x0539, 0xb8d: 0x0541, 0xb8e: 0x0549, 0xb8f: 0x0551, 0xb90: 0x0559, 0xb91: 0x0561, -	0xb92: 0x0569, 0xb93: 0x0571, 0xb94: 0x0579, 0xb95: 0x0581, 0xb96: 0x0589, 0xb97: 0x0591, -	0xb98: 0x0559, 0xb99: 0x0561, 0xb9a: 0x0569, 0xb9b: 0x0571, 0xb9c: 0x0579, 0xb9d: 0x0581, -	0xb9e: 0x0589, 0xb9f: 0x0591, 0xba0: 0x0599, 0xba1: 0x05a1, 0xba2: 0x05a9, 0xba3: 0x05b1, -	0xba4: 0x05b9, 0xba5: 0x05c1, 0xba6: 0x05c9, 0xba7: 0x05d1, 0xba8: 0x0599, 0xba9: 0x05a1, -	0xbaa: 0x05a9, 0xbab: 0x05b1, 0xbac: 0x05b9, 0xbad: 0x05c1, 0xbae: 0x05c9, 0xbaf: 0x05d1, -	0xbb0: 0x0008, 0xbb1: 0x0008, 0xbb2: 0x05d9, 0xbb3: 0x05e1, 0xbb4: 0x05e9, 0xbb5: 0x0040, -	0xbb6: 0x0008, 0xbb7: 0x05f1, 0xbb8: 0xe045, 0xbb9: 0xe045, 0xbba: 0x0665, 0xbbb: 0x04e1, -	0xbbc: 0x05e1, 0xbbd: 0x067e, 0xbbe: 0x05f9, 0xbbf: 0x069e, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x06be, 0xbc1: 0x0602, 0xbc2: 0x0609, 0xbc3: 0x0611, 0xbc4: 0x0619, 0xbc5: 0x0040, -	0xbc6: 0x0008, 0xbc7: 0x0621, 0xbc8: 0x06dd, 0xbc9: 0x04e9, 0xbca: 0x06f5, 0xbcb: 0x04f1, -	0xbcc: 0x0611, 0xbcd: 0x062a, 0xbce: 0x0632, 0xbcf: 0x063a, 0xbd0: 0x0008, 0xbd1: 0x0008, -	0xbd2: 0x0008, 0xbd3: 0x0641, 0xbd4: 0x0040, 0xbd5: 0x0040, 0xbd6: 0x0008, 0xbd7: 0x0008, -	0xbd8: 0xe045, 0xbd9: 0xe045, 0xbda: 0x070d, 0xbdb: 0x04f9, 0xbdc: 0x0040, 0xbdd: 0x064a, -	0xbde: 0x0652, 0xbdf: 0x065a, 0xbe0: 0x0008, 0xbe1: 0x0008, 0xbe2: 0x0008, 0xbe3: 0x0661, -	0xbe4: 0x0008, 0xbe5: 0x0008, 0xbe6: 0x0008, 0xbe7: 0x0008, 0xbe8: 0xe045, 0xbe9: 0xe045, -	0xbea: 0x0725, 0xbeb: 0x0509, 0xbec: 0xe04d, 0xbed: 0x066a, 0xbee: 0x012a, 0xbef: 0x0672, -	0xbf0: 0x0040, 0xbf1: 0x0040, 0xbf2: 0x0679, 0xbf3: 0x0681, 0xbf4: 0x0689, 0xbf5: 0x0040, -	0xbf6: 0x0008, 0xbf7: 0x0691, 0xbf8: 0x073d, 0xbf9: 0x0501, 0xbfa: 0x0515, 0xbfb: 0x0511, -	0xbfc: 0x0681, 0xbfd: 0x0756, 0xbfe: 0x0776, 0xbff: 0x0040, -	// Block 0x30, offset 0xc00 -	0xc00: 0x000a, 0xc01: 0x000a, 0xc02: 0x000a, 0xc03: 0x000a, 0xc04: 0x000a, 0xc05: 0x000a, -	0xc06: 0x000a, 0xc07: 0x000a, 0xc08: 0x000a, 0xc09: 0x000a, 0xc0a: 0x000a, 0xc0b: 0x03c0, -	0xc0c: 0x0003, 0xc0d: 0x0003, 0xc0e: 0x0340, 0xc0f: 0x0b40, 0xc10: 0x0018, 0xc11: 0xe00d, -	0xc12: 0x0018, 0xc13: 0x0018, 0xc14: 0x0018, 0xc15: 0x0018, 0xc16: 0x0018, 0xc17: 0x0796, -	0xc18: 0x0018, 0xc19: 0x0018, 0xc1a: 0x0018, 0xc1b: 0x0018, 0xc1c: 0x0018, 0xc1d: 0x0018, -	0xc1e: 0x0018, 0xc1f: 0x0018, 0xc20: 0x0018, 0xc21: 0x0018, 0xc22: 0x0018, 0xc23: 0x0018, -	0xc24: 0x0040, 0xc25: 0x0040, 0xc26: 0x0040, 0xc27: 0x0018, 0xc28: 0x0040, 0xc29: 0x0040, -	0xc2a: 0x0340, 0xc2b: 0x0340, 0xc2c: 0x0340, 0xc2d: 0x0340, 0xc2e: 0x0340, 0xc2f: 0x000a, -	0xc30: 0x0018, 0xc31: 0x0018, 0xc32: 0x0018, 0xc33: 0x0699, 0xc34: 0x06a1, 0xc35: 0x0018, -	0xc36: 0x06a9, 0xc37: 0x06b1, 0xc38: 0x0018, 0xc39: 0x0018, 0xc3a: 0x0018, 0xc3b: 0x0018, -	0xc3c: 0x06ba, 0xc3d: 0x0018, 0xc3e: 0x07b6, 0xc3f: 0x0018, -	// Block 0x31, offset 0xc40 -	0xc40: 0x0018, 0xc41: 0x0018, 0xc42: 0x0018, 0xc43: 0x0018, 0xc44: 0x0018, 0xc45: 0x0018, -	0xc46: 0x0018, 0xc47: 0x06c2, 0xc48: 0x06ca, 0xc49: 0x06d2, 0xc4a: 0x0018, 0xc4b: 0x0018, -	0xc4c: 0x0018, 0xc4d: 0x0018, 0xc4e: 0x0018, 0xc4f: 0x0018, 0xc50: 0x0018, 0xc51: 0x0018, -	0xc52: 0x0018, 0xc53: 0x0018, 0xc54: 0x0018, 0xc55: 0x0018, 0xc56: 0x0018, 0xc57: 0x06d9, -	0xc58: 0x0018, 0xc59: 0x0018, 0xc5a: 0x0018, 0xc5b: 0x0018, 0xc5c: 0x0018, 0xc5d: 0x0018, -	0xc5e: 0x0018, 0xc5f: 0x000a, 0xc60: 0x03c0, 0xc61: 0x0340, 0xc62: 0x0340, 0xc63: 0x0340, -	0xc64: 0x03c0, 0xc65: 0x0040, 0xc66: 0x0040, 0xc67: 0x0040, 0xc68: 0x0040, 0xc69: 0x0040, -	0xc6a: 0x0340, 0xc6b: 0x0340, 0xc6c: 0x0340, 0xc6d: 0x0340, 0xc6e: 0x0340, 0xc6f: 0x0340, -	0xc70: 0x06e1, 0xc71: 0x0311, 0xc72: 0x0040, 0xc73: 0x0040, 0xc74: 0x06e9, 0xc75: 0x06f1, -	0xc76: 0x06f9, 0xc77: 0x0701, 0xc78: 0x0709, 0xc79: 0x0711, 0xc7a: 0x071a, 0xc7b: 0x07d5, -	0xc7c: 0x0722, 0xc7d: 0x072a, 0xc7e: 0x0732, 0xc7f: 0x0329, -	// Block 0x32, offset 0xc80 -	0xc80: 0x06e1, 0xc81: 0x0049, 0xc82: 0x0029, 0xc83: 0x0031, 0xc84: 0x06e9, 0xc85: 0x06f1, -	0xc86: 0x06f9, 0xc87: 0x0701, 0xc88: 0x0709, 0xc89: 0x0711, 0xc8a: 0x071a, 0xc8b: 0x07ed, -	0xc8c: 0x0722, 0xc8d: 0x072a, 0xc8e: 0x0732, 0xc8f: 0x0040, 0xc90: 0x0019, 0xc91: 0x02f9, -	0xc92: 0x0051, 0xc93: 0x0109, 0xc94: 0x0361, 0xc95: 0x00a9, 0xc96: 0x0319, 0xc97: 0x0101, -	0xc98: 0x0321, 0xc99: 0x0329, 0xc9a: 0x0339, 0xc9b: 0x0089, 0xc9c: 0x0341, 0xc9d: 0x0040, -	0xc9e: 0x0040, 0xc9f: 0x0040, 0xca0: 0x0018, 0xca1: 0x0018, 0xca2: 0x0018, 0xca3: 0x0018, -	0xca4: 0x0018, 0xca5: 0x0018, 0xca6: 0x0018, 0xca7: 0x0018, 0xca8: 0x0739, 0xca9: 0x0018, -	0xcaa: 0x0018, 0xcab: 0x0018, 0xcac: 0x0018, 0xcad: 0x0018, 0xcae: 0x0018, 0xcaf: 0x0018, -	0xcb0: 0x0018, 0xcb1: 0x0018, 0xcb2: 0x0018, 0xcb3: 0x0018, 0xcb4: 0x0018, 0xcb5: 0x0018, -	0xcb6: 0x0018, 0xcb7: 0x0018, 0xcb8: 0x0018, 0xcb9: 0x0018, 0xcba: 0x0018, 0xcbb: 0x0018, -	0xcbc: 0x0018, 0xcbd: 0x0018, 0xcbe: 0x0018, 0xcbf: 0x0018, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x0806, 0xcc1: 0x0826, 0xcc2: 0x03d9, 0xcc3: 0x0845, 0xcc4: 0x0018, 0xcc5: 0x0866, -	0xcc6: 0x0886, 0xcc7: 0x0369, 0xcc8: 0x0018, 0xcc9: 0x08a5, 0xcca: 0x0309, 0xccb: 0x00a9, -	0xccc: 0x00a9, 0xccd: 0x00a9, 0xcce: 0x00a9, 0xccf: 0x0741, 0xcd0: 0x0311, 0xcd1: 0x0311, -	0xcd2: 0x0101, 0xcd3: 0x0101, 0xcd4: 0x0018, 0xcd5: 0x0329, 0xcd6: 0x0749, 0xcd7: 0x0018, -	0xcd8: 0x0018, 0xcd9: 0x0339, 0xcda: 0x0751, 0xcdb: 0x00b9, 0xcdc: 0x00b9, 0xcdd: 0x00b9, -	0xcde: 0x0018, 0xcdf: 0x0018, 0xce0: 0x0759, 0xce1: 0x08c5, 0xce2: 0x0761, 0xce3: 0x0018, -	0xce4: 0x04b1, 0xce5: 0x0018, 0xce6: 0x0769, 0xce7: 0x0018, 0xce8: 0x04b1, 0xce9: 0x0018, -	0xcea: 0x0319, 0xceb: 0x0771, 0xcec: 0x02e9, 0xced: 0x03d9, 0xcee: 0x0018, 0xcef: 0x02f9, -	0xcf0: 0x02f9, 0xcf1: 0x03f1, 0xcf2: 0x0040, 0xcf3: 0x0321, 0xcf4: 0x0051, 0xcf5: 0x0779, -	0xcf6: 0x0781, 0xcf7: 0x0789, 0xcf8: 0x0791, 0xcf9: 0x0311, 0xcfa: 0x0018, 0xcfb: 0x08e5, -	0xcfc: 0x0799, 0xcfd: 0x03a1, 0xcfe: 0x03a1, 0xcff: 0x0799, -	// Block 0x34, offset 0xd00 -	0xd00: 0x0905, 0xd01: 0x0018, 0xd02: 0x0018, 0xd03: 0x0018, 0xd04: 0x0018, 0xd05: 0x02f1, -	0xd06: 0x02f1, 0xd07: 0x02f9, 0xd08: 0x0311, 0xd09: 0x00b1, 0xd0a: 0x0018, 0xd0b: 0x0018, -	0xd0c: 0x0018, 0xd0d: 0x0018, 0xd0e: 0x0008, 0xd0f: 0x0018, 0xd10: 0x07a1, 0xd11: 0x07a9, -	0xd12: 0x07b1, 0xd13: 0x07b9, 0xd14: 0x07c1, 0xd15: 0x07c9, 0xd16: 0x07d1, 0xd17: 0x07d9, -	0xd18: 0x07e1, 0xd19: 0x07e9, 0xd1a: 0x07f1, 0xd1b: 0x07f9, 0xd1c: 0x0801, 0xd1d: 0x0809, -	0xd1e: 0x0811, 0xd1f: 0x0819, 0xd20: 0x0311, 0xd21: 0x0821, 0xd22: 0x091d, 0xd23: 0x0829, -	0xd24: 0x0391, 0xd25: 0x0831, 0xd26: 0x093d, 0xd27: 0x0839, 0xd28: 0x0841, 0xd29: 0x0109, -	0xd2a: 0x0849, 0xd2b: 0x095d, 0xd2c: 0x0101, 0xd2d: 0x03d9, 0xd2e: 0x02f1, 0xd2f: 0x0321, -	0xd30: 0x0311, 0xd31: 0x0821, 0xd32: 0x097d, 0xd33: 0x0829, 0xd34: 0x0391, 0xd35: 0x0831, -	0xd36: 0x099d, 0xd37: 0x0839, 0xd38: 0x0841, 0xd39: 0x0109, 0xd3a: 0x0849, 0xd3b: 0x09bd, -	0xd3c: 0x0101, 0xd3d: 0x03d9, 0xd3e: 0x02f1, 0xd3f: 0x0321, -	// Block 0x35, offset 0xd40 -	0xd40: 0x0018, 0xd41: 0x0018, 0xd42: 0x0018, 0xd43: 0x0018, 0xd44: 0x0018, 0xd45: 0x0018, -	0xd46: 0x0018, 0xd47: 0x0018, 0xd48: 0x0018, 0xd49: 0x0018, 0xd4a: 0x0018, 0xd4b: 0x0040, -	0xd4c: 0x0040, 0xd4d: 0x0040, 0xd4e: 0x0040, 0xd4f: 0x0040, 0xd50: 0x0040, 0xd51: 0x0040, -	0xd52: 0x0040, 0xd53: 0x0040, 0xd54: 0x0040, 0xd55: 0x0040, 0xd56: 0x0040, 0xd57: 0x0040, -	0xd58: 0x0040, 0xd59: 0x0040, 0xd5a: 0x0040, 0xd5b: 0x0040, 0xd5c: 0x0040, 0xd5d: 0x0040, -	0xd5e: 0x0040, 0xd5f: 0x0040, 0xd60: 0x0049, 0xd61: 0x0029, 0xd62: 0x0031, 0xd63: 0x06e9, -	0xd64: 0x06f1, 0xd65: 0x06f9, 0xd66: 0x0701, 0xd67: 0x0709, 0xd68: 0x0711, 0xd69: 0x0879, -	0xd6a: 0x0881, 0xd6b: 0x0889, 0xd6c: 0x0891, 0xd6d: 0x0899, 0xd6e: 0x08a1, 0xd6f: 0x08a9, -	0xd70: 0x08b1, 0xd71: 0x08b9, 0xd72: 0x08c1, 0xd73: 0x08c9, 0xd74: 0x0a1e, 0xd75: 0x0a3e, -	0xd76: 0x0a5e, 0xd77: 0x0a7e, 0xd78: 0x0a9e, 0xd79: 0x0abe, 0xd7a: 0x0ade, 0xd7b: 0x0afe, -	0xd7c: 0x0b1e, 0xd7d: 0x08d2, 0xd7e: 0x08da, 0xd7f: 0x08e2, -	// Block 0x36, offset 0xd80 -	0xd80: 0x08ea, 0xd81: 0x08f2, 0xd82: 0x08fa, 0xd83: 0x0902, 0xd84: 0x090a, 0xd85: 0x0912, -	0xd86: 0x091a, 0xd87: 0x0922, 0xd88: 0x0040, 0xd89: 0x0040, 0xd8a: 0x0040, 0xd8b: 0x0040, -	0xd8c: 0x0040, 0xd8d: 0x0040, 0xd8e: 0x0040, 0xd8f: 0x0040, 0xd90: 0x0040, 0xd91: 0x0040, -	0xd92: 0x0040, 0xd93: 0x0040, 0xd94: 0x0040, 0xd95: 0x0040, 0xd96: 0x0040, 0xd97: 0x0040, -	0xd98: 0x0040, 0xd99: 0x0040, 0xd9a: 0x0040, 0xd9b: 0x0040, 0xd9c: 0x0b3e, 0xd9d: 0x0b5e, -	0xd9e: 0x0b7e, 0xd9f: 0x0b9e, 0xda0: 0x0bbe, 0xda1: 0x0bde, 0xda2: 0x0bfe, 0xda3: 0x0c1e, -	0xda4: 0x0c3e, 0xda5: 0x0c5e, 0xda6: 0x0c7e, 0xda7: 0x0c9e, 0xda8: 0x0cbe, 0xda9: 0x0cde, -	0xdaa: 0x0cfe, 0xdab: 0x0d1e, 0xdac: 0x0d3e, 0xdad: 0x0d5e, 0xdae: 0x0d7e, 0xdaf: 0x0d9e, -	0xdb0: 0x0dbe, 0xdb1: 0x0dde, 0xdb2: 0x0dfe, 0xdb3: 0x0e1e, 0xdb4: 0x0e3e, 0xdb5: 0x0e5e, -	0xdb6: 0x0019, 0xdb7: 0x02e9, 0xdb8: 0x03d9, 0xdb9: 0x02f1, 0xdba: 0x02f9, 0xdbb: 0x03f1, -	0xdbc: 0x0309, 0xdbd: 0x00a9, 0xdbe: 0x0311, 0xdbf: 0x00b1, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0x0319, 0xdc1: 0x0101, 0xdc2: 0x0321, 0xdc3: 0x0329, 0xdc4: 0x0051, 0xdc5: 0x0339, -	0xdc6: 0x0751, 0xdc7: 0x00b9, 0xdc8: 0x0089, 0xdc9: 0x0341, 0xdca: 0x0349, 0xdcb: 0x0391, -	0xdcc: 0x00c1, 0xdcd: 0x0109, 0xdce: 0x00c9, 0xdcf: 0x04b1, 0xdd0: 0x0019, 0xdd1: 0x02e9, -	0xdd2: 0x03d9, 0xdd3: 0x02f1, 0xdd4: 0x02f9, 0xdd5: 0x03f1, 0xdd6: 0x0309, 0xdd7: 0x00a9, -	0xdd8: 0x0311, 0xdd9: 0x00b1, 0xdda: 0x0319, 0xddb: 0x0101, 0xddc: 0x0321, 0xddd: 0x0329, -	0xdde: 0x0051, 0xddf: 0x0339, 0xde0: 0x0751, 0xde1: 0x00b9, 0xde2: 0x0089, 0xde3: 0x0341, -	0xde4: 0x0349, 0xde5: 0x0391, 0xde6: 0x00c1, 0xde7: 0x0109, 0xde8: 0x00c9, 0xde9: 0x04b1, -	0xdea: 0x06e1, 0xdeb: 0x0018, 0xdec: 0x0018, 0xded: 0x0018, 0xdee: 0x0018, 0xdef: 0x0018, -	0xdf0: 0x0018, 0xdf1: 0x0018, 0xdf2: 0x0018, 0xdf3: 0x0018, 0xdf4: 0x0018, 0xdf5: 0x0018, -	0xdf6: 0x0018, 0xdf7: 0x0018, 0xdf8: 0x0018, 0xdf9: 0x0018, 0xdfa: 0x0018, 0xdfb: 0x0018, -	0xdfc: 0x0018, 0xdfd: 0x0018, 0xdfe: 0x0018, 0xdff: 0x0018, -	// Block 0x38, offset 0xe00 -	0xe00: 0x0008, 0xe01: 0x0008, 0xe02: 0x0008, 0xe03: 0x0008, 0xe04: 0x0008, 0xe05: 0x0008, -	0xe06: 0x0008, 0xe07: 0x0008, 0xe08: 0x0008, 0xe09: 0x0008, 0xe0a: 0x0008, 0xe0b: 0x0008, -	0xe0c: 0x0008, 0xe0d: 0x0008, 0xe0e: 0x0008, 0xe0f: 0x0008, 0xe10: 0x0008, 0xe11: 0x0008, -	0xe12: 0x0008, 0xe13: 0x0008, 0xe14: 0x0008, 0xe15: 0x0008, 0xe16: 0x0008, 0xe17: 0x0008, -	0xe18: 0x0008, 0xe19: 0x0008, 0xe1a: 0x0008, 0xe1b: 0x0008, 0xe1c: 0x0008, 0xe1d: 0x0008, -	0xe1e: 0x0008, 0xe1f: 0x0008, 0xe20: 0xe00d, 0xe21: 0x0008, 0xe22: 0x0941, 0xe23: 0x0ed5, -	0xe24: 0x0949, 0xe25: 0x0008, 0xe26: 0x0008, 0xe27: 0xe07d, 0xe28: 0x0008, 0xe29: 0xe01d, -	0xe2a: 0x0008, 0xe2b: 0xe03d, 0xe2c: 0x0008, 0xe2d: 0x0359, 0xe2e: 0x0441, 0xe2f: 0x0351, -	0xe30: 0x03d1, 0xe31: 0x0008, 0xe32: 0xe00d, 0xe33: 0x0008, 0xe34: 0x0008, 0xe35: 0xe01d, -	0xe36: 0x0008, 0xe37: 0x0008, 0xe38: 0x0008, 0xe39: 0x0008, 0xe3a: 0x0008, 0xe3b: 0x0008, -	0xe3c: 0x00b1, 0xe3d: 0x0391, 0xe3e: 0x0951, 0xe3f: 0x0959, -	// Block 0x39, offset 0xe40 -	0xe40: 0xe00d, 0xe41: 0x0008, 0xe42: 0xe00d, 0xe43: 0x0008, 0xe44: 0xe00d, 0xe45: 0x0008, -	0xe46: 0xe00d, 0xe47: 0x0008, 0xe48: 0xe00d, 0xe49: 0x0008, 0xe4a: 0xe00d, 0xe4b: 0x0008, -	0xe4c: 0xe00d, 0xe4d: 0x0008, 0xe4e: 0xe00d, 0xe4f: 0x0008, 0xe50: 0xe00d, 0xe51: 0x0008, -	0xe52: 0xe00d, 0xe53: 0x0008, 0xe54: 0xe00d, 0xe55: 0x0008, 0xe56: 0xe00d, 0xe57: 0x0008, -	0xe58: 0xe00d, 0xe59: 0x0008, 0xe5a: 0xe00d, 0xe5b: 0x0008, 0xe5c: 0xe00d, 0xe5d: 0x0008, -	0xe5e: 0xe00d, 0xe5f: 0x0008, 0xe60: 0xe00d, 0xe61: 0x0008, 0xe62: 0xe00d, 0xe63: 0x0008, -	0xe64: 0x0008, 0xe65: 0x0018, 0xe66: 0x0018, 0xe67: 0x0018, 0xe68: 0x0018, 0xe69: 0x0018, -	0xe6a: 0x0018, 0xe6b: 0xe03d, 0xe6c: 0x0008, 0xe6d: 0xe01d, 0xe6e: 0x0008, 0xe6f: 0x3308, -	0xe70: 0x3308, 0xe71: 0x3308, 0xe72: 0xe00d, 0xe73: 0x0008, 0xe74: 0x0040, 0xe75: 0x0040, -	0xe76: 0x0040, 0xe77: 0x0040, 0xe78: 0x0040, 0xe79: 0x0018, 0xe7a: 0x0018, 0xe7b: 0x0018, -	0xe7c: 0x0018, 0xe7d: 0x0018, 0xe7e: 0x0018, 0xe7f: 0x0018, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x2715, 0xe81: 0x2735, 0xe82: 0x2755, 0xe83: 0x2775, 0xe84: 0x2795, 0xe85: 0x27b5, -	0xe86: 0x27d5, 0xe87: 0x27f5, 0xe88: 0x2815, 0xe89: 0x2835, 0xe8a: 0x2855, 0xe8b: 0x2875, -	0xe8c: 0x2895, 0xe8d: 0x28b5, 0xe8e: 0x28d5, 0xe8f: 0x28f5, 0xe90: 0x2915, 0xe91: 0x2935, -	0xe92: 0x2955, 0xe93: 0x2975, 0xe94: 0x2995, 0xe95: 0x29b5, 0xe96: 0x0040, 0xe97: 0x0040, -	0xe98: 0x0040, 0xe99: 0x0040, 0xe9a: 0x0040, 0xe9b: 0x0040, 0xe9c: 0x0040, 0xe9d: 0x0040, -	0xe9e: 0x0040, 0xe9f: 0x0040, 0xea0: 0x0040, 0xea1: 0x0040, 0xea2: 0x0040, 0xea3: 0x0040, -	0xea4: 0x0040, 0xea5: 0x0040, 0xea6: 0x0040, 0xea7: 0x0040, 0xea8: 0x0040, 0xea9: 0x0040, -	0xeaa: 0x0040, 0xeab: 0x0040, 0xeac: 0x0040, 0xead: 0x0040, 0xeae: 0x0040, 0xeaf: 0x0040, -	0xeb0: 0x0040, 0xeb1: 0x0040, 0xeb2: 0x0040, 0xeb3: 0x0040, 0xeb4: 0x0040, 0xeb5: 0x0040, -	0xeb6: 0x0040, 0xeb7: 0x0040, 0xeb8: 0x0040, 0xeb9: 0x0040, 0xeba: 0x0040, 0xebb: 0x0040, -	0xebc: 0x0040, 0xebd: 0x0040, 0xebe: 0x0040, 0xebf: 0x0040, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x000a, 0xec1: 0x0018, 0xec2: 0x0961, 0xec3: 0x0018, 0xec4: 0x0018, 0xec5: 0x0008, -	0xec6: 0x0008, 0xec7: 0x0008, 0xec8: 0x0018, 0xec9: 0x0018, 0xeca: 0x0018, 0xecb: 0x0018, -	0xecc: 0x0018, 0xecd: 0x0018, 0xece: 0x0018, 0xecf: 0x0018, 0xed0: 0x0018, 0xed1: 0x0018, -	0xed2: 0x0018, 0xed3: 0x0018, 0xed4: 0x0018, 0xed5: 0x0018, 0xed6: 0x0018, 0xed7: 0x0018, -	0xed8: 0x0018, 0xed9: 0x0018, 0xeda: 0x0018, 0xedb: 0x0018, 0xedc: 0x0018, 0xedd: 0x0018, -	0xede: 0x0018, 0xedf: 0x0018, 0xee0: 0x0018, 0xee1: 0x0018, 0xee2: 0x0018, 0xee3: 0x0018, -	0xee4: 0x0018, 0xee5: 0x0018, 0xee6: 0x0018, 0xee7: 0x0018, 0xee8: 0x0018, 0xee9: 0x0018, -	0xeea: 0x3308, 0xeeb: 0x3308, 0xeec: 0x3308, 0xeed: 0x3308, 0xeee: 0x3018, 0xeef: 0x3018, -	0xef0: 0x0018, 0xef1: 0x0018, 0xef2: 0x0018, 0xef3: 0x0018, 0xef4: 0x0018, 0xef5: 0x0018, -	0xef6: 0xe125, 0xef7: 0x0018, 0xef8: 0x29d5, 0xef9: 0x29f5, 0xefa: 0x2a15, 0xefb: 0x0018, -	0xefc: 0x0008, 0xefd: 0x0018, 0xefe: 0x0018, 0xeff: 0x0018, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x2b55, 0xf01: 0x2b75, 0xf02: 0x2b95, 0xf03: 0x2bb5, 0xf04: 0x2bd5, 0xf05: 0x2bf5, -	0xf06: 0x2bf5, 0xf07: 0x2bf5, 0xf08: 0x2c15, 0xf09: 0x2c15, 0xf0a: 0x2c15, 0xf0b: 0x2c15, -	0xf0c: 0x2c35, 0xf0d: 0x2c35, 0xf0e: 0x2c35, 0xf0f: 0x2c55, 0xf10: 0x2c75, 0xf11: 0x2c75, -	0xf12: 0x2a95, 0xf13: 0x2a95, 0xf14: 0x2c75, 0xf15: 0x2c75, 0xf16: 0x2c95, 0xf17: 0x2c95, -	0xf18: 0x2c75, 0xf19: 0x2c75, 0xf1a: 0x2a95, 0xf1b: 0x2a95, 0xf1c: 0x2c75, 0xf1d: 0x2c75, -	0xf1e: 0x2c55, 0xf1f: 0x2c55, 0xf20: 0x2cb5, 0xf21: 0x2cb5, 0xf22: 0x2cd5, 0xf23: 0x2cd5, -	0xf24: 0x0040, 0xf25: 0x2cf5, 0xf26: 0x2d15, 0xf27: 0x2d35, 0xf28: 0x2d35, 0xf29: 0x2d55, -	0xf2a: 0x2d75, 0xf2b: 0x2d95, 0xf2c: 0x2db5, 0xf2d: 0x2dd5, 0xf2e: 0x2df5, 0xf2f: 0x2e15, -	0xf30: 0x2e35, 0xf31: 0x2e55, 0xf32: 0x2e55, 0xf33: 0x2e75, 0xf34: 0x2e95, 0xf35: 0x2e95, -	0xf36: 0x2eb5, 0xf37: 0x2ed5, 0xf38: 0x2e75, 0xf39: 0x2ef5, 0xf3a: 0x2f15, 0xf3b: 0x2ef5, -	0xf3c: 0x2e75, 0xf3d: 0x2f35, 0xf3e: 0x2f55, 0xf3f: 0x2f75, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x2f95, 0xf41: 0x2fb5, 0xf42: 0x2d15, 0xf43: 0x2cf5, 0xf44: 0x2fd5, 0xf45: 0x2ff5, -	0xf46: 0x3015, 0xf47: 0x3035, 0xf48: 0x3055, 0xf49: 0x3075, 0xf4a: 0x3095, 0xf4b: 0x30b5, -	0xf4c: 0x30d5, 0xf4d: 0x30f5, 0xf4e: 0x3115, 0xf4f: 0x0040, 0xf50: 0x0018, 0xf51: 0x0018, -	0xf52: 0x3135, 0xf53: 0x3155, 0xf54: 0x3175, 0xf55: 0x3195, 0xf56: 0x31b5, 0xf57: 0x31d5, -	0xf58: 0x31f5, 0xf59: 0x3215, 0xf5a: 0x3235, 0xf5b: 0x3255, 0xf5c: 0x3175, 0xf5d: 0x3275, -	0xf5e: 0x3295, 0xf5f: 0x32b5, 0xf60: 0x0008, 0xf61: 0x0008, 0xf62: 0x0008, 0xf63: 0x0008, -	0xf64: 0x0008, 0xf65: 0x0008, 0xf66: 0x0008, 0xf67: 0x0008, 0xf68: 0x0008, 0xf69: 0x0008, -	0xf6a: 0x0008, 0xf6b: 0x0008, 0xf6c: 0x0008, 0xf6d: 0x0008, 0xf6e: 0x0008, 0xf6f: 0x0008, -	0xf70: 0x0008, 0xf71: 0x0008, 0xf72: 0x0008, 0xf73: 0x0008, 0xf74: 0x0008, 0xf75: 0x0008, -	0xf76: 0x0008, 0xf77: 0x0008, 0xf78: 0x0008, 0xf79: 0x0008, 0xf7a: 0x0008, 0xf7b: 0x0008, -	0xf7c: 0x0008, 0xf7d: 0x0008, 0xf7e: 0x0008, 0xf7f: 0x0008, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x0b82, 0xf81: 0x0b8a, 0xf82: 0x0b92, 0xf83: 0x0b9a, 0xf84: 0x32d5, 0xf85: 0x32f5, -	0xf86: 0x3315, 0xf87: 0x3335, 0xf88: 0x0018, 0xf89: 0x0018, 0xf8a: 0x0018, 0xf8b: 0x0018, -	0xf8c: 0x0018, 0xf8d: 0x0018, 0xf8e: 0x0018, 0xf8f: 0x0018, 0xf90: 0x3355, 0xf91: 0x0ba1, -	0xf92: 0x0ba9, 0xf93: 0x0bb1, 0xf94: 0x0bb9, 0xf95: 0x0bc1, 0xf96: 0x0bc9, 0xf97: 0x0bd1, -	0xf98: 0x0bd9, 0xf99: 0x0be1, 0xf9a: 0x0be9, 0xf9b: 0x0bf1, 0xf9c: 0x0bf9, 0xf9d: 0x0c01, -	0xf9e: 0x0c09, 0xf9f: 0x0c11, 0xfa0: 0x3375, 0xfa1: 0x3395, 0xfa2: 0x33b5, 0xfa3: 0x33d5, -	0xfa4: 0x33f5, 0xfa5: 0x33f5, 0xfa6: 0x3415, 0xfa7: 0x3435, 0xfa8: 0x3455, 0xfa9: 0x3475, -	0xfaa: 0x3495, 0xfab: 0x34b5, 0xfac: 0x34d5, 0xfad: 0x34f5, 0xfae: 0x3515, 0xfaf: 0x3535, -	0xfb0: 0x3555, 0xfb1: 0x3575, 0xfb2: 0x3595, 0xfb3: 0x35b5, 0xfb4: 0x35d5, 0xfb5: 0x35f5, -	0xfb6: 0x3615, 0xfb7: 0x3635, 0xfb8: 0x3655, 0xfb9: 0x3675, 0xfba: 0x3695, 0xfbb: 0x36b5, -	0xfbc: 0x0c19, 0xfbd: 0x0c21, 0xfbe: 0x36d5, 0xfbf: 0x0018, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x36f5, 0xfc1: 0x3715, 0xfc2: 0x3735, 0xfc3: 0x3755, 0xfc4: 0x3775, 0xfc5: 0x3795, -	0xfc6: 0x37b5, 0xfc7: 0x37d5, 0xfc8: 0x37f5, 0xfc9: 0x3815, 0xfca: 0x3835, 0xfcb: 0x3855, -	0xfcc: 0x3875, 0xfcd: 0x3895, 0xfce: 0x38b5, 0xfcf: 0x38d5, 0xfd0: 0x38f5, 0xfd1: 0x3915, -	0xfd2: 0x3935, 0xfd3: 0x3955, 0xfd4: 0x3975, 0xfd5: 0x3995, 0xfd6: 0x39b5, 0xfd7: 0x39d5, -	0xfd8: 0x39f5, 0xfd9: 0x3a15, 0xfda: 0x3a35, 0xfdb: 0x3a55, 0xfdc: 0x3a75, 0xfdd: 0x3a95, -	0xfde: 0x3ab5, 0xfdf: 0x3ad5, 0xfe0: 0x3af5, 0xfe1: 0x3b15, 0xfe2: 0x3b35, 0xfe3: 0x3b55, -	0xfe4: 0x3b75, 0xfe5: 0x3b95, 0xfe6: 0x1295, 0xfe7: 0x3bb5, 0xfe8: 0x3bd5, 0xfe9: 0x3bf5, -	0xfea: 0x3c15, 0xfeb: 0x3c35, 0xfec: 0x3c55, 0xfed: 0x3c75, 0xfee: 0x23b5, 0xfef: 0x3c95, -	0xff0: 0x3cb5, 0xff1: 0x0c29, 0xff2: 0x0c31, 0xff3: 0x0c39, 0xff4: 0x0c41, 0xff5: 0x0c49, -	0xff6: 0x0c51, 0xff7: 0x0c59, 0xff8: 0x0c61, 0xff9: 0x0c69, 0xffa: 0x0c71, 0xffb: 0x0c79, -	0xffc: 0x0c81, 0xffd: 0x0c89, 0xffe: 0x0c91, 0xfff: 0x0c99, -	// Block 0x40, offset 0x1000 -	0x1000: 0x0ca1, 0x1001: 0x0ca9, 0x1002: 0x0cb1, 0x1003: 0x0cb9, 0x1004: 0x0cc1, 0x1005: 0x0cc9, -	0x1006: 0x0cd1, 0x1007: 0x0cd9, 0x1008: 0x0ce1, 0x1009: 0x0ce9, 0x100a: 0x0cf1, 0x100b: 0x0cf9, -	0x100c: 0x0d01, 0x100d: 0x3cd5, 0x100e: 0x0d09, 0x100f: 0x3cf5, 0x1010: 0x3d15, 0x1011: 0x3d2d, -	0x1012: 0x3d45, 0x1013: 0x3d5d, 0x1014: 0x3d75, 0x1015: 0x3d75, 0x1016: 0x3d5d, 0x1017: 0x3d8d, -	0x1018: 0x07d5, 0x1019: 0x3da5, 0x101a: 0x3dbd, 0x101b: 0x3dd5, 0x101c: 0x3ded, 0x101d: 0x3e05, -	0x101e: 0x3e1d, 0x101f: 0x3e35, 0x1020: 0x3e4d, 0x1021: 0x3e65, 0x1022: 0x3e7d, 0x1023: 0x3e95, -	0x1024: 0x3ead, 0x1025: 0x3ead, 0x1026: 0x3ec5, 0x1027: 0x3ec5, 0x1028: 0x3edd, 0x1029: 0x3edd, -	0x102a: 0x3ef5, 0x102b: 0x3f0d, 0x102c: 0x3f25, 0x102d: 0x3f3d, 0x102e: 0x3f55, 0x102f: 0x3f55, -	0x1030: 0x3f6d, 0x1031: 0x3f6d, 0x1032: 0x3f6d, 0x1033: 0x3f85, 0x1034: 0x3f9d, 0x1035: 0x3fb5, -	0x1036: 0x3fcd, 0x1037: 0x3fb5, 0x1038: 0x3fe5, 0x1039: 0x3ffd, 0x103a: 0x3f85, 0x103b: 0x4015, -	0x103c: 0x402d, 0x103d: 0x402d, 0x103e: 0x402d, 0x103f: 0x0d11, -	// Block 0x41, offset 0x1040 -	0x1040: 0x10f9, 0x1041: 0x1101, 0x1042: 0x40a5, 0x1043: 0x1109, 0x1044: 0x1111, 0x1045: 0x1119, -	0x1046: 0x1121, 0x1047: 0x1129, 0x1048: 0x40c5, 0x1049: 0x1131, 0x104a: 0x1139, 0x104b: 0x1141, -	0x104c: 0x40e5, 0x104d: 0x40e5, 0x104e: 0x1149, 0x104f: 0x1151, 0x1050: 0x1159, 0x1051: 0x4105, -	0x1052: 0x4125, 0x1053: 0x4145, 0x1054: 0x4165, 0x1055: 0x4185, 0x1056: 0x1161, 0x1057: 0x1169, -	0x1058: 0x1171, 0x1059: 0x1179, 0x105a: 0x1181, 0x105b: 0x41a5, 0x105c: 0x1189, 0x105d: 0x1191, -	0x105e: 0x1199, 0x105f: 0x41c5, 0x1060: 0x41e5, 0x1061: 0x11a1, 0x1062: 0x4205, 0x1063: 0x4225, -	0x1064: 0x4245, 0x1065: 0x11a9, 0x1066: 0x4265, 0x1067: 0x11b1, 0x1068: 0x11b9, 0x1069: 0x10f9, -	0x106a: 0x4285, 0x106b: 0x42a5, 0x106c: 0x42c5, 0x106d: 0x42e5, 0x106e: 0x11c1, 0x106f: 0x11c9, -	0x1070: 0x11d1, 0x1071: 0x11d9, 0x1072: 0x4305, 0x1073: 0x11e1, 0x1074: 0x11e9, 0x1075: 0x11f1, -	0x1076: 0x4325, 0x1077: 0x11f9, 0x1078: 0x1201, 0x1079: 0x11f9, 0x107a: 0x1209, 0x107b: 0x1211, -	0x107c: 0x4345, 0x107d: 0x1219, 0x107e: 0x1221, 0x107f: 0x1219, -	// Block 0x42, offset 0x1080 -	0x1080: 0x4365, 0x1081: 0x4385, 0x1082: 0x0040, 0x1083: 0x1229, 0x1084: 0x1231, 0x1085: 0x1239, -	0x1086: 0x1241, 0x1087: 0x0040, 0x1088: 0x1249, 0x1089: 0x1251, 0x108a: 0x1259, 0x108b: 0x1261, -	0x108c: 0x1269, 0x108d: 0x1271, 0x108e: 0x1199, 0x108f: 0x1279, 0x1090: 0x1281, 0x1091: 0x1289, -	0x1092: 0x43a5, 0x1093: 0x1291, 0x1094: 0x1121, 0x1095: 0x43c5, 0x1096: 0x43e5, 0x1097: 0x1299, -	0x1098: 0x0040, 0x1099: 0x4405, 0x109a: 0x12a1, 0x109b: 0x12a9, 0x109c: 0x12b1, 0x109d: 0x12b9, -	0x109e: 0x12c1, 0x109f: 0x12c9, 0x10a0: 0x12d1, 0x10a1: 0x12d9, 0x10a2: 0x12e1, 0x10a3: 0x12e9, -	0x10a4: 0x12f1, 0x10a5: 0x12f9, 0x10a6: 0x1301, 0x10a7: 0x1309, 0x10a8: 0x1311, 0x10a9: 0x1319, -	0x10aa: 0x1321, 0x10ab: 0x1329, 0x10ac: 0x1331, 0x10ad: 0x1339, 0x10ae: 0x1341, 0x10af: 0x1349, -	0x10b0: 0x1351, 0x10b1: 0x1359, 0x10b2: 0x1361, 0x10b3: 0x1369, 0x10b4: 0x1371, 0x10b5: 0x1379, -	0x10b6: 0x1381, 0x10b7: 0x1389, 0x10b8: 0x1391, 0x10b9: 0x1399, 0x10ba: 0x13a1, 0x10bb: 0x13a9, -	0x10bc: 0x13b1, 0x10bd: 0x13b9, 0x10be: 0x13c1, 0x10bf: 0x4425, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0xe00d, 0x10c1: 0x0008, 0x10c2: 0xe00d, 0x10c3: 0x0008, 0x10c4: 0xe00d, 0x10c5: 0x0008, -	0x10c6: 0xe00d, 0x10c7: 0x0008, 0x10c8: 0xe00d, 0x10c9: 0x0008, 0x10ca: 0xe00d, 0x10cb: 0x0008, -	0x10cc: 0xe00d, 0x10cd: 0x0008, 0x10ce: 0xe00d, 0x10cf: 0x0008, 0x10d0: 0xe00d, 0x10d1: 0x0008, -	0x10d2: 0xe00d, 0x10d3: 0x0008, 0x10d4: 0xe00d, 0x10d5: 0x0008, 0x10d6: 0xe00d, 0x10d7: 0x0008, -	0x10d8: 0xe00d, 0x10d9: 0x0008, 0x10da: 0xe00d, 0x10db: 0x0008, 0x10dc: 0xe00d, 0x10dd: 0x0008, -	0x10de: 0xe00d, 0x10df: 0x0008, 0x10e0: 0xe00d, 0x10e1: 0x0008, 0x10e2: 0xe00d, 0x10e3: 0x0008, -	0x10e4: 0xe00d, 0x10e5: 0x0008, 0x10e6: 0xe00d, 0x10e7: 0x0008, 0x10e8: 0xe00d, 0x10e9: 0x0008, -	0x10ea: 0xe00d, 0x10eb: 0x0008, 0x10ec: 0xe00d, 0x10ed: 0x0008, 0x10ee: 0x0008, 0x10ef: 0x3308, -	0x10f0: 0x3318, 0x10f1: 0x3318, 0x10f2: 0x3318, 0x10f3: 0x0018, 0x10f4: 0x3308, 0x10f5: 0x3308, -	0x10f6: 0x3308, 0x10f7: 0x3308, 0x10f8: 0x3308, 0x10f9: 0x3308, 0x10fa: 0x3308, 0x10fb: 0x3308, -	0x10fc: 0x3308, 0x10fd: 0x3308, 0x10fe: 0x0018, 0x10ff: 0x0008, -	// Block 0x44, offset 0x1100 -	0x1100: 0xe00d, 0x1101: 0x0008, 0x1102: 0xe00d, 0x1103: 0x0008, 0x1104: 0xe00d, 0x1105: 0x0008, -	0x1106: 0xe00d, 0x1107: 0x0008, 0x1108: 0xe00d, 0x1109: 0x0008, 0x110a: 0xe00d, 0x110b: 0x0008, -	0x110c: 0xe00d, 0x110d: 0x0008, 0x110e: 0xe00d, 0x110f: 0x0008, 0x1110: 0xe00d, 0x1111: 0x0008, -	0x1112: 0xe00d, 0x1113: 0x0008, 0x1114: 0xe00d, 0x1115: 0x0008, 0x1116: 0xe00d, 0x1117: 0x0008, -	0x1118: 0xe00d, 0x1119: 0x0008, 0x111a: 0xe00d, 0x111b: 0x0008, 0x111c: 0x02d1, 0x111d: 0x13c9, -	0x111e: 0x3308, 0x111f: 0x3308, 0x1120: 0x0008, 0x1121: 0x0008, 0x1122: 0x0008, 0x1123: 0x0008, -	0x1124: 0x0008, 0x1125: 0x0008, 0x1126: 0x0008, 0x1127: 0x0008, 0x1128: 0x0008, 0x1129: 0x0008, -	0x112a: 0x0008, 0x112b: 0x0008, 0x112c: 0x0008, 0x112d: 0x0008, 0x112e: 0x0008, 0x112f: 0x0008, -	0x1130: 0x0008, 0x1131: 0x0008, 0x1132: 0x0008, 0x1133: 0x0008, 0x1134: 0x0008, 0x1135: 0x0008, -	0x1136: 0x0008, 0x1137: 0x0008, 0x1138: 0x0008, 0x1139: 0x0008, 0x113a: 0x0008, 0x113b: 0x0008, -	0x113c: 0x0008, 0x113d: 0x0008, 0x113e: 0x0008, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0x0018, 0x1141: 0x0018, 0x1142: 0x0018, 0x1143: 0x0018, 0x1144: 0x0018, 0x1145: 0x0018, -	0x1146: 0x0018, 0x1147: 0x0018, 0x1148: 0x0018, 0x1149: 0x0018, 0x114a: 0x0018, 0x114b: 0x0018, -	0x114c: 0x0018, 0x114d: 0x0018, 0x114e: 0x0018, 0x114f: 0x0018, 0x1150: 0x0018, 0x1151: 0x0018, -	0x1152: 0x0018, 0x1153: 0x0018, 0x1154: 0x0018, 0x1155: 0x0018, 0x1156: 0x0018, 0x1157: 0x0008, -	0x1158: 0x0008, 0x1159: 0x0008, 0x115a: 0x0008, 0x115b: 0x0008, 0x115c: 0x0008, 0x115d: 0x0008, -	0x115e: 0x0008, 0x115f: 0x0008, 0x1160: 0x0018, 0x1161: 0x0018, 0x1162: 0xe00d, 0x1163: 0x0008, -	0x1164: 0xe00d, 0x1165: 0x0008, 0x1166: 0xe00d, 0x1167: 0x0008, 0x1168: 0xe00d, 0x1169: 0x0008, -	0x116a: 0xe00d, 0x116b: 0x0008, 0x116c: 0xe00d, 0x116d: 0x0008, 0x116e: 0xe00d, 0x116f: 0x0008, -	0x1170: 0x0008, 0x1171: 0x0008, 0x1172: 0xe00d, 0x1173: 0x0008, 0x1174: 0xe00d, 0x1175: 0x0008, -	0x1176: 0xe00d, 0x1177: 0x0008, 0x1178: 0xe00d, 0x1179: 0x0008, 0x117a: 0xe00d, 0x117b: 0x0008, -	0x117c: 0xe00d, 0x117d: 0x0008, 0x117e: 0xe00d, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0xe00d, 0x1181: 0x0008, 0x1182: 0xe00d, 0x1183: 0x0008, 0x1184: 0xe00d, 0x1185: 0x0008, -	0x1186: 0xe00d, 0x1187: 0x0008, 0x1188: 0xe00d, 0x1189: 0x0008, 0x118a: 0xe00d, 0x118b: 0x0008, -	0x118c: 0xe00d, 0x118d: 0x0008, 0x118e: 0xe00d, 0x118f: 0x0008, 0x1190: 0xe00d, 0x1191: 0x0008, -	0x1192: 0xe00d, 0x1193: 0x0008, 0x1194: 0xe00d, 0x1195: 0x0008, 0x1196: 0xe00d, 0x1197: 0x0008, -	0x1198: 0xe00d, 0x1199: 0x0008, 0x119a: 0xe00d, 0x119b: 0x0008, 0x119c: 0xe00d, 0x119d: 0x0008, -	0x119e: 0xe00d, 0x119f: 0x0008, 0x11a0: 0xe00d, 0x11a1: 0x0008, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0xe00d, 0x11ab: 0x0008, 0x11ac: 0xe00d, 0x11ad: 0x0008, 0x11ae: 0xe00d, 0x11af: 0x0008, -	0x11b0: 0xe0fd, 0x11b1: 0x0008, 0x11b2: 0x0008, 0x11b3: 0x0008, 0x11b4: 0x0008, 0x11b5: 0x0008, -	0x11b6: 0x0008, 0x11b7: 0x0008, 0x11b8: 0x0008, 0x11b9: 0xe01d, 0x11ba: 0x0008, 0x11bb: 0xe03d, -	0x11bc: 0x0008, 0x11bd: 0x4445, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0xe00d, 0x11c1: 0x0008, 0x11c2: 0xe00d, 0x11c3: 0x0008, 0x11c4: 0xe00d, 0x11c5: 0x0008, -	0x11c6: 0xe00d, 0x11c7: 0x0008, 0x11c8: 0x0008, 0x11c9: 0x0018, 0x11ca: 0x0018, 0x11cb: 0xe03d, -	0x11cc: 0x0008, 0x11cd: 0x0409, 0x11ce: 0x0008, 0x11cf: 0x0008, 0x11d0: 0xe00d, 0x11d1: 0x0008, -	0x11d2: 0xe00d, 0x11d3: 0x0008, 0x11d4: 0x0008, 0x11d5: 0x0008, 0x11d6: 0xe00d, 0x11d7: 0x0008, -	0x11d8: 0xe00d, 0x11d9: 0x0008, 0x11da: 0xe00d, 0x11db: 0x0008, 0x11dc: 0xe00d, 0x11dd: 0x0008, -	0x11de: 0xe00d, 0x11df: 0x0008, 0x11e0: 0xe00d, 0x11e1: 0x0008, 0x11e2: 0xe00d, 0x11e3: 0x0008, -	0x11e4: 0xe00d, 0x11e5: 0x0008, 0x11e6: 0xe00d, 0x11e7: 0x0008, 0x11e8: 0xe00d, 0x11e9: 0x0008, -	0x11ea: 0x13d1, 0x11eb: 0x0371, 0x11ec: 0x0401, 0x11ed: 0x13d9, 0x11ee: 0x0421, 0x11ef: 0x0008, -	0x11f0: 0x13e1, 0x11f1: 0x13e9, 0x11f2: 0x0429, 0x11f3: 0x4465, 0x11f4: 0xe00d, 0x11f5: 0x0008, -	0x11f6: 0xe00d, 0x11f7: 0x0008, 0x11f8: 0xe00d, 0x11f9: 0x0008, 0x11fa: 0xe00d, 0x11fb: 0x0008, -	0x11fc: 0xe00d, 0x11fd: 0x0008, 0x11fe: 0xe00d, 0x11ff: 0x0008, -	// Block 0x48, offset 0x1200 -	0x1200: 0xe00d, 0x1201: 0x0008, 0x1202: 0xe00d, 0x1203: 0x0008, 0x1204: 0x03f5, 0x1205: 0x0479, -	0x1206: 0x447d, 0x1207: 0xe07d, 0x1208: 0x0008, 0x1209: 0xe01d, 0x120a: 0x0008, 0x120b: 0x0040, -	0x120c: 0x0040, 0x120d: 0x0040, 0x120e: 0x0040, 0x120f: 0x0040, 0x1210: 0xe00d, 0x1211: 0x0008, -	0x1212: 0x0040, 0x1213: 0x0008, 0x1214: 0x0040, 0x1215: 0x0008, 0x1216: 0xe00d, 0x1217: 0x0008, -	0x1218: 0xe00d, 0x1219: 0x0008, 0x121a: 0x0040, 0x121b: 0x0040, 0x121c: 0x0040, 0x121d: 0x0040, -	0x121e: 0x0040, 0x121f: 0x0040, 0x1220: 0x0040, 0x1221: 0x0040, 0x1222: 0x0040, 0x1223: 0x0040, -	0x1224: 0x0040, 0x1225: 0x0040, 0x1226: 0x0040, 0x1227: 0x0040, 0x1228: 0x0040, 0x1229: 0x0040, -	0x122a: 0x0040, 0x122b: 0x0040, 0x122c: 0x0040, 0x122d: 0x0040, 0x122e: 0x0040, 0x122f: 0x0040, -	0x1230: 0x0040, 0x1231: 0x0040, 0x1232: 0x03d9, 0x1233: 0x03f1, 0x1234: 0x0751, 0x1235: 0xe01d, -	0x1236: 0x0008, 0x1237: 0x0008, 0x1238: 0x0741, 0x1239: 0x13f1, 0x123a: 0x0008, 0x123b: 0x0008, -	0x123c: 0x0008, 0x123d: 0x0008, 0x123e: 0x0008, 0x123f: 0x0008, -	// Block 0x49, offset 0x1240 -	0x1240: 0x650d, 0x1241: 0x652d, 0x1242: 0x654d, 0x1243: 0x656d, 0x1244: 0x658d, 0x1245: 0x65ad, -	0x1246: 0x65cd, 0x1247: 0x65ed, 0x1248: 0x660d, 0x1249: 0x662d, 0x124a: 0x664d, 0x124b: 0x666d, -	0x124c: 0x668d, 0x124d: 0x66ad, 0x124e: 0x0008, 0x124f: 0x0008, 0x1250: 0x66cd, 0x1251: 0x0008, -	0x1252: 0x66ed, 0x1253: 0x0008, 0x1254: 0x0008, 0x1255: 0x670d, 0x1256: 0x672d, 0x1257: 0x674d, -	0x1258: 0x676d, 0x1259: 0x678d, 0x125a: 0x67ad, 0x125b: 0x67cd, 0x125c: 0x67ed, 0x125d: 0x680d, -	0x125e: 0x682d, 0x125f: 0x0008, 0x1260: 0x684d, 0x1261: 0x0008, 0x1262: 0x686d, 0x1263: 0x0008, -	0x1264: 0x0008, 0x1265: 0x688d, 0x1266: 0x68ad, 0x1267: 0x0008, 0x1268: 0x0008, 0x1269: 0x0008, -	0x126a: 0x68cd, 0x126b: 0x68ed, 0x126c: 0x690d, 0x126d: 0x692d, 0x126e: 0x694d, 0x126f: 0x696d, -	0x1270: 0x698d, 0x1271: 0x69ad, 0x1272: 0x69cd, 0x1273: 0x69ed, 0x1274: 0x6a0d, 0x1275: 0x6a2d, -	0x1276: 0x6a4d, 0x1277: 0x6a6d, 0x1278: 0x6a8d, 0x1279: 0x6aad, 0x127a: 0x6acd, 0x127b: 0x6aed, -	0x127c: 0x6b0d, 0x127d: 0x6b2d, 0x127e: 0x6b4d, 0x127f: 0x6b6d, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x7acd, 0x1281: 0x7aed, 0x1282: 0x7b0d, 0x1283: 0x7b2d, 0x1284: 0x7b4d, 0x1285: 0x7b6d, -	0x1286: 0x7b8d, 0x1287: 0x7bad, 0x1288: 0x7bcd, 0x1289: 0x7bed, 0x128a: 0x7c0d, 0x128b: 0x7c2d, -	0x128c: 0x7c4d, 0x128d: 0x7c6d, 0x128e: 0x7c8d, 0x128f: 0x1409, 0x1290: 0x1411, 0x1291: 0x1419, -	0x1292: 0x7cad, 0x1293: 0x7ccd, 0x1294: 0x7ced, 0x1295: 0x1421, 0x1296: 0x1429, 0x1297: 0x1431, -	0x1298: 0x7d0d, 0x1299: 0x7d2d, 0x129a: 0x0040, 0x129b: 0x0040, 0x129c: 0x0040, 0x129d: 0x0040, -	0x129e: 0x0040, 0x129f: 0x0040, 0x12a0: 0x0040, 0x12a1: 0x0040, 0x12a2: 0x0040, 0x12a3: 0x0040, -	0x12a4: 0x0040, 0x12a5: 0x0040, 0x12a6: 0x0040, 0x12a7: 0x0040, 0x12a8: 0x0040, 0x12a9: 0x0040, -	0x12aa: 0x0040, 0x12ab: 0x0040, 0x12ac: 0x0040, 0x12ad: 0x0040, 0x12ae: 0x0040, 0x12af: 0x0040, -	0x12b0: 0x0040, 0x12b1: 0x0040, 0x12b2: 0x0040, 0x12b3: 0x0040, 0x12b4: 0x0040, 0x12b5: 0x0040, -	0x12b6: 0x0040, 0x12b7: 0x0040, 0x12b8: 0x0040, 0x12b9: 0x0040, 0x12ba: 0x0040, 0x12bb: 0x0040, -	0x12bc: 0x0040, 0x12bd: 0x0040, 0x12be: 0x0040, 0x12bf: 0x0040, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x1439, 0x12c1: 0x1441, 0x12c2: 0x1449, 0x12c3: 0x7d4d, 0x12c4: 0x7d6d, 0x12c5: 0x1451, -	0x12c6: 0x1451, 0x12c7: 0x0040, 0x12c8: 0x0040, 0x12c9: 0x0040, 0x12ca: 0x0040, 0x12cb: 0x0040, -	0x12cc: 0x0040, 0x12cd: 0x0040, 0x12ce: 0x0040, 0x12cf: 0x0040, 0x12d0: 0x0040, 0x12d1: 0x0040, -	0x12d2: 0x0040, 0x12d3: 0x1459, 0x12d4: 0x1461, 0x12d5: 0x1469, 0x12d6: 0x1471, 0x12d7: 0x1479, -	0x12d8: 0x0040, 0x12d9: 0x0040, 0x12da: 0x0040, 0x12db: 0x0040, 0x12dc: 0x0040, 0x12dd: 0x1481, -	0x12de: 0x3308, 0x12df: 0x1489, 0x12e0: 0x1491, 0x12e1: 0x0779, 0x12e2: 0x0791, 0x12e3: 0x1499, -	0x12e4: 0x14a1, 0x12e5: 0x14a9, 0x12e6: 0x14b1, 0x12e7: 0x14b9, 0x12e8: 0x14c1, 0x12e9: 0x071a, -	0x12ea: 0x14c9, 0x12eb: 0x14d1, 0x12ec: 0x14d9, 0x12ed: 0x14e1, 0x12ee: 0x14e9, 0x12ef: 0x14f1, -	0x12f0: 0x14f9, 0x12f1: 0x1501, 0x12f2: 0x1509, 0x12f3: 0x1511, 0x12f4: 0x1519, 0x12f5: 0x1521, -	0x12f6: 0x1529, 0x12f7: 0x0040, 0x12f8: 0x1531, 0x12f9: 0x1539, 0x12fa: 0x1541, 0x12fb: 0x1549, -	0x12fc: 0x1551, 0x12fd: 0x0040, 0x12fe: 0x1559, 0x12ff: 0x0040, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x1561, 0x1301: 0x1569, 0x1302: 0x0040, 0x1303: 0x1571, 0x1304: 0x1579, 0x1305: 0x0040, -	0x1306: 0x1581, 0x1307: 0x1589, 0x1308: 0x1591, 0x1309: 0x1599, 0x130a: 0x15a1, 0x130b: 0x15a9, -	0x130c: 0x15b1, 0x130d: 0x15b9, 0x130e: 0x15c1, 0x130f: 0x15c9, 0x1310: 0x15d1, 0x1311: 0x15d1, -	0x1312: 0x15d9, 0x1313: 0x15d9, 0x1314: 0x15d9, 0x1315: 0x15d9, 0x1316: 0x15e1, 0x1317: 0x15e1, -	0x1318: 0x15e1, 0x1319: 0x15e1, 0x131a: 0x15e9, 0x131b: 0x15e9, 0x131c: 0x15e9, 0x131d: 0x15e9, -	0x131e: 0x15f1, 0x131f: 0x15f1, 0x1320: 0x15f1, 0x1321: 0x15f1, 0x1322: 0x15f9, 0x1323: 0x15f9, -	0x1324: 0x15f9, 0x1325: 0x15f9, 0x1326: 0x1601, 0x1327: 0x1601, 0x1328: 0x1601, 0x1329: 0x1601, -	0x132a: 0x1609, 0x132b: 0x1609, 0x132c: 0x1609, 0x132d: 0x1609, 0x132e: 0x1611, 0x132f: 0x1611, -	0x1330: 0x1611, 0x1331: 0x1611, 0x1332: 0x1619, 0x1333: 0x1619, 0x1334: 0x1619, 0x1335: 0x1619, -	0x1336: 0x1621, 0x1337: 0x1621, 0x1338: 0x1621, 0x1339: 0x1621, 0x133a: 0x1629, 0x133b: 0x1629, -	0x133c: 0x1629, 0x133d: 0x1629, 0x133e: 0x1631, 0x133f: 0x1631, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x1631, 0x1341: 0x1631, 0x1342: 0x1639, 0x1343: 0x1639, 0x1344: 0x1641, 0x1345: 0x1641, -	0x1346: 0x1649, 0x1347: 0x1649, 0x1348: 0x1651, 0x1349: 0x1651, 0x134a: 0x1659, 0x134b: 0x1659, -	0x134c: 0x1661, 0x134d: 0x1661, 0x134e: 0x1669, 0x134f: 0x1669, 0x1350: 0x1669, 0x1351: 0x1669, -	0x1352: 0x1671, 0x1353: 0x1671, 0x1354: 0x1671, 0x1355: 0x1671, 0x1356: 0x1679, 0x1357: 0x1679, -	0x1358: 0x1679, 0x1359: 0x1679, 0x135a: 0x1681, 0x135b: 0x1681, 0x135c: 0x1681, 0x135d: 0x1681, -	0x135e: 0x1689, 0x135f: 0x1689, 0x1360: 0x1691, 0x1361: 0x1691, 0x1362: 0x1691, 0x1363: 0x1691, -	0x1364: 0x1699, 0x1365: 0x1699, 0x1366: 0x16a1, 0x1367: 0x16a1, 0x1368: 0x16a1, 0x1369: 0x16a1, -	0x136a: 0x16a9, 0x136b: 0x16a9, 0x136c: 0x16a9, 0x136d: 0x16a9, 0x136e: 0x16b1, 0x136f: 0x16b1, -	0x1370: 0x16b9, 0x1371: 0x16b9, 0x1372: 0x0818, 0x1373: 0x0818, 0x1374: 0x0818, 0x1375: 0x0818, -	0x1376: 0x0818, 0x1377: 0x0818, 0x1378: 0x0818, 0x1379: 0x0818, 0x137a: 0x0818, 0x137b: 0x0818, -	0x137c: 0x0818, 0x137d: 0x0818, 0x137e: 0x0818, 0x137f: 0x0818, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x0818, 0x1381: 0x0818, 0x1382: 0x0818, 0x1383: 0x0040, 0x1384: 0x0040, 0x1385: 0x0040, -	0x1386: 0x0040, 0x1387: 0x0040, 0x1388: 0x0040, 0x1389: 0x0040, 0x138a: 0x0040, 0x138b: 0x0040, -	0x138c: 0x0040, 0x138d: 0x0040, 0x138e: 0x0040, 0x138f: 0x0040, 0x1390: 0x0040, 0x1391: 0x0040, -	0x1392: 0x0040, 0x1393: 0x16c1, 0x1394: 0x16c1, 0x1395: 0x16c1, 0x1396: 0x16c1, 0x1397: 0x16c9, -	0x1398: 0x16c9, 0x1399: 0x16d1, 0x139a: 0x16d1, 0x139b: 0x16d9, 0x139c: 0x16d9, 0x139d: 0x0149, -	0x139e: 0x16e1, 0x139f: 0x16e1, 0x13a0: 0x16e9, 0x13a1: 0x16e9, 0x13a2: 0x16f1, 0x13a3: 0x16f1, -	0x13a4: 0x16f9, 0x13a5: 0x16f9, 0x13a6: 0x16f9, 0x13a7: 0x16f9, 0x13a8: 0x1701, 0x13a9: 0x1701, -	0x13aa: 0x1709, 0x13ab: 0x1709, 0x13ac: 0x1711, 0x13ad: 0x1711, 0x13ae: 0x1719, 0x13af: 0x1719, -	0x13b0: 0x1721, 0x13b1: 0x1721, 0x13b2: 0x1729, 0x13b3: 0x1729, 0x13b4: 0x1731, 0x13b5: 0x1731, -	0x13b6: 0x1739, 0x13b7: 0x1739, 0x13b8: 0x1739, 0x13b9: 0x1741, 0x13ba: 0x1741, 0x13bb: 0x1741, -	0x13bc: 0x1749, 0x13bd: 0x1749, 0x13be: 0x1749, 0x13bf: 0x1749, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x1949, 0x13c1: 0x1951, 0x13c2: 0x1959, 0x13c3: 0x1961, 0x13c4: 0x1969, 0x13c5: 0x1971, -	0x13c6: 0x1979, 0x13c7: 0x1981, 0x13c8: 0x1989, 0x13c9: 0x1991, 0x13ca: 0x1999, 0x13cb: 0x19a1, -	0x13cc: 0x19a9, 0x13cd: 0x19b1, 0x13ce: 0x19b9, 0x13cf: 0x19c1, 0x13d0: 0x19c9, 0x13d1: 0x19d1, -	0x13d2: 0x19d9, 0x13d3: 0x19e1, 0x13d4: 0x19e9, 0x13d5: 0x19f1, 0x13d6: 0x19f9, 0x13d7: 0x1a01, -	0x13d8: 0x1a09, 0x13d9: 0x1a11, 0x13da: 0x1a19, 0x13db: 0x1a21, 0x13dc: 0x1a29, 0x13dd: 0x1a31, -	0x13de: 0x1a3a, 0x13df: 0x1a42, 0x13e0: 0x1a4a, 0x13e1: 0x1a52, 0x13e2: 0x1a5a, 0x13e3: 0x1a62, -	0x13e4: 0x1a69, 0x13e5: 0x1a71, 0x13e6: 0x1761, 0x13e7: 0x1a79, 0x13e8: 0x1741, 0x13e9: 0x1769, -	0x13ea: 0x1a81, 0x13eb: 0x1a89, 0x13ec: 0x1789, 0x13ed: 0x1a91, 0x13ee: 0x1791, 0x13ef: 0x1799, -	0x13f0: 0x1a99, 0x13f1: 0x1aa1, 0x13f2: 0x17b9, 0x13f3: 0x1aa9, 0x13f4: 0x17c1, 0x13f5: 0x17c9, -	0x13f6: 0x1ab1, 0x13f7: 0x1ab9, 0x13f8: 0x17d9, 0x13f9: 0x1ac1, 0x13fa: 0x17e1, 0x13fb: 0x17e9, -	0x13fc: 0x18d1, 0x13fd: 0x18d9, 0x13fe: 0x18f1, 0x13ff: 0x18f9, -	// Block 0x50, offset 0x1400 -	0x1400: 0x1901, 0x1401: 0x1921, 0x1402: 0x1929, 0x1403: 0x1931, 0x1404: 0x1939, 0x1405: 0x1959, -	0x1406: 0x1961, 0x1407: 0x1969, 0x1408: 0x1ac9, 0x1409: 0x1989, 0x140a: 0x1ad1, 0x140b: 0x1ad9, -	0x140c: 0x19b9, 0x140d: 0x1ae1, 0x140e: 0x19c1, 0x140f: 0x19c9, 0x1410: 0x1a31, 0x1411: 0x1ae9, -	0x1412: 0x1af1, 0x1413: 0x1a09, 0x1414: 0x1af9, 0x1415: 0x1a11, 0x1416: 0x1a19, 0x1417: 0x1751, -	0x1418: 0x1759, 0x1419: 0x1b01, 0x141a: 0x1761, 0x141b: 0x1b09, 0x141c: 0x1771, 0x141d: 0x1779, -	0x141e: 0x1781, 0x141f: 0x1789, 0x1420: 0x1b11, 0x1421: 0x17a1, 0x1422: 0x17a9, 0x1423: 0x17b1, -	0x1424: 0x17b9, 0x1425: 0x1b19, 0x1426: 0x17d9, 0x1427: 0x17f1, 0x1428: 0x17f9, 0x1429: 0x1801, -	0x142a: 0x1809, 0x142b: 0x1811, 0x142c: 0x1821, 0x142d: 0x1829, 0x142e: 0x1831, 0x142f: 0x1839, -	0x1430: 0x1841, 0x1431: 0x1849, 0x1432: 0x1b21, 0x1433: 0x1851, 0x1434: 0x1859, 0x1435: 0x1861, -	0x1436: 0x1869, 0x1437: 0x1871, 0x1438: 0x1879, 0x1439: 0x1889, 0x143a: 0x1891, 0x143b: 0x1899, -	0x143c: 0x18a1, 0x143d: 0x18a9, 0x143e: 0x18b1, 0x143f: 0x18b9, -	// Block 0x51, offset 0x1440 -	0x1440: 0x18c1, 0x1441: 0x18c9, 0x1442: 0x18e1, 0x1443: 0x18e9, 0x1444: 0x1909, 0x1445: 0x1911, -	0x1446: 0x1919, 0x1447: 0x1921, 0x1448: 0x1929, 0x1449: 0x1941, 0x144a: 0x1949, 0x144b: 0x1951, -	0x144c: 0x1959, 0x144d: 0x1b29, 0x144e: 0x1971, 0x144f: 0x1979, 0x1450: 0x1981, 0x1451: 0x1989, -	0x1452: 0x19a1, 0x1453: 0x19a9, 0x1454: 0x19b1, 0x1455: 0x19b9, 0x1456: 0x1b31, 0x1457: 0x19d1, -	0x1458: 0x19d9, 0x1459: 0x1b39, 0x145a: 0x19f1, 0x145b: 0x19f9, 0x145c: 0x1a01, 0x145d: 0x1a09, -	0x145e: 0x1b41, 0x145f: 0x1761, 0x1460: 0x1b09, 0x1461: 0x1789, 0x1462: 0x1b11, 0x1463: 0x17b9, -	0x1464: 0x1b19, 0x1465: 0x17d9, 0x1466: 0x1b49, 0x1467: 0x1841, 0x1468: 0x1b51, 0x1469: 0x1b59, -	0x146a: 0x1b61, 0x146b: 0x1921, 0x146c: 0x1929, 0x146d: 0x1959, 0x146e: 0x19b9, 0x146f: 0x1b31, -	0x1470: 0x1a09, 0x1471: 0x1b41, 0x1472: 0x1b69, 0x1473: 0x1b71, 0x1474: 0x1b79, 0x1475: 0x1b81, -	0x1476: 0x1b89, 0x1477: 0x1b91, 0x1478: 0x1b99, 0x1479: 0x1ba1, 0x147a: 0x1ba9, 0x147b: 0x1bb1, -	0x147c: 0x1bb9, 0x147d: 0x1bc1, 0x147e: 0x1bc9, 0x147f: 0x1bd1, -	// Block 0x52, offset 0x1480 -	0x1480: 0x1bd9, 0x1481: 0x1be1, 0x1482: 0x1be9, 0x1483: 0x1bf1, 0x1484: 0x1bf9, 0x1485: 0x1c01, -	0x1486: 0x1c09, 0x1487: 0x1c11, 0x1488: 0x1c19, 0x1489: 0x1c21, 0x148a: 0x1c29, 0x148b: 0x1c31, -	0x148c: 0x1b59, 0x148d: 0x1c39, 0x148e: 0x1c41, 0x148f: 0x1c49, 0x1490: 0x1c51, 0x1491: 0x1b81, -	0x1492: 0x1b89, 0x1493: 0x1b91, 0x1494: 0x1b99, 0x1495: 0x1ba1, 0x1496: 0x1ba9, 0x1497: 0x1bb1, -	0x1498: 0x1bb9, 0x1499: 0x1bc1, 0x149a: 0x1bc9, 0x149b: 0x1bd1, 0x149c: 0x1bd9, 0x149d: 0x1be1, -	0x149e: 0x1be9, 0x149f: 0x1bf1, 0x14a0: 0x1bf9, 0x14a1: 0x1c01, 0x14a2: 0x1c09, 0x14a3: 0x1c11, -	0x14a4: 0x1c19, 0x14a5: 0x1c21, 0x14a6: 0x1c29, 0x14a7: 0x1c31, 0x14a8: 0x1b59, 0x14a9: 0x1c39, -	0x14aa: 0x1c41, 0x14ab: 0x1c49, 0x14ac: 0x1c51, 0x14ad: 0x1c21, 0x14ae: 0x1c29, 0x14af: 0x1c31, -	0x14b0: 0x1b59, 0x14b1: 0x1b51, 0x14b2: 0x1b61, 0x14b3: 0x1881, 0x14b4: 0x1829, 0x14b5: 0x1831, -	0x14b6: 0x1839, 0x14b7: 0x1c21, 0x14b8: 0x1c29, 0x14b9: 0x1c31, 0x14ba: 0x1881, 0x14bb: 0x1889, -	0x14bc: 0x1c59, 0x14bd: 0x1c59, 0x14be: 0x0018, 0x14bf: 0x0018, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0x0018, 0x14c1: 0x0018, 0x14c2: 0x0018, 0x14c3: 0x0018, 0x14c4: 0x0018, 0x14c5: 0x0018, -	0x14c6: 0x0018, 0x14c7: 0x0018, 0x14c8: 0x0018, 0x14c9: 0x0018, 0x14ca: 0x0018, 0x14cb: 0x0018, -	0x14cc: 0x0018, 0x14cd: 0x0018, 0x14ce: 0x0018, 0x14cf: 0x0018, 0x14d0: 0x1c61, 0x14d1: 0x1c69, -	0x14d2: 0x1c69, 0x14d3: 0x1c71, 0x14d4: 0x1c79, 0x14d5: 0x1c81, 0x14d6: 0x1c89, 0x14d7: 0x1c91, -	0x14d8: 0x1c99, 0x14d9: 0x1c99, 0x14da: 0x1ca1, 0x14db: 0x1ca9, 0x14dc: 0x1cb1, 0x14dd: 0x1cb9, -	0x14de: 0x1cc1, 0x14df: 0x1cc9, 0x14e0: 0x1cc9, 0x14e1: 0x1cd1, 0x14e2: 0x1cd9, 0x14e3: 0x1cd9, -	0x14e4: 0x1ce1, 0x14e5: 0x1ce1, 0x14e6: 0x1ce9, 0x14e7: 0x1cf1, 0x14e8: 0x1cf1, 0x14e9: 0x1cf9, -	0x14ea: 0x1d01, 0x14eb: 0x1d01, 0x14ec: 0x1d09, 0x14ed: 0x1d09, 0x14ee: 0x1d11, 0x14ef: 0x1d19, -	0x14f0: 0x1d19, 0x14f1: 0x1d21, 0x14f2: 0x1d21, 0x14f3: 0x1d29, 0x14f4: 0x1d31, 0x14f5: 0x1d39, -	0x14f6: 0x1d41, 0x14f7: 0x1d41, 0x14f8: 0x1d49, 0x14f9: 0x1d51, 0x14fa: 0x1d59, 0x14fb: 0x1d61, -	0x14fc: 0x1d69, 0x14fd: 0x1d69, 0x14fe: 0x1d71, 0x14ff: 0x1d79, -	// Block 0x54, offset 0x1500 -	0x1500: 0x1f29, 0x1501: 0x1f31, 0x1502: 0x1f39, 0x1503: 0x1f11, 0x1504: 0x1d39, 0x1505: 0x1ce9, -	0x1506: 0x1f41, 0x1507: 0x1f49, 0x1508: 0x0040, 0x1509: 0x0040, 0x150a: 0x0040, 0x150b: 0x0040, -	0x150c: 0x0040, 0x150d: 0x0040, 0x150e: 0x0040, 0x150f: 0x0018, 0x1510: 0x0040, 0x1511: 0x0040, -	0x1512: 0x0040, 0x1513: 0x0040, 0x1514: 0x0040, 0x1515: 0x0040, 0x1516: 0x0040, 0x1517: 0x0040, -	0x1518: 0x0040, 0x1519: 0x0040, 0x151a: 0x0040, 0x151b: 0x0040, 0x151c: 0x0040, 0x151d: 0x0040, -	0x151e: 0x0040, 0x151f: 0x0040, 0x1520: 0x0040, 0x1521: 0x0040, 0x1522: 0x0040, 0x1523: 0x0040, -	0x1524: 0x0040, 0x1525: 0x0040, 0x1526: 0x0040, 0x1527: 0x0040, 0x1528: 0x0040, 0x1529: 0x0040, -	0x152a: 0x0040, 0x152b: 0x0040, 0x152c: 0x0040, 0x152d: 0x0040, 0x152e: 0x0040, 0x152f: 0x0040, -	0x1530: 0x1f51, 0x1531: 0x1f59, 0x1532: 0x1f61, 0x1533: 0x1f69, 0x1534: 0x1f71, 0x1535: 0x1f79, -	0x1536: 0x1f81, 0x1537: 0x1f89, 0x1538: 0x1f91, 0x1539: 0x1f99, 0x153a: 0x1fa2, 0x153b: 0x1faa, -	0x153c: 0x1fb1, 0x153d: 0x0018, 0x153e: 0x0018, 0x153f: 0x0018, -	// Block 0x55, offset 0x1540 -	0x1540: 0x33c0, 0x1541: 0x33c0, 0x1542: 0x33c0, 0x1543: 0x33c0, 0x1544: 0x33c0, 0x1545: 0x33c0, -	0x1546: 0x33c0, 0x1547: 0x33c0, 0x1548: 0x33c0, 0x1549: 0x33c0, 0x154a: 0x33c0, 0x154b: 0x33c0, -	0x154c: 0x33c0, 0x154d: 0x33c0, 0x154e: 0x33c0, 0x154f: 0x33c0, 0x1550: 0x1fba, 0x1551: 0x7d8d, -	0x1552: 0x0040, 0x1553: 0x1fc2, 0x1554: 0x0122, 0x1555: 0x1fca, 0x1556: 0x1fd2, 0x1557: 0x7dad, -	0x1558: 0x7dcd, 0x1559: 0x0040, 0x155a: 0x0040, 0x155b: 0x0040, 0x155c: 0x0040, 0x155d: 0x0040, -	0x155e: 0x0040, 0x155f: 0x0040, 0x1560: 0x3308, 0x1561: 0x3308, 0x1562: 0x3308, 0x1563: 0x3308, -	0x1564: 0x3308, 0x1565: 0x3308, 0x1566: 0x3308, 0x1567: 0x3308, 0x1568: 0x3308, 0x1569: 0x3308, -	0x156a: 0x3308, 0x156b: 0x3308, 0x156c: 0x3308, 0x156d: 0x3308, 0x156e: 0x3308, 0x156f: 0x3308, -	0x1570: 0x0040, 0x1571: 0x7ded, 0x1572: 0x7e0d, 0x1573: 0x1fda, 0x1574: 0x1fda, 0x1575: 0x072a, -	0x1576: 0x0732, 0x1577: 0x1fe2, 0x1578: 0x1fea, 0x1579: 0x7e2d, 0x157a: 0x7e4d, 0x157b: 0x7e6d, -	0x157c: 0x7e2d, 0x157d: 0x7e8d, 0x157e: 0x7ead, 0x157f: 0x7e8d, -	// Block 0x56, offset 0x1580 -	0x1580: 0x7ecd, 0x1581: 0x7eed, 0x1582: 0x7f0d, 0x1583: 0x7eed, 0x1584: 0x7f2d, 0x1585: 0x0018, -	0x1586: 0x0018, 0x1587: 0x1ff2, 0x1588: 0x1ffa, 0x1589: 0x7f4e, 0x158a: 0x7f6e, 0x158b: 0x7f8e, -	0x158c: 0x7fae, 0x158d: 0x1fda, 0x158e: 0x1fda, 0x158f: 0x1fda, 0x1590: 0x1fba, 0x1591: 0x7fcd, -	0x1592: 0x0040, 0x1593: 0x0040, 0x1594: 0x0122, 0x1595: 0x1fc2, 0x1596: 0x1fd2, 0x1597: 0x1fca, -	0x1598: 0x7fed, 0x1599: 0x072a, 0x159a: 0x0732, 0x159b: 0x1fe2, 0x159c: 0x1fea, 0x159d: 0x7ecd, -	0x159e: 0x7f2d, 0x159f: 0x2002, 0x15a0: 0x200a, 0x15a1: 0x2012, 0x15a2: 0x071a, 0x15a3: 0x2019, -	0x15a4: 0x2022, 0x15a5: 0x202a, 0x15a6: 0x0722, 0x15a7: 0x0040, 0x15a8: 0x2032, 0x15a9: 0x203a, -	0x15aa: 0x2042, 0x15ab: 0x204a, 0x15ac: 0x0040, 0x15ad: 0x0040, 0x15ae: 0x0040, 0x15af: 0x0040, -	0x15b0: 0x800e, 0x15b1: 0x2051, 0x15b2: 0x802e, 0x15b3: 0x0808, 0x15b4: 0x804e, 0x15b5: 0x0040, -	0x15b6: 0x806e, 0x15b7: 0x2059, 0x15b8: 0x808e, 0x15b9: 0x2061, 0x15ba: 0x80ae, 0x15bb: 0x2069, -	0x15bc: 0x80ce, 0x15bd: 0x2071, 0x15be: 0x80ee, 0x15bf: 0x2079, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0x2081, 0x15c1: 0x2089, 0x15c2: 0x2089, 0x15c3: 0x2091, 0x15c4: 0x2091, 0x15c5: 0x2099, -	0x15c6: 0x2099, 0x15c7: 0x20a1, 0x15c8: 0x20a1, 0x15c9: 0x20a9, 0x15ca: 0x20a9, 0x15cb: 0x20a9, -	0x15cc: 0x20a9, 0x15cd: 0x20b1, 0x15ce: 0x20b1, 0x15cf: 0x20b9, 0x15d0: 0x20b9, 0x15d1: 0x20b9, -	0x15d2: 0x20b9, 0x15d3: 0x20c1, 0x15d4: 0x20c1, 0x15d5: 0x20c9, 0x15d6: 0x20c9, 0x15d7: 0x20c9, -	0x15d8: 0x20c9, 0x15d9: 0x20d1, 0x15da: 0x20d1, 0x15db: 0x20d1, 0x15dc: 0x20d1, 0x15dd: 0x20d9, -	0x15de: 0x20d9, 0x15df: 0x20d9, 0x15e0: 0x20d9, 0x15e1: 0x20e1, 0x15e2: 0x20e1, 0x15e3: 0x20e1, -	0x15e4: 0x20e1, 0x15e5: 0x20e9, 0x15e6: 0x20e9, 0x15e7: 0x20e9, 0x15e8: 0x20e9, 0x15e9: 0x20f1, -	0x15ea: 0x20f1, 0x15eb: 0x20f9, 0x15ec: 0x20f9, 0x15ed: 0x2101, 0x15ee: 0x2101, 0x15ef: 0x2109, -	0x15f0: 0x2109, 0x15f1: 0x2111, 0x15f2: 0x2111, 0x15f3: 0x2111, 0x15f4: 0x2111, 0x15f5: 0x2119, -	0x15f6: 0x2119, 0x15f7: 0x2119, 0x15f8: 0x2119, 0x15f9: 0x2121, 0x15fa: 0x2121, 0x15fb: 0x2121, -	0x15fc: 0x2121, 0x15fd: 0x2129, 0x15fe: 0x2129, 0x15ff: 0x2129, -	// Block 0x58, offset 0x1600 -	0x1600: 0x2129, 0x1601: 0x2131, 0x1602: 0x2131, 0x1603: 0x2131, 0x1604: 0x2131, 0x1605: 0x2139, -	0x1606: 0x2139, 0x1607: 0x2139, 0x1608: 0x2139, 0x1609: 0x2141, 0x160a: 0x2141, 0x160b: 0x2141, -	0x160c: 0x2141, 0x160d: 0x2149, 0x160e: 0x2149, 0x160f: 0x2149, 0x1610: 0x2149, 0x1611: 0x2151, -	0x1612: 0x2151, 0x1613: 0x2151, 0x1614: 0x2151, 0x1615: 0x2159, 0x1616: 0x2159, 0x1617: 0x2159, -	0x1618: 0x2159, 0x1619: 0x2161, 0x161a: 0x2161, 0x161b: 0x2161, 0x161c: 0x2161, 0x161d: 0x2169, -	0x161e: 0x2169, 0x161f: 0x2169, 0x1620: 0x2169, 0x1621: 0x2171, 0x1622: 0x2171, 0x1623: 0x2171, -	0x1624: 0x2171, 0x1625: 0x2179, 0x1626: 0x2179, 0x1627: 0x2179, 0x1628: 0x2179, 0x1629: 0x2181, -	0x162a: 0x2181, 0x162b: 0x2181, 0x162c: 0x2181, 0x162d: 0x2189, 0x162e: 0x2189, 0x162f: 0x1701, -	0x1630: 0x1701, 0x1631: 0x2191, 0x1632: 0x2191, 0x1633: 0x2191, 0x1634: 0x2191, 0x1635: 0x2199, -	0x1636: 0x2199, 0x1637: 0x21a1, 0x1638: 0x21a1, 0x1639: 0x21a9, 0x163a: 0x21a9, 0x163b: 0x21b1, -	0x163c: 0x21b1, 0x163d: 0x0040, 0x163e: 0x0040, 0x163f: 0x03c0, -	// Block 0x59, offset 0x1640 -	0x1640: 0x0040, 0x1641: 0x1fca, 0x1642: 0x21ba, 0x1643: 0x2002, 0x1644: 0x203a, 0x1645: 0x2042, -	0x1646: 0x200a, 0x1647: 0x21c2, 0x1648: 0x072a, 0x1649: 0x0732, 0x164a: 0x2012, 0x164b: 0x071a, -	0x164c: 0x1fba, 0x164d: 0x2019, 0x164e: 0x0961, 0x164f: 0x21ca, 0x1650: 0x06e1, 0x1651: 0x0049, -	0x1652: 0x0029, 0x1653: 0x0031, 0x1654: 0x06e9, 0x1655: 0x06f1, 0x1656: 0x06f9, 0x1657: 0x0701, -	0x1658: 0x0709, 0x1659: 0x0711, 0x165a: 0x1fc2, 0x165b: 0x0122, 0x165c: 0x2022, 0x165d: 0x0722, -	0x165e: 0x202a, 0x165f: 0x1fd2, 0x1660: 0x204a, 0x1661: 0x0019, 0x1662: 0x02e9, 0x1663: 0x03d9, -	0x1664: 0x02f1, 0x1665: 0x02f9, 0x1666: 0x03f1, 0x1667: 0x0309, 0x1668: 0x00a9, 0x1669: 0x0311, -	0x166a: 0x00b1, 0x166b: 0x0319, 0x166c: 0x0101, 0x166d: 0x0321, 0x166e: 0x0329, 0x166f: 0x0051, -	0x1670: 0x0339, 0x1671: 0x0751, 0x1672: 0x00b9, 0x1673: 0x0089, 0x1674: 0x0341, 0x1675: 0x0349, -	0x1676: 0x0391, 0x1677: 0x00c1, 0x1678: 0x0109, 0x1679: 0x00c9, 0x167a: 0x04b1, 0x167b: 0x1ff2, -	0x167c: 0x2032, 0x167d: 0x1ffa, 0x167e: 0x21d2, 0x167f: 0x1fda, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x0672, 0x1681: 0x0019, 0x1682: 0x02e9, 0x1683: 0x03d9, 0x1684: 0x02f1, 0x1685: 0x02f9, -	0x1686: 0x03f1, 0x1687: 0x0309, 0x1688: 0x00a9, 0x1689: 0x0311, 0x168a: 0x00b1, 0x168b: 0x0319, -	0x168c: 0x0101, 0x168d: 0x0321, 0x168e: 0x0329, 0x168f: 0x0051, 0x1690: 0x0339, 0x1691: 0x0751, -	0x1692: 0x00b9, 0x1693: 0x0089, 0x1694: 0x0341, 0x1695: 0x0349, 0x1696: 0x0391, 0x1697: 0x00c1, -	0x1698: 0x0109, 0x1699: 0x00c9, 0x169a: 0x04b1, 0x169b: 0x1fe2, 0x169c: 0x21da, 0x169d: 0x1fea, -	0x169e: 0x21e2, 0x169f: 0x810d, 0x16a0: 0x812d, 0x16a1: 0x0961, 0x16a2: 0x814d, 0x16a3: 0x814d, -	0x16a4: 0x816d, 0x16a5: 0x818d, 0x16a6: 0x81ad, 0x16a7: 0x81cd, 0x16a8: 0x81ed, 0x16a9: 0x820d, -	0x16aa: 0x822d, 0x16ab: 0x824d, 0x16ac: 0x826d, 0x16ad: 0x828d, 0x16ae: 0x82ad, 0x16af: 0x82cd, -	0x16b0: 0x82ed, 0x16b1: 0x830d, 0x16b2: 0x832d, 0x16b3: 0x834d, 0x16b4: 0x836d, 0x16b5: 0x838d, -	0x16b6: 0x83ad, 0x16b7: 0x83cd, 0x16b8: 0x83ed, 0x16b9: 0x840d, 0x16ba: 0x842d, 0x16bb: 0x844d, -	0x16bc: 0x81ed, 0x16bd: 0x846d, 0x16be: 0x848d, 0x16bf: 0x824d, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x84ad, 0x16c1: 0x84cd, 0x16c2: 0x84ed, 0x16c3: 0x850d, 0x16c4: 0x852d, 0x16c5: 0x854d, -	0x16c6: 0x856d, 0x16c7: 0x858d, 0x16c8: 0x850d, 0x16c9: 0x85ad, 0x16ca: 0x850d, 0x16cb: 0x85cd, -	0x16cc: 0x85cd, 0x16cd: 0x85ed, 0x16ce: 0x85ed, 0x16cf: 0x860d, 0x16d0: 0x854d, 0x16d1: 0x862d, -	0x16d2: 0x864d, 0x16d3: 0x862d, 0x16d4: 0x866d, 0x16d5: 0x864d, 0x16d6: 0x868d, 0x16d7: 0x868d, -	0x16d8: 0x86ad, 0x16d9: 0x86ad, 0x16da: 0x86cd, 0x16db: 0x86cd, 0x16dc: 0x864d, 0x16dd: 0x814d, -	0x16de: 0x86ed, 0x16df: 0x870d, 0x16e0: 0x0040, 0x16e1: 0x872d, 0x16e2: 0x874d, 0x16e3: 0x876d, -	0x16e4: 0x878d, 0x16e5: 0x876d, 0x16e6: 0x87ad, 0x16e7: 0x87cd, 0x16e8: 0x87ed, 0x16e9: 0x87ed, -	0x16ea: 0x880d, 0x16eb: 0x880d, 0x16ec: 0x882d, 0x16ed: 0x882d, 0x16ee: 0x880d, 0x16ef: 0x880d, -	0x16f0: 0x884d, 0x16f1: 0x886d, 0x16f2: 0x888d, 0x16f3: 0x88ad, 0x16f4: 0x88cd, 0x16f5: 0x88ed, -	0x16f6: 0x88ed, 0x16f7: 0x88ed, 0x16f8: 0x890d, 0x16f9: 0x890d, 0x16fa: 0x890d, 0x16fb: 0x890d, -	0x16fc: 0x87ed, 0x16fd: 0x87ed, 0x16fe: 0x87ed, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0040, 0x1701: 0x0040, 0x1702: 0x874d, 0x1703: 0x872d, 0x1704: 0x892d, 0x1705: 0x872d, -	0x1706: 0x874d, 0x1707: 0x872d, 0x1708: 0x0040, 0x1709: 0x0040, 0x170a: 0x894d, 0x170b: 0x874d, -	0x170c: 0x896d, 0x170d: 0x892d, 0x170e: 0x896d, 0x170f: 0x874d, 0x1710: 0x0040, 0x1711: 0x0040, -	0x1712: 0x898d, 0x1713: 0x89ad, 0x1714: 0x88ad, 0x1715: 0x896d, 0x1716: 0x892d, 0x1717: 0x896d, -	0x1718: 0x0040, 0x1719: 0x0040, 0x171a: 0x89cd, 0x171b: 0x89ed, 0x171c: 0x89cd, 0x171d: 0x0040, -	0x171e: 0x0040, 0x171f: 0x0040, 0x1720: 0x21e9, 0x1721: 0x21f1, 0x1722: 0x21f9, 0x1723: 0x8a0e, -	0x1724: 0x2201, 0x1725: 0x2209, 0x1726: 0x8a2d, 0x1727: 0x0040, 0x1728: 0x8a4d, 0x1729: 0x8a6d, -	0x172a: 0x8a8d, 0x172b: 0x8a6d, 0x172c: 0x8aad, 0x172d: 0x8acd, 0x172e: 0x8aed, 0x172f: 0x0040, -	0x1730: 0x0040, 0x1731: 0x0040, 0x1732: 0x0040, 0x1733: 0x0040, 0x1734: 0x0040, 0x1735: 0x0040, -	0x1736: 0x0040, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0340, 0x173a: 0x0340, 0x173b: 0x0340, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x0008, 0x1741: 0x0008, 0x1742: 0x0008, 0x1743: 0x0008, 0x1744: 0x0008, 0x1745: 0x0008, -	0x1746: 0x0008, 0x1747: 0x0008, 0x1748: 0x0008, 0x1749: 0x0008, 0x174a: 0x0008, 0x174b: 0x0008, -	0x174c: 0x0008, 0x174d: 0x0008, 0x174e: 0x0008, 0x174f: 0x0008, 0x1750: 0x0008, 0x1751: 0x0008, -	0x1752: 0x0008, 0x1753: 0x0008, 0x1754: 0x0008, 0x1755: 0x0008, 0x1756: 0x0008, 0x1757: 0x0008, -	0x1758: 0x0008, 0x1759: 0x0008, 0x175a: 0x0008, 0x175b: 0x0008, 0x175c: 0x0008, 0x175d: 0x0008, -	0x175e: 0x0008, 0x175f: 0x0008, 0x1760: 0x0008, 0x1761: 0x0008, 0x1762: 0x0008, 0x1763: 0x0008, -	0x1764: 0x0040, 0x1765: 0x0040, 0x1766: 0x0040, 0x1767: 0x0040, 0x1768: 0x0040, 0x1769: 0x0040, -	0x176a: 0x0040, 0x176b: 0x0040, 0x176c: 0x0040, 0x176d: 0x0040, 0x176e: 0x0040, 0x176f: 0x0018, -	0x1770: 0x8b3d, 0x1771: 0x8b55, 0x1772: 0x8b6d, 0x1773: 0x8b55, 0x1774: 0x8b85, 0x1775: 0x8b55, -	0x1776: 0x8b6d, 0x1777: 0x8b55, 0x1778: 0x8b3d, 0x1779: 0x8b9d, 0x177a: 0x8bb5, 0x177b: 0x0040, -	0x177c: 0x8bcd, 0x177d: 0x8b9d, 0x177e: 0x8bb5, 0x177f: 0x8b9d, -	// Block 0x5e, offset 0x1780 -	0x1780: 0xe13d, 0x1781: 0xe14d, 0x1782: 0xe15d, 0x1783: 0xe14d, 0x1784: 0xe17d, 0x1785: 0xe14d, -	0x1786: 0xe15d, 0x1787: 0xe14d, 0x1788: 0xe13d, 0x1789: 0xe1cd, 0x178a: 0xe1dd, 0x178b: 0x0040, -	0x178c: 0xe1fd, 0x178d: 0xe1cd, 0x178e: 0xe1dd, 0x178f: 0xe1cd, 0x1790: 0xe13d, 0x1791: 0xe14d, -	0x1792: 0xe15d, 0x1793: 0x0040, 0x1794: 0xe17d, 0x1795: 0xe14d, 0x1796: 0x0040, 0x1797: 0x0008, -	0x1798: 0x0008, 0x1799: 0x0008, 0x179a: 0x0008, 0x179b: 0x0008, 0x179c: 0x0008, 0x179d: 0x0008, -	0x179e: 0x0008, 0x179f: 0x0008, 0x17a0: 0x0008, 0x17a1: 0x0008, 0x17a2: 0x0040, 0x17a3: 0x0008, -	0x17a4: 0x0008, 0x17a5: 0x0008, 0x17a6: 0x0008, 0x17a7: 0x0008, 0x17a8: 0x0008, 0x17a9: 0x0008, -	0x17aa: 0x0008, 0x17ab: 0x0008, 0x17ac: 0x0008, 0x17ad: 0x0008, 0x17ae: 0x0008, 0x17af: 0x0008, -	0x17b0: 0x0008, 0x17b1: 0x0008, 0x17b2: 0x0040, 0x17b3: 0x0008, 0x17b4: 0x0008, 0x17b5: 0x0008, -	0x17b6: 0x0008, 0x17b7: 0x0008, 0x17b8: 0x0008, 0x17b9: 0x0008, 0x17ba: 0x0040, 0x17bb: 0x0008, -	0x17bc: 0x0008, 0x17bd: 0x0040, 0x17be: 0x0040, 0x17bf: 0x0040, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x0008, 0x17c1: 0x2211, 0x17c2: 0x2219, 0x17c3: 0x02e1, 0x17c4: 0x2221, 0x17c5: 0x2229, -	0x17c6: 0x0040, 0x17c7: 0x2231, 0x17c8: 0x2239, 0x17c9: 0x2241, 0x17ca: 0x2249, 0x17cb: 0x2251, -	0x17cc: 0x2259, 0x17cd: 0x2261, 0x17ce: 0x2269, 0x17cf: 0x2271, 0x17d0: 0x2279, 0x17d1: 0x2281, -	0x17d2: 0x2289, 0x17d3: 0x2291, 0x17d4: 0x2299, 0x17d5: 0x0741, 0x17d6: 0x22a1, 0x17d7: 0x22a9, -	0x17d8: 0x22b1, 0x17d9: 0x22b9, 0x17da: 0x22c1, 0x17db: 0x13d9, 0x17dc: 0x8be5, 0x17dd: 0x22c9, -	0x17de: 0x22d1, 0x17df: 0x8c05, 0x17e0: 0x22d9, 0x17e1: 0x8c25, 0x17e2: 0x22e1, 0x17e3: 0x22e9, -	0x17e4: 0x22f1, 0x17e5: 0x0751, 0x17e6: 0x22f9, 0x17e7: 0x8c45, 0x17e8: 0x0949, 0x17e9: 0x2301, -	0x17ea: 0x2309, 0x17eb: 0x2311, 0x17ec: 0x2319, 0x17ed: 0x2321, 0x17ee: 0x2329, 0x17ef: 0x2331, -	0x17f0: 0x2339, 0x17f1: 0x0040, 0x17f2: 0x2341, 0x17f3: 0x2349, 0x17f4: 0x2351, 0x17f5: 0x2359, -	0x17f6: 0x2361, 0x17f7: 0x2369, 0x17f8: 0x2371, 0x17f9: 0x8c65, 0x17fa: 0x8c85, 0x17fb: 0x0040, -	0x17fc: 0x0040, 0x17fd: 0x0040, 0x17fe: 0x0040, 0x17ff: 0x0040, -	// Block 0x60, offset 0x1800 -	0x1800: 0x0a08, 0x1801: 0x0a08, 0x1802: 0x0a08, 0x1803: 0x0a08, 0x1804: 0x0a08, 0x1805: 0x0c08, -	0x1806: 0x0808, 0x1807: 0x0c08, 0x1808: 0x0818, 0x1809: 0x0c08, 0x180a: 0x0c08, 0x180b: 0x0808, -	0x180c: 0x0808, 0x180d: 0x0908, 0x180e: 0x0c08, 0x180f: 0x0c08, 0x1810: 0x0c08, 0x1811: 0x0c08, -	0x1812: 0x0c08, 0x1813: 0x0a08, 0x1814: 0x0a08, 0x1815: 0x0a08, 0x1816: 0x0a08, 0x1817: 0x0908, -	0x1818: 0x0a08, 0x1819: 0x0a08, 0x181a: 0x0a08, 0x181b: 0x0a08, 0x181c: 0x0a08, 0x181d: 0x0c08, -	0x181e: 0x0a08, 0x181f: 0x0a08, 0x1820: 0x0a08, 0x1821: 0x0c08, 0x1822: 0x0808, 0x1823: 0x0808, -	0x1824: 0x0c08, 0x1825: 0x3308, 0x1826: 0x3308, 0x1827: 0x0040, 0x1828: 0x0040, 0x1829: 0x0040, -	0x182a: 0x0040, 0x182b: 0x0a18, 0x182c: 0x0a18, 0x182d: 0x0a18, 0x182e: 0x0a18, 0x182f: 0x0c18, -	0x1830: 0x0818, 0x1831: 0x0818, 0x1832: 0x0818, 0x1833: 0x0818, 0x1834: 0x0818, 0x1835: 0x0818, -	0x1836: 0x0818, 0x1837: 0x0040, 0x1838: 0x0040, 0x1839: 0x0040, 0x183a: 0x0040, 0x183b: 0x0040, -	0x183c: 0x0040, 0x183d: 0x0040, 0x183e: 0x0040, 0x183f: 0x0040, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0a08, 0x1841: 0x0c08, 0x1842: 0x0a08, 0x1843: 0x0c08, 0x1844: 0x0c08, 0x1845: 0x0c08, -	0x1846: 0x0a08, 0x1847: 0x0a08, 0x1848: 0x0a08, 0x1849: 0x0c08, 0x184a: 0x0a08, 0x184b: 0x0a08, -	0x184c: 0x0c08, 0x184d: 0x0a08, 0x184e: 0x0c08, 0x184f: 0x0c08, 0x1850: 0x0a08, 0x1851: 0x0c08, -	0x1852: 0x0040, 0x1853: 0x0040, 0x1854: 0x0040, 0x1855: 0x0040, 0x1856: 0x0040, 0x1857: 0x0040, -	0x1858: 0x0040, 0x1859: 0x0818, 0x185a: 0x0818, 0x185b: 0x0818, 0x185c: 0x0818, 0x185d: 0x0040, -	0x185e: 0x0040, 0x185f: 0x0040, 0x1860: 0x0040, 0x1861: 0x0040, 0x1862: 0x0040, 0x1863: 0x0040, -	0x1864: 0x0040, 0x1865: 0x0040, 0x1866: 0x0040, 0x1867: 0x0040, 0x1868: 0x0040, 0x1869: 0x0c18, -	0x186a: 0x0c18, 0x186b: 0x0c18, 0x186c: 0x0c18, 0x186d: 0x0a18, 0x186e: 0x0a18, 0x186f: 0x0818, -	0x1870: 0x0040, 0x1871: 0x0040, 0x1872: 0x0040, 0x1873: 0x0040, 0x1874: 0x0040, 0x1875: 0x0040, -	0x1876: 0x0040, 0x1877: 0x0040, 0x1878: 0x0040, 0x1879: 0x0040, 0x187a: 0x0040, 0x187b: 0x0040, -	0x187c: 0x0040, 0x187d: 0x0040, 0x187e: 0x0040, 0x187f: 0x0040, -	// Block 0x62, offset 0x1880 -	0x1880: 0x3308, 0x1881: 0x3308, 0x1882: 0x3008, 0x1883: 0x3008, 0x1884: 0x0040, 0x1885: 0x0008, -	0x1886: 0x0008, 0x1887: 0x0008, 0x1888: 0x0008, 0x1889: 0x0008, 0x188a: 0x0008, 0x188b: 0x0008, -	0x188c: 0x0008, 0x188d: 0x0040, 0x188e: 0x0040, 0x188f: 0x0008, 0x1890: 0x0008, 0x1891: 0x0040, -	0x1892: 0x0040, 0x1893: 0x0008, 0x1894: 0x0008, 0x1895: 0x0008, 0x1896: 0x0008, 0x1897: 0x0008, -	0x1898: 0x0008, 0x1899: 0x0008, 0x189a: 0x0008, 0x189b: 0x0008, 0x189c: 0x0008, 0x189d: 0x0008, -	0x189e: 0x0008, 0x189f: 0x0008, 0x18a0: 0x0008, 0x18a1: 0x0008, 0x18a2: 0x0008, 0x18a3: 0x0008, -	0x18a4: 0x0008, 0x18a5: 0x0008, 0x18a6: 0x0008, 0x18a7: 0x0008, 0x18a8: 0x0008, 0x18a9: 0x0040, -	0x18aa: 0x0008, 0x18ab: 0x0008, 0x18ac: 0x0008, 0x18ad: 0x0008, 0x18ae: 0x0008, 0x18af: 0x0008, -	0x18b0: 0x0008, 0x18b1: 0x0040, 0x18b2: 0x0008, 0x18b3: 0x0008, 0x18b4: 0x0040, 0x18b5: 0x0008, -	0x18b6: 0x0008, 0x18b7: 0x0008, 0x18b8: 0x0008, 0x18b9: 0x0008, 0x18ba: 0x0040, 0x18bb: 0x3308, -	0x18bc: 0x3308, 0x18bd: 0x0008, 0x18be: 0x3008, 0x18bf: 0x3008, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x3308, 0x18c1: 0x3008, 0x18c2: 0x3008, 0x18c3: 0x3008, 0x18c4: 0x3008, 0x18c5: 0x0040, -	0x18c6: 0x0040, 0x18c7: 0x3008, 0x18c8: 0x3008, 0x18c9: 0x0040, 0x18ca: 0x0040, 0x18cb: 0x3008, -	0x18cc: 0x3008, 0x18cd: 0x3808, 0x18ce: 0x0040, 0x18cf: 0x0040, 0x18d0: 0x0008, 0x18d1: 0x0040, -	0x18d2: 0x0040, 0x18d3: 0x0040, 0x18d4: 0x0040, 0x18d5: 0x0040, 0x18d6: 0x0040, 0x18d7: 0x3008, -	0x18d8: 0x0040, 0x18d9: 0x0040, 0x18da: 0x0040, 0x18db: 0x0040, 0x18dc: 0x0040, 0x18dd: 0x0008, -	0x18de: 0x0008, 0x18df: 0x0008, 0x18e0: 0x0008, 0x18e1: 0x0008, 0x18e2: 0x3008, 0x18e3: 0x3008, -	0x18e4: 0x0040, 0x18e5: 0x0040, 0x18e6: 0x3308, 0x18e7: 0x3308, 0x18e8: 0x3308, 0x18e9: 0x3308, -	0x18ea: 0x3308, 0x18eb: 0x3308, 0x18ec: 0x3308, 0x18ed: 0x0040, 0x18ee: 0x0040, 0x18ef: 0x0040, -	0x18f0: 0x3308, 0x18f1: 0x3308, 0x18f2: 0x3308, 0x18f3: 0x3308, 0x18f4: 0x3308, 0x18f5: 0x0040, -	0x18f6: 0x0040, 0x18f7: 0x0040, 0x18f8: 0x0040, 0x18f9: 0x0040, 0x18fa: 0x0040, 0x18fb: 0x0040, -	0x18fc: 0x0040, 0x18fd: 0x0040, 0x18fe: 0x0040, 0x18ff: 0x0040, -	// Block 0x64, offset 0x1900 -	0x1900: 0x0008, 0x1901: 0x0008, 0x1902: 0x0008, 0x1903: 0x0008, 0x1904: 0x0008, 0x1905: 0x0008, -	0x1906: 0x0008, 0x1907: 0x0040, 0x1908: 0x0040, 0x1909: 0x0008, 0x190a: 0x0040, 0x190b: 0x0040, -	0x190c: 0x0008, 0x190d: 0x0008, 0x190e: 0x0008, 0x190f: 0x0008, 0x1910: 0x0008, 0x1911: 0x0008, -	0x1912: 0x0008, 0x1913: 0x0008, 0x1914: 0x0040, 0x1915: 0x0008, 0x1916: 0x0008, 0x1917: 0x0040, -	0x1918: 0x0008, 0x1919: 0x0008, 0x191a: 0x0008, 0x191b: 0x0008, 0x191c: 0x0008, 0x191d: 0x0008, -	0x191e: 0x0008, 0x191f: 0x0008, 0x1920: 0x0008, 0x1921: 0x0008, 0x1922: 0x0008, 0x1923: 0x0008, -	0x1924: 0x0008, 0x1925: 0x0008, 0x1926: 0x0008, 0x1927: 0x0008, 0x1928: 0x0008, 0x1929: 0x0008, -	0x192a: 0x0008, 0x192b: 0x0008, 0x192c: 0x0008, 0x192d: 0x0008, 0x192e: 0x0008, 0x192f: 0x0008, -	0x1930: 0x3008, 0x1931: 0x3008, 0x1932: 0x3008, 0x1933: 0x3008, 0x1934: 0x3008, 0x1935: 0x3008, -	0x1936: 0x0040, 0x1937: 0x3008, 0x1938: 0x3008, 0x1939: 0x0040, 0x193a: 0x0040, 0x193b: 0x3308, -	0x193c: 0x3308, 0x193d: 0x3808, 0x193e: 0x3b08, 0x193f: 0x0008, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0019, 0x1941: 0x02e9, 0x1942: 0x03d9, 0x1943: 0x02f1, 0x1944: 0x02f9, 0x1945: 0x03f1, -	0x1946: 0x0309, 0x1947: 0x00a9, 0x1948: 0x0311, 0x1949: 0x00b1, 0x194a: 0x0319, 0x194b: 0x0101, -	0x194c: 0x0321, 0x194d: 0x0329, 0x194e: 0x0051, 0x194f: 0x0339, 0x1950: 0x0751, 0x1951: 0x00b9, -	0x1952: 0x0089, 0x1953: 0x0341, 0x1954: 0x0349, 0x1955: 0x0391, 0x1956: 0x00c1, 0x1957: 0x0109, -	0x1958: 0x00c9, 0x1959: 0x04b1, 0x195a: 0x0019, 0x195b: 0x02e9, 0x195c: 0x03d9, 0x195d: 0x02f1, -	0x195e: 0x02f9, 0x195f: 0x03f1, 0x1960: 0x0309, 0x1961: 0x00a9, 0x1962: 0x0311, 0x1963: 0x00b1, -	0x1964: 0x0319, 0x1965: 0x0101, 0x1966: 0x0321, 0x1967: 0x0329, 0x1968: 0x0051, 0x1969: 0x0339, -	0x196a: 0x0751, 0x196b: 0x00b9, 0x196c: 0x0089, 0x196d: 0x0341, 0x196e: 0x0349, 0x196f: 0x0391, -	0x1970: 0x00c1, 0x1971: 0x0109, 0x1972: 0x00c9, 0x1973: 0x04b1, 0x1974: 0x0019, 0x1975: 0x02e9, -	0x1976: 0x03d9, 0x1977: 0x02f1, 0x1978: 0x02f9, 0x1979: 0x03f1, 0x197a: 0x0309, 0x197b: 0x00a9, -	0x197c: 0x0311, 0x197d: 0x00b1, 0x197e: 0x0319, 0x197f: 0x0101, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0321, 0x1981: 0x0329, 0x1982: 0x0051, 0x1983: 0x0339, 0x1984: 0x0751, 0x1985: 0x00b9, -	0x1986: 0x0089, 0x1987: 0x0341, 0x1988: 0x0349, 0x1989: 0x0391, 0x198a: 0x00c1, 0x198b: 0x0109, -	0x198c: 0x00c9, 0x198d: 0x04b1, 0x198e: 0x0019, 0x198f: 0x02e9, 0x1990: 0x03d9, 0x1991: 0x02f1, -	0x1992: 0x02f9, 0x1993: 0x03f1, 0x1994: 0x0309, 0x1995: 0x0040, 0x1996: 0x0311, 0x1997: 0x00b1, -	0x1998: 0x0319, 0x1999: 0x0101, 0x199a: 0x0321, 0x199b: 0x0329, 0x199c: 0x0051, 0x199d: 0x0339, -	0x199e: 0x0751, 0x199f: 0x00b9, 0x19a0: 0x0089, 0x19a1: 0x0341, 0x19a2: 0x0349, 0x19a3: 0x0391, -	0x19a4: 0x00c1, 0x19a5: 0x0109, 0x19a6: 0x00c9, 0x19a7: 0x04b1, 0x19a8: 0x0019, 0x19a9: 0x02e9, -	0x19aa: 0x03d9, 0x19ab: 0x02f1, 0x19ac: 0x02f9, 0x19ad: 0x03f1, 0x19ae: 0x0309, 0x19af: 0x00a9, -	0x19b0: 0x0311, 0x19b1: 0x00b1, 0x19b2: 0x0319, 0x19b3: 0x0101, 0x19b4: 0x0321, 0x19b5: 0x0329, -	0x19b6: 0x0051, 0x19b7: 0x0339, 0x19b8: 0x0751, 0x19b9: 0x00b9, 0x19ba: 0x0089, 0x19bb: 0x0341, -	0x19bc: 0x0349, 0x19bd: 0x0391, 0x19be: 0x00c1, 0x19bf: 0x0109, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x00c9, 0x19c1: 0x04b1, 0x19c2: 0x0019, 0x19c3: 0x02e9, 0x19c4: 0x03d9, 0x19c5: 0x02f1, -	0x19c6: 0x02f9, 0x19c7: 0x03f1, 0x19c8: 0x0309, 0x19c9: 0x00a9, 0x19ca: 0x0311, 0x19cb: 0x00b1, -	0x19cc: 0x0319, 0x19cd: 0x0101, 0x19ce: 0x0321, 0x19cf: 0x0329, 0x19d0: 0x0051, 0x19d1: 0x0339, -	0x19d2: 0x0751, 0x19d3: 0x00b9, 0x19d4: 0x0089, 0x19d5: 0x0341, 0x19d6: 0x0349, 0x19d7: 0x0391, -	0x19d8: 0x00c1, 0x19d9: 0x0109, 0x19da: 0x00c9, 0x19db: 0x04b1, 0x19dc: 0x0019, 0x19dd: 0x0040, -	0x19de: 0x03d9, 0x19df: 0x02f1, 0x19e0: 0x0040, 0x19e1: 0x0040, 0x19e2: 0x0309, 0x19e3: 0x0040, -	0x19e4: 0x0040, 0x19e5: 0x00b1, 0x19e6: 0x0319, 0x19e7: 0x0040, 0x19e8: 0x0040, 0x19e9: 0x0329, -	0x19ea: 0x0051, 0x19eb: 0x0339, 0x19ec: 0x0751, 0x19ed: 0x0040, 0x19ee: 0x0089, 0x19ef: 0x0341, -	0x19f0: 0x0349, 0x19f1: 0x0391, 0x19f2: 0x00c1, 0x19f3: 0x0109, 0x19f4: 0x00c9, 0x19f5: 0x04b1, -	0x19f6: 0x0019, 0x19f7: 0x02e9, 0x19f8: 0x03d9, 0x19f9: 0x02f1, 0x19fa: 0x0040, 0x19fb: 0x03f1, -	0x19fc: 0x0040, 0x19fd: 0x00a9, 0x19fe: 0x0311, 0x19ff: 0x00b1, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x0319, 0x1a01: 0x0101, 0x1a02: 0x0321, 0x1a03: 0x0329, 0x1a04: 0x0040, 0x1a05: 0x0339, -	0x1a06: 0x0751, 0x1a07: 0x00b9, 0x1a08: 0x0089, 0x1a09: 0x0341, 0x1a0a: 0x0349, 0x1a0b: 0x0391, -	0x1a0c: 0x00c1, 0x1a0d: 0x0109, 0x1a0e: 0x00c9, 0x1a0f: 0x04b1, 0x1a10: 0x0019, 0x1a11: 0x02e9, -	0x1a12: 0x03d9, 0x1a13: 0x02f1, 0x1a14: 0x02f9, 0x1a15: 0x03f1, 0x1a16: 0x0309, 0x1a17: 0x00a9, -	0x1a18: 0x0311, 0x1a19: 0x00b1, 0x1a1a: 0x0319, 0x1a1b: 0x0101, 0x1a1c: 0x0321, 0x1a1d: 0x0329, -	0x1a1e: 0x0051, 0x1a1f: 0x0339, 0x1a20: 0x0751, 0x1a21: 0x00b9, 0x1a22: 0x0089, 0x1a23: 0x0341, -	0x1a24: 0x0349, 0x1a25: 0x0391, 0x1a26: 0x00c1, 0x1a27: 0x0109, 0x1a28: 0x00c9, 0x1a29: 0x04b1, -	0x1a2a: 0x0019, 0x1a2b: 0x02e9, 0x1a2c: 0x03d9, 0x1a2d: 0x02f1, 0x1a2e: 0x02f9, 0x1a2f: 0x03f1, -	0x1a30: 0x0309, 0x1a31: 0x00a9, 0x1a32: 0x0311, 0x1a33: 0x00b1, 0x1a34: 0x0319, 0x1a35: 0x0101, -	0x1a36: 0x0321, 0x1a37: 0x0329, 0x1a38: 0x0051, 0x1a39: 0x0339, 0x1a3a: 0x0751, 0x1a3b: 0x00b9, -	0x1a3c: 0x0089, 0x1a3d: 0x0341, 0x1a3e: 0x0349, 0x1a3f: 0x0391, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x00c1, 0x1a41: 0x0109, 0x1a42: 0x00c9, 0x1a43: 0x04b1, 0x1a44: 0x0019, 0x1a45: 0x02e9, -	0x1a46: 0x0040, 0x1a47: 0x02f1, 0x1a48: 0x02f9, 0x1a49: 0x03f1, 0x1a4a: 0x0309, 0x1a4b: 0x0040, -	0x1a4c: 0x0040, 0x1a4d: 0x00b1, 0x1a4e: 0x0319, 0x1a4f: 0x0101, 0x1a50: 0x0321, 0x1a51: 0x0329, -	0x1a52: 0x0051, 0x1a53: 0x0339, 0x1a54: 0x0751, 0x1a55: 0x0040, 0x1a56: 0x0089, 0x1a57: 0x0341, -	0x1a58: 0x0349, 0x1a59: 0x0391, 0x1a5a: 0x00c1, 0x1a5b: 0x0109, 0x1a5c: 0x00c9, 0x1a5d: 0x0040, -	0x1a5e: 0x0019, 0x1a5f: 0x02e9, 0x1a60: 0x03d9, 0x1a61: 0x02f1, 0x1a62: 0x02f9, 0x1a63: 0x03f1, -	0x1a64: 0x0309, 0x1a65: 0x00a9, 0x1a66: 0x0311, 0x1a67: 0x00b1, 0x1a68: 0x0319, 0x1a69: 0x0101, -	0x1a6a: 0x0321, 0x1a6b: 0x0329, 0x1a6c: 0x0051, 0x1a6d: 0x0339, 0x1a6e: 0x0751, 0x1a6f: 0x00b9, -	0x1a70: 0x0089, 0x1a71: 0x0341, 0x1a72: 0x0349, 0x1a73: 0x0391, 0x1a74: 0x00c1, 0x1a75: 0x0109, -	0x1a76: 0x00c9, 0x1a77: 0x04b1, 0x1a78: 0x0019, 0x1a79: 0x02e9, 0x1a7a: 0x0040, 0x1a7b: 0x02f1, -	0x1a7c: 0x02f9, 0x1a7d: 0x03f1, 0x1a7e: 0x0309, 0x1a7f: 0x0040, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x0311, 0x1a81: 0x00b1, 0x1a82: 0x0319, 0x1a83: 0x0101, 0x1a84: 0x0321, 0x1a85: 0x0040, -	0x1a86: 0x0051, 0x1a87: 0x0040, 0x1a88: 0x0040, 0x1a89: 0x0040, 0x1a8a: 0x0089, 0x1a8b: 0x0341, -	0x1a8c: 0x0349, 0x1a8d: 0x0391, 0x1a8e: 0x00c1, 0x1a8f: 0x0109, 0x1a90: 0x00c9, 0x1a91: 0x0040, -	0x1a92: 0x0019, 0x1a93: 0x02e9, 0x1a94: 0x03d9, 0x1a95: 0x02f1, 0x1a96: 0x02f9, 0x1a97: 0x03f1, -	0x1a98: 0x0309, 0x1a99: 0x00a9, 0x1a9a: 0x0311, 0x1a9b: 0x00b1, 0x1a9c: 0x0319, 0x1a9d: 0x0101, -	0x1a9e: 0x0321, 0x1a9f: 0x0329, 0x1aa0: 0x0051, 0x1aa1: 0x0339, 0x1aa2: 0x0751, 0x1aa3: 0x00b9, -	0x1aa4: 0x0089, 0x1aa5: 0x0341, 0x1aa6: 0x0349, 0x1aa7: 0x0391, 0x1aa8: 0x00c1, 0x1aa9: 0x0109, -	0x1aaa: 0x00c9, 0x1aab: 0x04b1, 0x1aac: 0x0019, 0x1aad: 0x02e9, 0x1aae: 0x03d9, 0x1aaf: 0x02f1, -	0x1ab0: 0x02f9, 0x1ab1: 0x03f1, 0x1ab2: 0x0309, 0x1ab3: 0x00a9, 0x1ab4: 0x0311, 0x1ab5: 0x00b1, -	0x1ab6: 0x0319, 0x1ab7: 0x0101, 0x1ab8: 0x0321, 0x1ab9: 0x0329, 0x1aba: 0x0051, 0x1abb: 0x0339, -	0x1abc: 0x0751, 0x1abd: 0x00b9, 0x1abe: 0x0089, 0x1abf: 0x0341, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x0349, 0x1ac1: 0x0391, 0x1ac2: 0x00c1, 0x1ac3: 0x0109, 0x1ac4: 0x00c9, 0x1ac5: 0x04b1, -	0x1ac6: 0x0019, 0x1ac7: 0x02e9, 0x1ac8: 0x03d9, 0x1ac9: 0x02f1, 0x1aca: 0x02f9, 0x1acb: 0x03f1, -	0x1acc: 0x0309, 0x1acd: 0x00a9, 0x1ace: 0x0311, 0x1acf: 0x00b1, 0x1ad0: 0x0319, 0x1ad1: 0x0101, -	0x1ad2: 0x0321, 0x1ad3: 0x0329, 0x1ad4: 0x0051, 0x1ad5: 0x0339, 0x1ad6: 0x0751, 0x1ad7: 0x00b9, -	0x1ad8: 0x0089, 0x1ad9: 0x0341, 0x1ada: 0x0349, 0x1adb: 0x0391, 0x1adc: 0x00c1, 0x1add: 0x0109, -	0x1ade: 0x00c9, 0x1adf: 0x04b1, 0x1ae0: 0x0019, 0x1ae1: 0x02e9, 0x1ae2: 0x03d9, 0x1ae3: 0x02f1, -	0x1ae4: 0x02f9, 0x1ae5: 0x03f1, 0x1ae6: 0x0309, 0x1ae7: 0x00a9, 0x1ae8: 0x0311, 0x1ae9: 0x00b1, -	0x1aea: 0x0319, 0x1aeb: 0x0101, 0x1aec: 0x0321, 0x1aed: 0x0329, 0x1aee: 0x0051, 0x1aef: 0x0339, -	0x1af0: 0x0751, 0x1af1: 0x00b9, 0x1af2: 0x0089, 0x1af3: 0x0341, 0x1af4: 0x0349, 0x1af5: 0x0391, -	0x1af6: 0x00c1, 0x1af7: 0x0109, 0x1af8: 0x00c9, 0x1af9: 0x04b1, 0x1afa: 0x0019, 0x1afb: 0x02e9, -	0x1afc: 0x03d9, 0x1afd: 0x02f1, 0x1afe: 0x02f9, 0x1aff: 0x03f1, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0x0309, 0x1b01: 0x00a9, 0x1b02: 0x0311, 0x1b03: 0x00b1, 0x1b04: 0x0319, 0x1b05: 0x0101, -	0x1b06: 0x0321, 0x1b07: 0x0329, 0x1b08: 0x0051, 0x1b09: 0x0339, 0x1b0a: 0x0751, 0x1b0b: 0x00b9, -	0x1b0c: 0x0089, 0x1b0d: 0x0341, 0x1b0e: 0x0349, 0x1b0f: 0x0391, 0x1b10: 0x00c1, 0x1b11: 0x0109, -	0x1b12: 0x00c9, 0x1b13: 0x04b1, 0x1b14: 0x0019, 0x1b15: 0x02e9, 0x1b16: 0x03d9, 0x1b17: 0x02f1, -	0x1b18: 0x02f9, 0x1b19: 0x03f1, 0x1b1a: 0x0309, 0x1b1b: 0x00a9, 0x1b1c: 0x0311, 0x1b1d: 0x00b1, -	0x1b1e: 0x0319, 0x1b1f: 0x0101, 0x1b20: 0x0321, 0x1b21: 0x0329, 0x1b22: 0x0051, 0x1b23: 0x0339, -	0x1b24: 0x0751, 0x1b25: 0x00b9, 0x1b26: 0x0089, 0x1b27: 0x0341, 0x1b28: 0x0349, 0x1b29: 0x0391, -	0x1b2a: 0x00c1, 0x1b2b: 0x0109, 0x1b2c: 0x00c9, 0x1b2d: 0x04b1, 0x1b2e: 0x0019, 0x1b2f: 0x02e9, -	0x1b30: 0x03d9, 0x1b31: 0x02f1, 0x1b32: 0x02f9, 0x1b33: 0x03f1, 0x1b34: 0x0309, 0x1b35: 0x00a9, -	0x1b36: 0x0311, 0x1b37: 0x00b1, 0x1b38: 0x0319, 0x1b39: 0x0101, 0x1b3a: 0x0321, 0x1b3b: 0x0329, -	0x1b3c: 0x0051, 0x1b3d: 0x0339, 0x1b3e: 0x0751, 0x1b3f: 0x00b9, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0x0089, 0x1b41: 0x0341, 0x1b42: 0x0349, 0x1b43: 0x0391, 0x1b44: 0x00c1, 0x1b45: 0x0109, -	0x1b46: 0x00c9, 0x1b47: 0x04b1, 0x1b48: 0x0019, 0x1b49: 0x02e9, 0x1b4a: 0x03d9, 0x1b4b: 0x02f1, -	0x1b4c: 0x02f9, 0x1b4d: 0x03f1, 0x1b4e: 0x0309, 0x1b4f: 0x00a9, 0x1b50: 0x0311, 0x1b51: 0x00b1, -	0x1b52: 0x0319, 0x1b53: 0x0101, 0x1b54: 0x0321, 0x1b55: 0x0329, 0x1b56: 0x0051, 0x1b57: 0x0339, -	0x1b58: 0x0751, 0x1b59: 0x00b9, 0x1b5a: 0x0089, 0x1b5b: 0x0341, 0x1b5c: 0x0349, 0x1b5d: 0x0391, -	0x1b5e: 0x00c1, 0x1b5f: 0x0109, 0x1b60: 0x00c9, 0x1b61: 0x04b1, 0x1b62: 0x0019, 0x1b63: 0x02e9, -	0x1b64: 0x03d9, 0x1b65: 0x02f1, 0x1b66: 0x02f9, 0x1b67: 0x03f1, 0x1b68: 0x0309, 0x1b69: 0x00a9, -	0x1b6a: 0x0311, 0x1b6b: 0x00b1, 0x1b6c: 0x0319, 0x1b6d: 0x0101, 0x1b6e: 0x0321, 0x1b6f: 0x0329, -	0x1b70: 0x0051, 0x1b71: 0x0339, 0x1b72: 0x0751, 0x1b73: 0x00b9, 0x1b74: 0x0089, 0x1b75: 0x0341, -	0x1b76: 0x0349, 0x1b77: 0x0391, 0x1b78: 0x00c1, 0x1b79: 0x0109, 0x1b7a: 0x00c9, 0x1b7b: 0x04b1, -	0x1b7c: 0x0019, 0x1b7d: 0x02e9, 0x1b7e: 0x03d9, 0x1b7f: 0x02f1, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0x02f9, 0x1b81: 0x03f1, 0x1b82: 0x0309, 0x1b83: 0x00a9, 0x1b84: 0x0311, 0x1b85: 0x00b1, -	0x1b86: 0x0319, 0x1b87: 0x0101, 0x1b88: 0x0321, 0x1b89: 0x0329, 0x1b8a: 0x0051, 0x1b8b: 0x0339, -	0x1b8c: 0x0751, 0x1b8d: 0x00b9, 0x1b8e: 0x0089, 0x1b8f: 0x0341, 0x1b90: 0x0349, 0x1b91: 0x0391, -	0x1b92: 0x00c1, 0x1b93: 0x0109, 0x1b94: 0x00c9, 0x1b95: 0x04b1, 0x1b96: 0x0019, 0x1b97: 0x02e9, -	0x1b98: 0x03d9, 0x1b99: 0x02f1, 0x1b9a: 0x02f9, 0x1b9b: 0x03f1, 0x1b9c: 0x0309, 0x1b9d: 0x00a9, -	0x1b9e: 0x0311, 0x1b9f: 0x00b1, 0x1ba0: 0x0319, 0x1ba1: 0x0101, 0x1ba2: 0x0321, 0x1ba3: 0x0329, -	0x1ba4: 0x0051, 0x1ba5: 0x0339, 0x1ba6: 0x0751, 0x1ba7: 0x00b9, 0x1ba8: 0x0089, 0x1ba9: 0x0341, -	0x1baa: 0x0349, 0x1bab: 0x0391, 0x1bac: 0x00c1, 0x1bad: 0x0109, 0x1bae: 0x00c9, 0x1baf: 0x04b1, -	0x1bb0: 0x0019, 0x1bb1: 0x02e9, 0x1bb2: 0x03d9, 0x1bb3: 0x02f1, 0x1bb4: 0x02f9, 0x1bb5: 0x03f1, -	0x1bb6: 0x0309, 0x1bb7: 0x00a9, 0x1bb8: 0x0311, 0x1bb9: 0x00b1, 0x1bba: 0x0319, 0x1bbb: 0x0101, -	0x1bbc: 0x0321, 0x1bbd: 0x0329, 0x1bbe: 0x0051, 0x1bbf: 0x0339, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x0751, 0x1bc1: 0x00b9, 0x1bc2: 0x0089, 0x1bc3: 0x0341, 0x1bc4: 0x0349, 0x1bc5: 0x0391, -	0x1bc6: 0x00c1, 0x1bc7: 0x0109, 0x1bc8: 0x00c9, 0x1bc9: 0x04b1, 0x1bca: 0x0019, 0x1bcb: 0x02e9, -	0x1bcc: 0x03d9, 0x1bcd: 0x02f1, 0x1bce: 0x02f9, 0x1bcf: 0x03f1, 0x1bd0: 0x0309, 0x1bd1: 0x00a9, -	0x1bd2: 0x0311, 0x1bd3: 0x00b1, 0x1bd4: 0x0319, 0x1bd5: 0x0101, 0x1bd6: 0x0321, 0x1bd7: 0x0329, -	0x1bd8: 0x0051, 0x1bd9: 0x0339, 0x1bda: 0x0751, 0x1bdb: 0x00b9, 0x1bdc: 0x0089, 0x1bdd: 0x0341, -	0x1bde: 0x0349, 0x1bdf: 0x0391, 0x1be0: 0x00c1, 0x1be1: 0x0109, 0x1be2: 0x00c9, 0x1be3: 0x04b1, -	0x1be4: 0x23e1, 0x1be5: 0x23e9, 0x1be6: 0x0040, 0x1be7: 0x0040, 0x1be8: 0x23f1, 0x1be9: 0x0399, -	0x1bea: 0x03a1, 0x1beb: 0x03a9, 0x1bec: 0x23f9, 0x1bed: 0x2401, 0x1bee: 0x2409, 0x1bef: 0x04d1, -	0x1bf0: 0x05f9, 0x1bf1: 0x2411, 0x1bf2: 0x2419, 0x1bf3: 0x2421, 0x1bf4: 0x2429, 0x1bf5: 0x2431, -	0x1bf6: 0x2439, 0x1bf7: 0x0799, 0x1bf8: 0x03c1, 0x1bf9: 0x04d1, 0x1bfa: 0x2441, 0x1bfb: 0x2449, -	0x1bfc: 0x2451, 0x1bfd: 0x03b1, 0x1bfe: 0x03b9, 0x1bff: 0x2459, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0x0769, 0x1c01: 0x2461, 0x1c02: 0x23f1, 0x1c03: 0x0399, 0x1c04: 0x03a1, 0x1c05: 0x03a9, -	0x1c06: 0x23f9, 0x1c07: 0x2401, 0x1c08: 0x2409, 0x1c09: 0x04d1, 0x1c0a: 0x05f9, 0x1c0b: 0x2411, -	0x1c0c: 0x2419, 0x1c0d: 0x2421, 0x1c0e: 0x2429, 0x1c0f: 0x2431, 0x1c10: 0x2439, 0x1c11: 0x0799, -	0x1c12: 0x03c1, 0x1c13: 0x2441, 0x1c14: 0x2441, 0x1c15: 0x2449, 0x1c16: 0x2451, 0x1c17: 0x03b1, -	0x1c18: 0x03b9, 0x1c19: 0x2459, 0x1c1a: 0x0769, 0x1c1b: 0x2469, 0x1c1c: 0x23f9, 0x1c1d: 0x04d1, -	0x1c1e: 0x2411, 0x1c1f: 0x03b1, 0x1c20: 0x03c1, 0x1c21: 0x0799, 0x1c22: 0x23f1, 0x1c23: 0x0399, -	0x1c24: 0x03a1, 0x1c25: 0x03a9, 0x1c26: 0x23f9, 0x1c27: 0x2401, 0x1c28: 0x2409, 0x1c29: 0x04d1, -	0x1c2a: 0x05f9, 0x1c2b: 0x2411, 0x1c2c: 0x2419, 0x1c2d: 0x2421, 0x1c2e: 0x2429, 0x1c2f: 0x2431, -	0x1c30: 0x2439, 0x1c31: 0x0799, 0x1c32: 0x03c1, 0x1c33: 0x04d1, 0x1c34: 0x2441, 0x1c35: 0x2449, -	0x1c36: 0x2451, 0x1c37: 0x03b1, 0x1c38: 0x03b9, 0x1c39: 0x2459, 0x1c3a: 0x0769, 0x1c3b: 0x2461, -	0x1c3c: 0x23f1, 0x1c3d: 0x0399, 0x1c3e: 0x03a1, 0x1c3f: 0x03a9, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0x23f9, 0x1c41: 0x2401, 0x1c42: 0x2409, 0x1c43: 0x04d1, 0x1c44: 0x05f9, 0x1c45: 0x2411, -	0x1c46: 0x2419, 0x1c47: 0x2421, 0x1c48: 0x2429, 0x1c49: 0x2431, 0x1c4a: 0x2439, 0x1c4b: 0x0799, -	0x1c4c: 0x03c1, 0x1c4d: 0x2441, 0x1c4e: 0x2441, 0x1c4f: 0x2449, 0x1c50: 0x2451, 0x1c51: 0x03b1, -	0x1c52: 0x03b9, 0x1c53: 0x2459, 0x1c54: 0x0769, 0x1c55: 0x2469, 0x1c56: 0x23f9, 0x1c57: 0x04d1, -	0x1c58: 0x2411, 0x1c59: 0x03b1, 0x1c5a: 0x03c1, 0x1c5b: 0x0799, 0x1c5c: 0x23f1, 0x1c5d: 0x0399, -	0x1c5e: 0x03a1, 0x1c5f: 0x03a9, 0x1c60: 0x23f9, 0x1c61: 0x2401, 0x1c62: 0x2409, 0x1c63: 0x04d1, -	0x1c64: 0x05f9, 0x1c65: 0x2411, 0x1c66: 0x2419, 0x1c67: 0x2421, 0x1c68: 0x2429, 0x1c69: 0x2431, -	0x1c6a: 0x2439, 0x1c6b: 0x0799, 0x1c6c: 0x03c1, 0x1c6d: 0x04d1, 0x1c6e: 0x2441, 0x1c6f: 0x2449, -	0x1c70: 0x2451, 0x1c71: 0x03b1, 0x1c72: 0x03b9, 0x1c73: 0x2459, 0x1c74: 0x0769, 0x1c75: 0x2461, -	0x1c76: 0x23f1, 0x1c77: 0x0399, 0x1c78: 0x03a1, 0x1c79: 0x03a9, 0x1c7a: 0x23f9, 0x1c7b: 0x2401, -	0x1c7c: 0x2409, 0x1c7d: 0x04d1, 0x1c7e: 0x05f9, 0x1c7f: 0x2411, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0x2419, 0x1c81: 0x2421, 0x1c82: 0x2429, 0x1c83: 0x2431, 0x1c84: 0x2439, 0x1c85: 0x0799, -	0x1c86: 0x03c1, 0x1c87: 0x2441, 0x1c88: 0x2441, 0x1c89: 0x2449, 0x1c8a: 0x2451, 0x1c8b: 0x03b1, -	0x1c8c: 0x03b9, 0x1c8d: 0x2459, 0x1c8e: 0x0769, 0x1c8f: 0x2469, 0x1c90: 0x23f9, 0x1c91: 0x04d1, -	0x1c92: 0x2411, 0x1c93: 0x03b1, 0x1c94: 0x03c1, 0x1c95: 0x0799, 0x1c96: 0x23f1, 0x1c97: 0x0399, -	0x1c98: 0x03a1, 0x1c99: 0x03a9, 0x1c9a: 0x23f9, 0x1c9b: 0x2401, 0x1c9c: 0x2409, 0x1c9d: 0x04d1, -	0x1c9e: 0x05f9, 0x1c9f: 0x2411, 0x1ca0: 0x2419, 0x1ca1: 0x2421, 0x1ca2: 0x2429, 0x1ca3: 0x2431, -	0x1ca4: 0x2439, 0x1ca5: 0x0799, 0x1ca6: 0x03c1, 0x1ca7: 0x04d1, 0x1ca8: 0x2441, 0x1ca9: 0x2449, -	0x1caa: 0x2451, 0x1cab: 0x03b1, 0x1cac: 0x03b9, 0x1cad: 0x2459, 0x1cae: 0x0769, 0x1caf: 0x2461, -	0x1cb0: 0x23f1, 0x1cb1: 0x0399, 0x1cb2: 0x03a1, 0x1cb3: 0x03a9, 0x1cb4: 0x23f9, 0x1cb5: 0x2401, -	0x1cb6: 0x2409, 0x1cb7: 0x04d1, 0x1cb8: 0x05f9, 0x1cb9: 0x2411, 0x1cba: 0x2419, 0x1cbb: 0x2421, -	0x1cbc: 0x2429, 0x1cbd: 0x2431, 0x1cbe: 0x2439, 0x1cbf: 0x0799, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0x03c1, 0x1cc1: 0x2441, 0x1cc2: 0x2441, 0x1cc3: 0x2449, 0x1cc4: 0x2451, 0x1cc5: 0x03b1, -	0x1cc6: 0x03b9, 0x1cc7: 0x2459, 0x1cc8: 0x0769, 0x1cc9: 0x2469, 0x1cca: 0x23f9, 0x1ccb: 0x04d1, -	0x1ccc: 0x2411, 0x1ccd: 0x03b1, 0x1cce: 0x03c1, 0x1ccf: 0x0799, 0x1cd0: 0x23f1, 0x1cd1: 0x0399, -	0x1cd2: 0x03a1, 0x1cd3: 0x03a9, 0x1cd4: 0x23f9, 0x1cd5: 0x2401, 0x1cd6: 0x2409, 0x1cd7: 0x04d1, -	0x1cd8: 0x05f9, 0x1cd9: 0x2411, 0x1cda: 0x2419, 0x1cdb: 0x2421, 0x1cdc: 0x2429, 0x1cdd: 0x2431, -	0x1cde: 0x2439, 0x1cdf: 0x0799, 0x1ce0: 0x03c1, 0x1ce1: 0x04d1, 0x1ce2: 0x2441, 0x1ce3: 0x2449, -	0x1ce4: 0x2451, 0x1ce5: 0x03b1, 0x1ce6: 0x03b9, 0x1ce7: 0x2459, 0x1ce8: 0x0769, 0x1ce9: 0x2461, -	0x1cea: 0x23f1, 0x1ceb: 0x0399, 0x1cec: 0x03a1, 0x1ced: 0x03a9, 0x1cee: 0x23f9, 0x1cef: 0x2401, -	0x1cf0: 0x2409, 0x1cf1: 0x04d1, 0x1cf2: 0x05f9, 0x1cf3: 0x2411, 0x1cf4: 0x2419, 0x1cf5: 0x2421, -	0x1cf6: 0x2429, 0x1cf7: 0x2431, 0x1cf8: 0x2439, 0x1cf9: 0x0799, 0x1cfa: 0x03c1, 0x1cfb: 0x2441, -	0x1cfc: 0x2441, 0x1cfd: 0x2449, 0x1cfe: 0x2451, 0x1cff: 0x03b1, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0x03b9, 0x1d01: 0x2459, 0x1d02: 0x0769, 0x1d03: 0x2469, 0x1d04: 0x23f9, 0x1d05: 0x04d1, -	0x1d06: 0x2411, 0x1d07: 0x03b1, 0x1d08: 0x03c1, 0x1d09: 0x0799, 0x1d0a: 0x2471, 0x1d0b: 0x2471, -	0x1d0c: 0x0040, 0x1d0d: 0x0040, 0x1d0e: 0x06e1, 0x1d0f: 0x0049, 0x1d10: 0x0029, 0x1d11: 0x0031, -	0x1d12: 0x06e9, 0x1d13: 0x06f1, 0x1d14: 0x06f9, 0x1d15: 0x0701, 0x1d16: 0x0709, 0x1d17: 0x0711, -	0x1d18: 0x06e1, 0x1d19: 0x0049, 0x1d1a: 0x0029, 0x1d1b: 0x0031, 0x1d1c: 0x06e9, 0x1d1d: 0x06f1, -	0x1d1e: 0x06f9, 0x1d1f: 0x0701, 0x1d20: 0x0709, 0x1d21: 0x0711, 0x1d22: 0x06e1, 0x1d23: 0x0049, -	0x1d24: 0x0029, 0x1d25: 0x0031, 0x1d26: 0x06e9, 0x1d27: 0x06f1, 0x1d28: 0x06f9, 0x1d29: 0x0701, -	0x1d2a: 0x0709, 0x1d2b: 0x0711, 0x1d2c: 0x06e1, 0x1d2d: 0x0049, 0x1d2e: 0x0029, 0x1d2f: 0x0031, -	0x1d30: 0x06e9, 0x1d31: 0x06f1, 0x1d32: 0x06f9, 0x1d33: 0x0701, 0x1d34: 0x0709, 0x1d35: 0x0711, -	0x1d36: 0x06e1, 0x1d37: 0x0049, 0x1d38: 0x0029, 0x1d39: 0x0031, 0x1d3a: 0x06e9, 0x1d3b: 0x06f1, -	0x1d3c: 0x06f9, 0x1d3d: 0x0701, 0x1d3e: 0x0709, 0x1d3f: 0x0711, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x3308, 0x1d41: 0x3308, 0x1d42: 0x3308, 0x1d43: 0x3308, 0x1d44: 0x3308, 0x1d45: 0x3308, -	0x1d46: 0x3308, 0x1d47: 0x0040, 0x1d48: 0x3308, 0x1d49: 0x3308, 0x1d4a: 0x3308, 0x1d4b: 0x3308, -	0x1d4c: 0x3308, 0x1d4d: 0x3308, 0x1d4e: 0x3308, 0x1d4f: 0x3308, 0x1d50: 0x3308, 0x1d51: 0x3308, -	0x1d52: 0x3308, 0x1d53: 0x3308, 0x1d54: 0x3308, 0x1d55: 0x3308, 0x1d56: 0x3308, 0x1d57: 0x3308, -	0x1d58: 0x3308, 0x1d59: 0x0040, 0x1d5a: 0x0040, 0x1d5b: 0x3308, 0x1d5c: 0x3308, 0x1d5d: 0x3308, -	0x1d5e: 0x3308, 0x1d5f: 0x3308, 0x1d60: 0x3308, 0x1d61: 0x3308, 0x1d62: 0x0040, 0x1d63: 0x3308, -	0x1d64: 0x3308, 0x1d65: 0x0040, 0x1d66: 0x3308, 0x1d67: 0x3308, 0x1d68: 0x3308, 0x1d69: 0x3308, -	0x1d6a: 0x3308, 0x1d6b: 0x0040, 0x1d6c: 0x0040, 0x1d6d: 0x0040, 0x1d6e: 0x0040, 0x1d6f: 0x0040, -	0x1d70: 0x2479, 0x1d71: 0x2481, 0x1d72: 0x02a9, 0x1d73: 0x2489, 0x1d74: 0x02b1, 0x1d75: 0x2491, -	0x1d76: 0x2499, 0x1d77: 0x24a1, 0x1d78: 0x24a9, 0x1d79: 0x24b1, 0x1d7a: 0x24b9, 0x1d7b: 0x24c1, -	0x1d7c: 0x02b9, 0x1d7d: 0x24c9, 0x1d7e: 0x24d1, 0x1d7f: 0x02c1, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0x02c9, 0x1d81: 0x24d9, 0x1d82: 0x24e1, 0x1d83: 0x24e9, 0x1d84: 0x24f1, 0x1d85: 0x24f9, -	0x1d86: 0x2501, 0x1d87: 0x2509, 0x1d88: 0x2511, 0x1d89: 0x2519, 0x1d8a: 0x2521, 0x1d8b: 0x2529, -	0x1d8c: 0x2531, 0x1d8d: 0x2539, 0x1d8e: 0x2541, 0x1d8f: 0x2549, 0x1d90: 0x2551, 0x1d91: 0x2479, -	0x1d92: 0x2481, 0x1d93: 0x02a9, 0x1d94: 0x2489, 0x1d95: 0x02b1, 0x1d96: 0x2491, 0x1d97: 0x2499, -	0x1d98: 0x24a1, 0x1d99: 0x24a9, 0x1d9a: 0x24b1, 0x1d9b: 0x24b9, 0x1d9c: 0x02b9, 0x1d9d: 0x24c9, -	0x1d9e: 0x02c1, 0x1d9f: 0x24d9, 0x1da0: 0x24e1, 0x1da1: 0x24e9, 0x1da2: 0x24f1, 0x1da3: 0x24f9, -	0x1da4: 0x2501, 0x1da5: 0x02d1, 0x1da6: 0x2509, 0x1da7: 0x2559, 0x1da8: 0x2531, 0x1da9: 0x2561, -	0x1daa: 0x2569, 0x1dab: 0x2571, 0x1dac: 0x2579, 0x1dad: 0x2581, 0x1dae: 0x0040, 0x1daf: 0x0040, -	0x1db0: 0x0040, 0x1db1: 0x0040, 0x1db2: 0x0040, 0x1db3: 0x0040, 0x1db4: 0x0040, 0x1db5: 0x0040, -	0x1db6: 0x0040, 0x1db7: 0x0040, 0x1db8: 0x0040, 0x1db9: 0x0040, 0x1dba: 0x0040, 0x1dbb: 0x0040, -	0x1dbc: 0x0040, 0x1dbd: 0x0040, 0x1dbe: 0x0040, 0x1dbf: 0x0040, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0xe115, 0x1dc1: 0xe115, 0x1dc2: 0xe135, 0x1dc3: 0xe135, 0x1dc4: 0xe115, 0x1dc5: 0xe115, -	0x1dc6: 0xe175, 0x1dc7: 0xe175, 0x1dc8: 0xe115, 0x1dc9: 0xe115, 0x1dca: 0xe135, 0x1dcb: 0xe135, -	0x1dcc: 0xe115, 0x1dcd: 0xe115, 0x1dce: 0xe1f5, 0x1dcf: 0xe1f5, 0x1dd0: 0xe115, 0x1dd1: 0xe115, -	0x1dd2: 0xe135, 0x1dd3: 0xe135, 0x1dd4: 0xe115, 0x1dd5: 0xe115, 0x1dd6: 0xe175, 0x1dd7: 0xe175, -	0x1dd8: 0xe115, 0x1dd9: 0xe115, 0x1dda: 0xe135, 0x1ddb: 0xe135, 0x1ddc: 0xe115, 0x1ddd: 0xe115, -	0x1dde: 0x8ca5, 0x1ddf: 0x8ca5, 0x1de0: 0x04b5, 0x1de1: 0x04b5, 0x1de2: 0x0a08, 0x1de3: 0x0a08, -	0x1de4: 0x0a08, 0x1de5: 0x0a08, 0x1de6: 0x0a08, 0x1de7: 0x0a08, 0x1de8: 0x0a08, 0x1de9: 0x0a08, -	0x1dea: 0x0a08, 0x1deb: 0x0a08, 0x1dec: 0x0a08, 0x1ded: 0x0a08, 0x1dee: 0x0a08, 0x1def: 0x0a08, -	0x1df0: 0x0a08, 0x1df1: 0x0a08, 0x1df2: 0x0a08, 0x1df3: 0x0a08, 0x1df4: 0x0a08, 0x1df5: 0x0a08, -	0x1df6: 0x0a08, 0x1df7: 0x0a08, 0x1df8: 0x0a08, 0x1df9: 0x0a08, 0x1dfa: 0x0a08, 0x1dfb: 0x0a08, -	0x1dfc: 0x0a08, 0x1dfd: 0x0a08, 0x1dfe: 0x0a08, 0x1dff: 0x0a08, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0x20b1, 0x1e01: 0x20b9, 0x1e02: 0x20d9, 0x1e03: 0x20f1, 0x1e04: 0x0040, 0x1e05: 0x2189, -	0x1e06: 0x2109, 0x1e07: 0x20e1, 0x1e08: 0x2131, 0x1e09: 0x2191, 0x1e0a: 0x2161, 0x1e0b: 0x2169, -	0x1e0c: 0x2171, 0x1e0d: 0x2179, 0x1e0e: 0x2111, 0x1e0f: 0x2141, 0x1e10: 0x2151, 0x1e11: 0x2121, -	0x1e12: 0x2159, 0x1e13: 0x2101, 0x1e14: 0x2119, 0x1e15: 0x20c9, 0x1e16: 0x20d1, 0x1e17: 0x20e9, -	0x1e18: 0x20f9, 0x1e19: 0x2129, 0x1e1a: 0x2139, 0x1e1b: 0x2149, 0x1e1c: 0x2589, 0x1e1d: 0x1689, -	0x1e1e: 0x2591, 0x1e1f: 0x2599, 0x1e20: 0x0040, 0x1e21: 0x20b9, 0x1e22: 0x20d9, 0x1e23: 0x0040, -	0x1e24: 0x2181, 0x1e25: 0x0040, 0x1e26: 0x0040, 0x1e27: 0x20e1, 0x1e28: 0x0040, 0x1e29: 0x2191, -	0x1e2a: 0x2161, 0x1e2b: 0x2169, 0x1e2c: 0x2171, 0x1e2d: 0x2179, 0x1e2e: 0x2111, 0x1e2f: 0x2141, -	0x1e30: 0x2151, 0x1e31: 0x2121, 0x1e32: 0x2159, 0x1e33: 0x0040, 0x1e34: 0x2119, 0x1e35: 0x20c9, -	0x1e36: 0x20d1, 0x1e37: 0x20e9, 0x1e38: 0x0040, 0x1e39: 0x2129, 0x1e3a: 0x0040, 0x1e3b: 0x2149, -	0x1e3c: 0x0040, 0x1e3d: 0x0040, 0x1e3e: 0x0040, 0x1e3f: 0x0040, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0x0040, 0x1e41: 0x0040, 0x1e42: 0x20d9, 0x1e43: 0x0040, 0x1e44: 0x0040, 0x1e45: 0x0040, -	0x1e46: 0x0040, 0x1e47: 0x20e1, 0x1e48: 0x0040, 0x1e49: 0x2191, 0x1e4a: 0x0040, 0x1e4b: 0x2169, -	0x1e4c: 0x0040, 0x1e4d: 0x2179, 0x1e4e: 0x2111, 0x1e4f: 0x2141, 0x1e50: 0x0040, 0x1e51: 0x2121, -	0x1e52: 0x2159, 0x1e53: 0x0040, 0x1e54: 0x2119, 0x1e55: 0x0040, 0x1e56: 0x0040, 0x1e57: 0x20e9, -	0x1e58: 0x0040, 0x1e59: 0x2129, 0x1e5a: 0x0040, 0x1e5b: 0x2149, 0x1e5c: 0x0040, 0x1e5d: 0x1689, -	0x1e5e: 0x0040, 0x1e5f: 0x2599, 0x1e60: 0x0040, 0x1e61: 0x20b9, 0x1e62: 0x20d9, 0x1e63: 0x0040, -	0x1e64: 0x2181, 0x1e65: 0x0040, 0x1e66: 0x0040, 0x1e67: 0x20e1, 0x1e68: 0x2131, 0x1e69: 0x2191, -	0x1e6a: 0x2161, 0x1e6b: 0x0040, 0x1e6c: 0x2171, 0x1e6d: 0x2179, 0x1e6e: 0x2111, 0x1e6f: 0x2141, -	0x1e70: 0x2151, 0x1e71: 0x2121, 0x1e72: 0x2159, 0x1e73: 0x0040, 0x1e74: 0x2119, 0x1e75: 0x20c9, -	0x1e76: 0x20d1, 0x1e77: 0x20e9, 0x1e78: 0x0040, 0x1e79: 0x2129, 0x1e7a: 0x2139, 0x1e7b: 0x2149, -	0x1e7c: 0x2589, 0x1e7d: 0x0040, 0x1e7e: 0x2591, 0x1e7f: 0x0040, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0x20b1, 0x1e81: 0x20b9, 0x1e82: 0x20d9, 0x1e83: 0x20f1, 0x1e84: 0x2181, 0x1e85: 0x2189, -	0x1e86: 0x2109, 0x1e87: 0x20e1, 0x1e88: 0x2131, 0x1e89: 0x2191, 0x1e8a: 0x0040, 0x1e8b: 0x2169, -	0x1e8c: 0x2171, 0x1e8d: 0x2179, 0x1e8e: 0x2111, 0x1e8f: 0x2141, 0x1e90: 0x2151, 0x1e91: 0x2121, -	0x1e92: 0x2159, 0x1e93: 0x2101, 0x1e94: 0x2119, 0x1e95: 0x20c9, 0x1e96: 0x20d1, 0x1e97: 0x20e9, -	0x1e98: 0x20f9, 0x1e99: 0x2129, 0x1e9a: 0x2139, 0x1e9b: 0x2149, 0x1e9c: 0x0040, 0x1e9d: 0x0040, -	0x1e9e: 0x0040, 0x1e9f: 0x0040, 0x1ea0: 0x0040, 0x1ea1: 0x20b9, 0x1ea2: 0x20d9, 0x1ea3: 0x20f1, -	0x1ea4: 0x0040, 0x1ea5: 0x2189, 0x1ea6: 0x2109, 0x1ea7: 0x20e1, 0x1ea8: 0x2131, 0x1ea9: 0x2191, -	0x1eaa: 0x0040, 0x1eab: 0x2169, 0x1eac: 0x2171, 0x1ead: 0x2179, 0x1eae: 0x2111, 0x1eaf: 0x2141, -	0x1eb0: 0x2151, 0x1eb1: 0x2121, 0x1eb2: 0x2159, 0x1eb3: 0x2101, 0x1eb4: 0x2119, 0x1eb5: 0x20c9, -	0x1eb6: 0x20d1, 0x1eb7: 0x20e9, 0x1eb8: 0x20f9, 0x1eb9: 0x2129, 0x1eba: 0x2139, 0x1ebb: 0x2149, -	0x1ebc: 0x0040, 0x1ebd: 0x0040, 0x1ebe: 0x0040, 0x1ebf: 0x0040, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0x0040, 0x1ec1: 0x25a2, 0x1ec2: 0x25aa, 0x1ec3: 0x25b2, 0x1ec4: 0x25ba, 0x1ec5: 0x25c2, -	0x1ec6: 0x25ca, 0x1ec7: 0x25d2, 0x1ec8: 0x25da, 0x1ec9: 0x25e2, 0x1eca: 0x25ea, 0x1ecb: 0x0018, -	0x1ecc: 0x0018, 0x1ecd: 0x0018, 0x1ece: 0x0018, 0x1ecf: 0x0018, 0x1ed0: 0x25f2, 0x1ed1: 0x25fa, -	0x1ed2: 0x2602, 0x1ed3: 0x260a, 0x1ed4: 0x2612, 0x1ed5: 0x261a, 0x1ed6: 0x2622, 0x1ed7: 0x262a, -	0x1ed8: 0x2632, 0x1ed9: 0x263a, 0x1eda: 0x2642, 0x1edb: 0x264a, 0x1edc: 0x2652, 0x1edd: 0x265a, -	0x1ede: 0x2662, 0x1edf: 0x266a, 0x1ee0: 0x2672, 0x1ee1: 0x267a, 0x1ee2: 0x2682, 0x1ee3: 0x268a, -	0x1ee4: 0x2692, 0x1ee5: 0x269a, 0x1ee6: 0x26a2, 0x1ee7: 0x26aa, 0x1ee8: 0x26b2, 0x1ee9: 0x26ba, -	0x1eea: 0x26c1, 0x1eeb: 0x03d9, 0x1eec: 0x00b9, 0x1eed: 0x1239, 0x1eee: 0x26c9, 0x1eef: 0x0018, -	0x1ef0: 0x0019, 0x1ef1: 0x02e9, 0x1ef2: 0x03d9, 0x1ef3: 0x02f1, 0x1ef4: 0x02f9, 0x1ef5: 0x03f1, -	0x1ef6: 0x0309, 0x1ef7: 0x00a9, 0x1ef8: 0x0311, 0x1ef9: 0x00b1, 0x1efa: 0x0319, 0x1efb: 0x0101, -	0x1efc: 0x0321, 0x1efd: 0x0329, 0x1efe: 0x0051, 0x1eff: 0x0339, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0x0751, 0x1f01: 0x00b9, 0x1f02: 0x0089, 0x1f03: 0x0341, 0x1f04: 0x0349, 0x1f05: 0x0391, -	0x1f06: 0x00c1, 0x1f07: 0x0109, 0x1f08: 0x00c9, 0x1f09: 0x04b1, 0x1f0a: 0x26d1, 0x1f0b: 0x11f9, -	0x1f0c: 0x26d9, 0x1f0d: 0x04d9, 0x1f0e: 0x26e1, 0x1f0f: 0x26e9, 0x1f10: 0x0018, 0x1f11: 0x0018, -	0x1f12: 0x0018, 0x1f13: 0x0018, 0x1f14: 0x0018, 0x1f15: 0x0018, 0x1f16: 0x0018, 0x1f17: 0x0018, -	0x1f18: 0x0018, 0x1f19: 0x0018, 0x1f1a: 0x0018, 0x1f1b: 0x0018, 0x1f1c: 0x0018, 0x1f1d: 0x0018, -	0x1f1e: 0x0018, 0x1f1f: 0x0018, 0x1f20: 0x0018, 0x1f21: 0x0018, 0x1f22: 0x0018, 0x1f23: 0x0018, -	0x1f24: 0x0018, 0x1f25: 0x0018, 0x1f26: 0x0018, 0x1f27: 0x0018, 0x1f28: 0x0018, 0x1f29: 0x0018, -	0x1f2a: 0x26f1, 0x1f2b: 0x26f9, 0x1f2c: 0x2701, 0x1f2d: 0x0018, 0x1f2e: 0x0018, 0x1f2f: 0x0018, -	0x1f30: 0x0018, 0x1f31: 0x0018, 0x1f32: 0x0018, 0x1f33: 0x0018, 0x1f34: 0x0018, 0x1f35: 0x0018, -	0x1f36: 0x0018, 0x1f37: 0x0018, 0x1f38: 0x0018, 0x1f39: 0x0018, 0x1f3a: 0x0018, 0x1f3b: 0x0018, -	0x1f3c: 0x0018, 0x1f3d: 0x0018, 0x1f3e: 0x0018, 0x1f3f: 0x0018, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0x2711, 0x1f41: 0x2719, 0x1f42: 0x2721, 0x1f43: 0x0040, 0x1f44: 0x0040, 0x1f45: 0x0040, -	0x1f46: 0x0040, 0x1f47: 0x0040, 0x1f48: 0x0040, 0x1f49: 0x0040, 0x1f4a: 0x0040, 0x1f4b: 0x0040, -	0x1f4c: 0x0040, 0x1f4d: 0x0040, 0x1f4e: 0x0040, 0x1f4f: 0x0040, 0x1f50: 0x2729, 0x1f51: 0x2731, -	0x1f52: 0x2739, 0x1f53: 0x2741, 0x1f54: 0x2749, 0x1f55: 0x2751, 0x1f56: 0x2759, 0x1f57: 0x2761, -	0x1f58: 0x2769, 0x1f59: 0x2771, 0x1f5a: 0x2779, 0x1f5b: 0x2781, 0x1f5c: 0x2789, 0x1f5d: 0x2791, -	0x1f5e: 0x2799, 0x1f5f: 0x27a1, 0x1f60: 0x27a9, 0x1f61: 0x27b1, 0x1f62: 0x27b9, 0x1f63: 0x27c1, -	0x1f64: 0x27c9, 0x1f65: 0x27d1, 0x1f66: 0x27d9, 0x1f67: 0x27e1, 0x1f68: 0x27e9, 0x1f69: 0x27f1, -	0x1f6a: 0x27f9, 0x1f6b: 0x2801, 0x1f6c: 0x2809, 0x1f6d: 0x2811, 0x1f6e: 0x2819, 0x1f6f: 0x2821, -	0x1f70: 0x2829, 0x1f71: 0x2831, 0x1f72: 0x2839, 0x1f73: 0x2841, 0x1f74: 0x2849, 0x1f75: 0x2851, -	0x1f76: 0x2859, 0x1f77: 0x2861, 0x1f78: 0x2869, 0x1f79: 0x2871, 0x1f7a: 0x2879, 0x1f7b: 0x2881, -	0x1f7c: 0x0040, 0x1f7d: 0x0040, 0x1f7e: 0x0040, 0x1f7f: 0x0040, -	// Block 0x7e, offset 0x1f80 -	0x1f80: 0x28e1, 0x1f81: 0x28e9, 0x1f82: 0x28f1, 0x1f83: 0x8cbd, 0x1f84: 0x28f9, 0x1f85: 0x2901, -	0x1f86: 0x2909, 0x1f87: 0x2911, 0x1f88: 0x2919, 0x1f89: 0x2921, 0x1f8a: 0x2929, 0x1f8b: 0x2931, -	0x1f8c: 0x2939, 0x1f8d: 0x8cdd, 0x1f8e: 0x2941, 0x1f8f: 0x2949, 0x1f90: 0x2951, 0x1f91: 0x2959, -	0x1f92: 0x8cfd, 0x1f93: 0x2961, 0x1f94: 0x2969, 0x1f95: 0x2799, 0x1f96: 0x8d1d, 0x1f97: 0x2971, -	0x1f98: 0x2979, 0x1f99: 0x2981, 0x1f9a: 0x2989, 0x1f9b: 0x2991, 0x1f9c: 0x8d3d, 0x1f9d: 0x2999, -	0x1f9e: 0x29a1, 0x1f9f: 0x29a9, 0x1fa0: 0x29b1, 0x1fa1: 0x29b9, 0x1fa2: 0x2871, 0x1fa3: 0x29c1, -	0x1fa4: 0x29c9, 0x1fa5: 0x29d1, 0x1fa6: 0x29d9, 0x1fa7: 0x29e1, 0x1fa8: 0x29e9, 0x1fa9: 0x29f1, -	0x1faa: 0x29f9, 0x1fab: 0x2a01, 0x1fac: 0x2a09, 0x1fad: 0x2a11, 0x1fae: 0x2a19, 0x1faf: 0x2a21, -	0x1fb0: 0x2a29, 0x1fb1: 0x2a31, 0x1fb2: 0x2a31, 0x1fb3: 0x2a31, 0x1fb4: 0x8d5d, 0x1fb5: 0x2a39, -	0x1fb6: 0x2a41, 0x1fb7: 0x2a49, 0x1fb8: 0x8d7d, 0x1fb9: 0x2a51, 0x1fba: 0x2a59, 0x1fbb: 0x2a61, -	0x1fbc: 0x2a69, 0x1fbd: 0x2a71, 0x1fbe: 0x2a79, 0x1fbf: 0x2a81, -	// Block 0x7f, offset 0x1fc0 -	0x1fc0: 0x2a89, 0x1fc1: 0x2a91, 0x1fc2: 0x2a99, 0x1fc3: 0x2aa1, 0x1fc4: 0x2aa9, 0x1fc5: 0x2ab1, -	0x1fc6: 0x2ab1, 0x1fc7: 0x2ab9, 0x1fc8: 0x2ac1, 0x1fc9: 0x2ac9, 0x1fca: 0x2ad1, 0x1fcb: 0x2ad9, -	0x1fcc: 0x2ae1, 0x1fcd: 0x2ae9, 0x1fce: 0x2af1, 0x1fcf: 0x2af9, 0x1fd0: 0x2b01, 0x1fd1: 0x2b09, -	0x1fd2: 0x2b11, 0x1fd3: 0x2b19, 0x1fd4: 0x2b21, 0x1fd5: 0x2b29, 0x1fd6: 0x2b31, 0x1fd7: 0x2b39, -	0x1fd8: 0x2b41, 0x1fd9: 0x8d9d, 0x1fda: 0x2b49, 0x1fdb: 0x2b51, 0x1fdc: 0x2b59, 0x1fdd: 0x2751, -	0x1fde: 0x2b61, 0x1fdf: 0x2b69, 0x1fe0: 0x8dbd, 0x1fe1: 0x8ddd, 0x1fe2: 0x2b71, 0x1fe3: 0x2b79, -	0x1fe4: 0x2b81, 0x1fe5: 0x2b89, 0x1fe6: 0x2b91, 0x1fe7: 0x2b99, 0x1fe8: 0x2040, 0x1fe9: 0x2ba1, -	0x1fea: 0x2ba9, 0x1feb: 0x2ba9, 0x1fec: 0x8dfd, 0x1fed: 0x2bb1, 0x1fee: 0x2bb9, 0x1fef: 0x2bc1, -	0x1ff0: 0x2bc9, 0x1ff1: 0x8e1d, 0x1ff2: 0x2bd1, 0x1ff3: 0x2bd9, 0x1ff4: 0x2040, 0x1ff5: 0x2be1, -	0x1ff6: 0x2be9, 0x1ff7: 0x2bf1, 0x1ff8: 0x2bf9, 0x1ff9: 0x2c01, 0x1ffa: 0x2c09, 0x1ffb: 0x8e3d, -	0x1ffc: 0x2c11, 0x1ffd: 0x8e5d, 0x1ffe: 0x2c19, 0x1fff: 0x2c21, -	// Block 0x80, offset 0x2000 -	0x2000: 0x2c29, 0x2001: 0x2c31, 0x2002: 0x2c39, 0x2003: 0x2c41, 0x2004: 0x2c49, 0x2005: 0x2c51, -	0x2006: 0x2c59, 0x2007: 0x2c61, 0x2008: 0x2c69, 0x2009: 0x8e7d, 0x200a: 0x2c71, 0x200b: 0x2c79, -	0x200c: 0x2c81, 0x200d: 0x2c89, 0x200e: 0x2c91, 0x200f: 0x8e9d, 0x2010: 0x2c99, 0x2011: 0x8ebd, -	0x2012: 0x8edd, 0x2013: 0x2ca1, 0x2014: 0x2ca9, 0x2015: 0x2ca9, 0x2016: 0x2cb1, 0x2017: 0x8efd, -	0x2018: 0x8f1d, 0x2019: 0x2cb9, 0x201a: 0x2cc1, 0x201b: 0x2cc9, 0x201c: 0x2cd1, 0x201d: 0x2cd9, -	0x201e: 0x2ce1, 0x201f: 0x2ce9, 0x2020: 0x2cf1, 0x2021: 0x2cf9, 0x2022: 0x2d01, 0x2023: 0x2d09, -	0x2024: 0x8f3d, 0x2025: 0x2d11, 0x2026: 0x2d19, 0x2027: 0x2d21, 0x2028: 0x2d29, 0x2029: 0x2d21, -	0x202a: 0x2d31, 0x202b: 0x2d39, 0x202c: 0x2d41, 0x202d: 0x2d49, 0x202e: 0x2d51, 0x202f: 0x2d59, -	0x2030: 0x2d61, 0x2031: 0x2d69, 0x2032: 0x2d71, 0x2033: 0x2d79, 0x2034: 0x2d81, 0x2035: 0x2d89, -	0x2036: 0x2d91, 0x2037: 0x2d99, 0x2038: 0x8f5d, 0x2039: 0x2da1, 0x203a: 0x2da9, 0x203b: 0x2db1, -	0x203c: 0x2db9, 0x203d: 0x2dc1, 0x203e: 0x8f7d, 0x203f: 0x2dc9, -	// Block 0x81, offset 0x2040 -	0x2040: 0x2dd1, 0x2041: 0x2dd9, 0x2042: 0x2de1, 0x2043: 0x2de9, 0x2044: 0x2df1, 0x2045: 0x2df9, -	0x2046: 0x2e01, 0x2047: 0x2e09, 0x2048: 0x2e11, 0x2049: 0x2e19, 0x204a: 0x8f9d, 0x204b: 0x2e21, -	0x204c: 0x2e29, 0x204d: 0x2e31, 0x204e: 0x2e39, 0x204f: 0x2e41, 0x2050: 0x2e49, 0x2051: 0x2e51, -	0x2052: 0x2e59, 0x2053: 0x2e61, 0x2054: 0x2e69, 0x2055: 0x2e71, 0x2056: 0x2e79, 0x2057: 0x2e81, -	0x2058: 0x2e89, 0x2059: 0x2e91, 0x205a: 0x2e99, 0x205b: 0x2ea1, 0x205c: 0x2ea9, 0x205d: 0x8fbd, -	0x205e: 0x2eb1, 0x205f: 0x2eb9, 0x2060: 0x2ec1, 0x2061: 0x2ec9, 0x2062: 0x2ed1, 0x2063: 0x8fdd, -	0x2064: 0x2ed9, 0x2065: 0x2ee1, 0x2066: 0x2ee9, 0x2067: 0x2ef1, 0x2068: 0x2ef9, 0x2069: 0x2f01, -	0x206a: 0x2f09, 0x206b: 0x2f11, 0x206c: 0x7f0d, 0x206d: 0x2f19, 0x206e: 0x2f21, 0x206f: 0x2f29, -	0x2070: 0x8ffd, 0x2071: 0x2f31, 0x2072: 0x2f39, 0x2073: 0x2f41, 0x2074: 0x2f49, 0x2075: 0x2f51, -	0x2076: 0x2f59, 0x2077: 0x901d, 0x2078: 0x903d, 0x2079: 0x905d, 0x207a: 0x2f61, 0x207b: 0x907d, -	0x207c: 0x2f69, 0x207d: 0x2f71, 0x207e: 0x2f79, 0x207f: 0x2f81, -	// Block 0x82, offset 0x2080 -	0x2080: 0x2f89, 0x2081: 0x2f91, 0x2082: 0x2f99, 0x2083: 0x2fa1, 0x2084: 0x2fa9, 0x2085: 0x2fb1, -	0x2086: 0x909d, 0x2087: 0x2fb9, 0x2088: 0x2fc1, 0x2089: 0x2fc9, 0x208a: 0x2fd1, 0x208b: 0x2fd9, -	0x208c: 0x2fe1, 0x208d: 0x90bd, 0x208e: 0x2fe9, 0x208f: 0x2ff1, 0x2090: 0x90dd, 0x2091: 0x90fd, -	0x2092: 0x2ff9, 0x2093: 0x3001, 0x2094: 0x3009, 0x2095: 0x3011, 0x2096: 0x3019, 0x2097: 0x3021, -	0x2098: 0x3029, 0x2099: 0x3031, 0x209a: 0x3039, 0x209b: 0x911d, 0x209c: 0x3041, 0x209d: 0x913d, -	0x209e: 0x3049, 0x209f: 0x2040, 0x20a0: 0x3051, 0x20a1: 0x3059, 0x20a2: 0x3061, 0x20a3: 0x915d, -	0x20a4: 0x3069, 0x20a5: 0x3071, 0x20a6: 0x917d, 0x20a7: 0x919d, 0x20a8: 0x3079, 0x20a9: 0x3081, -	0x20aa: 0x3089, 0x20ab: 0x3091, 0x20ac: 0x3099, 0x20ad: 0x3099, 0x20ae: 0x30a1, 0x20af: 0x30a9, -	0x20b0: 0x30b1, 0x20b1: 0x30b9, 0x20b2: 0x30c1, 0x20b3: 0x30c9, 0x20b4: 0x30d1, 0x20b5: 0x91bd, -	0x20b6: 0x30d9, 0x20b7: 0x91dd, 0x20b8: 0x30e1, 0x20b9: 0x91fd, 0x20ba: 0x30e9, 0x20bb: 0x921d, -	0x20bc: 0x923d, 0x20bd: 0x925d, 0x20be: 0x30f1, 0x20bf: 0x30f9, -	// Block 0x83, offset 0x20c0 -	0x20c0: 0x3101, 0x20c1: 0x927d, 0x20c2: 0x929d, 0x20c3: 0x92bd, 0x20c4: 0x92dd, 0x20c5: 0x3109, -	0x20c6: 0x3111, 0x20c7: 0x3111, 0x20c8: 0x3119, 0x20c9: 0x3121, 0x20ca: 0x3129, 0x20cb: 0x3131, -	0x20cc: 0x3139, 0x20cd: 0x92fd, 0x20ce: 0x3141, 0x20cf: 0x3149, 0x20d0: 0x3151, 0x20d1: 0x3159, -	0x20d2: 0x931d, 0x20d3: 0x3161, 0x20d4: 0x933d, 0x20d5: 0x935d, 0x20d6: 0x3169, 0x20d7: 0x3171, -	0x20d8: 0x3179, 0x20d9: 0x3181, 0x20da: 0x3189, 0x20db: 0x3191, 0x20dc: 0x937d, 0x20dd: 0x939d, -	0x20de: 0x93bd, 0x20df: 0x2040, 0x20e0: 0x3199, 0x20e1: 0x93dd, 0x20e2: 0x31a1, 0x20e3: 0x31a9, -	0x20e4: 0x31b1, 0x20e5: 0x93fd, 0x20e6: 0x31b9, 0x20e7: 0x31c1, 0x20e8: 0x31c9, 0x20e9: 0x31d1, -	0x20ea: 0x31d9, 0x20eb: 0x941d, 0x20ec: 0x31e1, 0x20ed: 0x31e9, 0x20ee: 0x31f1, 0x20ef: 0x31f9, -	0x20f0: 0x3201, 0x20f1: 0x3209, 0x20f2: 0x943d, 0x20f3: 0x945d, 0x20f4: 0x3211, 0x20f5: 0x947d, -	0x20f6: 0x3219, 0x20f7: 0x949d, 0x20f8: 0x3221, 0x20f9: 0x3229, 0x20fa: 0x3231, 0x20fb: 0x94bd, -	0x20fc: 0x94dd, 0x20fd: 0x3239, 0x20fe: 0x94fd, 0x20ff: 0x3241, -	// Block 0x84, offset 0x2100 -	0x2100: 0x951d, 0x2101: 0x3249, 0x2102: 0x3251, 0x2103: 0x3259, 0x2104: 0x3261, 0x2105: 0x3269, -	0x2106: 0x3271, 0x2107: 0x953d, 0x2108: 0x955d, 0x2109: 0x957d, 0x210a: 0x959d, 0x210b: 0x2ca1, -	0x210c: 0x3279, 0x210d: 0x3281, 0x210e: 0x3289, 0x210f: 0x3291, 0x2110: 0x3299, 0x2111: 0x32a1, -	0x2112: 0x32a9, 0x2113: 0x32b1, 0x2114: 0x32b9, 0x2115: 0x32c1, 0x2116: 0x32c9, 0x2117: 0x95bd, -	0x2118: 0x32d1, 0x2119: 0x32d9, 0x211a: 0x32e1, 0x211b: 0x32e9, 0x211c: 0x32f1, 0x211d: 0x32f9, -	0x211e: 0x3301, 0x211f: 0x3309, 0x2120: 0x3311, 0x2121: 0x3319, 0x2122: 0x3321, 0x2123: 0x3329, -	0x2124: 0x95dd, 0x2125: 0x95fd, 0x2126: 0x961d, 0x2127: 0x3331, 0x2128: 0x3339, 0x2129: 0x3341, -	0x212a: 0x3349, 0x212b: 0x963d, 0x212c: 0x3351, 0x212d: 0x965d, 0x212e: 0x3359, 0x212f: 0x3361, -	0x2130: 0x967d, 0x2131: 0x969d, 0x2132: 0x3369, 0x2133: 0x3371, 0x2134: 0x3379, 0x2135: 0x3381, -	0x2136: 0x3389, 0x2137: 0x3391, 0x2138: 0x3399, 0x2139: 0x33a1, 0x213a: 0x33a9, 0x213b: 0x33b1, -	0x213c: 0x33b9, 0x213d: 0x33c1, 0x213e: 0x33c9, 0x213f: 0x2040, -	// Block 0x85, offset 0x2140 -	0x2140: 0x33d1, 0x2141: 0x33d9, 0x2142: 0x33e1, 0x2143: 0x33e9, 0x2144: 0x33f1, 0x2145: 0x96bd, -	0x2146: 0x33f9, 0x2147: 0x3401, 0x2148: 0x3409, 0x2149: 0x3411, 0x214a: 0x3419, 0x214b: 0x96dd, -	0x214c: 0x96fd, 0x214d: 0x3421, 0x214e: 0x3429, 0x214f: 0x3431, 0x2150: 0x3439, 0x2151: 0x3441, -	0x2152: 0x3449, 0x2153: 0x971d, 0x2154: 0x3451, 0x2155: 0x3459, 0x2156: 0x3461, 0x2157: 0x3469, -	0x2158: 0x973d, 0x2159: 0x975d, 0x215a: 0x3471, 0x215b: 0x3479, 0x215c: 0x3481, 0x215d: 0x977d, -	0x215e: 0x3489, 0x215f: 0x3491, 0x2160: 0x684d, 0x2161: 0x979d, 0x2162: 0x3499, 0x2163: 0x34a1, -	0x2164: 0x34a9, 0x2165: 0x97bd, 0x2166: 0x34b1, 0x2167: 0x34b9, 0x2168: 0x34c1, 0x2169: 0x34c9, -	0x216a: 0x34d1, 0x216b: 0x34d9, 0x216c: 0x34e1, 0x216d: 0x97dd, 0x216e: 0x34e9, 0x216f: 0x34f1, -	0x2170: 0x34f9, 0x2171: 0x97fd, 0x2172: 0x3501, 0x2173: 0x3509, 0x2174: 0x3511, 0x2175: 0x3519, -	0x2176: 0x7b6d, 0x2177: 0x981d, 0x2178: 0x3521, 0x2179: 0x3529, 0x217a: 0x3531, 0x217b: 0x983d, -	0x217c: 0x3539, 0x217d: 0x985d, 0x217e: 0x3541, 0x217f: 0x3541, -	// Block 0x86, offset 0x2180 -	0x2180: 0x3549, 0x2181: 0x987d, 0x2182: 0x3551, 0x2183: 0x3559, 0x2184: 0x3561, 0x2185: 0x3569, -	0x2186: 0x3571, 0x2187: 0x3579, 0x2188: 0x3581, 0x2189: 0x989d, 0x218a: 0x3589, 0x218b: 0x3591, -	0x218c: 0x3599, 0x218d: 0x35a1, 0x218e: 0x35a9, 0x218f: 0x35b1, 0x2190: 0x98bd, 0x2191: 0x35b9, -	0x2192: 0x98dd, 0x2193: 0x98fd, 0x2194: 0x991d, 0x2195: 0x35c1, 0x2196: 0x35c9, 0x2197: 0x35d1, -	0x2198: 0x35d9, 0x2199: 0x35e1, 0x219a: 0x35e9, 0x219b: 0x35f1, 0x219c: 0x35f9, 0x219d: 0x993d, -	0x219e: 0x0040, 0x219f: 0x0040, 0x21a0: 0x0040, 0x21a1: 0x0040, 0x21a2: 0x0040, 0x21a3: 0x0040, -	0x21a4: 0x0040, 0x21a5: 0x0040, 0x21a6: 0x0040, 0x21a7: 0x0040, 0x21a8: 0x0040, 0x21a9: 0x0040, -	0x21aa: 0x0040, 0x21ab: 0x0040, 0x21ac: 0x0040, 0x21ad: 0x0040, 0x21ae: 0x0040, 0x21af: 0x0040, -	0x21b0: 0x0040, 0x21b1: 0x0040, 0x21b2: 0x0040, 0x21b3: 0x0040, 0x21b4: 0x0040, 0x21b5: 0x0040, -	0x21b6: 0x0040, 0x21b7: 0x0040, 0x21b8: 0x0040, 0x21b9: 0x0040, 0x21ba: 0x0040, 0x21bb: 0x0040, -	0x21bc: 0x0040, 0x21bd: 0x0040, 0x21be: 0x0040, 0x21bf: 0x0040, -} - -// idnaIndex: 39 blocks, 2496 entries, 4992 bytes -// Block 0 is the zero block. -var idnaIndex = [2496]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x85, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x86, 0xca: 0x87, 0xcb: 0x07, 0xcc: 0x88, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x89, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x8a, 0xd6: 0x8b, 0xd7: 0x8c, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x8d, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x8e, 0xde: 0x8f, 0xdf: 0x90, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x07, 0xea: 0x08, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x09, 0xee: 0x0a, 0xef: 0x0b, -	0xf0: 0x20, 0xf1: 0x21, 0xf2: 0x21, 0xf3: 0x23, 0xf4: 0x24, -	// Block 0x4, offset 0x100 -	0x120: 0x91, 0x121: 0x13, 0x122: 0x14, 0x123: 0x92, 0x124: 0x93, 0x125: 0x15, 0x126: 0x16, 0x127: 0x17, -	0x128: 0x18, 0x129: 0x19, 0x12a: 0x1a, 0x12b: 0x1b, 0x12c: 0x1c, 0x12d: 0x1d, 0x12e: 0x1e, 0x12f: 0x94, -	0x130: 0x95, 0x131: 0x1f, 0x132: 0x20, 0x133: 0x21, 0x134: 0x96, 0x135: 0x22, 0x136: 0x97, 0x137: 0x98, -	0x138: 0x99, 0x139: 0x9a, 0x13a: 0x23, 0x13b: 0x9b, 0x13c: 0x9c, 0x13d: 0x24, 0x13e: 0x25, 0x13f: 0x9d, -	// Block 0x5, offset 0x140 -	0x140: 0x9e, 0x141: 0x9f, 0x142: 0xa0, 0x143: 0xa1, 0x144: 0xa2, 0x145: 0xa3, 0x146: 0xa4, 0x147: 0xa5, -	0x148: 0xa6, 0x149: 0xa7, 0x14a: 0xa8, 0x14b: 0xa9, 0x14c: 0xaa, 0x14d: 0xab, 0x14e: 0xac, 0x14f: 0xad, -	0x150: 0xae, 0x151: 0xa6, 0x152: 0xa6, 0x153: 0xa6, 0x154: 0xa6, 0x155: 0xa6, 0x156: 0xa6, 0x157: 0xa6, -	0x158: 0xa6, 0x159: 0xaf, 0x15a: 0xb0, 0x15b: 0xb1, 0x15c: 0xb2, 0x15d: 0xb3, 0x15e: 0xb4, 0x15f: 0xb5, -	0x160: 0xb6, 0x161: 0xb7, 0x162: 0xb8, 0x163: 0xb9, 0x164: 0xba, 0x165: 0xbb, 0x166: 0xbc, 0x167: 0xbd, -	0x168: 0xbe, 0x169: 0xbf, 0x16a: 0xc0, 0x16b: 0xc1, 0x16c: 0xc2, 0x16d: 0xc3, 0x16e: 0xc4, 0x16f: 0xc5, -	0x170: 0xc6, 0x171: 0xc7, 0x172: 0xc8, 0x173: 0xc9, 0x174: 0x26, 0x175: 0x27, 0x176: 0x28, 0x177: 0x88, -	0x178: 0x29, 0x179: 0x29, 0x17a: 0x2a, 0x17b: 0x29, 0x17c: 0xca, 0x17d: 0x2b, 0x17e: 0x2c, 0x17f: 0x2d, -	// Block 0x6, offset 0x180 -	0x180: 0x2e, 0x181: 0x2f, 0x182: 0x30, 0x183: 0xcb, 0x184: 0x31, 0x185: 0x32, 0x186: 0xcc, 0x187: 0xa2, -	0x188: 0xcd, 0x189: 0xce, 0x18a: 0xa2, 0x18b: 0xa2, 0x18c: 0xcf, 0x18d: 0xa2, 0x18e: 0xa2, 0x18f: 0xa2, -	0x190: 0xd0, 0x191: 0x33, 0x192: 0x34, 0x193: 0x35, 0x194: 0xa2, 0x195: 0xa2, 0x196: 0xa2, 0x197: 0xa2, -	0x198: 0xa2, 0x199: 0xa2, 0x19a: 0xa2, 0x19b: 0xa2, 0x19c: 0xa2, 0x19d: 0xa2, 0x19e: 0xa2, 0x19f: 0xa2, -	0x1a0: 0xa2, 0x1a1: 0xa2, 0x1a2: 0xa2, 0x1a3: 0xa2, 0x1a4: 0xa2, 0x1a5: 0xa2, 0x1a6: 0xa2, 0x1a7: 0xa2, -	0x1a8: 0xd1, 0x1a9: 0xd2, 0x1aa: 0xa2, 0x1ab: 0xd3, 0x1ac: 0xa2, 0x1ad: 0xd4, 0x1ae: 0xd5, 0x1af: 0xa2, -	0x1b0: 0xd6, 0x1b1: 0x36, 0x1b2: 0x29, 0x1b3: 0x37, 0x1b4: 0xd7, 0x1b5: 0xd8, 0x1b6: 0xd9, 0x1b7: 0xda, -	0x1b8: 0xdb, 0x1b9: 0xdc, 0x1ba: 0xdd, 0x1bb: 0xde, 0x1bc: 0xdf, 0x1bd: 0xe0, 0x1be: 0xe1, 0x1bf: 0x38, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x39, 0x1c1: 0xe2, 0x1c2: 0xe3, 0x1c3: 0xe4, 0x1c4: 0xe5, 0x1c5: 0x3a, 0x1c6: 0x3b, 0x1c7: 0xe6, -	0x1c8: 0xe7, 0x1c9: 0x3c, 0x1ca: 0x3d, 0x1cb: 0x3e, 0x1cc: 0xe8, 0x1cd: 0xe9, 0x1ce: 0x3f, 0x1cf: 0x40, -	0x1d0: 0xa6, 0x1d1: 0xa6, 0x1d2: 0xa6, 0x1d3: 0xa6, 0x1d4: 0xa6, 0x1d5: 0xa6, 0x1d6: 0xa6, 0x1d7: 0xa6, -	0x1d8: 0xa6, 0x1d9: 0xa6, 0x1da: 0xa6, 0x1db: 0xa6, 0x1dc: 0xa6, 0x1dd: 0xa6, 0x1de: 0xa6, 0x1df: 0xa6, -	0x1e0: 0xa6, 0x1e1: 0xa6, 0x1e2: 0xa6, 0x1e3: 0xa6, 0x1e4: 0xa6, 0x1e5: 0xa6, 0x1e6: 0xa6, 0x1e7: 0xa6, -	0x1e8: 0xa6, 0x1e9: 0xa6, 0x1ea: 0xa6, 0x1eb: 0xa6, 0x1ec: 0xa6, 0x1ed: 0xa6, 0x1ee: 0xa6, 0x1ef: 0xa6, -	0x1f0: 0xa6, 0x1f1: 0xa6, 0x1f2: 0xa6, 0x1f3: 0xa6, 0x1f4: 0xa6, 0x1f5: 0xa6, 0x1f6: 0xa6, 0x1f7: 0xa6, -	0x1f8: 0xa6, 0x1f9: 0xa6, 0x1fa: 0xa6, 0x1fb: 0xa6, 0x1fc: 0xa6, 0x1fd: 0xa6, 0x1fe: 0xa6, 0x1ff: 0xa6, -	// Block 0x8, offset 0x200 -	0x200: 0xa6, 0x201: 0xa6, 0x202: 0xa6, 0x203: 0xa6, 0x204: 0xa6, 0x205: 0xa6, 0x206: 0xa6, 0x207: 0xa6, -	0x208: 0xa6, 0x209: 0xa6, 0x20a: 0xa6, 0x20b: 0xa6, 0x20c: 0xa6, 0x20d: 0xa6, 0x20e: 0xa6, 0x20f: 0xa6, -	0x210: 0xa6, 0x211: 0xa6, 0x212: 0xa6, 0x213: 0xa6, 0x214: 0xa6, 0x215: 0xa6, 0x216: 0xa6, 0x217: 0xa6, -	0x218: 0xa6, 0x219: 0xa6, 0x21a: 0xa6, 0x21b: 0xa6, 0x21c: 0xa6, 0x21d: 0xa6, 0x21e: 0xa6, 0x21f: 0xa6, -	0x220: 0xa6, 0x221: 0xa6, 0x222: 0xa6, 0x223: 0xa6, 0x224: 0xa6, 0x225: 0xa6, 0x226: 0xa6, 0x227: 0xa6, -	0x228: 0xa6, 0x229: 0xa6, 0x22a: 0xa6, 0x22b: 0xa6, 0x22c: 0xa6, 0x22d: 0xa6, 0x22e: 0xa6, 0x22f: 0xa6, -	0x230: 0xa6, 0x231: 0xa6, 0x232: 0xa6, 0x233: 0xa6, 0x234: 0xa6, 0x235: 0xa6, 0x236: 0xa6, 0x237: 0xa2, -	0x238: 0xa6, 0x239: 0xa6, 0x23a: 0xa6, 0x23b: 0xa6, 0x23c: 0xa6, 0x23d: 0xa6, 0x23e: 0xa6, 0x23f: 0xa6, -	// Block 0x9, offset 0x240 -	0x240: 0xa6, 0x241: 0xa6, 0x242: 0xa6, 0x243: 0xa6, 0x244: 0xa6, 0x245: 0xa6, 0x246: 0xa6, 0x247: 0xa6, -	0x248: 0xa6, 0x249: 0xa6, 0x24a: 0xa6, 0x24b: 0xa6, 0x24c: 0xa6, 0x24d: 0xa6, 0x24e: 0xa6, 0x24f: 0xa6, -	0x250: 0xa6, 0x251: 0xa6, 0x252: 0xa6, 0x253: 0xa6, 0x254: 0xa6, 0x255: 0xa6, 0x256: 0xa6, 0x257: 0xa6, -	0x258: 0xa6, 0x259: 0xa6, 0x25a: 0xa6, 0x25b: 0xa6, 0x25c: 0xa6, 0x25d: 0xa6, 0x25e: 0xa6, 0x25f: 0xa6, -	0x260: 0xa6, 0x261: 0xa6, 0x262: 0xa6, 0x263: 0xa6, 0x264: 0xa6, 0x265: 0xa6, 0x266: 0xa6, 0x267: 0xa6, -	0x268: 0xa6, 0x269: 0xa6, 0x26a: 0xa6, 0x26b: 0xa6, 0x26c: 0xa6, 0x26d: 0xa6, 0x26e: 0xa6, 0x26f: 0xa6, -	0x270: 0xa6, 0x271: 0xa6, 0x272: 0xa6, 0x273: 0xa6, 0x274: 0xa6, 0x275: 0xa6, 0x276: 0xa6, 0x277: 0xa6, -	0x278: 0xa6, 0x279: 0xa6, 0x27a: 0xa6, 0x27b: 0xa6, 0x27c: 0xa6, 0x27d: 0xa6, 0x27e: 0xa6, 0x27f: 0xa6, -	// Block 0xa, offset 0x280 -	0x280: 0xa6, 0x281: 0xa6, 0x282: 0xa6, 0x283: 0xa6, 0x284: 0xa6, 0x285: 0xa6, 0x286: 0xa6, 0x287: 0xa6, -	0x288: 0xa6, 0x289: 0xa6, 0x28a: 0xa6, 0x28b: 0xa6, 0x28c: 0xa6, 0x28d: 0xa6, 0x28e: 0xa6, 0x28f: 0xa6, -	0x290: 0xa6, 0x291: 0xa6, 0x292: 0xea, 0x293: 0xeb, 0x294: 0xa6, 0x295: 0xa6, 0x296: 0xa6, 0x297: 0xa6, -	0x298: 0xec, 0x299: 0x41, 0x29a: 0x42, 0x29b: 0xed, 0x29c: 0x43, 0x29d: 0x44, 0x29e: 0x45, 0x29f: 0x46, -	0x2a0: 0xee, 0x2a1: 0xef, 0x2a2: 0xf0, 0x2a3: 0xf1, 0x2a4: 0xf2, 0x2a5: 0xf3, 0x2a6: 0xf4, 0x2a7: 0xf5, -	0x2a8: 0xf6, 0x2a9: 0xf7, 0x2aa: 0xf8, 0x2ab: 0xf9, 0x2ac: 0xfa, 0x2ad: 0xfb, 0x2ae: 0xfc, 0x2af: 0xfd, -	0x2b0: 0xa6, 0x2b1: 0xa6, 0x2b2: 0xa6, 0x2b3: 0xa6, 0x2b4: 0xa6, 0x2b5: 0xa6, 0x2b6: 0xa6, 0x2b7: 0xa6, -	0x2b8: 0xa6, 0x2b9: 0xa6, 0x2ba: 0xa6, 0x2bb: 0xa6, 0x2bc: 0xa6, 0x2bd: 0xa6, 0x2be: 0xa6, 0x2bf: 0xa6, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0xa6, 0x2c1: 0xa6, 0x2c2: 0xa6, 0x2c3: 0xa6, 0x2c4: 0xa6, 0x2c5: 0xa6, 0x2c6: 0xa6, 0x2c7: 0xa6, -	0x2c8: 0xa6, 0x2c9: 0xa6, 0x2ca: 0xa6, 0x2cb: 0xa6, 0x2cc: 0xa6, 0x2cd: 0xa6, 0x2ce: 0xa6, 0x2cf: 0xa6, -	0x2d0: 0xa6, 0x2d1: 0xa6, 0x2d2: 0xa6, 0x2d3: 0xa6, 0x2d4: 0xa6, 0x2d5: 0xa6, 0x2d6: 0xa6, 0x2d7: 0xa6, -	0x2d8: 0xa6, 0x2d9: 0xa6, 0x2da: 0xa6, 0x2db: 0xa6, 0x2dc: 0xa6, 0x2dd: 0xa6, 0x2de: 0xfe, 0x2df: 0xff, -	// Block 0xc, offset 0x300 -	0x300: 0x100, 0x301: 0x100, 0x302: 0x100, 0x303: 0x100, 0x304: 0x100, 0x305: 0x100, 0x306: 0x100, 0x307: 0x100, -	0x308: 0x100, 0x309: 0x100, 0x30a: 0x100, 0x30b: 0x100, 0x30c: 0x100, 0x30d: 0x100, 0x30e: 0x100, 0x30f: 0x100, -	0x310: 0x100, 0x311: 0x100, 0x312: 0x100, 0x313: 0x100, 0x314: 0x100, 0x315: 0x100, 0x316: 0x100, 0x317: 0x100, -	0x318: 0x100, 0x319: 0x100, 0x31a: 0x100, 0x31b: 0x100, 0x31c: 0x100, 0x31d: 0x100, 0x31e: 0x100, 0x31f: 0x100, -	0x320: 0x100, 0x321: 0x100, 0x322: 0x100, 0x323: 0x100, 0x324: 0x100, 0x325: 0x100, 0x326: 0x100, 0x327: 0x100, -	0x328: 0x100, 0x329: 0x100, 0x32a: 0x100, 0x32b: 0x100, 0x32c: 0x100, 0x32d: 0x100, 0x32e: 0x100, 0x32f: 0x100, -	0x330: 0x100, 0x331: 0x100, 0x332: 0x100, 0x333: 0x100, 0x334: 0x100, 0x335: 0x100, 0x336: 0x100, 0x337: 0x100, -	0x338: 0x100, 0x339: 0x100, 0x33a: 0x100, 0x33b: 0x100, 0x33c: 0x100, 0x33d: 0x100, 0x33e: 0x100, 0x33f: 0x100, -	// Block 0xd, offset 0x340 -	0x340: 0x100, 0x341: 0x100, 0x342: 0x100, 0x343: 0x100, 0x344: 0x100, 0x345: 0x100, 0x346: 0x100, 0x347: 0x100, -	0x348: 0x100, 0x349: 0x100, 0x34a: 0x100, 0x34b: 0x100, 0x34c: 0x100, 0x34d: 0x100, 0x34e: 0x100, 0x34f: 0x100, -	0x350: 0x100, 0x351: 0x100, 0x352: 0x100, 0x353: 0x100, 0x354: 0x100, 0x355: 0x100, 0x356: 0x100, 0x357: 0x100, -	0x358: 0x100, 0x359: 0x100, 0x35a: 0x100, 0x35b: 0x100, 0x35c: 0x100, 0x35d: 0x100, 0x35e: 0x100, 0x35f: 0x100, -	0x360: 0x100, 0x361: 0x100, 0x362: 0x100, 0x363: 0x100, 0x364: 0x101, 0x365: 0x102, 0x366: 0x103, 0x367: 0x104, -	0x368: 0x47, 0x369: 0x105, 0x36a: 0x106, 0x36b: 0x48, 0x36c: 0x49, 0x36d: 0x4a, 0x36e: 0x4b, 0x36f: 0x4c, -	0x370: 0x107, 0x371: 0x4d, 0x372: 0x4e, 0x373: 0x4f, 0x374: 0x50, 0x375: 0x51, 0x376: 0x108, 0x377: 0x52, -	0x378: 0x53, 0x379: 0x54, 0x37a: 0x55, 0x37b: 0x56, 0x37c: 0x57, 0x37d: 0x58, 0x37e: 0x59, 0x37f: 0x5a, -	// Block 0xe, offset 0x380 -	0x380: 0x109, 0x381: 0x10a, 0x382: 0xa6, 0x383: 0x10b, 0x384: 0x10c, 0x385: 0xa2, 0x386: 0x10d, 0x387: 0x10e, -	0x388: 0x100, 0x389: 0x100, 0x38a: 0x10f, 0x38b: 0x110, 0x38c: 0x111, 0x38d: 0x112, 0x38e: 0x113, 0x38f: 0x114, -	0x390: 0x115, 0x391: 0xa6, 0x392: 0x116, 0x393: 0x117, 0x394: 0x118, 0x395: 0x5b, 0x396: 0x5c, 0x397: 0x100, -	0x398: 0xa6, 0x399: 0xa6, 0x39a: 0xa6, 0x39b: 0xa6, 0x39c: 0x119, 0x39d: 0x11a, 0x39e: 0x5d, 0x39f: 0x100, -	0x3a0: 0x11b, 0x3a1: 0x11c, 0x3a2: 0x11d, 0x3a3: 0x11e, 0x3a4: 0x11f, 0x3a5: 0x100, 0x3a6: 0x120, 0x3a7: 0x121, -	0x3a8: 0x122, 0x3a9: 0x123, 0x3aa: 0x124, 0x3ab: 0x5e, 0x3ac: 0x125, 0x3ad: 0x126, 0x3ae: 0x5f, 0x3af: 0x100, -	0x3b0: 0x127, 0x3b1: 0x128, 0x3b2: 0x129, 0x3b3: 0x12a, 0x3b4: 0x12b, 0x3b5: 0x100, 0x3b6: 0x100, 0x3b7: 0x100, -	0x3b8: 0x100, 0x3b9: 0x12c, 0x3ba: 0x12d, 0x3bb: 0x12e, 0x3bc: 0x12f, 0x3bd: 0x130, 0x3be: 0x131, 0x3bf: 0x132, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x133, 0x3c1: 0x134, 0x3c2: 0x135, 0x3c3: 0x136, 0x3c4: 0x137, 0x3c5: 0x138, 0x3c6: 0x139, 0x3c7: 0x13a, -	0x3c8: 0x13b, 0x3c9: 0x13c, 0x3ca: 0x13d, 0x3cb: 0x13e, 0x3cc: 0x60, 0x3cd: 0x61, 0x3ce: 0x100, 0x3cf: 0x100, -	0x3d0: 0x13f, 0x3d1: 0x140, 0x3d2: 0x141, 0x3d3: 0x142, 0x3d4: 0x100, 0x3d5: 0x100, 0x3d6: 0x143, 0x3d7: 0x144, -	0x3d8: 0x145, 0x3d9: 0x146, 0x3da: 0x147, 0x3db: 0x148, 0x3dc: 0x149, 0x3dd: 0x14a, 0x3de: 0x100, 0x3df: 0x100, -	0x3e0: 0x14b, 0x3e1: 0x100, 0x3e2: 0x14c, 0x3e3: 0x14d, 0x3e4: 0x62, 0x3e5: 0x14e, 0x3e6: 0x14f, 0x3e7: 0x150, -	0x3e8: 0x151, 0x3e9: 0x152, 0x3ea: 0x153, 0x3eb: 0x154, 0x3ec: 0x155, 0x3ed: 0x100, 0x3ee: 0x100, 0x3ef: 0x100, -	0x3f0: 0x156, 0x3f1: 0x157, 0x3f2: 0x158, 0x3f3: 0x100, 0x3f4: 0x159, 0x3f5: 0x15a, 0x3f6: 0x15b, 0x3f7: 0x100, -	0x3f8: 0x100, 0x3f9: 0x100, 0x3fa: 0x100, 0x3fb: 0x15c, 0x3fc: 0x15d, 0x3fd: 0x15e, 0x3fe: 0x15f, 0x3ff: 0x160, -	// Block 0x10, offset 0x400 -	0x400: 0xa6, 0x401: 0xa6, 0x402: 0xa6, 0x403: 0xa6, 0x404: 0xa6, 0x405: 0xa6, 0x406: 0xa6, 0x407: 0xa6, -	0x408: 0xa6, 0x409: 0xa6, 0x40a: 0xa6, 0x40b: 0xa6, 0x40c: 0xa6, 0x40d: 0xa6, 0x40e: 0x161, 0x40f: 0x100, -	0x410: 0xa2, 0x411: 0x162, 0x412: 0xa6, 0x413: 0xa6, 0x414: 0xa6, 0x415: 0x163, 0x416: 0x100, 0x417: 0x100, -	0x418: 0x100, 0x419: 0x100, 0x41a: 0x100, 0x41b: 0x100, 0x41c: 0x100, 0x41d: 0x100, 0x41e: 0x100, 0x41f: 0x100, -	0x420: 0x100, 0x421: 0x100, 0x422: 0x100, 0x423: 0x100, 0x424: 0x100, 0x425: 0x100, 0x426: 0x100, 0x427: 0x100, -	0x428: 0x100, 0x429: 0x100, 0x42a: 0x100, 0x42b: 0x100, 0x42c: 0x100, 0x42d: 0x100, 0x42e: 0x100, 0x42f: 0x100, -	0x430: 0x100, 0x431: 0x100, 0x432: 0x100, 0x433: 0x100, 0x434: 0x100, 0x435: 0x100, 0x436: 0x100, 0x437: 0x100, -	0x438: 0x100, 0x439: 0x100, 0x43a: 0x100, 0x43b: 0x100, 0x43c: 0x100, 0x43d: 0x100, 0x43e: 0x164, 0x43f: 0x165, -	// Block 0x11, offset 0x440 -	0x440: 0xa6, 0x441: 0xa6, 0x442: 0xa6, 0x443: 0xa6, 0x444: 0xa6, 0x445: 0xa6, 0x446: 0xa6, 0x447: 0xa6, -	0x448: 0xa6, 0x449: 0xa6, 0x44a: 0xa6, 0x44b: 0xa6, 0x44c: 0xa6, 0x44d: 0xa6, 0x44e: 0xa6, 0x44f: 0xa6, -	0x450: 0x166, 0x451: 0x167, 0x452: 0x100, 0x453: 0x100, 0x454: 0x100, 0x455: 0x100, 0x456: 0x100, 0x457: 0x100, -	0x458: 0x100, 0x459: 0x100, 0x45a: 0x100, 0x45b: 0x100, 0x45c: 0x100, 0x45d: 0x100, 0x45e: 0x100, 0x45f: 0x100, -	0x460: 0x100, 0x461: 0x100, 0x462: 0x100, 0x463: 0x100, 0x464: 0x100, 0x465: 0x100, 0x466: 0x100, 0x467: 0x100, -	0x468: 0x100, 0x469: 0x100, 0x46a: 0x100, 0x46b: 0x100, 0x46c: 0x100, 0x46d: 0x100, 0x46e: 0x100, 0x46f: 0x100, -	0x470: 0x100, 0x471: 0x100, 0x472: 0x100, 0x473: 0x100, 0x474: 0x100, 0x475: 0x100, 0x476: 0x100, 0x477: 0x100, -	0x478: 0x100, 0x479: 0x100, 0x47a: 0x100, 0x47b: 0x100, 0x47c: 0x100, 0x47d: 0x100, 0x47e: 0x100, 0x47f: 0x100, -	// Block 0x12, offset 0x480 -	0x480: 0x100, 0x481: 0x100, 0x482: 0x100, 0x483: 0x100, 0x484: 0x100, 0x485: 0x100, 0x486: 0x100, 0x487: 0x100, -	0x488: 0x100, 0x489: 0x100, 0x48a: 0x100, 0x48b: 0x100, 0x48c: 0x100, 0x48d: 0x100, 0x48e: 0x100, 0x48f: 0x100, -	0x490: 0xa6, 0x491: 0xa6, 0x492: 0xa6, 0x493: 0xa6, 0x494: 0xa6, 0x495: 0xa6, 0x496: 0xa6, 0x497: 0xa6, -	0x498: 0xa6, 0x499: 0x14a, 0x49a: 0x100, 0x49b: 0x100, 0x49c: 0x100, 0x49d: 0x100, 0x49e: 0x100, 0x49f: 0x100, -	0x4a0: 0x100, 0x4a1: 0x100, 0x4a2: 0x100, 0x4a3: 0x100, 0x4a4: 0x100, 0x4a5: 0x100, 0x4a6: 0x100, 0x4a7: 0x100, -	0x4a8: 0x100, 0x4a9: 0x100, 0x4aa: 0x100, 0x4ab: 0x100, 0x4ac: 0x100, 0x4ad: 0x100, 0x4ae: 0x100, 0x4af: 0x100, -	0x4b0: 0x100, 0x4b1: 0x100, 0x4b2: 0x100, 0x4b3: 0x100, 0x4b4: 0x100, 0x4b5: 0x100, 0x4b6: 0x100, 0x4b7: 0x100, -	0x4b8: 0x100, 0x4b9: 0x100, 0x4ba: 0x100, 0x4bb: 0x100, 0x4bc: 0x100, 0x4bd: 0x100, 0x4be: 0x100, 0x4bf: 0x100, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x100, 0x4c1: 0x100, 0x4c2: 0x100, 0x4c3: 0x100, 0x4c4: 0x100, 0x4c5: 0x100, 0x4c6: 0x100, 0x4c7: 0x100, -	0x4c8: 0x100, 0x4c9: 0x100, 0x4ca: 0x100, 0x4cb: 0x100, 0x4cc: 0x100, 0x4cd: 0x100, 0x4ce: 0x100, 0x4cf: 0x100, -	0x4d0: 0x100, 0x4d1: 0x100, 0x4d2: 0x100, 0x4d3: 0x100, 0x4d4: 0x100, 0x4d5: 0x100, 0x4d6: 0x100, 0x4d7: 0x100, -	0x4d8: 0x100, 0x4d9: 0x100, 0x4da: 0x100, 0x4db: 0x100, 0x4dc: 0x100, 0x4dd: 0x100, 0x4de: 0x100, 0x4df: 0x100, -	0x4e0: 0xa6, 0x4e1: 0xa6, 0x4e2: 0xa6, 0x4e3: 0xa6, 0x4e4: 0xa6, 0x4e5: 0xa6, 0x4e6: 0xa6, 0x4e7: 0xa6, -	0x4e8: 0x154, 0x4e9: 0x168, 0x4ea: 0x169, 0x4eb: 0x16a, 0x4ec: 0x16b, 0x4ed: 0x16c, 0x4ee: 0x16d, 0x4ef: 0x100, -	0x4f0: 0x100, 0x4f1: 0x100, 0x4f2: 0x100, 0x4f3: 0x100, 0x4f4: 0x100, 0x4f5: 0x100, 0x4f6: 0x100, 0x4f7: 0x100, -	0x4f8: 0x100, 0x4f9: 0x16e, 0x4fa: 0x16f, 0x4fb: 0x100, 0x4fc: 0xa6, 0x4fd: 0x170, 0x4fe: 0x171, 0x4ff: 0x172, -	// Block 0x14, offset 0x500 -	0x500: 0xa6, 0x501: 0xa6, 0x502: 0xa6, 0x503: 0xa6, 0x504: 0xa6, 0x505: 0xa6, 0x506: 0xa6, 0x507: 0xa6, -	0x508: 0xa6, 0x509: 0xa6, 0x50a: 0xa6, 0x50b: 0xa6, 0x50c: 0xa6, 0x50d: 0xa6, 0x50e: 0xa6, 0x50f: 0xa6, -	0x510: 0xa6, 0x511: 0xa6, 0x512: 0xa6, 0x513: 0xa6, 0x514: 0xa6, 0x515: 0xa6, 0x516: 0xa6, 0x517: 0xa6, -	0x518: 0xa6, 0x519: 0xa6, 0x51a: 0xa6, 0x51b: 0xa6, 0x51c: 0xa6, 0x51d: 0xa6, 0x51e: 0xa6, 0x51f: 0x173, -	0x520: 0xa6, 0x521: 0xa6, 0x522: 0xa6, 0x523: 0xa6, 0x524: 0xa6, 0x525: 0xa6, 0x526: 0xa6, 0x527: 0xa6, -	0x528: 0xa6, 0x529: 0xa6, 0x52a: 0xa6, 0x52b: 0xa6, 0x52c: 0xa6, 0x52d: 0xa6, 0x52e: 0xa6, 0x52f: 0xa6, -	0x530: 0xa6, 0x531: 0xa6, 0x532: 0xa6, 0x533: 0x174, 0x534: 0x175, 0x535: 0x100, 0x536: 0x100, 0x537: 0x100, -	0x538: 0x100, 0x539: 0x100, 0x53a: 0x100, 0x53b: 0x100, 0x53c: 0x100, 0x53d: 0x100, 0x53e: 0x100, 0x53f: 0x100, -	// Block 0x15, offset 0x540 -	0x540: 0x100, 0x541: 0x100, 0x542: 0x100, 0x543: 0x100, 0x544: 0x100, 0x545: 0x100, 0x546: 0x100, 0x547: 0x100, -	0x548: 0x100, 0x549: 0x100, 0x54a: 0x100, 0x54b: 0x100, 0x54c: 0x100, 0x54d: 0x100, 0x54e: 0x100, 0x54f: 0x100, -	0x550: 0x100, 0x551: 0x100, 0x552: 0x100, 0x553: 0x100, 0x554: 0x100, 0x555: 0x100, 0x556: 0x100, 0x557: 0x100, -	0x558: 0x100, 0x559: 0x100, 0x55a: 0x100, 0x55b: 0x100, 0x55c: 0x100, 0x55d: 0x100, 0x55e: 0x100, 0x55f: 0x100, -	0x560: 0x100, 0x561: 0x100, 0x562: 0x100, 0x563: 0x100, 0x564: 0x100, 0x565: 0x100, 0x566: 0x100, 0x567: 0x100, -	0x568: 0x100, 0x569: 0x100, 0x56a: 0x100, 0x56b: 0x100, 0x56c: 0x100, 0x56d: 0x100, 0x56e: 0x100, 0x56f: 0x100, -	0x570: 0x100, 0x571: 0x100, 0x572: 0x100, 0x573: 0x100, 0x574: 0x100, 0x575: 0x100, 0x576: 0x100, 0x577: 0x100, -	0x578: 0x100, 0x579: 0x100, 0x57a: 0x100, 0x57b: 0x100, 0x57c: 0x100, 0x57d: 0x100, 0x57e: 0x100, 0x57f: 0x176, -	// Block 0x16, offset 0x580 -	0x580: 0xa6, 0x581: 0xa6, 0x582: 0xa6, 0x583: 0xa6, 0x584: 0x177, 0x585: 0x178, 0x586: 0xa6, 0x587: 0xa6, -	0x588: 0xa6, 0x589: 0xa6, 0x58a: 0xa6, 0x58b: 0x179, 0x58c: 0x100, 0x58d: 0x100, 0x58e: 0x100, 0x58f: 0x100, -	0x590: 0x100, 0x591: 0x100, 0x592: 0x100, 0x593: 0x100, 0x594: 0x100, 0x595: 0x100, 0x596: 0x100, 0x597: 0x100, -	0x598: 0x100, 0x599: 0x100, 0x59a: 0x100, 0x59b: 0x100, 0x59c: 0x100, 0x59d: 0x100, 0x59e: 0x100, 0x59f: 0x100, -	0x5a0: 0x100, 0x5a1: 0x100, 0x5a2: 0x100, 0x5a3: 0x100, 0x5a4: 0x100, 0x5a5: 0x100, 0x5a6: 0x100, 0x5a7: 0x100, -	0x5a8: 0x100, 0x5a9: 0x100, 0x5aa: 0x100, 0x5ab: 0x100, 0x5ac: 0x100, 0x5ad: 0x100, 0x5ae: 0x100, 0x5af: 0x100, -	0x5b0: 0xa6, 0x5b1: 0x17a, 0x5b2: 0x17b, 0x5b3: 0x100, 0x5b4: 0x100, 0x5b5: 0x100, 0x5b6: 0x100, 0x5b7: 0x100, -	0x5b8: 0x100, 0x5b9: 0x100, 0x5ba: 0x100, 0x5bb: 0x100, 0x5bc: 0x100, 0x5bd: 0x100, 0x5be: 0x100, 0x5bf: 0x100, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x100, 0x5c1: 0x100, 0x5c2: 0x100, 0x5c3: 0x100, 0x5c4: 0x100, 0x5c5: 0x100, 0x5c6: 0x100, 0x5c7: 0x100, -	0x5c8: 0x100, 0x5c9: 0x100, 0x5ca: 0x100, 0x5cb: 0x100, 0x5cc: 0x100, 0x5cd: 0x100, 0x5ce: 0x100, 0x5cf: 0x100, -	0x5d0: 0x100, 0x5d1: 0x100, 0x5d2: 0x100, 0x5d3: 0x100, 0x5d4: 0x100, 0x5d5: 0x100, 0x5d6: 0x100, 0x5d7: 0x100, -	0x5d8: 0x100, 0x5d9: 0x100, 0x5da: 0x100, 0x5db: 0x100, 0x5dc: 0x100, 0x5dd: 0x100, 0x5de: 0x100, 0x5df: 0x100, -	0x5e0: 0x100, 0x5e1: 0x100, 0x5e2: 0x100, 0x5e3: 0x100, 0x5e4: 0x100, 0x5e5: 0x100, 0x5e6: 0x100, 0x5e7: 0x100, -	0x5e8: 0x100, 0x5e9: 0x100, 0x5ea: 0x100, 0x5eb: 0x100, 0x5ec: 0x100, 0x5ed: 0x100, 0x5ee: 0x100, 0x5ef: 0x100, -	0x5f0: 0x100, 0x5f1: 0x100, 0x5f2: 0x100, 0x5f3: 0x100, 0x5f4: 0x100, 0x5f5: 0x100, 0x5f6: 0x100, 0x5f7: 0x100, -	0x5f8: 0x100, 0x5f9: 0x100, 0x5fa: 0x100, 0x5fb: 0x100, 0x5fc: 0x17c, 0x5fd: 0x17d, 0x5fe: 0xa2, 0x5ff: 0x17e, -	// Block 0x18, offset 0x600 -	0x600: 0xa2, 0x601: 0xa2, 0x602: 0xa2, 0x603: 0x17f, 0x604: 0x180, 0x605: 0x181, 0x606: 0x182, 0x607: 0x183, -	0x608: 0xa2, 0x609: 0x184, 0x60a: 0x100, 0x60b: 0x185, 0x60c: 0xa2, 0x60d: 0x186, 0x60e: 0x100, 0x60f: 0x100, -	0x610: 0x63, 0x611: 0x64, 0x612: 0x65, 0x613: 0x66, 0x614: 0x67, 0x615: 0x68, 0x616: 0x69, 0x617: 0x6a, -	0x618: 0x6b, 0x619: 0x6c, 0x61a: 0x6d, 0x61b: 0x6e, 0x61c: 0x6f, 0x61d: 0x70, 0x61e: 0x71, 0x61f: 0x72, -	0x620: 0xa2, 0x621: 0xa2, 0x622: 0xa2, 0x623: 0xa2, 0x624: 0xa2, 0x625: 0xa2, 0x626: 0xa2, 0x627: 0xa2, -	0x628: 0x187, 0x629: 0x188, 0x62a: 0x189, 0x62b: 0x100, 0x62c: 0x100, 0x62d: 0x100, 0x62e: 0x100, 0x62f: 0x100, -	0x630: 0x100, 0x631: 0x100, 0x632: 0x100, 0x633: 0x100, 0x634: 0x100, 0x635: 0x100, 0x636: 0x100, 0x637: 0x100, -	0x638: 0x100, 0x639: 0x100, 0x63a: 0x100, 0x63b: 0x100, 0x63c: 0x18a, 0x63d: 0x100, 0x63e: 0x100, 0x63f: 0x100, -	// Block 0x19, offset 0x640 -	0x640: 0x73, 0x641: 0x74, 0x642: 0x18b, 0x643: 0x100, 0x644: 0x18c, 0x645: 0x18d, 0x646: 0x100, 0x647: 0x100, -	0x648: 0x100, 0x649: 0x100, 0x64a: 0x18e, 0x64b: 0x18f, 0x64c: 0x100, 0x64d: 0x100, 0x64e: 0x100, 0x64f: 0x100, -	0x650: 0x100, 0x651: 0x100, 0x652: 0x100, 0x653: 0x190, 0x654: 0x100, 0x655: 0x100, 0x656: 0x100, 0x657: 0x100, -	0x658: 0x100, 0x659: 0x100, 0x65a: 0x100, 0x65b: 0x100, 0x65c: 0x100, 0x65d: 0x100, 0x65e: 0x100, 0x65f: 0x191, -	0x660: 0x127, 0x661: 0x127, 0x662: 0x127, 0x663: 0x192, 0x664: 0x75, 0x665: 0x193, 0x666: 0x100, 0x667: 0x100, -	0x668: 0x100, 0x669: 0x100, 0x66a: 0x100, 0x66b: 0x100, 0x66c: 0x100, 0x66d: 0x100, 0x66e: 0x100, 0x66f: 0x100, -	0x670: 0x100, 0x671: 0x194, 0x672: 0x195, 0x673: 0x100, 0x674: 0x196, 0x675: 0x100, 0x676: 0x100, 0x677: 0x100, -	0x678: 0x76, 0x679: 0x77, 0x67a: 0x78, 0x67b: 0x197, 0x67c: 0x100, 0x67d: 0x100, 0x67e: 0x100, 0x67f: 0x100, -	// Block 0x1a, offset 0x680 -	0x680: 0x198, 0x681: 0xa2, 0x682: 0x199, 0x683: 0x19a, 0x684: 0x79, 0x685: 0x7a, 0x686: 0x19b, 0x687: 0x19c, -	0x688: 0x7b, 0x689: 0x19d, 0x68a: 0x100, 0x68b: 0x100, 0x68c: 0xa2, 0x68d: 0xa2, 0x68e: 0xa2, 0x68f: 0xa2, -	0x690: 0xa2, 0x691: 0xa2, 0x692: 0xa2, 0x693: 0xa2, 0x694: 0xa2, 0x695: 0xa2, 0x696: 0xa2, 0x697: 0xa2, -	0x698: 0xa2, 0x699: 0xa2, 0x69a: 0xa2, 0x69b: 0x19e, 0x69c: 0xa2, 0x69d: 0x19f, 0x69e: 0xa2, 0x69f: 0x1a0, -	0x6a0: 0x1a1, 0x6a1: 0x1a2, 0x6a2: 0x1a3, 0x6a3: 0x100, 0x6a4: 0xa2, 0x6a5: 0xa2, 0x6a6: 0xa2, 0x6a7: 0xa2, -	0x6a8: 0xa2, 0x6a9: 0x1a4, 0x6aa: 0x1a5, 0x6ab: 0x1a6, 0x6ac: 0xa2, 0x6ad: 0xa2, 0x6ae: 0x1a7, 0x6af: 0x1a8, -	0x6b0: 0x100, 0x6b1: 0x100, 0x6b2: 0x100, 0x6b3: 0x100, 0x6b4: 0x100, 0x6b5: 0x100, 0x6b6: 0x100, 0x6b7: 0x100, -	0x6b8: 0x100, 0x6b9: 0x100, 0x6ba: 0x100, 0x6bb: 0x100, 0x6bc: 0x100, 0x6bd: 0x100, 0x6be: 0x100, 0x6bf: 0x100, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0xa6, 0x6c1: 0xa6, 0x6c2: 0xa6, 0x6c3: 0xa6, 0x6c4: 0xa6, 0x6c5: 0xa6, 0x6c6: 0xa6, 0x6c7: 0xa6, -	0x6c8: 0xa6, 0x6c9: 0xa6, 0x6ca: 0xa6, 0x6cb: 0xa6, 0x6cc: 0xa6, 0x6cd: 0xa6, 0x6ce: 0xa6, 0x6cf: 0xa6, -	0x6d0: 0xa6, 0x6d1: 0xa6, 0x6d2: 0xa6, 0x6d3: 0xa6, 0x6d4: 0xa6, 0x6d5: 0xa6, 0x6d6: 0xa6, 0x6d7: 0xa6, -	0x6d8: 0xa6, 0x6d9: 0xa6, 0x6da: 0xa6, 0x6db: 0x1a9, 0x6dc: 0xa6, 0x6dd: 0xa6, 0x6de: 0xa6, 0x6df: 0xa6, -	0x6e0: 0xa6, 0x6e1: 0xa6, 0x6e2: 0xa6, 0x6e3: 0xa6, 0x6e4: 0xa6, 0x6e5: 0xa6, 0x6e6: 0xa6, 0x6e7: 0xa6, -	0x6e8: 0xa6, 0x6e9: 0xa6, 0x6ea: 0xa6, 0x6eb: 0xa6, 0x6ec: 0xa6, 0x6ed: 0xa6, 0x6ee: 0xa6, 0x6ef: 0xa6, -	0x6f0: 0xa6, 0x6f1: 0xa6, 0x6f2: 0xa6, 0x6f3: 0xa6, 0x6f4: 0xa6, 0x6f5: 0xa6, 0x6f6: 0xa6, 0x6f7: 0xa6, -	0x6f8: 0xa6, 0x6f9: 0xa6, 0x6fa: 0xa6, 0x6fb: 0xa6, 0x6fc: 0xa6, 0x6fd: 0xa6, 0x6fe: 0xa6, 0x6ff: 0xa6, -	// Block 0x1c, offset 0x700 -	0x700: 0xa6, 0x701: 0xa6, 0x702: 0xa6, 0x703: 0xa6, 0x704: 0xa6, 0x705: 0xa6, 0x706: 0xa6, 0x707: 0xa6, -	0x708: 0xa6, 0x709: 0xa6, 0x70a: 0xa6, 0x70b: 0xa6, 0x70c: 0xa6, 0x70d: 0xa6, 0x70e: 0xa6, 0x70f: 0xa6, -	0x710: 0xa6, 0x711: 0xa6, 0x712: 0xa6, 0x713: 0xa6, 0x714: 0xa6, 0x715: 0xa6, 0x716: 0xa6, 0x717: 0xa6, -	0x718: 0xa6, 0x719: 0xa6, 0x71a: 0xa6, 0x71b: 0xa6, 0x71c: 0x1aa, 0x71d: 0xa6, 0x71e: 0xa6, 0x71f: 0xa6, -	0x720: 0x1ab, 0x721: 0xa6, 0x722: 0xa6, 0x723: 0xa6, 0x724: 0xa6, 0x725: 0xa6, 0x726: 0xa6, 0x727: 0xa6, -	0x728: 0xa6, 0x729: 0xa6, 0x72a: 0xa6, 0x72b: 0xa6, 0x72c: 0xa6, 0x72d: 0xa6, 0x72e: 0xa6, 0x72f: 0xa6, -	0x730: 0xa6, 0x731: 0xa6, 0x732: 0xa6, 0x733: 0xa6, 0x734: 0xa6, 0x735: 0xa6, 0x736: 0xa6, 0x737: 0xa6, -	0x738: 0xa6, 0x739: 0xa6, 0x73a: 0xa6, 0x73b: 0xa6, 0x73c: 0xa6, 0x73d: 0xa6, 0x73e: 0xa6, 0x73f: 0xa6, -	// Block 0x1d, offset 0x740 -	0x740: 0xa6, 0x741: 0xa6, 0x742: 0xa6, 0x743: 0xa6, 0x744: 0xa6, 0x745: 0xa6, 0x746: 0xa6, 0x747: 0xa6, -	0x748: 0xa6, 0x749: 0xa6, 0x74a: 0xa6, 0x74b: 0xa6, 0x74c: 0xa6, 0x74d: 0xa6, 0x74e: 0xa6, 0x74f: 0xa6, -	0x750: 0xa6, 0x751: 0xa6, 0x752: 0xa6, 0x753: 0xa6, 0x754: 0xa6, 0x755: 0xa6, 0x756: 0xa6, 0x757: 0xa6, -	0x758: 0xa6, 0x759: 0xa6, 0x75a: 0xa6, 0x75b: 0xa6, 0x75c: 0xa6, 0x75d: 0xa6, 0x75e: 0xa6, 0x75f: 0xa6, -	0x760: 0xa6, 0x761: 0xa6, 0x762: 0xa6, 0x763: 0xa6, 0x764: 0xa6, 0x765: 0xa6, 0x766: 0xa6, 0x767: 0xa6, -	0x768: 0xa6, 0x769: 0xa6, 0x76a: 0xa6, 0x76b: 0xa6, 0x76c: 0xa6, 0x76d: 0xa6, 0x76e: 0xa6, 0x76f: 0xa6, -	0x770: 0xa6, 0x771: 0xa6, 0x772: 0xa6, 0x773: 0xa6, 0x774: 0xa6, 0x775: 0xa6, 0x776: 0xa6, 0x777: 0xa6, -	0x778: 0xa6, 0x779: 0xa6, 0x77a: 0x1ac, 0x77b: 0xa6, 0x77c: 0xa6, 0x77d: 0xa6, 0x77e: 0xa6, 0x77f: 0xa6, -	// Block 0x1e, offset 0x780 -	0x780: 0xa6, 0x781: 0xa6, 0x782: 0xa6, 0x783: 0xa6, 0x784: 0xa6, 0x785: 0xa6, 0x786: 0xa6, 0x787: 0xa6, -	0x788: 0xa6, 0x789: 0xa6, 0x78a: 0xa6, 0x78b: 0xa6, 0x78c: 0xa6, 0x78d: 0xa6, 0x78e: 0xa6, 0x78f: 0xa6, -	0x790: 0xa6, 0x791: 0xa6, 0x792: 0xa6, 0x793: 0xa6, 0x794: 0xa6, 0x795: 0xa6, 0x796: 0xa6, 0x797: 0xa6, -	0x798: 0xa6, 0x799: 0xa6, 0x79a: 0xa6, 0x79b: 0xa6, 0x79c: 0xa6, 0x79d: 0xa6, 0x79e: 0xa6, 0x79f: 0xa6, -	0x7a0: 0xa6, 0x7a1: 0xa6, 0x7a2: 0xa6, 0x7a3: 0xa6, 0x7a4: 0xa6, 0x7a5: 0xa6, 0x7a6: 0xa6, 0x7a7: 0xa6, -	0x7a8: 0xa6, 0x7a9: 0xa6, 0x7aa: 0xa6, 0x7ab: 0xa6, 0x7ac: 0xa6, 0x7ad: 0xa6, 0x7ae: 0xa6, 0x7af: 0x1ad, -	0x7b0: 0x100, 0x7b1: 0x100, 0x7b2: 0x100, 0x7b3: 0x100, 0x7b4: 0x100, 0x7b5: 0x100, 0x7b6: 0x100, 0x7b7: 0x100, -	0x7b8: 0x100, 0x7b9: 0x100, 0x7ba: 0x100, 0x7bb: 0x100, 0x7bc: 0x100, 0x7bd: 0x100, 0x7be: 0x100, 0x7bf: 0x100, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x100, 0x7c1: 0x100, 0x7c2: 0x100, 0x7c3: 0x100, 0x7c4: 0x100, 0x7c5: 0x100, 0x7c6: 0x100, 0x7c7: 0x100, -	0x7c8: 0x100, 0x7c9: 0x100, 0x7ca: 0x100, 0x7cb: 0x100, 0x7cc: 0x100, 0x7cd: 0x100, 0x7ce: 0x100, 0x7cf: 0x100, -	0x7d0: 0x100, 0x7d1: 0x100, 0x7d2: 0x100, 0x7d3: 0x100, 0x7d4: 0x100, 0x7d5: 0x100, 0x7d6: 0x100, 0x7d7: 0x100, -	0x7d8: 0x100, 0x7d9: 0x100, 0x7da: 0x100, 0x7db: 0x100, 0x7dc: 0x100, 0x7dd: 0x100, 0x7de: 0x100, 0x7df: 0x100, -	0x7e0: 0x7c, 0x7e1: 0x7d, 0x7e2: 0x7e, 0x7e3: 0x7f, 0x7e4: 0x80, 0x7e5: 0x81, 0x7e6: 0x82, 0x7e7: 0x83, -	0x7e8: 0x84, 0x7e9: 0x100, 0x7ea: 0x100, 0x7eb: 0x100, 0x7ec: 0x100, 0x7ed: 0x100, 0x7ee: 0x100, 0x7ef: 0x100, -	0x7f0: 0x100, 0x7f1: 0x100, 0x7f2: 0x100, 0x7f3: 0x100, 0x7f4: 0x100, 0x7f5: 0x100, 0x7f6: 0x100, 0x7f7: 0x100, -	0x7f8: 0x100, 0x7f9: 0x100, 0x7fa: 0x100, 0x7fb: 0x100, 0x7fc: 0x100, 0x7fd: 0x100, 0x7fe: 0x100, 0x7ff: 0x100, -	// Block 0x20, offset 0x800 -	0x800: 0xa6, 0x801: 0xa6, 0x802: 0xa6, 0x803: 0xa6, 0x804: 0xa6, 0x805: 0xa6, 0x806: 0xa6, 0x807: 0xa6, -	0x808: 0xa6, 0x809: 0xa6, 0x80a: 0xa6, 0x80b: 0xa6, 0x80c: 0xa6, 0x80d: 0x1ae, 0x80e: 0xa6, 0x80f: 0xa6, -	0x810: 0xa6, 0x811: 0xa6, 0x812: 0xa6, 0x813: 0xa6, 0x814: 0xa6, 0x815: 0xa6, 0x816: 0xa6, 0x817: 0xa6, -	0x818: 0xa6, 0x819: 0xa6, 0x81a: 0xa6, 0x81b: 0xa6, 0x81c: 0xa6, 0x81d: 0xa6, 0x81e: 0xa6, 0x81f: 0xa6, -	0x820: 0xa6, 0x821: 0xa6, 0x822: 0xa6, 0x823: 0xa6, 0x824: 0xa6, 0x825: 0xa6, 0x826: 0xa6, 0x827: 0xa6, -	0x828: 0xa6, 0x829: 0xa6, 0x82a: 0xa6, 0x82b: 0xa6, 0x82c: 0xa6, 0x82d: 0xa6, 0x82e: 0xa6, 0x82f: 0xa6, -	0x830: 0xa6, 0x831: 0xa6, 0x832: 0xa6, 0x833: 0xa6, 0x834: 0xa6, 0x835: 0xa6, 0x836: 0xa6, 0x837: 0xa6, -	0x838: 0xa6, 0x839: 0xa6, 0x83a: 0xa6, 0x83b: 0xa6, 0x83c: 0xa6, 0x83d: 0xa6, 0x83e: 0xa6, 0x83f: 0xa6, -	// Block 0x21, offset 0x840 -	0x840: 0xa6, 0x841: 0xa6, 0x842: 0xa6, 0x843: 0xa6, 0x844: 0xa6, 0x845: 0xa6, 0x846: 0xa6, 0x847: 0xa6, -	0x848: 0xa6, 0x849: 0xa6, 0x84a: 0xa6, 0x84b: 0xa6, 0x84c: 0xa6, 0x84d: 0xa6, 0x84e: 0x1af, 0x84f: 0x100, -	0x850: 0x100, 0x851: 0x100, 0x852: 0x100, 0x853: 0x100, 0x854: 0x100, 0x855: 0x100, 0x856: 0x100, 0x857: 0x100, -	0x858: 0x100, 0x859: 0x100, 0x85a: 0x100, 0x85b: 0x100, 0x85c: 0x100, 0x85d: 0x100, 0x85e: 0x100, 0x85f: 0x100, -	0x860: 0x100, 0x861: 0x100, 0x862: 0x100, 0x863: 0x100, 0x864: 0x100, 0x865: 0x100, 0x866: 0x100, 0x867: 0x100, -	0x868: 0x100, 0x869: 0x100, 0x86a: 0x100, 0x86b: 0x100, 0x86c: 0x100, 0x86d: 0x100, 0x86e: 0x100, 0x86f: 0x100, -	0x870: 0x100, 0x871: 0x100, 0x872: 0x100, 0x873: 0x100, 0x874: 0x100, 0x875: 0x100, 0x876: 0x100, 0x877: 0x100, -	0x878: 0x100, 0x879: 0x100, 0x87a: 0x100, 0x87b: 0x100, 0x87c: 0x100, 0x87d: 0x100, 0x87e: 0x100, 0x87f: 0x100, -	// Block 0x22, offset 0x880 -	0x890: 0x0c, 0x891: 0x0d, 0x892: 0x0e, 0x893: 0x0f, 0x894: 0x10, 0x895: 0x0a, 0x896: 0x11, 0x897: 0x07, -	0x898: 0x12, 0x899: 0x0a, 0x89a: 0x13, 0x89b: 0x14, 0x89c: 0x15, 0x89d: 0x16, 0x89e: 0x17, 0x89f: 0x18, -	0x8a0: 0x07, 0x8a1: 0x07, 0x8a2: 0x07, 0x8a3: 0x07, 0x8a4: 0x07, 0x8a5: 0x07, 0x8a6: 0x07, 0x8a7: 0x07, -	0x8a8: 0x07, 0x8a9: 0x07, 0x8aa: 0x19, 0x8ab: 0x1a, 0x8ac: 0x1b, 0x8ad: 0x07, 0x8ae: 0x1c, 0x8af: 0x1d, -	0x8b0: 0x07, 0x8b1: 0x1e, 0x8b2: 0x1f, 0x8b3: 0x0a, 0x8b4: 0x0a, 0x8b5: 0x0a, 0x8b6: 0x0a, 0x8b7: 0x0a, -	0x8b8: 0x0a, 0x8b9: 0x0a, 0x8ba: 0x0a, 0x8bb: 0x0a, 0x8bc: 0x0a, 0x8bd: 0x0a, 0x8be: 0x0a, 0x8bf: 0x0a, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0a, 0x8c1: 0x0a, 0x8c2: 0x0a, 0x8c3: 0x0a, 0x8c4: 0x0a, 0x8c5: 0x0a, 0x8c6: 0x0a, 0x8c7: 0x0a, -	0x8c8: 0x0a, 0x8c9: 0x0a, 0x8ca: 0x0a, 0x8cb: 0x0a, 0x8cc: 0x0a, 0x8cd: 0x0a, 0x8ce: 0x0a, 0x8cf: 0x0a, -	0x8d0: 0x0a, 0x8d1: 0x0a, 0x8d2: 0x0a, 0x8d3: 0x0a, 0x8d4: 0x0a, 0x8d5: 0x0a, 0x8d6: 0x0a, 0x8d7: 0x0a, -	0x8d8: 0x0a, 0x8d9: 0x0a, 0x8da: 0x0a, 0x8db: 0x0a, 0x8dc: 0x0a, 0x8dd: 0x0a, 0x8de: 0x0a, 0x8df: 0x0a, -	0x8e0: 0x0a, 0x8e1: 0x0a, 0x8e2: 0x0a, 0x8e3: 0x0a, 0x8e4: 0x0a, 0x8e5: 0x0a, 0x8e6: 0x0a, 0x8e7: 0x0a, -	0x8e8: 0x0a, 0x8e9: 0x0a, 0x8ea: 0x0a, 0x8eb: 0x0a, 0x8ec: 0x0a, 0x8ed: 0x0a, 0x8ee: 0x0a, 0x8ef: 0x0a, -	0x8f0: 0x0a, 0x8f1: 0x0a, 0x8f2: 0x0a, 0x8f3: 0x0a, 0x8f4: 0x0a, 0x8f5: 0x0a, 0x8f6: 0x0a, 0x8f7: 0x0a, -	0x8f8: 0x0a, 0x8f9: 0x0a, 0x8fa: 0x0a, 0x8fb: 0x0a, 0x8fc: 0x0a, 0x8fd: 0x0a, 0x8fe: 0x0a, 0x8ff: 0x0a, -	// Block 0x24, offset 0x900 -	0x900: 0x1b0, 0x901: 0x1b1, 0x902: 0x100, 0x903: 0x100, 0x904: 0x1b2, 0x905: 0x1b2, 0x906: 0x1b2, 0x907: 0x1b3, -	0x908: 0x100, 0x909: 0x100, 0x90a: 0x100, 0x90b: 0x100, 0x90c: 0x100, 0x90d: 0x100, 0x90e: 0x100, 0x90f: 0x100, -	0x910: 0x100, 0x911: 0x100, 0x912: 0x100, 0x913: 0x100, 0x914: 0x100, 0x915: 0x100, 0x916: 0x100, 0x917: 0x100, -	0x918: 0x100, 0x919: 0x100, 0x91a: 0x100, 0x91b: 0x100, 0x91c: 0x100, 0x91d: 0x100, 0x91e: 0x100, 0x91f: 0x100, -	0x920: 0x100, 0x921: 0x100, 0x922: 0x100, 0x923: 0x100, 0x924: 0x100, 0x925: 0x100, 0x926: 0x100, 0x927: 0x100, -	0x928: 0x100, 0x929: 0x100, 0x92a: 0x100, 0x92b: 0x100, 0x92c: 0x100, 0x92d: 0x100, 0x92e: 0x100, 0x92f: 0x100, -	0x930: 0x100, 0x931: 0x100, 0x932: 0x100, 0x933: 0x100, 0x934: 0x100, 0x935: 0x100, 0x936: 0x100, 0x937: 0x100, -	0x938: 0x100, 0x939: 0x100, 0x93a: 0x100, 0x93b: 0x100, 0x93c: 0x100, 0x93d: 0x100, 0x93e: 0x100, 0x93f: 0x100, -	// Block 0x25, offset 0x940 -	0x940: 0x0a, 0x941: 0x0a, 0x942: 0x0a, 0x943: 0x0a, 0x944: 0x0a, 0x945: 0x0a, 0x946: 0x0a, 0x947: 0x0a, -	0x948: 0x0a, 0x949: 0x0a, 0x94a: 0x0a, 0x94b: 0x0a, 0x94c: 0x0a, 0x94d: 0x0a, 0x94e: 0x0a, 0x94f: 0x0a, -	0x950: 0x0a, 0x951: 0x0a, 0x952: 0x0a, 0x953: 0x0a, 0x954: 0x0a, 0x955: 0x0a, 0x956: 0x0a, 0x957: 0x0a, -	0x958: 0x0a, 0x959: 0x0a, 0x95a: 0x0a, 0x95b: 0x0a, 0x95c: 0x0a, 0x95d: 0x0a, 0x95e: 0x0a, 0x95f: 0x0a, -	0x960: 0x22, 0x961: 0x0a, 0x962: 0x0a, 0x963: 0x0a, 0x964: 0x0a, 0x965: 0x0a, 0x966: 0x0a, 0x967: 0x0a, -	0x968: 0x0a, 0x969: 0x0a, 0x96a: 0x0a, 0x96b: 0x0a, 0x96c: 0x0a, 0x96d: 0x0a, 0x96e: 0x0a, 0x96f: 0x0a, -	0x970: 0x0a, 0x971: 0x0a, 0x972: 0x0a, 0x973: 0x0a, 0x974: 0x0a, 0x975: 0x0a, 0x976: 0x0a, 0x977: 0x0a, -	0x978: 0x0a, 0x979: 0x0a, 0x97a: 0x0a, 0x97b: 0x0a, 0x97c: 0x0a, 0x97d: 0x0a, 0x97e: 0x0a, 0x97f: 0x0a, -	// Block 0x26, offset 0x980 -	0x980: 0x0a, 0x981: 0x0a, 0x982: 0x0a, 0x983: 0x0a, 0x984: 0x0a, 0x985: 0x0a, 0x986: 0x0a, 0x987: 0x0a, -	0x988: 0x0a, 0x989: 0x0a, 0x98a: 0x0a, 0x98b: 0x0a, 0x98c: 0x0a, 0x98d: 0x0a, 0x98e: 0x0a, 0x98f: 0x0a, -} - -// idnaSparseOffset: 303 entries, 606 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x33, 0x3e, 0x4a, 0x4e, 0x5d, 0x62, 0x6c, 0x78, 0x7e, 0x87, 0x97, 0xa6, 0xb1, 0xbe, 0xcf, 0xd9, 0xe0, 0xed, 0xfe, 0x105, 0x110, 0x11f, 0x12d, 0x137, 0x139, 0x13e, 0x141, 0x144, 0x146, 0x152, 0x15d, 0x165, 0x16b, 0x171, 0x176, 0x17b, 0x17e, 0x182, 0x188, 0x18d, 0x198, 0x1a2, 0x1a8, 0x1b9, 0x1c4, 0x1c7, 0x1cf, 0x1d2, 0x1df, 0x1e7, 0x1eb, 0x1f2, 0x1fa, 0x20a, 0x216, 0x219, 0x223, 0x22f, 0x23b, 0x247, 0x24f, 0x254, 0x261, 0x272, 0x27d, 0x282, 0x28b, 0x293, 0x299, 0x29e, 0x2a1, 0x2a5, 0x2ab, 0x2af, 0x2b3, 0x2b7, 0x2bc, 0x2c4, 0x2cb, 0x2d6, 0x2e0, 0x2e4, 0x2e7, 0x2ed, 0x2f1, 0x2f3, 0x2f6, 0x2f8, 0x2fb, 0x305, 0x308, 0x317, 0x31b, 0x31f, 0x321, 0x32a, 0x32e, 0x333, 0x338, 0x33e, 0x34e, 0x354, 0x358, 0x367, 0x36c, 0x374, 0x37e, 0x389, 0x391, 0x3a2, 0x3ab, 0x3bb, 0x3c8, 0x3d4, 0x3d9, 0x3e6, 0x3ea, 0x3ef, 0x3f1, 0x3f3, 0x3f7, 0x3f9, 0x3fd, 0x406, 0x40c, 0x410, 0x420, 0x42a, 0x42f, 0x432, 0x438, 0x43f, 0x444, 0x448, 0x44e, 0x453, 0x45c, 0x461, 0x467, 0x46e, 0x475, 0x47c, 0x480, 0x483, 0x488, 0x494, 0x49a, 0x49f, 0x4a6, 0x4ae, 0x4b3, 0x4b7, 0x4c7, 0x4ce, 0x4d2, 0x4d6, 0x4dd, 0x4df, 0x4e2, 0x4e5, 0x4e9, 0x4f2, 0x4f6, 0x4fe, 0x501, 0x509, 0x514, 0x523, 0x52f, 0x535, 0x542, 0x54e, 0x556, 0x55f, 0x56a, 0x571, 0x580, 0x58d, 0x591, 0x59e, 0x5a7, 0x5ab, 0x5ba, 0x5c2, 0x5cd, 0x5d6, 0x5dc, 0x5e4, 0x5ed, 0x5f9, 0x5fc, 0x608, 0x60b, 0x614, 0x617, 0x61c, 0x625, 0x62a, 0x637, 0x642, 0x64b, 0x656, 0x659, 0x65c, 0x666, 0x66f, 0x67b, 0x688, 0x695, 0x6a3, 0x6aa, 0x6b5, 0x6bc, 0x6c0, 0x6c4, 0x6c7, 0x6cc, 0x6cf, 0x6d2, 0x6d6, 0x6d9, 0x6de, 0x6e5, 0x6e8, 0x6f0, 0x6f4, 0x6ff, 0x702, 0x705, 0x708, 0x70e, 0x714, 0x71d, 0x720, 0x723, 0x726, 0x72e, 0x733, 0x73c, 0x73f, 0x744, 0x74e, 0x752, 0x756, 0x759, 0x75c, 0x760, 0x76f, 0x77b, 0x77f, 0x784, 0x789, 0x78e, 0x792, 0x797, 0x7a0, 0x7a5, 0x7a9, 0x7af, 0x7b5, 0x7ba, 0x7c0, 0x7c6, 0x7d0, 0x7d6, 0x7df, 0x7e2, 0x7e5, 0x7e9, 0x7ed, 0x7f1, 0x7f7, 0x7fd, 0x802, 0x805, 0x815, 0x81c, 0x820, 0x827, 0x82b, 0x831, 0x838, 0x83f, 0x845, 0x84e, 0x852, 0x860, 0x863, 0x866, 0x86a, 0x86e, 0x871, 0x875, 0x878, 0x87d, 0x87f, 0x881} - -// idnaSparseValues: 2180 entries, 8720 bytes -var idnaSparseValues = [2180]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x00a9, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x00b1, lo: 0xb2, hi: 0xb2}, -	{value: 0x00b9, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x00c1, lo: 0xb7, hi: 0xb7}, -	{value: 0x00c9, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x06}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x6, offset 0x33 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0131, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3e -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xae}, -	{value: 0x0808, lo: 0xaf, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x62 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbf}, -	// Block 0xc, offset 0x6c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x78 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0a08, lo: 0x80, hi: 0x88}, -	{value: 0x0808, lo: 0x89, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0xe, offset 0x7e -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0xf, offset 0x87 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x10, offset 0x97 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x11, offset 0xa6 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x3b08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x12, offset 0xb1 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbe -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x14, offset 0xcf -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x01f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x15, offset 0xd9 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x16, offset 0xe0 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0201, lo: 0x9c, hi: 0x9c}, -	{value: 0x0209, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x17, offset 0xed -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x18, offset 0xfe -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x19, offset 0x105 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1a, offset 0x110 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1b, offset 0x11f -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1c, offset 0x12d -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1d, offset 0x137 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x1e, offset 0x139 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x1f, offset 0x13e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x20, offset 0x141 -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x21, offset 0x144 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x22, offset 0x146 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x23, offset 0x152 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x24, offset 0x15d -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x25, offset 0x165 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x26, offset 0x16b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x27, offset 0x171 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x28, offset 0x176 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x29, offset 0x17b -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2a, offset 0x17e -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2b, offset 0x182 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2c, offset 0x188 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2d, offset 0x18d -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x3808, lo: 0x95, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3808, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x2e, offset 0x198 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x2f, offset 0x1a2 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x30, offset 0x1a8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x31, offset 0x1b9 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x33c0, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x32, offset 0x1c4 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x33, offset 0x1c7 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x34, offset 0x1cf -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x35, offset 0x1d2 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x36, offset 0x1df -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x37, offset 0x1e7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x38, offset 0x1eb -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x39, offset 0x1f2 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3a, offset 0x1fa -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3b, offset 0x20a -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3c, offset 0x216 -	{value: 0x0000, lo: 0x02}, -	{value: 0x3308, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0xbf}, -	// Block 0x3d, offset 0x219 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x3e, offset 0x223 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x3f, offset 0x22f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x40, offset 0x23b -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x41, offset 0x247 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x42, offset 0x24f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x43, offset 0x254 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x02a9, lo: 0x80, hi: 0x80}, -	{value: 0x02b1, lo: 0x81, hi: 0x81}, -	{value: 0x02b9, lo: 0x82, hi: 0x82}, -	{value: 0x02c1, lo: 0x83, hi: 0x83}, -	{value: 0x02c9, lo: 0x84, hi: 0x85}, -	{value: 0x02d1, lo: 0x86, hi: 0x86}, -	{value: 0x02d9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x059d, lo: 0x90, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x059d, lo: 0xbd, hi: 0xbf}, -	// Block 0x44, offset 0x261 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x45, offset 0x272 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x46, offset 0x27d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x47, offset 0x282 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x0851, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x48, offset 0x28b -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0859, lo: 0xac, hi: 0xac}, -	{value: 0x0861, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x0869, lo: 0xaf, hi: 0xaf}, -	{value: 0x0871, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x49, offset 0x293 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4a, offset 0x299 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09dd, lo: 0xa9, hi: 0xa9}, -	{value: 0x09fd, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4b, offset 0x29e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x4c, offset 0x2a1 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0929, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x4d, offset 0x2a5 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e7e, lo: 0xb4, hi: 0xb4}, -	{value: 0x0932, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e9e, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x4e, offset 0x2ab -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x0939, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x4f, offset 0x2af -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x50, offset 0x2b3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0xbf}, -	// Block 0x51, offset 0x2b7 -	{value: 0x0000, lo: 0x04}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ebd, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x52, offset 0x2bc -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x53, offset 0x2c4 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x54, offset 0x2cb -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x55, offset 0x2d6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x56, offset 0x2e0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x57, offset 0x2e4 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x58, offset 0x2e7 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0ef5, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x59, offset 0x2ed -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0f15, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5a, offset 0x2f1 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f35, lo: 0x80, hi: 0xbf}, -	// Block 0x5b, offset 0x2f3 -	{value: 0x0020, lo: 0x02}, -	{value: 0x1735, lo: 0x80, hi: 0x8f}, -	{value: 0x1915, lo: 0x90, hi: 0xbf}, -	// Block 0x5c, offset 0x2f6 -	{value: 0x0020, lo: 0x01}, -	{value: 0x1f15, lo: 0x80, hi: 0xbf}, -	// Block 0x5d, offset 0x2f8 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x5e, offset 0x2fb -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x096a, lo: 0x9b, hi: 0x9b}, -	{value: 0x0972, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x0979, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x5f, offset 0x305 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x0981, lo: 0xbf, hi: 0xbf}, -	// Block 0x60, offset 0x308 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb0}, -	{value: 0x2a35, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a55, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a75, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a95, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a75, lo: 0xb5, hi: 0xb5}, -	{value: 0x2ab5, lo: 0xb6, hi: 0xb6}, -	{value: 0x2ad5, lo: 0xb7, hi: 0xb7}, -	{value: 0x2af5, lo: 0xb8, hi: 0xb9}, -	{value: 0x2b15, lo: 0xba, hi: 0xbb}, -	{value: 0x2b35, lo: 0xbc, hi: 0xbd}, -	{value: 0x2b15, lo: 0xbe, hi: 0xbf}, -	// Block 0x61, offset 0x317 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x62, offset 0x31b -	{value: 0x0008, lo: 0x03}, -	{value: 0x098a, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0a82, lo: 0xa0, hi: 0xbf}, -	// Block 0x63, offset 0x31f -	{value: 0x0008, lo: 0x01}, -	{value: 0x0d19, lo: 0x80, hi: 0xbf}, -	// Block 0x64, offset 0x321 -	{value: 0x0008, lo: 0x08}, -	{value: 0x0f19, lo: 0x80, hi: 0xb0}, -	{value: 0x4045, lo: 0xb1, hi: 0xb1}, -	{value: 0x10a1, lo: 0xb2, hi: 0xb3}, -	{value: 0x4065, lo: 0xb4, hi: 0xb4}, -	{value: 0x10b1, lo: 0xb5, hi: 0xb7}, -	{value: 0x4085, lo: 0xb8, hi: 0xb8}, -	{value: 0x4085, lo: 0xb9, hi: 0xb9}, -	{value: 0x10c9, lo: 0xba, hi: 0xbf}, -	// Block 0x65, offset 0x32a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x66, offset 0x32e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x67, offset 0x333 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x68, offset 0x338 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x69, offset 0x33e -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x3b08, lo: 0xac, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6a, offset 0x34e -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6b, offset 0x354 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x6c, offset 0x358 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x6d, offset 0x367 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x6e, offset 0x36c -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x6f, offset 0x374 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x70, offset 0x37e -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x71, offset 0x389 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x72, offset 0x391 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x73, offset 0x3a2 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x74, offset 0x3ab -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x75, offset 0x3bb -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x76, offset 0x3c8 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x449d, lo: 0x9c, hi: 0x9c}, -	{value: 0x44b5, lo: 0x9d, hi: 0x9d}, -	{value: 0x0941, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa8}, -	{value: 0x13f9, lo: 0xa9, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x44cd, lo: 0xb0, hi: 0xbf}, -	// Block 0x77, offset 0x3d4 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44ed, lo: 0x80, hi: 0x8f}, -	{value: 0x450d, lo: 0x90, hi: 0x9f}, -	{value: 0x452d, lo: 0xa0, hi: 0xaf}, -	{value: 0x450d, lo: 0xb0, hi: 0xbf}, -	// Block 0x78, offset 0x3d9 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x79, offset 0x3e6 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7a, offset 0x3ea -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x7b, offset 0x3ef -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x7c, offset 0x3f1 -	{value: 0x0020, lo: 0x01}, -	{value: 0x454d, lo: 0x80, hi: 0xbf}, -	// Block 0x7d, offset 0x3f3 -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d4d, lo: 0x80, hi: 0x94}, -	{value: 0x4b0d, lo: 0x95, hi: 0x95}, -	{value: 0x4fed, lo: 0x96, hi: 0xbf}, -	// Block 0x7e, offset 0x3f7 -	{value: 0x0020, lo: 0x01}, -	{value: 0x552d, lo: 0x80, hi: 0xbf}, -	// Block 0x7f, offset 0x3f9 -	{value: 0x0020, lo: 0x03}, -	{value: 0x5d2d, lo: 0x80, hi: 0x84}, -	{value: 0x568d, lo: 0x85, hi: 0x85}, -	{value: 0x5dcd, lo: 0x86, hi: 0xbf}, -	// Block 0x80, offset 0x3fd -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b8d, lo: 0x80, hi: 0x8f}, -	{value: 0x6d4d, lo: 0x90, hi: 0x90}, -	{value: 0x6d8d, lo: 0x91, hi: 0xab}, -	{value: 0x1401, lo: 0xac, hi: 0xac}, -	{value: 0x70ed, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x710d, lo: 0xb0, hi: 0xbf}, -	// Block 0x81, offset 0x406 -	{value: 0x0020, lo: 0x05}, -	{value: 0x730d, lo: 0x80, hi: 0xad}, -	{value: 0x656d, lo: 0xae, hi: 0xae}, -	{value: 0x78cd, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f8d, lo: 0xb6, hi: 0xb6}, -	{value: 0x79ad, lo: 0xb7, hi: 0xbf}, -	// Block 0x82, offset 0x40c -	{value: 0x0008, lo: 0x03}, -	{value: 0x1751, lo: 0x80, hi: 0x82}, -	{value: 0x1741, lo: 0x83, hi: 0x83}, -	{value: 0x1769, lo: 0x84, hi: 0xbf}, -	// Block 0x83, offset 0x410 -	{value: 0x0008, lo: 0x0f}, -	{value: 0x1d81, lo: 0x80, hi: 0x83}, -	{value: 0x1d99, lo: 0x84, hi: 0x85}, -	{value: 0x1da1, lo: 0x86, hi: 0x87}, -	{value: 0x1da9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x1de9, lo: 0x92, hi: 0x97}, -	{value: 0x1e11, lo: 0x98, hi: 0x9c}, -	{value: 0x1e31, lo: 0x9d, hi: 0xb3}, -	{value: 0x1d71, lo: 0xb4, hi: 0xb4}, -	{value: 0x1d81, lo: 0xb5, hi: 0xb5}, -	{value: 0x1ee9, lo: 0xb6, hi: 0xbb}, -	{value: 0x1f09, lo: 0xbc, hi: 0xbc}, -	{value: 0x1ef9, lo: 0xbd, hi: 0xbd}, -	{value: 0x1f19, lo: 0xbe, hi: 0xbf}, -	// Block 0x84, offset 0x420 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x85, offset 0x42a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x86, offset 0x42f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x87, offset 0x432 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x88, offset 0x438 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x89, offset 0x43f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8a, offset 0x444 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8b, offset 0x448 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x8c, offset 0x44e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xbf}, -	// Block 0x8d, offset 0x453 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x8e, offset 0x45c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8f, offset 0x461 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x90, offset 0x467 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8b0d, lo: 0x98, hi: 0x9f}, -	{value: 0x8b25, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x91, offset 0x46e -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8b25, lo: 0xb0, hi: 0xb7}, -	{value: 0x8b0d, lo: 0xb8, hi: 0xbf}, -	// Block 0x92, offset 0x475 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x93, offset 0x47c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x94, offset 0x480 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x95, offset 0x483 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x96, offset 0x488 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x97, offset 0x494 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x98, offset 0x49a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x99, offset 0x49f -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9a, offset 0x4a6 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0x9b, offset 0x4ae -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0x9c, offset 0x4b3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0x9d, offset 0x4b7 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x9e, offset 0x4c7 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0x9f, offset 0x4ce -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa0, offset 0x4d2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa1, offset 0x4d6 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa2, offset 0x4dd -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa3, offset 0x4df -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa4, offset 0x4e2 -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xa5, offset 0x4e5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xa6, offset 0x4e9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0908, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0xa1}, -	{value: 0x0c08, lo: 0xa2, hi: 0xa2}, -	{value: 0x0a08, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xa7, offset 0x4f2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xa8, offset 0x4f6 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xac}, -	{value: 0x0818, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xa9, offset 0x4fe -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbf}, -	// Block 0xaa, offset 0x501 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0xa6}, -	{value: 0x0808, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb3}, -	{value: 0x0a08, lo: 0xb4, hi: 0xbf}, -	// Block 0xab, offset 0x509 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0a08, lo: 0x80, hi: 0x84}, -	{value: 0x0808, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x90}, -	{value: 0x0a18, lo: 0x91, hi: 0x93}, -	{value: 0x0c18, lo: 0x94, hi: 0x94}, -	{value: 0x0818, lo: 0x95, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb3}, -	{value: 0x0c08, lo: 0xb4, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xbf}, -	// Block 0xac, offset 0x514 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0a08, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xaf}, -	{value: 0x0a08, lo: 0xb0, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb3}, -	{value: 0x0c08, lo: 0xb4, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb7}, -	{value: 0x0a08, lo: 0xb8, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xba}, -	{value: 0x0a08, lo: 0xbb, hi: 0xbc}, -	{value: 0x0c08, lo: 0xbd, hi: 0xbd}, -	{value: 0x0a08, lo: 0xbe, hi: 0xbf}, -	// Block 0xad, offset 0x523 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0x81}, -	{value: 0x0c08, lo: 0x82, hi: 0x83}, -	{value: 0x0a08, lo: 0x84, hi: 0x84}, -	{value: 0x0818, lo: 0x85, hi: 0x88}, -	{value: 0x0c18, lo: 0x89, hi: 0x89}, -	{value: 0x0a18, lo: 0x8a, hi: 0x8a}, -	{value: 0x0918, lo: 0x8b, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xae, offset 0x52f -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xaf, offset 0x535 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x3b08, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xb0, offset 0x542 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xb1, offset 0x54e -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb2, offset 0x556 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xb3, offset 0x55f -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb4, offset 0x56a -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb5, offset 0x571 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x3008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xb6, offset 0x580 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb7, offset 0x58d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0xbf}, -	// Block 0xb8, offset 0x591 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xb9, offset 0x59e -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xba, offset 0x5a7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xbb, offset 0x5ab -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xbf}, -	// Block 0xbc, offset 0x5ba -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xbd, offset 0x5c2 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xbe, offset 0x5cd -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbf, offset 0x5d6 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xc0, offset 0x5dc -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xc1, offset 0x5e4 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xc2, offset 0x5ed -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xc3, offset 0x5f9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xc4, offset 0x5fc -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc5, offset 0x608 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xc6, offset 0x60b -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xc7, offset 0x614 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xc8, offset 0x617 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xc9, offset 0x61c -	{value: 0x0000, lo: 0x08}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xca, offset 0x625 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xcb, offset 0x62a -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x99}, -	{value: 0x3308, lo: 0x9a, hi: 0x9b}, -	{value: 0x3008, lo: 0x9c, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xbf}, -	// Block 0xcc, offset 0x637 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xcd, offset 0x642 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x3b08, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0xbf}, -	// Block 0xce, offset 0x64b -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x98}, -	{value: 0x3b08, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xcf, offset 0x656 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd0, offset 0x659 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xd1, offset 0x65c -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xd2, offset 0x666 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xd3, offset 0x66f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xd4, offset 0x67b -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xd5, offset 0x688 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xbf}, -	// Block 0xd6, offset 0x695 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x3008, lo: 0x93, hi: 0x94}, -	{value: 0x3308, lo: 0x95, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x96}, -	{value: 0x3b08, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xbf}, -	// Block 0xd7, offset 0x6a3 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xd8, offset 0x6aa -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0xd9, offset 0x6b5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3808, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xda, offset 0x6bc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0xdb, offset 0x6c0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0xdc, offset 0x6c4 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xdd, offset 0x6c7 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xde, offset 0x6cc -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xdf, offset 0x6cf -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbf}, -	// Block 0xe0, offset 0x6d2 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xe1, offset 0x6d6 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0340, lo: 0xb0, hi: 0xbf}, -	// Block 0xe2, offset 0x6d9 -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0xe3, offset 0x6de -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xe4, offset 0x6e5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xe5, offset 0x6e8 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xe6, offset 0x6f0 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xe7, offset 0x6f4 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xe8, offset 0x6ff -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xe9, offset 0x702 -	{value: 0x0000, lo: 0x02}, -	{value: 0xe105, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0xea, offset 0x705 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0xeb, offset 0x708 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbf}, -	// Block 0xec, offset 0x70e -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xed, offset 0x714 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa1}, -	{value: 0x0018, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xa3}, -	{value: 0x3308, lo: 0xa4, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xee, offset 0x71d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xef, offset 0x720 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0xf0, offset 0x723 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xf1, offset 0x726 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xf2, offset 0x72e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x0040, lo: 0xa3, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xf3, offset 0x733 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0x94}, -	{value: 0x0008, lo: 0x95, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xa3}, -	{value: 0x0008, lo: 0xa4, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xf4, offset 0x73c -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0xf5, offset 0x73f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xf6, offset 0x744 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xf7, offset 0x74e -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbf}, -	// Block 0xf8, offset 0x752 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0xf9, offset 0x756 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xfa, offset 0x759 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xfb, offset 0x75c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xfc, offset 0x760 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0x2379, lo: 0x9e, hi: 0x9e}, -	{value: 0x2381, lo: 0x9f, hi: 0x9f}, -	{value: 0x2389, lo: 0xa0, hi: 0xa0}, -	{value: 0x2391, lo: 0xa1, hi: 0xa1}, -	{value: 0x2399, lo: 0xa2, hi: 0xa2}, -	{value: 0x23a1, lo: 0xa3, hi: 0xa3}, -	{value: 0x23a9, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xfd, offset 0x76f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0x23b1, lo: 0xbb, hi: 0xbb}, -	{value: 0x23b9, lo: 0xbc, hi: 0xbc}, -	{value: 0x23c1, lo: 0xbd, hi: 0xbd}, -	{value: 0x23c9, lo: 0xbe, hi: 0xbe}, -	{value: 0x23d1, lo: 0xbf, hi: 0xbf}, -	// Block 0xfe, offset 0x77b -	{value: 0x0000, lo: 0x03}, -	{value: 0x23d9, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xff, offset 0x77f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0x100, offset 0x784 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x101, offset 0x789 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x102, offset 0x78e -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x103, offset 0x792 -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x104, offset 0x797 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x105, offset 0x7a0 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0x106, offset 0x7a5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0x107, offset 0x7a9 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x108, offset 0x7af -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0x109, offset 0x7b5 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x3308, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xbf}, -	// Block 0x10a, offset 0x7ba -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x10b, offset 0x7c0 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x10c, offset 0x7c6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x10d, offset 0x7d0 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0x10e, offset 0x7d6 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0b08, lo: 0x8b, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x10f, offset 0x7df -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xb0}, -	{value: 0x0818, lo: 0xb1, hi: 0xbf}, -	// Block 0x110, offset 0x7e2 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0818, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x111, offset 0x7e5 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0818, lo: 0x81, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x112, offset 0x7e9 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0x113, offset 0x7ed -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x114, offset 0x7f1 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x115, offset 0x7f7 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x116, offset 0x7fd -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0x2709, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0x117, offset 0x802 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0x118, offset 0x805 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x2889, lo: 0x80, hi: 0x80}, -	{value: 0x2891, lo: 0x81, hi: 0x81}, -	{value: 0x2899, lo: 0x82, hi: 0x82}, -	{value: 0x28a1, lo: 0x83, hi: 0x83}, -	{value: 0x28a9, lo: 0x84, hi: 0x84}, -	{value: 0x28b1, lo: 0x85, hi: 0x85}, -	{value: 0x28b9, lo: 0x86, hi: 0x86}, -	{value: 0x28c1, lo: 0x87, hi: 0x87}, -	{value: 0x28c9, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x28d1, lo: 0x90, hi: 0x90}, -	{value: 0x28d9, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xbf}, -	// Block 0x119, offset 0x815 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x11a, offset 0x81c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x11b, offset 0x820 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x11c, offset 0x827 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x11d, offset 0x82b -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x11e, offset 0x831 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0x11f, offset 0x838 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x120, offset 0x83f -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x121, offset 0x845 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x122, offset 0x84e -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0xbf}, -	// Block 0x123, offset 0x852 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0018, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0xaf}, -	{value: 0x06e1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0049, lo: 0xb1, hi: 0xb1}, -	{value: 0x0029, lo: 0xb2, hi: 0xb2}, -	{value: 0x0031, lo: 0xb3, hi: 0xb3}, -	{value: 0x06e9, lo: 0xb4, hi: 0xb4}, -	{value: 0x06f1, lo: 0xb5, hi: 0xb5}, -	{value: 0x06f9, lo: 0xb6, hi: 0xb6}, -	{value: 0x0701, lo: 0xb7, hi: 0xb7}, -	{value: 0x0709, lo: 0xb8, hi: 0xb8}, -	{value: 0x0711, lo: 0xb9, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x124, offset 0x860 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x125, offset 0x863 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x126, offset 0x866 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x127, offset 0x86a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x128, offset 0x86e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x129, offset 0x871 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbf}, -	// Block 0x12a, offset 0x875 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x12b, offset 0x878 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0x12c, offset 0x87d -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x12d, offset 0x87f -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x12e, offset 0x881 -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 46723 bytes (45KiB); checksum: 4CF3143A diff --git a/vendor/golang.org/x/net/idna/tables9.0.0.go b/vendor/golang.org/x/net/idna/tables9.0.0.go deleted file mode 100644 index 0f25e84ca..000000000 --- a/vendor/golang.org/x/net/idna/tables9.0.0.go +++ /dev/null @@ -1,4486 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -//go:build !go1.10 - -package idna - -// UnicodeVersion is the Unicode version from which the tables in this package are derived. -const UnicodeVersion = "9.0.0" - -var mappings string = "" + // Size: 8175 bytes -	"\x00\x01 \x03 ̈\x01a\x03 ̄\x012\x013\x03 ́\x03 ̧\x011\x01o\x051⁄4\x051⁄2" + -	"\x053⁄4\x03i̇\x03l·\x03ʼn\x01s\x03dž\x03ⱥ\x03ⱦ\x01h\x01j\x01r\x01w\x01y" + -	"\x03 ̆\x03 ̇\x03 ̊\x03 ̨\x03 ̃\x03 ̋\x01l\x01x\x04̈́\x03 ι\x01;\x05 ̈́" + -	"\x04եւ\x04اٴ\x04وٴ\x04ۇٴ\x04يٴ\x06क़\x06ख़\x06ग़\x06ज़\x06ड़\x06ढ़\x06फ़" + -	"\x06य़\x06ড়\x06ঢ়\x06য়\x06ਲ਼\x06ਸ਼\x06ਖ਼\x06ਗ਼\x06ਜ਼\x06ਫ਼\x06ଡ଼\x06ଢ଼" + -	"\x06ํา\x06ໍາ\x06ຫນ\x06ຫມ\x06གྷ\x06ཌྷ\x06དྷ\x06བྷ\x06ཛྷ\x06ཀྵ\x06ཱི\x06ཱུ" + -	"\x06ྲྀ\x09ྲཱྀ\x06ླྀ\x09ླཱྀ\x06ཱྀ\x06ྒྷ\x06ྜྷ\x06ྡྷ\x06ྦྷ\x06ྫྷ\x06ྐྵ\x02" + -	"в\x02д\x02о\x02с\x02т\x02ъ\x02ѣ\x02æ\x01b\x01d\x01e\x02ǝ\x01g\x01i\x01k" + -	"\x01m\x01n\x02ȣ\x01p\x01t\x01u\x02ɐ\x02ɑ\x02ə\x02ɛ\x02ɜ\x02ŋ\x02ɔ\x02ɯ" + -	"\x01v\x02β\x02γ\x02δ\x02φ\x02χ\x02ρ\x02н\x02ɒ\x01c\x02ɕ\x02ð\x01f\x02ɟ" + -	"\x02ɡ\x02ɥ\x02ɨ\x02ɩ\x02ɪ\x02ʝ\x02ɭ\x02ʟ\x02ɱ\x02ɰ\x02ɲ\x02ɳ\x02ɴ\x02ɵ" + -	"\x02ɸ\x02ʂ\x02ʃ\x02ƫ\x02ʉ\x02ʊ\x02ʋ\x02ʌ\x01z\x02ʐ\x02ʑ\x02ʒ\x02θ\x02ss" + -	"\x02ά\x02έ\x02ή\x02ί\x02ό\x02ύ\x02ώ\x05ἀι\x05ἁι\x05ἂι\x05ἃι\x05ἄι\x05ἅι" + -	"\x05ἆι\x05ἇι\x05ἠι\x05ἡι\x05ἢι\x05ἣι\x05ἤι\x05ἥι\x05ἦι\x05ἧι\x05ὠι\x05ὡι" + -	"\x05ὢι\x05ὣι\x05ὤι\x05ὥι\x05ὦι\x05ὧι\x05ὰι\x04αι\x04άι\x05ᾶι\x02ι\x05 ̈͂" + -	"\x05ὴι\x04ηι\x04ήι\x05ῆι\x05 ̓̀\x05 ̓́\x05 ̓͂\x02ΐ\x05 ̔̀\x05 ̔́\x05 ̔͂" + -	"\x02ΰ\x05 ̈̀\x01`\x05ὼι\x04ωι\x04ώι\x05ῶι\x06′′\x09′′′\x06‵‵\x09‵‵‵\x02!" + -	"!\x02??\x02?!\x02!?\x0c′′′′\x010\x014\x015\x016\x017\x018\x019\x01+\x01=" + -	"\x01(\x01)\x02rs\x02ħ\x02no\x01q\x02sm\x02tm\x02ω\x02å\x02א\x02ב\x02ג" + -	"\x02ד\x02π\x051⁄7\x051⁄9\x061⁄10\x051⁄3\x052⁄3\x051⁄5\x052⁄5\x053⁄5\x054" + -	"⁄5\x051⁄6\x055⁄6\x051⁄8\x053⁄8\x055⁄8\x057⁄8\x041⁄\x02ii\x02iv\x02vi" + -	"\x04viii\x02ix\x02xi\x050⁄3\x06∫∫\x09∫∫∫\x06∮∮\x09∮∮∮\x0210\x0211\x0212" + -	"\x0213\x0214\x0215\x0216\x0217\x0218\x0219\x0220\x04(10)\x04(11)\x04(12)" + -	"\x04(13)\x04(14)\x04(15)\x04(16)\x04(17)\x04(18)\x04(19)\x04(20)\x0c∫∫∫∫" + -	"\x02==\x05⫝̸\x02ɫ\x02ɽ\x02ȿ\x02ɀ\x01.\x04 ゙\x04 ゚\x06より\x06コト\x05(ᄀ)\x05" + -	"(ᄂ)\x05(ᄃ)\x05(ᄅ)\x05(ᄆ)\x05(ᄇ)\x05(ᄉ)\x05(ᄋ)\x05(ᄌ)\x05(ᄎ)\x05(ᄏ)\x05(ᄐ" + -	")\x05(ᄑ)\x05(ᄒ)\x05(가)\x05(나)\x05(다)\x05(라)\x05(마)\x05(바)\x05(사)\x05(아)" + -	"\x05(자)\x05(차)\x05(카)\x05(타)\x05(파)\x05(하)\x05(주)\x08(오전)\x08(오후)\x05(一)" + -	"\x05(二)\x05(三)\x05(四)\x05(五)\x05(六)\x05(七)\x05(八)\x05(九)\x05(十)\x05(月)" + -	"\x05(火)\x05(水)\x05(木)\x05(金)\x05(土)\x05(日)\x05(株)\x05(有)\x05(社)\x05(名)" + -	"\x05(特)\x05(財)\x05(祝)\x05(労)\x05(代)\x05(呼)\x05(学)\x05(監)\x05(企)\x05(資)" + -	"\x05(協)\x05(祭)\x05(休)\x05(自)\x05(至)\x0221\x0222\x0223\x0224\x0225\x0226" + -	"\x0227\x0228\x0229\x0230\x0231\x0232\x0233\x0234\x0235\x06참고\x06주의\x0236" + -	"\x0237\x0238\x0239\x0240\x0241\x0242\x0243\x0244\x0245\x0246\x0247\x0248" + -	"\x0249\x0250\x041月\x042月\x043月\x044月\x045月\x046月\x047月\x048月\x049月\x0510" + -	"月\x0511月\x0512月\x02hg\x02ev\x0cアパート\x0cアルファ\x0cアンペア\x09アール\x0cイニング\x09" + -	"インチ\x09ウォン\x0fエスクード\x0cエーカー\x09オンス\x09オーム\x09カイリ\x0cカラット\x0cカロリー\x09ガロ" + -	"ン\x09ガンマ\x06ギガ\x09ギニー\x0cキュリー\x0cギルダー\x06キロ\x0fキログラム\x12キロメートル\x0fキロワッ" + -	"ト\x09グラム\x0fグラムトン\x0fクルゼイロ\x0cクローネ\x09ケース\x09コルナ\x09コーポ\x0cサイクル\x0fサンチ" + -	"ーム\x0cシリング\x09センチ\x09セント\x09ダース\x06デシ\x06ドル\x06トン\x06ナノ\x09ノット\x09ハイツ" + -	"\x0fパーセント\x09パーツ\x0cバーレル\x0fピアストル\x09ピクル\x06ピコ\x06ビル\x0fファラッド\x0cフィート" + -	"\x0fブッシェル\x09フラン\x0fヘクタール\x06ペソ\x09ペニヒ\x09ヘルツ\x09ペンス\x09ページ\x09ベータ\x0cポイ" + -	"ント\x09ボルト\x06ホン\x09ポンド\x09ホール\x09ホーン\x0cマイクロ\x09マイル\x09マッハ\x09マルク\x0fマ" + -	"ンション\x0cミクロン\x06ミリ\x0fミリバール\x06メガ\x0cメガトン\x0cメートル\x09ヤード\x09ヤール\x09ユアン" + -	"\x0cリットル\x06リラ\x09ルピー\x0cルーブル\x06レム\x0fレントゲン\x09ワット\x040点\x041点\x042点" + -	"\x043点\x044点\x045点\x046点\x047点\x048点\x049点\x0510点\x0511点\x0512点\x0513点" + -	"\x0514点\x0515点\x0516点\x0517点\x0518点\x0519点\x0520点\x0521点\x0522点\x0523点" + -	"\x0524点\x02da\x02au\x02ov\x02pc\x02dm\x02iu\x06平成\x06昭和\x06大正\x06明治\x0c株" + -	"式会社\x02pa\x02na\x02ma\x02ka\x02kb\x02mb\x02gb\x04kcal\x02pf\x02nf\x02m" + -	"g\x02kg\x02hz\x02ml\x02dl\x02kl\x02fm\x02nm\x02mm\x02cm\x02km\x02m2\x02m" + -	"3\x05m∕s\x06m∕s2\x07rad∕s\x08rad∕s2\x02ps\x02ns\x02ms\x02pv\x02nv\x02mv" + -	"\x02kv\x02pw\x02nw\x02mw\x02kw\x02bq\x02cc\x02cd\x06c∕kg\x02db\x02gy\x02" + -	"ha\x02hp\x02in\x02kk\x02kt\x02lm\x02ln\x02lx\x02ph\x02pr\x02sr\x02sv\x02" + -	"wb\x05v∕m\x05a∕m\x041日\x042日\x043日\x044日\x045日\x046日\x047日\x048日\x049日" + -	"\x0510日\x0511日\x0512日\x0513日\x0514日\x0515日\x0516日\x0517日\x0518日\x0519日" + -	"\x0520日\x0521日\x0522日\x0523日\x0524日\x0525日\x0526日\x0527日\x0528日\x0529日" + -	"\x0530日\x0531日\x02ь\x02ɦ\x02ɬ\x02ʞ\x02ʇ\x02œ\x04𤋮\x04𢡊\x04𢡄\x04𣏕\x04𥉉" + -	"\x04𥳐\x04𧻓\x02ff\x02fi\x02fl\x02st\x04մն\x04մե\x04մի\x04վն\x04մխ\x04יִ" + -	"\x04ײַ\x02ע\x02ה\x02כ\x02ל\x02ם\x02ר\x02ת\x04שׁ\x04שׂ\x06שּׁ\x06שּׂ\x04א" + -	"ַ\x04אָ\x04אּ\x04בּ\x04גּ\x04דּ\x04הּ\x04וּ\x04זּ\x04טּ\x04יּ\x04ךּ\x04" + -	"כּ\x04לּ\x04מּ\x04נּ\x04סּ\x04ףּ\x04פּ\x04צּ\x04קּ\x04רּ\x04שּ\x04תּ" + -	"\x04וֹ\x04בֿ\x04כֿ\x04פֿ\x04אל\x02ٱ\x02ٻ\x02پ\x02ڀ\x02ٺ\x02ٿ\x02ٹ\x02ڤ" + -	"\x02ڦ\x02ڄ\x02ڃ\x02چ\x02ڇ\x02ڍ\x02ڌ\x02ڎ\x02ڈ\x02ژ\x02ڑ\x02ک\x02گ\x02ڳ" + -	"\x02ڱ\x02ں\x02ڻ\x02ۀ\x02ہ\x02ھ\x02ے\x02ۓ\x02ڭ\x02ۇ\x02ۆ\x02ۈ\x02ۋ\x02ۅ" + -	"\x02ۉ\x02ې\x02ى\x04ئا\x04ئە\x04ئو\x04ئۇ\x04ئۆ\x04ئۈ\x04ئې\x04ئى\x02ی\x04" + -	"ئج\x04ئح\x04ئم\x04ئي\x04بج\x04بح\x04بخ\x04بم\x04بى\x04بي\x04تج\x04تح" + -	"\x04تخ\x04تم\x04تى\x04تي\x04ثج\x04ثم\x04ثى\x04ثي\x04جح\x04جم\x04حج\x04حم" + -	"\x04خج\x04خح\x04خم\x04سج\x04سح\x04سخ\x04سم\x04صح\x04صم\x04ضج\x04ضح\x04ضخ" + -	"\x04ضم\x04طح\x04طم\x04ظم\x04عج\x04عم\x04غج\x04غم\x04فج\x04فح\x04فخ\x04فم" + -	"\x04فى\x04في\x04قح\x04قم\x04قى\x04قي\x04كا\x04كج\x04كح\x04كخ\x04كل\x04كم" + -	"\x04كى\x04كي\x04لج\x04لح\x04لخ\x04لم\x04لى\x04لي\x04مج\x04مح\x04مخ\x04مم" + -	"\x04مى\x04مي\x04نج\x04نح\x04نخ\x04نم\x04نى\x04ني\x04هج\x04هم\x04هى\x04هي" + -	"\x04يج\x04يح\x04يخ\x04يم\x04يى\x04يي\x04ذٰ\x04رٰ\x04ىٰ\x05 ٌّ\x05 ٍّ\x05" + -	" َّ\x05 ُّ\x05 ِّ\x05 ّٰ\x04ئر\x04ئز\x04ئن\x04بر\x04بز\x04بن\x04تر\x04تز" + -	"\x04تن\x04ثر\x04ثز\x04ثن\x04ما\x04نر\x04نز\x04نن\x04ير\x04يز\x04ين\x04ئخ" + -	"\x04ئه\x04به\x04ته\x04صخ\x04له\x04نه\x04هٰ\x04يه\x04ثه\x04سه\x04شم\x04شه" + -	"\x06ـَّ\x06ـُّ\x06ـِّ\x04طى\x04طي\x04عى\x04عي\x04غى\x04غي\x04سى\x04سي" + -	"\x04شى\x04شي\x04حى\x04حي\x04جى\x04جي\x04خى\x04خي\x04صى\x04صي\x04ضى\x04ضي" + -	"\x04شج\x04شح\x04شخ\x04شر\x04سر\x04صر\x04ضر\x04اً\x06تجم\x06تحج\x06تحم" + -	"\x06تخم\x06تمج\x06تمح\x06تمخ\x06جمح\x06حمي\x06حمى\x06سحج\x06سجح\x06سجى" + -	"\x06سمح\x06سمج\x06سمم\x06صحح\x06صمم\x06شحم\x06شجي\x06شمخ\x06شمم\x06ضحى" + -	"\x06ضخم\x06طمح\x06طمم\x06طمي\x06عجم\x06عمم\x06عمى\x06غمم\x06غمي\x06غمى" + -	"\x06فخم\x06قمح\x06قمم\x06لحم\x06لحي\x06لحى\x06لجج\x06لخم\x06لمح\x06محج" + -	"\x06محم\x06محي\x06مجح\x06مجم\x06مخج\x06مخم\x06مجخ\x06همج\x06همم\x06نحم" + -	"\x06نحى\x06نجم\x06نجى\x06نمي\x06نمى\x06يمم\x06بخي\x06تجي\x06تجى\x06تخي" + -	"\x06تخى\x06تمي\x06تمى\x06جمي\x06جحى\x06جمى\x06سخى\x06صحي\x06شحي\x06ضحي" + -	"\x06لجي\x06لمي\x06يحي\x06يجي\x06يمي\x06ممي\x06قمي\x06نحي\x06عمي\x06كمي" + -	"\x06نجح\x06مخي\x06لجم\x06كمم\x06جحي\x06حجي\x06مجي\x06فمي\x06بحي\x06سخي" + -	"\x06نجي\x06صلے\x06قلے\x08الله\x08اكبر\x08محمد\x08صلعم\x08رسول\x08عليه" + -	"\x08وسلم\x06صلى!صلى الله عليه وسلم\x0fجل جلاله\x08ریال\x01,\x01:\x01!" + -	"\x01?\x01_\x01{\x01}\x01[\x01]\x01#\x01&\x01*\x01-\x01<\x01>\x01\\\x01$" + -	"\x01%\x01@\x04ـً\x04ـَ\x04ـُ\x04ـِ\x04ـّ\x04ـْ\x02ء\x02آ\x02أ\x02ؤ\x02إ" + -	"\x02ئ\x02ا\x02ب\x02ة\x02ت\x02ث\x02ج\x02ح\x02خ\x02د\x02ذ\x02ر\x02ز\x02س" + -	"\x02ش\x02ص\x02ض\x02ط\x02ظ\x02ع\x02غ\x02ف\x02ق\x02ك\x02ل\x02م\x02ن\x02ه" + -	"\x02و\x02ي\x04لآ\x04لأ\x04لإ\x04لا\x01\x22\x01'\x01/\x01^\x01|\x01~\x02¢" + -	"\x02£\x02¬\x02¦\x02¥\x08𝅗𝅥\x08𝅘𝅥\x0c𝅘𝅥𝅮\x0c𝅘𝅥𝅯\x0c𝅘𝅥𝅰\x0c𝅘𝅥𝅱\x0c𝅘𝅥𝅲\x08𝆹" + -	"𝅥\x08𝆺𝅥\x0c𝆹𝅥𝅮\x0c𝆺𝅥𝅮\x0c𝆹𝅥𝅯\x0c𝆺𝅥𝅯\x02ı\x02ȷ\x02α\x02ε\x02ζ\x02η\x02" + -	"κ\x02λ\x02μ\x02ν\x02ξ\x02ο\x02σ\x02τ\x02υ\x02ψ\x03∇\x03∂\x02ϝ\x02ٮ\x02ڡ" + -	"\x02ٯ\x020,\x021,\x022,\x023,\x024,\x025,\x026,\x027,\x028,\x029,\x03(a)" + -	"\x03(b)\x03(c)\x03(d)\x03(e)\x03(f)\x03(g)\x03(h)\x03(i)\x03(j)\x03(k)" + -	"\x03(l)\x03(m)\x03(n)\x03(o)\x03(p)\x03(q)\x03(r)\x03(s)\x03(t)\x03(u)" + -	"\x03(v)\x03(w)\x03(x)\x03(y)\x03(z)\x07〔s〕\x02wz\x02hv\x02sd\x03ppv\x02w" + -	"c\x02mc\x02md\x02dj\x06ほか\x06ココ\x03サ\x03手\x03字\x03双\x03デ\x03二\x03多\x03解" + -	"\x03天\x03交\x03映\x03無\x03料\x03前\x03後\x03再\x03新\x03初\x03終\x03生\x03販\x03声" + -	"\x03吹\x03演\x03投\x03捕\x03一\x03三\x03遊\x03左\x03中\x03右\x03指\x03走\x03打\x03禁" + -	"\x03空\x03合\x03満\x03有\x03月\x03申\x03割\x03営\x03配\x09〔本〕\x09〔三〕\x09〔二〕\x09〔安" + -	"〕\x09〔点〕\x09〔打〕\x09〔盗〕\x09〔勝〕\x09〔敗〕\x03得\x03可\x03丽\x03丸\x03乁\x03你\x03" + -	"侮\x03侻\x03倂\x03偺\x03備\x03僧\x03像\x03㒞\x03免\x03兔\x03兤\x03具\x03㒹\x03內\x03" + -	"冗\x03冤\x03仌\x03冬\x03况\x03凵\x03刃\x03㓟\x03刻\x03剆\x03剷\x03㔕\x03勇\x03勉\x03" + -	"勤\x03勺\x03包\x03匆\x03北\x03卉\x03卑\x03博\x03即\x03卽\x03卿\x03灰\x03及\x03叟\x03" + -	"叫\x03叱\x03吆\x03咞\x03吸\x03呈\x03周\x03咢\x03哶\x03唐\x03啓\x03啣\x03善\x03喙\x03" + -	"喫\x03喳\x03嗂\x03圖\x03嘆\x03圗\x03噑\x03噴\x03切\x03壮\x03城\x03埴\x03堍\x03型\x03" + -	"堲\x03報\x03墬\x03売\x03壷\x03夆\x03夢\x03奢\x03姬\x03娛\x03娧\x03姘\x03婦\x03㛮\x03" + -	"嬈\x03嬾\x03寃\x03寘\x03寧\x03寳\x03寿\x03将\x03尢\x03㞁\x03屠\x03屮\x03峀\x03岍\x03" + -	"嵃\x03嵮\x03嵫\x03嵼\x03巡\x03巢\x03㠯\x03巽\x03帨\x03帽\x03幩\x03㡢\x03㡼\x03庰\x03" + -	"庳\x03庶\x03廊\x03廾\x03舁\x03弢\x03㣇\x03形\x03彫\x03㣣\x03徚\x03忍\x03志\x03忹\x03" + -	"悁\x03㤺\x03㤜\x03悔\x03惇\x03慈\x03慌\x03慎\x03慺\x03憎\x03憲\x03憤\x03憯\x03懞\x03" + -	"懲\x03懶\x03成\x03戛\x03扝\x03抱\x03拔\x03捐\x03挽\x03拼\x03捨\x03掃\x03揤\x03搢\x03" + -	"揅\x03掩\x03㨮\x03摩\x03摾\x03撝\x03摷\x03㩬\x03敏\x03敬\x03旣\x03書\x03晉\x03㬙\x03" + -	"暑\x03㬈\x03㫤\x03冒\x03冕\x03最\x03暜\x03肭\x03䏙\x03朗\x03望\x03朡\x03杞\x03杓\x03" + -	"㭉\x03柺\x03枅\x03桒\x03梅\x03梎\x03栟\x03椔\x03㮝\x03楂\x03榣\x03槪\x03檨\x03櫛\x03" + -	"㰘\x03次\x03歔\x03㱎\x03歲\x03殟\x03殺\x03殻\x03汎\x03沿\x03泍\x03汧\x03洖\x03派\x03" + -	"海\x03流\x03浩\x03浸\x03涅\x03洴\x03港\x03湮\x03㴳\x03滋\x03滇\x03淹\x03潮\x03濆\x03" + -	"瀹\x03瀞\x03瀛\x03㶖\x03灊\x03災\x03灷\x03炭\x03煅\x03熜\x03爨\x03爵\x03牐\x03犀\x03" + -	"犕\x03獺\x03王\x03㺬\x03玥\x03㺸\x03瑇\x03瑜\x03瑱\x03璅\x03瓊\x03㼛\x03甤\x03甾\x03" + -	"異\x03瘐\x03㿼\x03䀈\x03直\x03眞\x03真\x03睊\x03䀹\x03瞋\x03䁆\x03䂖\x03硎\x03碌\x03" + -	"磌\x03䃣\x03祖\x03福\x03秫\x03䄯\x03穀\x03穊\x03穏\x03䈂\x03篆\x03築\x03䈧\x03糒\x03" + -	"䊠\x03糨\x03糣\x03紀\x03絣\x03䌁\x03緇\x03縂\x03繅\x03䌴\x03䍙\x03罺\x03羕\x03翺\x03" + -	"者\x03聠\x03聰\x03䏕\x03育\x03脃\x03䐋\x03脾\x03媵\x03舄\x03辞\x03䑫\x03芑\x03芋\x03" + -	"芝\x03劳\x03花\x03芳\x03芽\x03苦\x03若\x03茝\x03荣\x03莭\x03茣\x03莽\x03菧\x03著\x03" + -	"荓\x03菊\x03菌\x03菜\x03䔫\x03蓱\x03蓳\x03蔖\x03蕤\x03䕝\x03䕡\x03䕫\x03虐\x03虜\x03" + -	"虧\x03虩\x03蚩\x03蚈\x03蜎\x03蛢\x03蝹\x03蜨\x03蝫\x03螆\x03蟡\x03蠁\x03䗹\x03衠\x03" + -	"衣\x03裗\x03裞\x03䘵\x03裺\x03㒻\x03䚾\x03䛇\x03誠\x03諭\x03變\x03豕\x03貫\x03賁\x03" + -	"贛\x03起\x03跋\x03趼\x03跰\x03軔\x03輸\x03邔\x03郱\x03鄑\x03鄛\x03鈸\x03鋗\x03鋘\x03" + -	"鉼\x03鏹\x03鐕\x03開\x03䦕\x03閷\x03䧦\x03雃\x03嶲\x03霣\x03䩮\x03䩶\x03韠\x03䪲\x03" + -	"頋\x03頩\x03飢\x03䬳\x03餩\x03馧\x03駂\x03駾\x03䯎\x03鬒\x03鱀\x03鳽\x03䳎\x03䳭\x03" + -	"鵧\x03䳸\x03麻\x03䵖\x03黹\x03黾\x03鼅\x03鼏\x03鼖\x03鼻" - -var xorData string = "" + // Size: 4855 bytes -	"\x02\x0c\x09\x02\xb0\xec\x02\xad\xd8\x02\xad\xd9\x02\x06\x07\x02\x0f\x12" + -	"\x02\x0f\x1f\x02\x0f\x1d\x02\x01\x13\x02\x0f\x16\x02\x0f\x0b\x02\x0f3" + -	"\x02\x0f7\x02\x0f?\x02\x0f/\x02\x0f*\x02\x0c&\x02\x0c*\x02\x0c;\x02\x0c9" + -	"\x02\x0c%\x02\xab\xed\x02\xab\xe2\x02\xab\xe3\x02\xa9\xe0\x02\xa9\xe1" + -	"\x02\xa9\xe6\x02\xa3\xcb\x02\xa3\xc8\x02\xa3\xc9\x02\x01#\x02\x01\x08" + -	"\x02\x0e>\x02\x0e'\x02\x0f\x03\x02\x03\x0d\x02\x03\x09\x02\x03\x17\x02" + -	"\x03\x0e\x02\x02\x03\x02\x011\x02\x01\x00\x02\x01\x10\x02\x03<\x02\x07" + -	"\x0d\x02\x02\x0c\x02\x0c0\x02\x01\x03\x02\x01\x01\x02\x01 \x02\x01\x22" + -	"\x02\x01)\x02\x01\x0a\x02\x01\x0c\x02\x02\x06\x02\x02\x02\x02\x03\x10" + -	"\x03\x037 \x03\x0b+\x03\x02\x01\x04\x02\x01\x02\x02\x019\x02\x03\x1c\x02" + -	"\x02$\x03\x80p$\x02\x03:\x02\x03\x0a\x03\xc1r.\x03\xc1r,\x03\xc1r\x02" + -	"\x02\x02:\x02\x02>\x02\x02,\x02\x02\x10\x02\x02\x00\x03\xc1s<\x03\xc1s*" + -	"\x03\xc2L$\x03\xc2L;\x02\x09)\x02\x0a\x19\x03\x83\xab\xe3\x03\x83\xab" + -	"\xf2\x03 4\xe0\x03\x81\xab\xea\x03\x81\xab\xf3\x03 4\xef\x03\x96\xe1\xcd" + -	"\x03\x84\xe5\xc3\x02\x0d\x11\x03\x8b\xec\xcb\x03\x94\xec\xcf\x03\x9a\xec" + -	"\xc2\x03\x8b\xec\xdb\x03\x94\xec\xdf\x03\x9a\xec\xd2\x03\x01\x0c!\x03" + -	"\x01\x0c#\x03ʠ\x9d\x03ʣ\x9c\x03ʢ\x9f\x03ʥ\x9e\x03ʤ\x91\x03ʧ\x90\x03ʦ\x93" + -	"\x03ʩ\x92\x03ʨ\x95\x03\xca\xf3\xb5\x03\xca\xf0\xb4\x03\xca\xf1\xb7\x03" + -	"\xca\xf6\xb6\x03\xca\xf7\x89\x03\xca\xf4\x88\x03\xca\xf5\x8b\x03\xca\xfa" + -	"\x8a\x03\xca\xfb\x8d\x03\xca\xf8\x8c\x03\xca\xf9\x8f\x03\xca\xfe\x8e\x03" + -	"\xca\xff\x81\x03\xca\xfc\x80\x03\xca\xfd\x83\x03\xca\xe2\x82\x03\xca\xe3" + -	"\x85\x03\xca\xe0\x84\x03\xca\xe1\x87\x03\xca\xe6\x86\x03\xca\xe7\x99\x03" + -	"\xca\xe4\x98\x03\xca\xe5\x9b\x03\xca\xea\x9a\x03\xca\xeb\x9d\x03\xca\xe8" + -	"\x9c\x03ؓ\x89\x03ߔ\x8b\x02\x010\x03\x03\x04\x1e\x03\x04\x15\x12\x03\x0b" + -	"\x05,\x03\x06\x04\x00\x03\x06\x04)\x03\x06\x044\x03\x06\x04<\x03\x06\x05" + -	"\x1d\x03\x06\x06\x00\x03\x06\x06\x0a\x03\x06\x06'\x03\x06\x062\x03\x0786" + -	"\x03\x079/\x03\x079 \x03\x07:\x0e\x03\x07:\x1b\x03\x07:%\x03\x07;/\x03" + -	"\x07;%\x03\x074\x11\x03\x076\x09\x03\x077*\x03\x070\x01\x03\x070\x0f\x03" + -	"\x070.\x03\x071\x16\x03\x071\x04\x03\x0710\x03\x072\x18\x03\x072-\x03" + -	"\x073\x14\x03\x073>\x03\x07'\x09\x03\x07 \x00\x03\x07\x1f\x0b\x03\x07" + -	"\x18#\x03\x07\x18(\x03\x07\x186\x03\x07\x18\x03\x03\x07\x19\x16\x03\x07" + -	"\x116\x03\x07\x12'\x03\x07\x13\x10\x03\x07\x0c&\x03\x07\x0c\x08\x03\x07" + -	"\x0c\x13\x03\x07\x0d\x02\x03\x07\x0d\x1c\x03\x07\x0b5\x03\x07\x0b\x0a" + -	"\x03\x07\x0b\x01\x03\x07\x0b\x0f\x03\x07\x05\x00\x03\x07\x05\x09\x03\x07" + -	"\x05\x0b\x03\x07\x07\x01\x03\x07\x07\x08\x03\x07\x00<\x03\x07\x00+\x03" + -	"\x07\x01)\x03\x07\x01\x1b\x03\x07\x01\x08\x03\x07\x03?\x03\x0445\x03\x04" + -	"4\x08\x03\x0454\x03\x04)/\x03\x04)5\x03\x04+\x05\x03\x04+\x14\x03\x04+ " + -	"\x03\x04+<\x03\x04*&\x03\x04*\x22\x03\x04&8\x03\x04!\x01\x03\x04!\x22" + -	"\x03\x04\x11+\x03\x04\x10.\x03\x04\x104\x03\x04\x13=\x03\x04\x12\x04\x03" + -	"\x04\x12\x0a\x03\x04\x0d\x1d\x03\x04\x0d\x07\x03\x04\x0d \x03\x05<>\x03" + -	"\x055<\x03\x055!\x03\x055#\x03\x055&\x03\x054\x1d\x03\x054\x02\x03\x054" + -	"\x07\x03\x0571\x03\x053\x1a\x03\x053\x16\x03\x05.<\x03\x05.\x07\x03\x05)" + -	":\x03\x05)<\x03\x05)\x0c\x03\x05)\x15\x03\x05+-\x03\x05+5\x03\x05$\x1e" + -	"\x03\x05$\x14\x03\x05'\x04\x03\x05'\x14\x03\x05&\x02\x03\x05\x226\x03" + -	"\x05\x22\x0c\x03\x05\x22\x1c\x03\x05\x19\x0a\x03\x05\x1b\x09\x03\x05\x1b" + -	"\x0c\x03\x05\x14\x07\x03\x05\x16?\x03\x05\x16\x0c\x03\x05\x0c\x05\x03" + -	"\x05\x0e\x0f\x03\x05\x01\x0e\x03\x05\x00(\x03\x05\x030\x03\x05\x03\x06" + -	"\x03\x0a==\x03\x0a=1\x03\x0a=,\x03\x0a=\x0c\x03\x0a??\x03\x0a<\x08\x03" + -	"\x0a9!\x03\x0a9)\x03\x0a97\x03\x0a99\x03\x0a6\x0a\x03\x0a6\x1c\x03\x0a6" + -	"\x17\x03\x0a7'\x03\x0a78\x03\x0a73\x03\x0a'\x01\x03\x0a'&\x03\x0a\x1f" + -	"\x0e\x03\x0a\x1f\x03\x03\x0a\x1f3\x03\x0a\x1b/\x03\x0a\x18\x19\x03\x0a" + -	"\x19\x01\x03\x0a\x16\x14\x03\x0a\x0e\x22\x03\x0a\x0f\x10\x03\x0a\x0f\x02" + -	"\x03\x0a\x0f \x03\x0a\x0c\x04\x03\x0a\x0b>\x03\x0a\x0b+\x03\x0a\x08/\x03" + -	"\x0a\x046\x03\x0a\x05\x14\x03\x0a\x00\x04\x03\x0a\x00\x10\x03\x0a\x00" + -	"\x14\x03\x0b<3\x03\x0b;*\x03\x0b9\x22\x03\x0b9)\x03\x0b97\x03\x0b+\x10" + -	"\x03\x0b((\x03\x0b&5\x03\x0b$\x1c\x03\x0b$\x12\x03\x0b%\x04\x03\x0b#<" + -	"\x03\x0b#0\x03\x0b#\x0d\x03\x0b#\x19\x03\x0b!:\x03\x0b!\x1f\x03\x0b!\x00" + -	"\x03\x0b\x1e5\x03\x0b\x1c\x1d\x03\x0b\x1d-\x03\x0b\x1d(\x03\x0b\x18.\x03" + -	"\x0b\x18 \x03\x0b\x18\x16\x03\x0b\x14\x13\x03\x0b\x15$\x03\x0b\x15\x22" + -	"\x03\x0b\x12\x1b\x03\x0b\x12\x10\x03\x0b\x132\x03\x0b\x13=\x03\x0b\x12" + -	"\x18\x03\x0b\x0c&\x03\x0b\x061\x03\x0b\x06:\x03\x0b\x05#\x03\x0b\x05<" + -	"\x03\x0b\x04\x0b\x03\x0b\x04\x04\x03\x0b\x04\x1b\x03\x0b\x042\x03\x0b" + -	"\x041\x03\x0b\x03\x03\x03\x0b\x03\x1d\x03\x0b\x03/\x03\x0b\x03+\x03\x0b" + -	"\x02\x1b\x03\x0b\x02\x00\x03\x0b\x01\x1e\x03\x0b\x01\x08\x03\x0b\x015" + -	"\x03\x06\x0d9\x03\x06\x0d=\x03\x06\x0d?\x03\x02\x001\x03\x02\x003\x03" + -	"\x02\x02\x19\x03\x02\x006\x03\x02\x02\x1b\x03\x02\x004\x03\x02\x00<\x03" + -	"\x02\x02\x0a\x03\x02\x02\x0e\x03\x02\x01\x1a\x03\x02\x01\x07\x03\x02\x01" + -	"\x05\x03\x02\x01\x0b\x03\x02\x01%\x03\x02\x01\x0c\x03\x02\x01\x04\x03" + -	"\x02\x01\x1c\x03\x02\x00.\x03\x02\x002\x03\x02\x00>\x03\x02\x00\x12\x03" + -	"\x02\x00\x16\x03\x02\x011\x03\x02\x013\x03\x02\x02 \x03\x02\x02%\x03\x02" + -	"\x02$\x03\x02\x028\x03\x02\x02;\x03\x02\x024\x03\x02\x012\x03\x02\x022" + -	"\x03\x02\x02/\x03\x02\x01,\x03\x02\x01\x13\x03\x02\x01\x16\x03\x02\x01" + -	"\x11\x03\x02\x01\x1e\x03\x02\x01\x15\x03\x02\x01\x17\x03\x02\x01\x0f\x03" + -	"\x02\x01\x08\x03\x02\x00?\x03\x02\x03\x07\x03\x02\x03\x0d\x03\x02\x03" + -	"\x13\x03\x02\x03\x1d\x03\x02\x03\x1f\x03\x02\x00\x03\x03\x02\x00\x0d\x03" + -	"\x02\x00\x01\x03\x02\x00\x1b\x03\x02\x00\x19\x03\x02\x00\x18\x03\x02\x00" + -	"\x13\x03\x02\x00/\x03\x07>\x12\x03\x07<\x1f\x03\x07>\x1d\x03\x06\x1d\x0e" + -	"\x03\x07>\x1c\x03\x07>:\x03\x07>\x13\x03\x04\x12+\x03\x07?\x03\x03\x07>" + -	"\x02\x03\x06\x224\x03\x06\x1a.\x03\x07<%\x03\x06\x1c\x0b\x03\x0609\x03" + -	"\x05\x1f\x01\x03\x04'\x08\x03\x93\xfd\xf5\x03\x02\x0d \x03\x02\x0d#\x03" + -	"\x02\x0d!\x03\x02\x0d&\x03\x02\x0d\x22\x03\x02\x0d/\x03\x02\x0d,\x03\x02" + -	"\x0d$\x03\x02\x0d'\x03\x02\x0d%\x03\x02\x0d;\x03\x02\x0d=\x03\x02\x0d?" + -	"\x03\x099.\x03\x08\x0b7\x03\x08\x02\x14\x03\x08\x14\x0d\x03\x08.:\x03" + -	"\x089'\x03\x0f\x0b\x18\x03\x0f\x1c1\x03\x0f\x17&\x03\x0f9\x1f\x03\x0f0" + -	"\x0c\x03\x0e\x0a9\x03\x0e\x056\x03\x0e\x1c#\x03\x0f\x13\x0e\x03\x072\x00" + -	"\x03\x070\x0d\x03\x072\x0b\x03\x06\x11\x18\x03\x070\x10\x03\x06\x0f(\x03" + -	"\x072\x05\x03\x06\x0f,\x03\x073\x15\x03\x06\x07\x08\x03\x05\x16\x02\x03" + -	"\x04\x0b \x03\x05:8\x03\x05\x16%\x03\x0a\x0d\x1f\x03\x06\x16\x10\x03\x05" + -	"\x1d5\x03\x05*;\x03\x05\x16\x1b\x03\x04.-\x03\x06\x1a\x19\x03\x04\x03," + -	"\x03\x0b87\x03\x04/\x0a\x03\x06\x00,\x03\x04-\x01\x03\x04\x1e-\x03\x06/(" + -	"\x03\x0a\x0b5\x03\x06\x0e7\x03\x06\x07.\x03\x0597\x03\x0a*%\x03\x0760" + -	"\x03\x06\x0c;\x03\x05'\x00\x03\x072.\x03\x072\x08\x03\x06=\x01\x03\x06" + -	"\x05\x1b\x03\x06\x06\x12\x03\x06$=\x03\x06'\x0d\x03\x04\x11\x0f\x03\x076" + -	",\x03\x06\x07;\x03\x06.,\x03\x86\xf9\xea\x03\x8f\xff\xeb\x02\x092\x02" + -	"\x095\x02\x094\x02\x09;\x02\x09>\x02\x098\x02\x09*\x02\x09/\x02\x09,\x02" + -	"\x09%\x02\x09&\x02\x09#\x02\x09 \x02\x08!\x02\x08%\x02\x08$\x02\x08+\x02" + -	"\x08.\x02\x08*\x02\x08&\x02\x088\x02\x08>\x02\x084\x02\x086\x02\x080\x02" + -	"\x08\x10\x02\x08\x17\x02\x08\x12\x02\x08\x1d\x02\x08\x1f\x02\x08\x13\x02" + -	"\x08\x15\x02\x08\x14\x02\x08\x0c\x03\x8b\xfd\xd0\x03\x81\xec\xc6\x03\x87" + -	"\xe0\x8a\x03-2\xe3\x03\x80\xef\xe4\x03-2\xea\x03\x88\xe6\xeb\x03\x8e\xe6" + -	"\xe8\x03\x84\xe6\xe9\x03\x97\xe6\xee\x03-2\xf9\x03-2\xf6\x03\x8e\xe3\xad" + -	"\x03\x80\xe3\x92\x03\x88\xe3\x90\x03\x8e\xe3\x90\x03\x80\xe3\x97\x03\x88" + -	"\xe3\x95\x03\x88\xfe\xcb\x03\x8e\xfe\xca\x03\x84\xfe\xcd\x03\x91\xef\xc9" + -	"\x03-2\xc1\x03-2\xc0\x03-2\xcb\x03\x88@\x09\x03\x8e@\x08\x03\x8f\xe0\xf5" + -	"\x03\x8e\xe6\xf9\x03\x8e\xe0\xfa\x03\x93\xff\xf4\x03\x84\xee\xd3\x03\x0b" + -	"(\x04\x023 \x021;\x02\x01*\x03\x0b#\x10\x03\x0b 0\x03\x0b!\x10\x03\x0b!0" + -	"\x03\x07\x15\x08\x03\x09?5\x03\x07\x1f\x08\x03\x07\x17\x0b\x03\x09\x1f" + -	"\x15\x03\x0b\x1c7\x03\x0a+#\x03\x06\x1a\x1b\x03\x06\x1a\x14\x03\x0a\x01" + -	"\x18\x03\x06#\x1b\x03\x0a2\x0c\x03\x0a\x01\x04\x03\x09#;\x03\x08='\x03" + -	"\x08\x1a\x0a\x03\x07</\x03\x07:+\x03\x07\x07*\x03\x06&\x1c\x03\x09\x0c" + -	"\x16\x03\x09\x10\x0e\x03\x08'\x0f\x03\x08+\x09\x03\x074%\x03\x06!3\x03" + -	"\x06\x03+\x03\x0b\x1e\x19\x03\x0a))\x03\x09\x08\x19\x03\x08,\x05\x03\x07" + -	"<2\x03\x06\x1c>\x03\x0a\x111\x03\x09\x1b\x09\x03\x073.\x03\x07\x01\x00" + -	"\x03\x09/,\x03\x07#>\x03\x07\x048\x03\x0a\x1f\x22\x03\x098>\x03\x09\x11" + -	"\x00\x03\x08/\x17\x03\x06'\x22\x03\x0b\x1a+\x03\x0a\x22\x19\x03\x0a/1" + -	"\x03\x0974\x03\x09\x0f\x22\x03\x08,\x22\x03\x08?\x14\x03\x07$5\x03\x07<3" + -	"\x03\x07=*\x03\x07\x13\x18\x03\x068\x0a\x03\x06\x09\x16\x03\x06\x13\x00" + -	"\x03\x08\x067\x03\x08\x01\x03\x03\x08\x12\x1d\x03\x07+7\x03\x06(;\x03" + -	"\x06\x1c?\x03\x07\x0e\x17\x03\x0a\x06\x1d\x03\x0a\x19\x07\x03\x08\x14$" + -	"\x03\x07$;\x03\x08,$\x03\x08\x06\x0d\x03\x07\x16\x0a\x03\x06>>\x03\x0a" + -	"\x06\x12\x03\x0a\x14)\x03\x09\x0d\x1f\x03\x09\x12\x17\x03\x09\x19\x01" + -	"\x03\x08\x11 \x03\x08\x1d'\x03\x06<\x1a\x03\x0a.\x00\x03\x07'\x18\x03" + -	"\x0a\x22\x08\x03\x08\x0d\x0a\x03\x08\x13)\x03\x07*)\x03\x06<,\x03\x07" + -	"\x0b\x1a\x03\x09.\x14\x03\x09\x0d\x1e\x03\x07\x0e#\x03\x0b\x1d'\x03\x0a" + -	"\x0a8\x03\x09%2\x03\x08+&\x03\x080\x12\x03\x0a)4\x03\x08\x06\x1f\x03\x0b" + -	"\x1b\x1a\x03\x0a\x1b\x0f\x03\x0b\x1d*\x03\x09\x16$\x03\x090\x11\x03\x08" + -	"\x11\x08\x03\x0a*(\x03\x0a\x042\x03\x089,\x03\x074'\x03\x07\x0f\x05\x03" + -	"\x09\x0b\x0a\x03\x07\x1b\x01\x03\x09\x17:\x03\x09.\x0d\x03\x07.\x11\x03" + -	"\x09+\x15\x03\x080\x13\x03\x0b\x1f\x19\x03\x0a \x11\x03\x0a\x220\x03\x09" + -	"\x07;\x03\x08\x16\x1c\x03\x07,\x13\x03\x07\x0e/\x03\x06\x221\x03\x0a." + -	"\x0a\x03\x0a7\x02\x03\x0a\x032\x03\x0a\x1d.\x03\x091\x06\x03\x09\x19:" + -	"\x03\x08\x02/\x03\x060+\x03\x06\x0f-\x03\x06\x1c\x1f\x03\x06\x1d\x07\x03" + -	"\x0a,\x11\x03\x09=\x0d\x03\x09\x0b;\x03\x07\x1b/\x03\x0a\x1f:\x03\x09 " + -	"\x1f\x03\x09.\x10\x03\x094\x0b\x03\x09\x1a1\x03\x08#\x1a\x03\x084\x1d" + -	"\x03\x08\x01\x1f\x03\x08\x11\x22\x03\x07'8\x03\x07\x1a>\x03\x0757\x03" + -	"\x06&9\x03\x06+\x11\x03\x0a.\x0b\x03\x0a,>\x03\x0a4#\x03\x08%\x17\x03" + -	"\x07\x05\x22\x03\x07\x0c\x0b\x03\x0a\x1d+\x03\x0a\x19\x16\x03\x09+\x1f" + -	"\x03\x09\x08\x0b\x03\x08\x16\x18\x03\x08+\x12\x03\x0b\x1d\x0c\x03\x0a=" + -	"\x10\x03\x0a\x09\x0d\x03\x0a\x10\x11\x03\x09&0\x03\x08(\x1f\x03\x087\x07" + -	"\x03\x08\x185\x03\x07'6\x03\x06.\x05\x03\x06=\x04\x03\x06;;\x03\x06\x06," + -	"\x03\x0b\x18>\x03\x08\x00\x18\x03\x06 \x03\x03\x06<\x00\x03\x09%\x18\x03" + -	"\x0b\x1c<\x03\x0a%!\x03\x0a\x09\x12\x03\x0a\x16\x02\x03\x090'\x03\x09" + -	"\x0e=\x03\x08 \x0e\x03\x08>\x03\x03\x074>\x03\x06&?\x03\x06\x19\x09\x03" + -	"\x06?(\x03\x0a-\x0e\x03\x09:3\x03\x098:\x03\x09\x12\x0b\x03\x09\x1d\x17" + -	"\x03\x087\x05\x03\x082\x14\x03\x08\x06%\x03\x08\x13\x1f\x03\x06\x06\x0e" + -	"\x03\x0a\x22<\x03\x09/<\x03\x06>+\x03\x0a'?\x03\x0a\x13\x0c\x03\x09\x10<" + -	"\x03\x07\x1b=\x03\x0a\x19\x13\x03\x09\x22\x1d\x03\x09\x07\x0d\x03\x08)" + -	"\x1c\x03\x06=\x1a\x03\x0a/4\x03\x0a7\x11\x03\x0a\x16:\x03\x09?3\x03\x09:" + -	"/\x03\x09\x05\x0a\x03\x09\x14\x06\x03\x087\x22\x03\x080\x07\x03\x08\x1a" + -	"\x1f\x03\x07\x04(\x03\x07\x04\x09\x03\x06 %\x03\x06<\x08\x03\x0a+\x14" + -	"\x03\x09\x1d\x16\x03\x0a70\x03\x08 >\x03\x0857\x03\x070\x0a\x03\x06=\x12" + -	"\x03\x06\x16%\x03\x06\x1d,\x03\x099#\x03\x09\x10>\x03\x07 \x1e\x03\x08" + -	"\x0c<\x03\x08\x0b\x18\x03\x08\x15+\x03\x08,:\x03\x08%\x22\x03\x07\x0a$" + -	"\x03\x0b\x1c=\x03\x07+\x08\x03\x0a/\x05\x03\x0a \x07\x03\x0a\x12'\x03" + -	"\x09#\x11\x03\x08\x1b\x15\x03\x0a\x06\x01\x03\x09\x1c\x1b\x03\x0922\x03" + -	"\x07\x14<\x03\x07\x09\x04\x03\x061\x04\x03\x07\x0e\x01\x03\x0a\x13\x18" + -	"\x03\x0a-\x0c\x03\x0a?\x0d\x03\x0a\x09\x0a\x03\x091&\x03\x0a/\x0b\x03" + -	"\x08$<\x03\x083\x1d\x03\x08\x0c$\x03\x08\x0d\x07\x03\x08\x0d?\x03\x08" + -	"\x0e\x14\x03\x065\x0a\x03\x08\x1a#\x03\x08\x16#\x03\x0702\x03\x07\x03" + -	"\x1a\x03\x06(\x1d\x03\x06+\x1b\x03\x06\x0b\x05\x03\x06\x0b\x17\x03\x06" + -	"\x0c\x04\x03\x06\x1e\x19\x03\x06+0\x03\x062\x18\x03\x0b\x16\x1e\x03\x0a+" + -	"\x16\x03\x0a-?\x03\x0a#:\x03\x0a#\x10\x03\x0a%$\x03\x0a>+\x03\x0a01\x03" + -	"\x0a1\x10\x03\x0a\x099\x03\x0a\x0a\x12\x03\x0a\x19\x1f\x03\x0a\x19\x12" + -	"\x03\x09*)\x03\x09-\x16\x03\x09.1\x03\x09.2\x03\x09<\x0e\x03\x09> \x03" + -	"\x093\x12\x03\x09\x0b\x01\x03\x09\x1c2\x03\x09\x11\x1c\x03\x09\x15%\x03" + -	"\x08,&\x03\x08!\x22\x03\x089(\x03\x08\x0b\x1a\x03\x08\x0d2\x03\x08\x0c" + -	"\x04\x03\x08\x0c\x06\x03\x08\x0c\x1f\x03\x08\x0c\x0c\x03\x08\x0f\x1f\x03" + -	"\x08\x0f\x1d\x03\x08\x00\x14\x03\x08\x03\x14\x03\x08\x06\x16\x03\x08\x1e" + -	"#\x03\x08\x11\x11\x03\x08\x10\x18\x03\x08\x14(\x03\x07)\x1e\x03\x07.1" + -	"\x03\x07 $\x03\x07 '\x03\x078\x08\x03\x07\x0d0\x03\x07\x0f7\x03\x07\x05#" + -	"\x03\x07\x05\x1a\x03\x07\x1a7\x03\x07\x1d-\x03\x07\x17\x10\x03\x06)\x1f" + -	"\x03\x062\x0b\x03\x066\x16\x03\x06\x09\x11\x03\x09(\x1e\x03\x07!5\x03" + -	"\x0b\x11\x16\x03\x0a/\x04\x03\x0a,\x1a\x03\x0b\x173\x03\x0a,1\x03\x0a/5" + -	"\x03\x0a\x221\x03\x0a\x22\x0d\x03\x0a?%\x03\x0a<,\x03\x0a?#\x03\x0a>\x19" + -	"\x03\x0a\x08&\x03\x0a\x0b\x0e\x03\x0a\x0c:\x03\x0a\x0c+\x03\x0a\x03\x22" + -	"\x03\x0a\x06)\x03\x0a\x11\x10\x03\x0a\x11\x1a\x03\x0a\x17-\x03\x0a\x14(" + -	"\x03\x09)\x1e\x03\x09/\x09\x03\x09.\x00\x03\x09,\x07\x03\x09/*\x03\x09-9" + -	"\x03\x09\x228\x03\x09%\x09\x03\x09:\x12\x03\x09;\x1d\x03\x09?\x06\x03" + -	"\x093%\x03\x096\x05\x03\x096\x08\x03\x097\x02\x03\x09\x07,\x03\x09\x04," + -	"\x03\x09\x1f\x16\x03\x09\x11\x03\x03\x09\x11\x12\x03\x09\x168\x03\x08*" + -	"\x05\x03\x08/2\x03\x084:\x03\x08\x22+\x03\x08 0\x03\x08&\x0a\x03\x08;" + -	"\x10\x03\x08>$\x03\x08>\x18\x03\x0829\x03\x082:\x03\x081,\x03\x081<\x03" + -	"\x081\x1c\x03\x087#\x03\x087*\x03\x08\x09'\x03\x08\x00\x1d\x03\x08\x05-" + -	"\x03\x08\x1f4\x03\x08\x1d\x04\x03\x08\x16\x0f\x03\x07*7\x03\x07'!\x03" + -	"\x07%\x1b\x03\x077\x0c\x03\x07\x0c1\x03\x07\x0c.\x03\x07\x00\x06\x03\x07" + -	"\x01\x02\x03\x07\x010\x03\x07\x06=\x03\x07\x01\x03\x03\x07\x01\x13\x03" + -	"\x07\x06\x06\x03\x07\x05\x0a\x03\x07\x1f\x09\x03\x07\x17:\x03\x06*1\x03" + -	"\x06-\x1d\x03\x06\x223\x03\x062:\x03\x060$\x03\x066\x1e\x03\x064\x12\x03" + -	"\x0645\x03\x06\x0b\x00\x03\x06\x0b7\x03\x06\x07\x1f\x03\x06\x15\x12\x03" + -	"\x0c\x05\x0f\x03\x0b+\x0b\x03\x0b+-\x03\x06\x16\x1b\x03\x06\x15\x17\x03" + -	"\x89\xca\xea\x03\x89\xca\xe8\x03\x0c8\x10\x03\x0c8\x01\x03\x0c8\x0f\x03" + -	"\x0d8%\x03\x0d8!\x03\x0c8-\x03\x0c8/\x03\x0c8+\x03\x0c87\x03\x0c85\x03" + -	"\x0c9\x09\x03\x0c9\x0d\x03\x0c9\x0f\x03\x0c9\x0b\x03\xcfu\x0c\x03\xcfu" + -	"\x0f\x03\xcfu\x0e\x03\xcfu\x09\x03\x0c9\x10\x03\x0d9\x0c\x03\xcf`;\x03" + -	"\xcf`>\x03\xcf`9\x03\xcf`8\x03\xcf`7\x03\xcf`*\x03\xcf`-\x03\xcf`,\x03" + -	"\x0d\x1b\x1a\x03\x0d\x1b&\x03\x0c=.\x03\x0c=%\x03\x0c>\x1e\x03\x0c>\x14" + -	"\x03\x0c?\x06\x03\x0c?\x0b\x03\x0c?\x0c\x03\x0c?\x0d\x03\x0c?\x02\x03" + -	"\x0c>\x0f\x03\x0c>\x08\x03\x0c>\x09\x03\x0c>,\x03\x0c>\x0c\x03\x0c?\x13" + -	"\x03\x0c?\x16\x03\x0c?\x15\x03\x0c?\x1c\x03\x0c?\x1f\x03\x0c?\x1d\x03" + -	"\x0c?\x1a\x03\x0c?\x17\x03\x0c?\x08\x03\x0c?\x09\x03\x0c?\x0e\x03\x0c?" + -	"\x04\x03\x0c?\x05\x03\x0c<?\x03\x0c=\x00\x03\x0c=\x06\x03\x0c=\x05\x03" + -	"\x0c=\x0c\x03\x0c=\x0f\x03\x0c=\x0d\x03\x0c=\x0b\x03\x0c=\x07\x03\x0c=" + -	"\x19\x03\x0c=\x15\x03\x0c=\x11\x03\x0c=1\x03\x0c=3\x03\x0c=0\x03\x0c=>" + -	"\x03\x0c=2\x03\x0c=6\x03\x0c<\x07\x03\x0c<\x05\x03\x0e:!\x03\x0e:#\x03" + -	"\x0e8\x09\x03\x0e:&\x03\x0e8\x0b\x03\x0e:$\x03\x0e:,\x03\x0e8\x1a\x03" + -	"\x0e8\x1e\x03\x0e:*\x03\x0e:7\x03\x0e:5\x03\x0e:;\x03\x0e:\x15\x03\x0e:<" + -	"\x03\x0e:4\x03\x0e:'\x03\x0e:-\x03\x0e:%\x03\x0e:?\x03\x0e:=\x03\x0e:)" + -	"\x03\x0e:/\x03\xcfs'\x03\x0d=\x0f\x03\x0d+*\x03\x0d99\x03\x0d9;\x03\x0d9" + -	"?\x03\x0d)\x0d\x03\x0d(%\x02\x01\x18\x02\x01(\x02\x01\x1e\x03\x0f$!\x03" + -	"\x0f87\x03\x0f4\x0e\x03\x0f5\x1d\x03\x06'\x03\x03\x0f\x08\x18\x03\x0f" + -	"\x0d\x1b\x03\x0e2=\x03\x0e;\x08\x03\x0e:\x0b\x03\x0e\x06$\x03\x0e\x0d)" + -	"\x03\x0e\x16\x1f\x03\x0e\x16\x1b\x03\x0d$\x0a\x03\x05,\x1d\x03\x0d. \x03" + -	"\x0d.#\x03\x0c(/\x03\x09%\x02\x03\x0d90\x03\x0d\x0e4\x03\x0d\x0d\x0f\x03" + -	"\x0c#\x00\x03\x0c,\x1e\x03\x0c2\x0e\x03\x0c\x01\x17\x03\x0c\x09:\x03\x0e" + -	"\x173\x03\x0c\x08\x03\x03\x0c\x11\x07\x03\x0c\x10\x18\x03\x0c\x1f\x1c" + -	"\x03\x0c\x19\x0e\x03\x0c\x1a\x1f\x03\x0f0>\x03\x0b->\x03\x0b<+\x03\x0b8" + -	"\x13\x03\x0b\x043\x03\x0b\x14\x03\x03\x0b\x16%\x03\x0d\x22&\x03\x0b\x1a" + -	"\x1a\x03\x0b\x1a\x04\x03\x0a%9\x03\x0a&2\x03\x0a&0\x03\x0a!\x1a\x03\x0a!" + -	"7\x03\x0a5\x10\x03\x0a=4\x03\x0a?\x0e\x03\x0a>\x10\x03\x0a\x00 \x03\x0a" + -	"\x0f:\x03\x0a\x0f9\x03\x0a\x0b\x0a\x03\x0a\x17%\x03\x0a\x1b-\x03\x09-" + -	"\x1a\x03\x09,4\x03\x09.,\x03\x09)\x09\x03\x096!\x03\x091\x1f\x03\x093" + -	"\x16\x03\x0c+\x1f\x03\x098 \x03\x098=\x03\x0c(\x1a\x03\x0c(\x16\x03\x09" + -	"\x0a+\x03\x09\x16\x12\x03\x09\x13\x0e\x03\x09\x153\x03\x08)!\x03\x09\x1a" + -	"\x01\x03\x09\x18\x01\x03\x08%#\x03\x08>\x22\x03\x08\x05%\x03\x08\x02*" + -	"\x03\x08\x15;\x03\x08\x1b7\x03\x0f\x07\x1d\x03\x0f\x04\x03\x03\x070\x0c" + -	"\x03\x07;\x0b\x03\x07\x08\x17\x03\x07\x12\x06\x03\x06/-\x03\x0671\x03" + -	"\x065+\x03\x06>7\x03\x06\x049\x03\x05+\x1e\x03\x05,\x17\x03\x05 \x1d\x03" + -	"\x05\x22\x05\x03\x050\x1d" - -// lookup returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookup(s []byte) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupUnsafe(s []byte) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// lookupString returns the trie value for the first UTF-8 encoding in s and -// the width in bytes of this encoding. The size will be 0 if s does not -// hold enough bytes to complete the encoding. len(s) must be greater than 0. -func (t *idnaTrie) lookupString(s string) (v uint16, sz int) { -	c0 := s[0] -	switch { -	case c0 < 0x80: // is ASCII -		return idnaValues[c0], 1 -	case c0 < 0xC2: -		return 0, 1 // Illegal UTF-8: not a starter, not ASCII. -	case c0 < 0xE0: // 2-byte UTF-8 -		if len(s) < 2 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c1), 2 -	case c0 < 0xF0: // 3-byte UTF-8 -		if len(s) < 3 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c2), 3 -	case c0 < 0xF8: // 4-byte UTF-8 -		if len(s) < 4 { -			return 0, 0 -		} -		i := idnaIndex[c0] -		c1 := s[1] -		if c1 < 0x80 || 0xC0 <= c1 { -			return 0, 1 // Illegal UTF-8: not a continuation byte. -		} -		o := uint32(i)<<6 + uint32(c1) -		i = idnaIndex[o] -		c2 := s[2] -		if c2 < 0x80 || 0xC0 <= c2 { -			return 0, 2 // Illegal UTF-8: not a continuation byte. -		} -		o = uint32(i)<<6 + uint32(c2) -		i = idnaIndex[o] -		c3 := s[3] -		if c3 < 0x80 || 0xC0 <= c3 { -			return 0, 3 // Illegal UTF-8: not a continuation byte. -		} -		return t.lookupValue(uint32(i), c3), 4 -	} -	// Illegal rune -	return 0, 1 -} - -// lookupStringUnsafe returns the trie value for the first UTF-8 encoding in s. -// s must start with a full and valid UTF-8 encoded rune. -func (t *idnaTrie) lookupStringUnsafe(s string) uint16 { -	c0 := s[0] -	if c0 < 0x80 { // is ASCII -		return idnaValues[c0] -	} -	i := idnaIndex[c0] -	if c0 < 0xE0 { // 2-byte UTF-8 -		return t.lookupValue(uint32(i), s[1]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[1])] -	if c0 < 0xF0 { // 3-byte UTF-8 -		return t.lookupValue(uint32(i), s[2]) -	} -	i = idnaIndex[uint32(i)<<6+uint32(s[2])] -	if c0 < 0xF8 { // 4-byte UTF-8 -		return t.lookupValue(uint32(i), s[3]) -	} -	return 0 -} - -// idnaTrie. Total size: 28600 bytes (27.93 KiB). Checksum: 95575047b5d8fff. -type idnaTrie struct{} - -func newIdnaTrie(i int) *idnaTrie { -	return &idnaTrie{} -} - -// lookupValue determines the type of block n and looks up the value for b. -func (t *idnaTrie) lookupValue(n uint32, b byte) uint16 { -	switch { -	case n < 124: -		return uint16(idnaValues[n<<6+uint32(b)]) -	default: -		n -= 124 -		return uint16(idnaSparse.lookup(n, b)) -	} -} - -// idnaValues: 126 blocks, 8064 entries, 16128 bytes -// The third block is the zero block. -var idnaValues = [8064]uint16{ -	// Block 0x0, offset 0x0 -	0x00: 0x0080, 0x01: 0x0080, 0x02: 0x0080, 0x03: 0x0080, 0x04: 0x0080, 0x05: 0x0080, -	0x06: 0x0080, 0x07: 0x0080, 0x08: 0x0080, 0x09: 0x0080, 0x0a: 0x0080, 0x0b: 0x0080, -	0x0c: 0x0080, 0x0d: 0x0080, 0x0e: 0x0080, 0x0f: 0x0080, 0x10: 0x0080, 0x11: 0x0080, -	0x12: 0x0080, 0x13: 0x0080, 0x14: 0x0080, 0x15: 0x0080, 0x16: 0x0080, 0x17: 0x0080, -	0x18: 0x0080, 0x19: 0x0080, 0x1a: 0x0080, 0x1b: 0x0080, 0x1c: 0x0080, 0x1d: 0x0080, -	0x1e: 0x0080, 0x1f: 0x0080, 0x20: 0x0080, 0x21: 0x0080, 0x22: 0x0080, 0x23: 0x0080, -	0x24: 0x0080, 0x25: 0x0080, 0x26: 0x0080, 0x27: 0x0080, 0x28: 0x0080, 0x29: 0x0080, -	0x2a: 0x0080, 0x2b: 0x0080, 0x2c: 0x0080, 0x2d: 0x0008, 0x2e: 0x0008, 0x2f: 0x0080, -	0x30: 0x0008, 0x31: 0x0008, 0x32: 0x0008, 0x33: 0x0008, 0x34: 0x0008, 0x35: 0x0008, -	0x36: 0x0008, 0x37: 0x0008, 0x38: 0x0008, 0x39: 0x0008, 0x3a: 0x0080, 0x3b: 0x0080, -	0x3c: 0x0080, 0x3d: 0x0080, 0x3e: 0x0080, 0x3f: 0x0080, -	// Block 0x1, offset 0x40 -	0x40: 0x0080, 0x41: 0xe105, 0x42: 0xe105, 0x43: 0xe105, 0x44: 0xe105, 0x45: 0xe105, -	0x46: 0xe105, 0x47: 0xe105, 0x48: 0xe105, 0x49: 0xe105, 0x4a: 0xe105, 0x4b: 0xe105, -	0x4c: 0xe105, 0x4d: 0xe105, 0x4e: 0xe105, 0x4f: 0xe105, 0x50: 0xe105, 0x51: 0xe105, -	0x52: 0xe105, 0x53: 0xe105, 0x54: 0xe105, 0x55: 0xe105, 0x56: 0xe105, 0x57: 0xe105, -	0x58: 0xe105, 0x59: 0xe105, 0x5a: 0xe105, 0x5b: 0x0080, 0x5c: 0x0080, 0x5d: 0x0080, -	0x5e: 0x0080, 0x5f: 0x0080, 0x60: 0x0080, 0x61: 0x0008, 0x62: 0x0008, 0x63: 0x0008, -	0x64: 0x0008, 0x65: 0x0008, 0x66: 0x0008, 0x67: 0x0008, 0x68: 0x0008, 0x69: 0x0008, -	0x6a: 0x0008, 0x6b: 0x0008, 0x6c: 0x0008, 0x6d: 0x0008, 0x6e: 0x0008, 0x6f: 0x0008, -	0x70: 0x0008, 0x71: 0x0008, 0x72: 0x0008, 0x73: 0x0008, 0x74: 0x0008, 0x75: 0x0008, -	0x76: 0x0008, 0x77: 0x0008, 0x78: 0x0008, 0x79: 0x0008, 0x7a: 0x0008, 0x7b: 0x0080, -	0x7c: 0x0080, 0x7d: 0x0080, 0x7e: 0x0080, 0x7f: 0x0080, -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc0: 0x0040, 0xc1: 0x0040, 0xc2: 0x0040, 0xc3: 0x0040, 0xc4: 0x0040, 0xc5: 0x0040, -	0xc6: 0x0040, 0xc7: 0x0040, 0xc8: 0x0040, 0xc9: 0x0040, 0xca: 0x0040, 0xcb: 0x0040, -	0xcc: 0x0040, 0xcd: 0x0040, 0xce: 0x0040, 0xcf: 0x0040, 0xd0: 0x0040, 0xd1: 0x0040, -	0xd2: 0x0040, 0xd3: 0x0040, 0xd4: 0x0040, 0xd5: 0x0040, 0xd6: 0x0040, 0xd7: 0x0040, -	0xd8: 0x0040, 0xd9: 0x0040, 0xda: 0x0040, 0xdb: 0x0040, 0xdc: 0x0040, 0xdd: 0x0040, -	0xde: 0x0040, 0xdf: 0x0040, 0xe0: 0x000a, 0xe1: 0x0018, 0xe2: 0x0018, 0xe3: 0x0018, -	0xe4: 0x0018, 0xe5: 0x0018, 0xe6: 0x0018, 0xe7: 0x0018, 0xe8: 0x001a, 0xe9: 0x0018, -	0xea: 0x0039, 0xeb: 0x0018, 0xec: 0x0018, 0xed: 0x03c0, 0xee: 0x0018, 0xef: 0x004a, -	0xf0: 0x0018, 0xf1: 0x0018, 0xf2: 0x0069, 0xf3: 0x0079, 0xf4: 0x008a, 0xf5: 0x0005, -	0xf6: 0x0018, 0xf7: 0x0008, 0xf8: 0x00aa, 0xf9: 0x00c9, 0xfa: 0x00d9, 0xfb: 0x0018, -	0xfc: 0x00e9, 0xfd: 0x0119, 0xfe: 0x0149, 0xff: 0x0018, -	// Block 0x4, offset 0x100 -	0x100: 0xe00d, 0x101: 0x0008, 0x102: 0xe00d, 0x103: 0x0008, 0x104: 0xe00d, 0x105: 0x0008, -	0x106: 0xe00d, 0x107: 0x0008, 0x108: 0xe00d, 0x109: 0x0008, 0x10a: 0xe00d, 0x10b: 0x0008, -	0x10c: 0xe00d, 0x10d: 0x0008, 0x10e: 0xe00d, 0x10f: 0x0008, 0x110: 0xe00d, 0x111: 0x0008, -	0x112: 0xe00d, 0x113: 0x0008, 0x114: 0xe00d, 0x115: 0x0008, 0x116: 0xe00d, 0x117: 0x0008, -	0x118: 0xe00d, 0x119: 0x0008, 0x11a: 0xe00d, 0x11b: 0x0008, 0x11c: 0xe00d, 0x11d: 0x0008, -	0x11e: 0xe00d, 0x11f: 0x0008, 0x120: 0xe00d, 0x121: 0x0008, 0x122: 0xe00d, 0x123: 0x0008, -	0x124: 0xe00d, 0x125: 0x0008, 0x126: 0xe00d, 0x127: 0x0008, 0x128: 0xe00d, 0x129: 0x0008, -	0x12a: 0xe00d, 0x12b: 0x0008, 0x12c: 0xe00d, 0x12d: 0x0008, 0x12e: 0xe00d, 0x12f: 0x0008, -	0x130: 0x0179, 0x131: 0x0008, 0x132: 0x0035, 0x133: 0x004d, 0x134: 0xe00d, 0x135: 0x0008, -	0x136: 0xe00d, 0x137: 0x0008, 0x138: 0x0008, 0x139: 0xe01d, 0x13a: 0x0008, 0x13b: 0xe03d, -	0x13c: 0x0008, 0x13d: 0xe01d, 0x13e: 0x0008, 0x13f: 0x0199, -	// Block 0x5, offset 0x140 -	0x140: 0x0199, 0x141: 0xe01d, 0x142: 0x0008, 0x143: 0xe03d, 0x144: 0x0008, 0x145: 0xe01d, -	0x146: 0x0008, 0x147: 0xe07d, 0x148: 0x0008, 0x149: 0x01b9, 0x14a: 0xe00d, 0x14b: 0x0008, -	0x14c: 0xe00d, 0x14d: 0x0008, 0x14e: 0xe00d, 0x14f: 0x0008, 0x150: 0xe00d, 0x151: 0x0008, -	0x152: 0xe00d, 0x153: 0x0008, 0x154: 0xe00d, 0x155: 0x0008, 0x156: 0xe00d, 0x157: 0x0008, -	0x158: 0xe00d, 0x159: 0x0008, 0x15a: 0xe00d, 0x15b: 0x0008, 0x15c: 0xe00d, 0x15d: 0x0008, -	0x15e: 0xe00d, 0x15f: 0x0008, 0x160: 0xe00d, 0x161: 0x0008, 0x162: 0xe00d, 0x163: 0x0008, -	0x164: 0xe00d, 0x165: 0x0008, 0x166: 0xe00d, 0x167: 0x0008, 0x168: 0xe00d, 0x169: 0x0008, -	0x16a: 0xe00d, 0x16b: 0x0008, 0x16c: 0xe00d, 0x16d: 0x0008, 0x16e: 0xe00d, 0x16f: 0x0008, -	0x170: 0xe00d, 0x171: 0x0008, 0x172: 0xe00d, 0x173: 0x0008, 0x174: 0xe00d, 0x175: 0x0008, -	0x176: 0xe00d, 0x177: 0x0008, 0x178: 0x0065, 0x179: 0xe01d, 0x17a: 0x0008, 0x17b: 0xe03d, -	0x17c: 0x0008, 0x17d: 0xe01d, 0x17e: 0x0008, 0x17f: 0x01d9, -	// Block 0x6, offset 0x180 -	0x180: 0x0008, 0x181: 0x007d, 0x182: 0xe00d, 0x183: 0x0008, 0x184: 0xe00d, 0x185: 0x0008, -	0x186: 0x007d, 0x187: 0xe07d, 0x188: 0x0008, 0x189: 0x0095, 0x18a: 0x00ad, 0x18b: 0xe03d, -	0x18c: 0x0008, 0x18d: 0x0008, 0x18e: 0x00c5, 0x18f: 0x00dd, 0x190: 0x00f5, 0x191: 0xe01d, -	0x192: 0x0008, 0x193: 0x010d, 0x194: 0x0125, 0x195: 0x0008, 0x196: 0x013d, 0x197: 0x013d, -	0x198: 0xe00d, 0x199: 0x0008, 0x19a: 0x0008, 0x19b: 0x0008, 0x19c: 0x010d, 0x19d: 0x0155, -	0x19e: 0x0008, 0x19f: 0x016d, 0x1a0: 0xe00d, 0x1a1: 0x0008, 0x1a2: 0xe00d, 0x1a3: 0x0008, -	0x1a4: 0xe00d, 0x1a5: 0x0008, 0x1a6: 0x0185, 0x1a7: 0xe07d, 0x1a8: 0x0008, 0x1a9: 0x019d, -	0x1aa: 0x0008, 0x1ab: 0x0008, 0x1ac: 0xe00d, 0x1ad: 0x0008, 0x1ae: 0x0185, 0x1af: 0xe0fd, -	0x1b0: 0x0008, 0x1b1: 0x01b5, 0x1b2: 0x01cd, 0x1b3: 0xe03d, 0x1b4: 0x0008, 0x1b5: 0xe01d, -	0x1b6: 0x0008, 0x1b7: 0x01e5, 0x1b8: 0xe00d, 0x1b9: 0x0008, 0x1ba: 0x0008, 0x1bb: 0x0008, -	0x1bc: 0xe00d, 0x1bd: 0x0008, 0x1be: 0x0008, 0x1bf: 0x0008, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x0008, 0x1c1: 0x0008, 0x1c2: 0x0008, 0x1c3: 0x0008, 0x1c4: 0x01e9, 0x1c5: 0x01e9, -	0x1c6: 0x01e9, 0x1c7: 0x01fd, 0x1c8: 0x0215, 0x1c9: 0x022d, 0x1ca: 0x0245, 0x1cb: 0x025d, -	0x1cc: 0x0275, 0x1cd: 0xe01d, 0x1ce: 0x0008, 0x1cf: 0xe0fd, 0x1d0: 0x0008, 0x1d1: 0xe01d, -	0x1d2: 0x0008, 0x1d3: 0xe03d, 0x1d4: 0x0008, 0x1d5: 0xe01d, 0x1d6: 0x0008, 0x1d7: 0xe07d, -	0x1d8: 0x0008, 0x1d9: 0xe01d, 0x1da: 0x0008, 0x1db: 0xe03d, 0x1dc: 0x0008, 0x1dd: 0x0008, -	0x1de: 0xe00d, 0x1df: 0x0008, 0x1e0: 0xe00d, 0x1e1: 0x0008, 0x1e2: 0xe00d, 0x1e3: 0x0008, -	0x1e4: 0xe00d, 0x1e5: 0x0008, 0x1e6: 0xe00d, 0x1e7: 0x0008, 0x1e8: 0xe00d, 0x1e9: 0x0008, -	0x1ea: 0xe00d, 0x1eb: 0x0008, 0x1ec: 0xe00d, 0x1ed: 0x0008, 0x1ee: 0xe00d, 0x1ef: 0x0008, -	0x1f0: 0x0008, 0x1f1: 0x028d, 0x1f2: 0x02a5, 0x1f3: 0x02bd, 0x1f4: 0xe00d, 0x1f5: 0x0008, -	0x1f6: 0x02d5, 0x1f7: 0x02ed, 0x1f8: 0xe00d, 0x1f9: 0x0008, 0x1fa: 0xe00d, 0x1fb: 0x0008, -	0x1fc: 0xe00d, 0x1fd: 0x0008, 0x1fe: 0xe00d, 0x1ff: 0x0008, -	// Block 0x8, offset 0x200 -	0x200: 0xe00d, 0x201: 0x0008, 0x202: 0xe00d, 0x203: 0x0008, 0x204: 0xe00d, 0x205: 0x0008, -	0x206: 0xe00d, 0x207: 0x0008, 0x208: 0xe00d, 0x209: 0x0008, 0x20a: 0xe00d, 0x20b: 0x0008, -	0x20c: 0xe00d, 0x20d: 0x0008, 0x20e: 0xe00d, 0x20f: 0x0008, 0x210: 0xe00d, 0x211: 0x0008, -	0x212: 0xe00d, 0x213: 0x0008, 0x214: 0xe00d, 0x215: 0x0008, 0x216: 0xe00d, 0x217: 0x0008, -	0x218: 0xe00d, 0x219: 0x0008, 0x21a: 0xe00d, 0x21b: 0x0008, 0x21c: 0xe00d, 0x21d: 0x0008, -	0x21e: 0xe00d, 0x21f: 0x0008, 0x220: 0x0305, 0x221: 0x0008, 0x222: 0xe00d, 0x223: 0x0008, -	0x224: 0xe00d, 0x225: 0x0008, 0x226: 0xe00d, 0x227: 0x0008, 0x228: 0xe00d, 0x229: 0x0008, -	0x22a: 0xe00d, 0x22b: 0x0008, 0x22c: 0xe00d, 0x22d: 0x0008, 0x22e: 0xe00d, 0x22f: 0x0008, -	0x230: 0xe00d, 0x231: 0x0008, 0x232: 0xe00d, 0x233: 0x0008, 0x234: 0x0008, 0x235: 0x0008, -	0x236: 0x0008, 0x237: 0x0008, 0x238: 0x0008, 0x239: 0x0008, 0x23a: 0x0209, 0x23b: 0xe03d, -	0x23c: 0x0008, 0x23d: 0x031d, 0x23e: 0x0229, 0x23f: 0x0008, -	// Block 0x9, offset 0x240 -	0x240: 0x0008, 0x241: 0x0008, 0x242: 0x0018, 0x243: 0x0018, 0x244: 0x0018, 0x245: 0x0018, -	0x246: 0x0008, 0x247: 0x0008, 0x248: 0x0008, 0x249: 0x0008, 0x24a: 0x0008, 0x24b: 0x0008, -	0x24c: 0x0008, 0x24d: 0x0008, 0x24e: 0x0008, 0x24f: 0x0008, 0x250: 0x0008, 0x251: 0x0008, -	0x252: 0x0018, 0x253: 0x0018, 0x254: 0x0018, 0x255: 0x0018, 0x256: 0x0018, 0x257: 0x0018, -	0x258: 0x029a, 0x259: 0x02ba, 0x25a: 0x02da, 0x25b: 0x02fa, 0x25c: 0x031a, 0x25d: 0x033a, -	0x25e: 0x0018, 0x25f: 0x0018, 0x260: 0x03ad, 0x261: 0x0359, 0x262: 0x01d9, 0x263: 0x0369, -	0x264: 0x03c5, 0x265: 0x0018, 0x266: 0x0018, 0x267: 0x0018, 0x268: 0x0018, 0x269: 0x0018, -	0x26a: 0x0018, 0x26b: 0x0018, 0x26c: 0x0008, 0x26d: 0x0018, 0x26e: 0x0008, 0x26f: 0x0018, -	0x270: 0x0018, 0x271: 0x0018, 0x272: 0x0018, 0x273: 0x0018, 0x274: 0x0018, 0x275: 0x0018, -	0x276: 0x0018, 0x277: 0x0018, 0x278: 0x0018, 0x279: 0x0018, 0x27a: 0x0018, 0x27b: 0x0018, -	0x27c: 0x0018, 0x27d: 0x0018, 0x27e: 0x0018, 0x27f: 0x0018, -	// Block 0xa, offset 0x280 -	0x280: 0x03dd, 0x281: 0x03dd, 0x282: 0x3308, 0x283: 0x03f5, 0x284: 0x0379, 0x285: 0x040d, -	0x286: 0x3308, 0x287: 0x3308, 0x288: 0x3308, 0x289: 0x3308, 0x28a: 0x3308, 0x28b: 0x3308, -	0x28c: 0x3308, 0x28d: 0x3308, 0x28e: 0x3308, 0x28f: 0x33c0, 0x290: 0x3308, 0x291: 0x3308, -	0x292: 0x3308, 0x293: 0x3308, 0x294: 0x3308, 0x295: 0x3308, 0x296: 0x3308, 0x297: 0x3308, -	0x298: 0x3308, 0x299: 0x3308, 0x29a: 0x3308, 0x29b: 0x3308, 0x29c: 0x3308, 0x29d: 0x3308, -	0x29e: 0x3308, 0x29f: 0x3308, 0x2a0: 0x3308, 0x2a1: 0x3308, 0x2a2: 0x3308, 0x2a3: 0x3308, -	0x2a4: 0x3308, 0x2a5: 0x3308, 0x2a6: 0x3308, 0x2a7: 0x3308, 0x2a8: 0x3308, 0x2a9: 0x3308, -	0x2aa: 0x3308, 0x2ab: 0x3308, 0x2ac: 0x3308, 0x2ad: 0x3308, 0x2ae: 0x3308, 0x2af: 0x3308, -	0x2b0: 0xe00d, 0x2b1: 0x0008, 0x2b2: 0xe00d, 0x2b3: 0x0008, 0x2b4: 0x0425, 0x2b5: 0x0008, -	0x2b6: 0xe00d, 0x2b7: 0x0008, 0x2b8: 0x0040, 0x2b9: 0x0040, 0x2ba: 0x03a2, 0x2bb: 0x0008, -	0x2bc: 0x0008, 0x2bd: 0x0008, 0x2be: 0x03c2, 0x2bf: 0x043d, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x0040, 0x2c1: 0x0040, 0x2c2: 0x0040, 0x2c3: 0x0040, 0x2c4: 0x008a, 0x2c5: 0x03d2, -	0x2c6: 0xe155, 0x2c7: 0x0455, 0x2c8: 0xe12d, 0x2c9: 0xe13d, 0x2ca: 0xe12d, 0x2cb: 0x0040, -	0x2cc: 0x03dd, 0x2cd: 0x0040, 0x2ce: 0x046d, 0x2cf: 0x0485, 0x2d0: 0x0008, 0x2d1: 0xe105, -	0x2d2: 0xe105, 0x2d3: 0xe105, 0x2d4: 0xe105, 0x2d5: 0xe105, 0x2d6: 0xe105, 0x2d7: 0xe105, -	0x2d8: 0xe105, 0x2d9: 0xe105, 0x2da: 0xe105, 0x2db: 0xe105, 0x2dc: 0xe105, 0x2dd: 0xe105, -	0x2de: 0xe105, 0x2df: 0xe105, 0x2e0: 0x049d, 0x2e1: 0x049d, 0x2e2: 0x0040, 0x2e3: 0x049d, -	0x2e4: 0x049d, 0x2e5: 0x049d, 0x2e6: 0x049d, 0x2e7: 0x049d, 0x2e8: 0x049d, 0x2e9: 0x049d, -	0x2ea: 0x049d, 0x2eb: 0x049d, 0x2ec: 0x0008, 0x2ed: 0x0008, 0x2ee: 0x0008, 0x2ef: 0x0008, -	0x2f0: 0x0008, 0x2f1: 0x0008, 0x2f2: 0x0008, 0x2f3: 0x0008, 0x2f4: 0x0008, 0x2f5: 0x0008, -	0x2f6: 0x0008, 0x2f7: 0x0008, 0x2f8: 0x0008, 0x2f9: 0x0008, 0x2fa: 0x0008, 0x2fb: 0x0008, -	0x2fc: 0x0008, 0x2fd: 0x0008, 0x2fe: 0x0008, 0x2ff: 0x0008, -	// Block 0xc, offset 0x300 -	0x300: 0x0008, 0x301: 0x0008, 0x302: 0xe00f, 0x303: 0x0008, 0x304: 0x0008, 0x305: 0x0008, -	0x306: 0x0008, 0x307: 0x0008, 0x308: 0x0008, 0x309: 0x0008, 0x30a: 0x0008, 0x30b: 0x0008, -	0x30c: 0x0008, 0x30d: 0x0008, 0x30e: 0x0008, 0x30f: 0xe0c5, 0x310: 0x04b5, 0x311: 0x04cd, -	0x312: 0xe0bd, 0x313: 0xe0f5, 0x314: 0xe0fd, 0x315: 0xe09d, 0x316: 0xe0b5, 0x317: 0x0008, -	0x318: 0xe00d, 0x319: 0x0008, 0x31a: 0xe00d, 0x31b: 0x0008, 0x31c: 0xe00d, 0x31d: 0x0008, -	0x31e: 0xe00d, 0x31f: 0x0008, 0x320: 0xe00d, 0x321: 0x0008, 0x322: 0xe00d, 0x323: 0x0008, -	0x324: 0xe00d, 0x325: 0x0008, 0x326: 0xe00d, 0x327: 0x0008, 0x328: 0xe00d, 0x329: 0x0008, -	0x32a: 0xe00d, 0x32b: 0x0008, 0x32c: 0xe00d, 0x32d: 0x0008, 0x32e: 0xe00d, 0x32f: 0x0008, -	0x330: 0x04e5, 0x331: 0xe185, 0x332: 0xe18d, 0x333: 0x0008, 0x334: 0x04fd, 0x335: 0x03dd, -	0x336: 0x0018, 0x337: 0xe07d, 0x338: 0x0008, 0x339: 0xe1d5, 0x33a: 0xe00d, 0x33b: 0x0008, -	0x33c: 0x0008, 0x33d: 0x0515, 0x33e: 0x052d, 0x33f: 0x052d, -	// Block 0xd, offset 0x340 -	0x340: 0x0008, 0x341: 0x0008, 0x342: 0x0008, 0x343: 0x0008, 0x344: 0x0008, 0x345: 0x0008, -	0x346: 0x0008, 0x347: 0x0008, 0x348: 0x0008, 0x349: 0x0008, 0x34a: 0x0008, 0x34b: 0x0008, -	0x34c: 0x0008, 0x34d: 0x0008, 0x34e: 0x0008, 0x34f: 0x0008, 0x350: 0x0008, 0x351: 0x0008, -	0x352: 0x0008, 0x353: 0x0008, 0x354: 0x0008, 0x355: 0x0008, 0x356: 0x0008, 0x357: 0x0008, -	0x358: 0x0008, 0x359: 0x0008, 0x35a: 0x0008, 0x35b: 0x0008, 0x35c: 0x0008, 0x35d: 0x0008, -	0x35e: 0x0008, 0x35f: 0x0008, 0x360: 0xe00d, 0x361: 0x0008, 0x362: 0xe00d, 0x363: 0x0008, -	0x364: 0xe00d, 0x365: 0x0008, 0x366: 0xe00d, 0x367: 0x0008, 0x368: 0xe00d, 0x369: 0x0008, -	0x36a: 0xe00d, 0x36b: 0x0008, 0x36c: 0xe00d, 0x36d: 0x0008, 0x36e: 0xe00d, 0x36f: 0x0008, -	0x370: 0xe00d, 0x371: 0x0008, 0x372: 0xe00d, 0x373: 0x0008, 0x374: 0xe00d, 0x375: 0x0008, -	0x376: 0xe00d, 0x377: 0x0008, 0x378: 0xe00d, 0x379: 0x0008, 0x37a: 0xe00d, 0x37b: 0x0008, -	0x37c: 0xe00d, 0x37d: 0x0008, 0x37e: 0xe00d, 0x37f: 0x0008, -	// Block 0xe, offset 0x380 -	0x380: 0xe00d, 0x381: 0x0008, 0x382: 0x0018, 0x383: 0x3308, 0x384: 0x3308, 0x385: 0x3308, -	0x386: 0x3308, 0x387: 0x3308, 0x388: 0x3318, 0x389: 0x3318, 0x38a: 0xe00d, 0x38b: 0x0008, -	0x38c: 0xe00d, 0x38d: 0x0008, 0x38e: 0xe00d, 0x38f: 0x0008, 0x390: 0xe00d, 0x391: 0x0008, -	0x392: 0xe00d, 0x393: 0x0008, 0x394: 0xe00d, 0x395: 0x0008, 0x396: 0xe00d, 0x397: 0x0008, -	0x398: 0xe00d, 0x399: 0x0008, 0x39a: 0xe00d, 0x39b: 0x0008, 0x39c: 0xe00d, 0x39d: 0x0008, -	0x39e: 0xe00d, 0x39f: 0x0008, 0x3a0: 0xe00d, 0x3a1: 0x0008, 0x3a2: 0xe00d, 0x3a3: 0x0008, -	0x3a4: 0xe00d, 0x3a5: 0x0008, 0x3a6: 0xe00d, 0x3a7: 0x0008, 0x3a8: 0xe00d, 0x3a9: 0x0008, -	0x3aa: 0xe00d, 0x3ab: 0x0008, 0x3ac: 0xe00d, 0x3ad: 0x0008, 0x3ae: 0xe00d, 0x3af: 0x0008, -	0x3b0: 0xe00d, 0x3b1: 0x0008, 0x3b2: 0xe00d, 0x3b3: 0x0008, 0x3b4: 0xe00d, 0x3b5: 0x0008, -	0x3b6: 0xe00d, 0x3b7: 0x0008, 0x3b8: 0xe00d, 0x3b9: 0x0008, 0x3ba: 0xe00d, 0x3bb: 0x0008, -	0x3bc: 0xe00d, 0x3bd: 0x0008, 0x3be: 0xe00d, 0x3bf: 0x0008, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x0040, 0x3c1: 0xe01d, 0x3c2: 0x0008, 0x3c3: 0xe03d, 0x3c4: 0x0008, 0x3c5: 0xe01d, -	0x3c6: 0x0008, 0x3c7: 0xe07d, 0x3c8: 0x0008, 0x3c9: 0xe01d, 0x3ca: 0x0008, 0x3cb: 0xe03d, -	0x3cc: 0x0008, 0x3cd: 0xe01d, 0x3ce: 0x0008, 0x3cf: 0x0008, 0x3d0: 0xe00d, 0x3d1: 0x0008, -	0x3d2: 0xe00d, 0x3d3: 0x0008, 0x3d4: 0xe00d, 0x3d5: 0x0008, 0x3d6: 0xe00d, 0x3d7: 0x0008, -	0x3d8: 0xe00d, 0x3d9: 0x0008, 0x3da: 0xe00d, 0x3db: 0x0008, 0x3dc: 0xe00d, 0x3dd: 0x0008, -	0x3de: 0xe00d, 0x3df: 0x0008, 0x3e0: 0xe00d, 0x3e1: 0x0008, 0x3e2: 0xe00d, 0x3e3: 0x0008, -	0x3e4: 0xe00d, 0x3e5: 0x0008, 0x3e6: 0xe00d, 0x3e7: 0x0008, 0x3e8: 0xe00d, 0x3e9: 0x0008, -	0x3ea: 0xe00d, 0x3eb: 0x0008, 0x3ec: 0xe00d, 0x3ed: 0x0008, 0x3ee: 0xe00d, 0x3ef: 0x0008, -	0x3f0: 0xe00d, 0x3f1: 0x0008, 0x3f2: 0xe00d, 0x3f3: 0x0008, 0x3f4: 0xe00d, 0x3f5: 0x0008, -	0x3f6: 0xe00d, 0x3f7: 0x0008, 0x3f8: 0xe00d, 0x3f9: 0x0008, 0x3fa: 0xe00d, 0x3fb: 0x0008, -	0x3fc: 0xe00d, 0x3fd: 0x0008, 0x3fe: 0xe00d, 0x3ff: 0x0008, -	// Block 0x10, offset 0x400 -	0x400: 0xe00d, 0x401: 0x0008, 0x402: 0xe00d, 0x403: 0x0008, 0x404: 0xe00d, 0x405: 0x0008, -	0x406: 0xe00d, 0x407: 0x0008, 0x408: 0xe00d, 0x409: 0x0008, 0x40a: 0xe00d, 0x40b: 0x0008, -	0x40c: 0xe00d, 0x40d: 0x0008, 0x40e: 0xe00d, 0x40f: 0x0008, 0x410: 0xe00d, 0x411: 0x0008, -	0x412: 0xe00d, 0x413: 0x0008, 0x414: 0xe00d, 0x415: 0x0008, 0x416: 0xe00d, 0x417: 0x0008, -	0x418: 0xe00d, 0x419: 0x0008, 0x41a: 0xe00d, 0x41b: 0x0008, 0x41c: 0xe00d, 0x41d: 0x0008, -	0x41e: 0xe00d, 0x41f: 0x0008, 0x420: 0xe00d, 0x421: 0x0008, 0x422: 0xe00d, 0x423: 0x0008, -	0x424: 0xe00d, 0x425: 0x0008, 0x426: 0xe00d, 0x427: 0x0008, 0x428: 0xe00d, 0x429: 0x0008, -	0x42a: 0xe00d, 0x42b: 0x0008, 0x42c: 0xe00d, 0x42d: 0x0008, 0x42e: 0xe00d, 0x42f: 0x0008, -	0x430: 0x0040, 0x431: 0x03f5, 0x432: 0x03f5, 0x433: 0x03f5, 0x434: 0x03f5, 0x435: 0x03f5, -	0x436: 0x03f5, 0x437: 0x03f5, 0x438: 0x03f5, 0x439: 0x03f5, 0x43a: 0x03f5, 0x43b: 0x03f5, -	0x43c: 0x03f5, 0x43d: 0x03f5, 0x43e: 0x03f5, 0x43f: 0x03f5, -	// Block 0x11, offset 0x440 -	0x440: 0x0840, 0x441: 0x0840, 0x442: 0x0840, 0x443: 0x0840, 0x444: 0x0840, 0x445: 0x0840, -	0x446: 0x0018, 0x447: 0x0018, 0x448: 0x0818, 0x449: 0x0018, 0x44a: 0x0018, 0x44b: 0x0818, -	0x44c: 0x0018, 0x44d: 0x0818, 0x44e: 0x0018, 0x44f: 0x0018, 0x450: 0x3308, 0x451: 0x3308, -	0x452: 0x3308, 0x453: 0x3308, 0x454: 0x3308, 0x455: 0x3308, 0x456: 0x3308, 0x457: 0x3308, -	0x458: 0x3308, 0x459: 0x3308, 0x45a: 0x3308, 0x45b: 0x0818, 0x45c: 0x0b40, 0x45d: 0x0040, -	0x45e: 0x0818, 0x45f: 0x0818, 0x460: 0x0a08, 0x461: 0x0808, 0x462: 0x0c08, 0x463: 0x0c08, -	0x464: 0x0c08, 0x465: 0x0c08, 0x466: 0x0a08, 0x467: 0x0c08, 0x468: 0x0a08, 0x469: 0x0c08, -	0x46a: 0x0a08, 0x46b: 0x0a08, 0x46c: 0x0a08, 0x46d: 0x0a08, 0x46e: 0x0a08, 0x46f: 0x0c08, -	0x470: 0x0c08, 0x471: 0x0c08, 0x472: 0x0c08, 0x473: 0x0a08, 0x474: 0x0a08, 0x475: 0x0a08, -	0x476: 0x0a08, 0x477: 0x0a08, 0x478: 0x0a08, 0x479: 0x0a08, 0x47a: 0x0a08, 0x47b: 0x0a08, -	0x47c: 0x0a08, 0x47d: 0x0a08, 0x47e: 0x0a08, 0x47f: 0x0a08, -	// Block 0x12, offset 0x480 -	0x480: 0x0818, 0x481: 0x0a08, 0x482: 0x0a08, 0x483: 0x0a08, 0x484: 0x0a08, 0x485: 0x0a08, -	0x486: 0x0a08, 0x487: 0x0a08, 0x488: 0x0c08, 0x489: 0x0a08, 0x48a: 0x0a08, 0x48b: 0x3308, -	0x48c: 0x3308, 0x48d: 0x3308, 0x48e: 0x3308, 0x48f: 0x3308, 0x490: 0x3308, 0x491: 0x3308, -	0x492: 0x3308, 0x493: 0x3308, 0x494: 0x3308, 0x495: 0x3308, 0x496: 0x3308, 0x497: 0x3308, -	0x498: 0x3308, 0x499: 0x3308, 0x49a: 0x3308, 0x49b: 0x3308, 0x49c: 0x3308, 0x49d: 0x3308, -	0x49e: 0x3308, 0x49f: 0x3308, 0x4a0: 0x0808, 0x4a1: 0x0808, 0x4a2: 0x0808, 0x4a3: 0x0808, -	0x4a4: 0x0808, 0x4a5: 0x0808, 0x4a6: 0x0808, 0x4a7: 0x0808, 0x4a8: 0x0808, 0x4a9: 0x0808, -	0x4aa: 0x0018, 0x4ab: 0x0818, 0x4ac: 0x0818, 0x4ad: 0x0818, 0x4ae: 0x0a08, 0x4af: 0x0a08, -	0x4b0: 0x3308, 0x4b1: 0x0c08, 0x4b2: 0x0c08, 0x4b3: 0x0c08, 0x4b4: 0x0808, 0x4b5: 0x0429, -	0x4b6: 0x0451, 0x4b7: 0x0479, 0x4b8: 0x04a1, 0x4b9: 0x0a08, 0x4ba: 0x0a08, 0x4bb: 0x0a08, -	0x4bc: 0x0a08, 0x4bd: 0x0a08, 0x4be: 0x0a08, 0x4bf: 0x0a08, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0x0c08, 0x4c1: 0x0a08, 0x4c2: 0x0a08, 0x4c3: 0x0c08, 0x4c4: 0x0c08, 0x4c5: 0x0c08, -	0x4c6: 0x0c08, 0x4c7: 0x0c08, 0x4c8: 0x0c08, 0x4c9: 0x0c08, 0x4ca: 0x0c08, 0x4cb: 0x0c08, -	0x4cc: 0x0a08, 0x4cd: 0x0c08, 0x4ce: 0x0a08, 0x4cf: 0x0c08, 0x4d0: 0x0a08, 0x4d1: 0x0a08, -	0x4d2: 0x0c08, 0x4d3: 0x0c08, 0x4d4: 0x0818, 0x4d5: 0x0c08, 0x4d6: 0x3308, 0x4d7: 0x3308, -	0x4d8: 0x3308, 0x4d9: 0x3308, 0x4da: 0x3308, 0x4db: 0x3308, 0x4dc: 0x3308, 0x4dd: 0x0840, -	0x4de: 0x0018, 0x4df: 0x3308, 0x4e0: 0x3308, 0x4e1: 0x3308, 0x4e2: 0x3308, 0x4e3: 0x3308, -	0x4e4: 0x3308, 0x4e5: 0x0808, 0x4e6: 0x0808, 0x4e7: 0x3308, 0x4e8: 0x3308, 0x4e9: 0x0018, -	0x4ea: 0x3308, 0x4eb: 0x3308, 0x4ec: 0x3308, 0x4ed: 0x3308, 0x4ee: 0x0c08, 0x4ef: 0x0c08, -	0x4f0: 0x0008, 0x4f1: 0x0008, 0x4f2: 0x0008, 0x4f3: 0x0008, 0x4f4: 0x0008, 0x4f5: 0x0008, -	0x4f6: 0x0008, 0x4f7: 0x0008, 0x4f8: 0x0008, 0x4f9: 0x0008, 0x4fa: 0x0a08, 0x4fb: 0x0a08, -	0x4fc: 0x0a08, 0x4fd: 0x0808, 0x4fe: 0x0808, 0x4ff: 0x0a08, -	// Block 0x14, offset 0x500 -	0x500: 0x0818, 0x501: 0x0818, 0x502: 0x0818, 0x503: 0x0818, 0x504: 0x0818, 0x505: 0x0818, -	0x506: 0x0818, 0x507: 0x0818, 0x508: 0x0818, 0x509: 0x0818, 0x50a: 0x0818, 0x50b: 0x0818, -	0x50c: 0x0818, 0x50d: 0x0818, 0x50e: 0x0040, 0x50f: 0x0b40, 0x510: 0x0c08, 0x511: 0x3308, -	0x512: 0x0a08, 0x513: 0x0a08, 0x514: 0x0a08, 0x515: 0x0c08, 0x516: 0x0c08, 0x517: 0x0c08, -	0x518: 0x0c08, 0x519: 0x0c08, 0x51a: 0x0a08, 0x51b: 0x0a08, 0x51c: 0x0a08, 0x51d: 0x0a08, -	0x51e: 0x0c08, 0x51f: 0x0a08, 0x520: 0x0a08, 0x521: 0x0a08, 0x522: 0x0a08, 0x523: 0x0a08, -	0x524: 0x0a08, 0x525: 0x0a08, 0x526: 0x0a08, 0x527: 0x0a08, 0x528: 0x0c08, 0x529: 0x0a08, -	0x52a: 0x0c08, 0x52b: 0x0a08, 0x52c: 0x0c08, 0x52d: 0x0a08, 0x52e: 0x0a08, 0x52f: 0x0c08, -	0x530: 0x3308, 0x531: 0x3308, 0x532: 0x3308, 0x533: 0x3308, 0x534: 0x3308, 0x535: 0x3308, -	0x536: 0x3308, 0x537: 0x3308, 0x538: 0x3308, 0x539: 0x3308, 0x53a: 0x3308, 0x53b: 0x3308, -	0x53c: 0x3308, 0x53d: 0x3308, 0x53e: 0x3308, 0x53f: 0x3308, -	// Block 0x15, offset 0x540 -	0x540: 0x3008, 0x541: 0x3308, 0x542: 0x3308, 0x543: 0x3308, 0x544: 0x3308, 0x545: 0x3308, -	0x546: 0x3308, 0x547: 0x3308, 0x548: 0x3308, 0x549: 0x3008, 0x54a: 0x3008, 0x54b: 0x3008, -	0x54c: 0x3008, 0x54d: 0x3b08, 0x54e: 0x3008, 0x54f: 0x3008, 0x550: 0x0008, 0x551: 0x3308, -	0x552: 0x3308, 0x553: 0x3308, 0x554: 0x3308, 0x555: 0x3308, 0x556: 0x3308, 0x557: 0x3308, -	0x558: 0x04c9, 0x559: 0x0501, 0x55a: 0x0539, 0x55b: 0x0571, 0x55c: 0x05a9, 0x55d: 0x05e1, -	0x55e: 0x0619, 0x55f: 0x0651, 0x560: 0x0008, 0x561: 0x0008, 0x562: 0x3308, 0x563: 0x3308, -	0x564: 0x0018, 0x565: 0x0018, 0x566: 0x0008, 0x567: 0x0008, 0x568: 0x0008, 0x569: 0x0008, -	0x56a: 0x0008, 0x56b: 0x0008, 0x56c: 0x0008, 0x56d: 0x0008, 0x56e: 0x0008, 0x56f: 0x0008, -	0x570: 0x0018, 0x571: 0x0008, 0x572: 0x0008, 0x573: 0x0008, 0x574: 0x0008, 0x575: 0x0008, -	0x576: 0x0008, 0x577: 0x0008, 0x578: 0x0008, 0x579: 0x0008, 0x57a: 0x0008, 0x57b: 0x0008, -	0x57c: 0x0008, 0x57d: 0x0008, 0x57e: 0x0008, 0x57f: 0x0008, -	// Block 0x16, offset 0x580 -	0x580: 0x0008, 0x581: 0x3308, 0x582: 0x3008, 0x583: 0x3008, 0x584: 0x0040, 0x585: 0x0008, -	0x586: 0x0008, 0x587: 0x0008, 0x588: 0x0008, 0x589: 0x0008, 0x58a: 0x0008, 0x58b: 0x0008, -	0x58c: 0x0008, 0x58d: 0x0040, 0x58e: 0x0040, 0x58f: 0x0008, 0x590: 0x0008, 0x591: 0x0040, -	0x592: 0x0040, 0x593: 0x0008, 0x594: 0x0008, 0x595: 0x0008, 0x596: 0x0008, 0x597: 0x0008, -	0x598: 0x0008, 0x599: 0x0008, 0x59a: 0x0008, 0x59b: 0x0008, 0x59c: 0x0008, 0x59d: 0x0008, -	0x59e: 0x0008, 0x59f: 0x0008, 0x5a0: 0x0008, 0x5a1: 0x0008, 0x5a2: 0x0008, 0x5a3: 0x0008, -	0x5a4: 0x0008, 0x5a5: 0x0008, 0x5a6: 0x0008, 0x5a7: 0x0008, 0x5a8: 0x0008, 0x5a9: 0x0040, -	0x5aa: 0x0008, 0x5ab: 0x0008, 0x5ac: 0x0008, 0x5ad: 0x0008, 0x5ae: 0x0008, 0x5af: 0x0008, -	0x5b0: 0x0008, 0x5b1: 0x0040, 0x5b2: 0x0008, 0x5b3: 0x0040, 0x5b4: 0x0040, 0x5b5: 0x0040, -	0x5b6: 0x0008, 0x5b7: 0x0008, 0x5b8: 0x0008, 0x5b9: 0x0008, 0x5ba: 0x0040, 0x5bb: 0x0040, -	0x5bc: 0x3308, 0x5bd: 0x0008, 0x5be: 0x3008, 0x5bf: 0x3008, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x3008, 0x5c1: 0x3308, 0x5c2: 0x3308, 0x5c3: 0x3308, 0x5c4: 0x3308, 0x5c5: 0x0040, -	0x5c6: 0x0040, 0x5c7: 0x3008, 0x5c8: 0x3008, 0x5c9: 0x0040, 0x5ca: 0x0040, 0x5cb: 0x3008, -	0x5cc: 0x3008, 0x5cd: 0x3b08, 0x5ce: 0x0008, 0x5cf: 0x0040, 0x5d0: 0x0040, 0x5d1: 0x0040, -	0x5d2: 0x0040, 0x5d3: 0x0040, 0x5d4: 0x0040, 0x5d5: 0x0040, 0x5d6: 0x0040, 0x5d7: 0x3008, -	0x5d8: 0x0040, 0x5d9: 0x0040, 0x5da: 0x0040, 0x5db: 0x0040, 0x5dc: 0x0689, 0x5dd: 0x06c1, -	0x5de: 0x0040, 0x5df: 0x06f9, 0x5e0: 0x0008, 0x5e1: 0x0008, 0x5e2: 0x3308, 0x5e3: 0x3308, -	0x5e4: 0x0040, 0x5e5: 0x0040, 0x5e6: 0x0008, 0x5e7: 0x0008, 0x5e8: 0x0008, 0x5e9: 0x0008, -	0x5ea: 0x0008, 0x5eb: 0x0008, 0x5ec: 0x0008, 0x5ed: 0x0008, 0x5ee: 0x0008, 0x5ef: 0x0008, -	0x5f0: 0x0008, 0x5f1: 0x0008, 0x5f2: 0x0018, 0x5f3: 0x0018, 0x5f4: 0x0018, 0x5f5: 0x0018, -	0x5f6: 0x0018, 0x5f7: 0x0018, 0x5f8: 0x0018, 0x5f9: 0x0018, 0x5fa: 0x0018, 0x5fb: 0x0018, -	0x5fc: 0x0040, 0x5fd: 0x0040, 0x5fe: 0x0040, 0x5ff: 0x0040, -	// Block 0x18, offset 0x600 -	0x600: 0x0040, 0x601: 0x3308, 0x602: 0x3308, 0x603: 0x3008, 0x604: 0x0040, 0x605: 0x0008, -	0x606: 0x0008, 0x607: 0x0008, 0x608: 0x0008, 0x609: 0x0008, 0x60a: 0x0008, 0x60b: 0x0040, -	0x60c: 0x0040, 0x60d: 0x0040, 0x60e: 0x0040, 0x60f: 0x0008, 0x610: 0x0008, 0x611: 0x0040, -	0x612: 0x0040, 0x613: 0x0008, 0x614: 0x0008, 0x615: 0x0008, 0x616: 0x0008, 0x617: 0x0008, -	0x618: 0x0008, 0x619: 0x0008, 0x61a: 0x0008, 0x61b: 0x0008, 0x61c: 0x0008, 0x61d: 0x0008, -	0x61e: 0x0008, 0x61f: 0x0008, 0x620: 0x0008, 0x621: 0x0008, 0x622: 0x0008, 0x623: 0x0008, -	0x624: 0x0008, 0x625: 0x0008, 0x626: 0x0008, 0x627: 0x0008, 0x628: 0x0008, 0x629: 0x0040, -	0x62a: 0x0008, 0x62b: 0x0008, 0x62c: 0x0008, 0x62d: 0x0008, 0x62e: 0x0008, 0x62f: 0x0008, -	0x630: 0x0008, 0x631: 0x0040, 0x632: 0x0008, 0x633: 0x0731, 0x634: 0x0040, 0x635: 0x0008, -	0x636: 0x0769, 0x637: 0x0040, 0x638: 0x0008, 0x639: 0x0008, 0x63a: 0x0040, 0x63b: 0x0040, -	0x63c: 0x3308, 0x63d: 0x0040, 0x63e: 0x3008, 0x63f: 0x3008, -	// Block 0x19, offset 0x640 -	0x640: 0x3008, 0x641: 0x3308, 0x642: 0x3308, 0x643: 0x0040, 0x644: 0x0040, 0x645: 0x0040, -	0x646: 0x0040, 0x647: 0x3308, 0x648: 0x3308, 0x649: 0x0040, 0x64a: 0x0040, 0x64b: 0x3308, -	0x64c: 0x3308, 0x64d: 0x3b08, 0x64e: 0x0040, 0x64f: 0x0040, 0x650: 0x0040, 0x651: 0x3308, -	0x652: 0x0040, 0x653: 0x0040, 0x654: 0x0040, 0x655: 0x0040, 0x656: 0x0040, 0x657: 0x0040, -	0x658: 0x0040, 0x659: 0x07a1, 0x65a: 0x07d9, 0x65b: 0x0811, 0x65c: 0x0008, 0x65d: 0x0040, -	0x65e: 0x0849, 0x65f: 0x0040, 0x660: 0x0040, 0x661: 0x0040, 0x662: 0x0040, 0x663: 0x0040, -	0x664: 0x0040, 0x665: 0x0040, 0x666: 0x0008, 0x667: 0x0008, 0x668: 0x0008, 0x669: 0x0008, -	0x66a: 0x0008, 0x66b: 0x0008, 0x66c: 0x0008, 0x66d: 0x0008, 0x66e: 0x0008, 0x66f: 0x0008, -	0x670: 0x3308, 0x671: 0x3308, 0x672: 0x0008, 0x673: 0x0008, 0x674: 0x0008, 0x675: 0x3308, -	0x676: 0x0040, 0x677: 0x0040, 0x678: 0x0040, 0x679: 0x0040, 0x67a: 0x0040, 0x67b: 0x0040, -	0x67c: 0x0040, 0x67d: 0x0040, 0x67e: 0x0040, 0x67f: 0x0040, -	// Block 0x1a, offset 0x680 -	0x680: 0x0040, 0x681: 0x3308, 0x682: 0x3308, 0x683: 0x3008, 0x684: 0x0040, 0x685: 0x0008, -	0x686: 0x0008, 0x687: 0x0008, 0x688: 0x0008, 0x689: 0x0008, 0x68a: 0x0008, 0x68b: 0x0008, -	0x68c: 0x0008, 0x68d: 0x0008, 0x68e: 0x0040, 0x68f: 0x0008, 0x690: 0x0008, 0x691: 0x0008, -	0x692: 0x0040, 0x693: 0x0008, 0x694: 0x0008, 0x695: 0x0008, 0x696: 0x0008, 0x697: 0x0008, -	0x698: 0x0008, 0x699: 0x0008, 0x69a: 0x0008, 0x69b: 0x0008, 0x69c: 0x0008, 0x69d: 0x0008, -	0x69e: 0x0008, 0x69f: 0x0008, 0x6a0: 0x0008, 0x6a1: 0x0008, 0x6a2: 0x0008, 0x6a3: 0x0008, -	0x6a4: 0x0008, 0x6a5: 0x0008, 0x6a6: 0x0008, 0x6a7: 0x0008, 0x6a8: 0x0008, 0x6a9: 0x0040, -	0x6aa: 0x0008, 0x6ab: 0x0008, 0x6ac: 0x0008, 0x6ad: 0x0008, 0x6ae: 0x0008, 0x6af: 0x0008, -	0x6b0: 0x0008, 0x6b1: 0x0040, 0x6b2: 0x0008, 0x6b3: 0x0008, 0x6b4: 0x0040, 0x6b5: 0x0008, -	0x6b6: 0x0008, 0x6b7: 0x0008, 0x6b8: 0x0008, 0x6b9: 0x0008, 0x6ba: 0x0040, 0x6bb: 0x0040, -	0x6bc: 0x3308, 0x6bd: 0x0008, 0x6be: 0x3008, 0x6bf: 0x3008, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x3008, 0x6c1: 0x3308, 0x6c2: 0x3308, 0x6c3: 0x3308, 0x6c4: 0x3308, 0x6c5: 0x3308, -	0x6c6: 0x0040, 0x6c7: 0x3308, 0x6c8: 0x3308, 0x6c9: 0x3008, 0x6ca: 0x0040, 0x6cb: 0x3008, -	0x6cc: 0x3008, 0x6cd: 0x3b08, 0x6ce: 0x0040, 0x6cf: 0x0040, 0x6d0: 0x0008, 0x6d1: 0x0040, -	0x6d2: 0x0040, 0x6d3: 0x0040, 0x6d4: 0x0040, 0x6d5: 0x0040, 0x6d6: 0x0040, 0x6d7: 0x0040, -	0x6d8: 0x0040, 0x6d9: 0x0040, 0x6da: 0x0040, 0x6db: 0x0040, 0x6dc: 0x0040, 0x6dd: 0x0040, -	0x6de: 0x0040, 0x6df: 0x0040, 0x6e0: 0x0008, 0x6e1: 0x0008, 0x6e2: 0x3308, 0x6e3: 0x3308, -	0x6e4: 0x0040, 0x6e5: 0x0040, 0x6e6: 0x0008, 0x6e7: 0x0008, 0x6e8: 0x0008, 0x6e9: 0x0008, -	0x6ea: 0x0008, 0x6eb: 0x0008, 0x6ec: 0x0008, 0x6ed: 0x0008, 0x6ee: 0x0008, 0x6ef: 0x0008, -	0x6f0: 0x0018, 0x6f1: 0x0018, 0x6f2: 0x0040, 0x6f3: 0x0040, 0x6f4: 0x0040, 0x6f5: 0x0040, -	0x6f6: 0x0040, 0x6f7: 0x0040, 0x6f8: 0x0040, 0x6f9: 0x0008, 0x6fa: 0x0040, 0x6fb: 0x0040, -	0x6fc: 0x0040, 0x6fd: 0x0040, 0x6fe: 0x0040, 0x6ff: 0x0040, -	// Block 0x1c, offset 0x700 -	0x700: 0x0040, 0x701: 0x3308, 0x702: 0x3008, 0x703: 0x3008, 0x704: 0x0040, 0x705: 0x0008, -	0x706: 0x0008, 0x707: 0x0008, 0x708: 0x0008, 0x709: 0x0008, 0x70a: 0x0008, 0x70b: 0x0008, -	0x70c: 0x0008, 0x70d: 0x0040, 0x70e: 0x0040, 0x70f: 0x0008, 0x710: 0x0008, 0x711: 0x0040, -	0x712: 0x0040, 0x713: 0x0008, 0x714: 0x0008, 0x715: 0x0008, 0x716: 0x0008, 0x717: 0x0008, -	0x718: 0x0008, 0x719: 0x0008, 0x71a: 0x0008, 0x71b: 0x0008, 0x71c: 0x0008, 0x71d: 0x0008, -	0x71e: 0x0008, 0x71f: 0x0008, 0x720: 0x0008, 0x721: 0x0008, 0x722: 0x0008, 0x723: 0x0008, -	0x724: 0x0008, 0x725: 0x0008, 0x726: 0x0008, 0x727: 0x0008, 0x728: 0x0008, 0x729: 0x0040, -	0x72a: 0x0008, 0x72b: 0x0008, 0x72c: 0x0008, 0x72d: 0x0008, 0x72e: 0x0008, 0x72f: 0x0008, -	0x730: 0x0008, 0x731: 0x0040, 0x732: 0x0008, 0x733: 0x0008, 0x734: 0x0040, 0x735: 0x0008, -	0x736: 0x0008, 0x737: 0x0008, 0x738: 0x0008, 0x739: 0x0008, 0x73a: 0x0040, 0x73b: 0x0040, -	0x73c: 0x3308, 0x73d: 0x0008, 0x73e: 0x3008, 0x73f: 0x3308, -	// Block 0x1d, offset 0x740 -	0x740: 0x3008, 0x741: 0x3308, 0x742: 0x3308, 0x743: 0x3308, 0x744: 0x3308, 0x745: 0x0040, -	0x746: 0x0040, 0x747: 0x3008, 0x748: 0x3008, 0x749: 0x0040, 0x74a: 0x0040, 0x74b: 0x3008, -	0x74c: 0x3008, 0x74d: 0x3b08, 0x74e: 0x0040, 0x74f: 0x0040, 0x750: 0x0040, 0x751: 0x0040, -	0x752: 0x0040, 0x753: 0x0040, 0x754: 0x0040, 0x755: 0x0040, 0x756: 0x3308, 0x757: 0x3008, -	0x758: 0x0040, 0x759: 0x0040, 0x75a: 0x0040, 0x75b: 0x0040, 0x75c: 0x0881, 0x75d: 0x08b9, -	0x75e: 0x0040, 0x75f: 0x0008, 0x760: 0x0008, 0x761: 0x0008, 0x762: 0x3308, 0x763: 0x3308, -	0x764: 0x0040, 0x765: 0x0040, 0x766: 0x0008, 0x767: 0x0008, 0x768: 0x0008, 0x769: 0x0008, -	0x76a: 0x0008, 0x76b: 0x0008, 0x76c: 0x0008, 0x76d: 0x0008, 0x76e: 0x0008, 0x76f: 0x0008, -	0x770: 0x0018, 0x771: 0x0008, 0x772: 0x0018, 0x773: 0x0018, 0x774: 0x0018, 0x775: 0x0018, -	0x776: 0x0018, 0x777: 0x0018, 0x778: 0x0040, 0x779: 0x0040, 0x77a: 0x0040, 0x77b: 0x0040, -	0x77c: 0x0040, 0x77d: 0x0040, 0x77e: 0x0040, 0x77f: 0x0040, -	// Block 0x1e, offset 0x780 -	0x780: 0x0040, 0x781: 0x0040, 0x782: 0x3308, 0x783: 0x0008, 0x784: 0x0040, 0x785: 0x0008, -	0x786: 0x0008, 0x787: 0x0008, 0x788: 0x0008, 0x789: 0x0008, 0x78a: 0x0008, 0x78b: 0x0040, -	0x78c: 0x0040, 0x78d: 0x0040, 0x78e: 0x0008, 0x78f: 0x0008, 0x790: 0x0008, 0x791: 0x0040, -	0x792: 0x0008, 0x793: 0x0008, 0x794: 0x0008, 0x795: 0x0008, 0x796: 0x0040, 0x797: 0x0040, -	0x798: 0x0040, 0x799: 0x0008, 0x79a: 0x0008, 0x79b: 0x0040, 0x79c: 0x0008, 0x79d: 0x0040, -	0x79e: 0x0008, 0x79f: 0x0008, 0x7a0: 0x0040, 0x7a1: 0x0040, 0x7a2: 0x0040, 0x7a3: 0x0008, -	0x7a4: 0x0008, 0x7a5: 0x0040, 0x7a6: 0x0040, 0x7a7: 0x0040, 0x7a8: 0x0008, 0x7a9: 0x0008, -	0x7aa: 0x0008, 0x7ab: 0x0040, 0x7ac: 0x0040, 0x7ad: 0x0040, 0x7ae: 0x0008, 0x7af: 0x0008, -	0x7b0: 0x0008, 0x7b1: 0x0008, 0x7b2: 0x0008, 0x7b3: 0x0008, 0x7b4: 0x0008, 0x7b5: 0x0008, -	0x7b6: 0x0008, 0x7b7: 0x0008, 0x7b8: 0x0008, 0x7b9: 0x0008, 0x7ba: 0x0040, 0x7bb: 0x0040, -	0x7bc: 0x0040, 0x7bd: 0x0040, 0x7be: 0x3008, 0x7bf: 0x3008, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x3308, 0x7c1: 0x3008, 0x7c2: 0x3008, 0x7c3: 0x3008, 0x7c4: 0x3008, 0x7c5: 0x0040, -	0x7c6: 0x3308, 0x7c7: 0x3308, 0x7c8: 0x3308, 0x7c9: 0x0040, 0x7ca: 0x3308, 0x7cb: 0x3308, -	0x7cc: 0x3308, 0x7cd: 0x3b08, 0x7ce: 0x0040, 0x7cf: 0x0040, 0x7d0: 0x0040, 0x7d1: 0x0040, -	0x7d2: 0x0040, 0x7d3: 0x0040, 0x7d4: 0x0040, 0x7d5: 0x3308, 0x7d6: 0x3308, 0x7d7: 0x0040, -	0x7d8: 0x0008, 0x7d9: 0x0008, 0x7da: 0x0008, 0x7db: 0x0040, 0x7dc: 0x0040, 0x7dd: 0x0040, -	0x7de: 0x0040, 0x7df: 0x0040, 0x7e0: 0x0008, 0x7e1: 0x0008, 0x7e2: 0x3308, 0x7e3: 0x3308, -	0x7e4: 0x0040, 0x7e5: 0x0040, 0x7e6: 0x0008, 0x7e7: 0x0008, 0x7e8: 0x0008, 0x7e9: 0x0008, -	0x7ea: 0x0008, 0x7eb: 0x0008, 0x7ec: 0x0008, 0x7ed: 0x0008, 0x7ee: 0x0008, 0x7ef: 0x0008, -	0x7f0: 0x0040, 0x7f1: 0x0040, 0x7f2: 0x0040, 0x7f3: 0x0040, 0x7f4: 0x0040, 0x7f5: 0x0040, -	0x7f6: 0x0040, 0x7f7: 0x0040, 0x7f8: 0x0018, 0x7f9: 0x0018, 0x7fa: 0x0018, 0x7fb: 0x0018, -	0x7fc: 0x0018, 0x7fd: 0x0018, 0x7fe: 0x0018, 0x7ff: 0x0018, -	// Block 0x20, offset 0x800 -	0x800: 0x0008, 0x801: 0x3308, 0x802: 0x3008, 0x803: 0x3008, 0x804: 0x0040, 0x805: 0x0008, -	0x806: 0x0008, 0x807: 0x0008, 0x808: 0x0008, 0x809: 0x0008, 0x80a: 0x0008, 0x80b: 0x0008, -	0x80c: 0x0008, 0x80d: 0x0040, 0x80e: 0x0008, 0x80f: 0x0008, 0x810: 0x0008, 0x811: 0x0040, -	0x812: 0x0008, 0x813: 0x0008, 0x814: 0x0008, 0x815: 0x0008, 0x816: 0x0008, 0x817: 0x0008, -	0x818: 0x0008, 0x819: 0x0008, 0x81a: 0x0008, 0x81b: 0x0008, 0x81c: 0x0008, 0x81d: 0x0008, -	0x81e: 0x0008, 0x81f: 0x0008, 0x820: 0x0008, 0x821: 0x0008, 0x822: 0x0008, 0x823: 0x0008, -	0x824: 0x0008, 0x825: 0x0008, 0x826: 0x0008, 0x827: 0x0008, 0x828: 0x0008, 0x829: 0x0040, -	0x82a: 0x0008, 0x82b: 0x0008, 0x82c: 0x0008, 0x82d: 0x0008, 0x82e: 0x0008, 0x82f: 0x0008, -	0x830: 0x0008, 0x831: 0x0008, 0x832: 0x0008, 0x833: 0x0008, 0x834: 0x0040, 0x835: 0x0008, -	0x836: 0x0008, 0x837: 0x0008, 0x838: 0x0008, 0x839: 0x0008, 0x83a: 0x0040, 0x83b: 0x0040, -	0x83c: 0x3308, 0x83d: 0x0008, 0x83e: 0x3008, 0x83f: 0x3308, -	// Block 0x21, offset 0x840 -	0x840: 0x3008, 0x841: 0x3008, 0x842: 0x3008, 0x843: 0x3008, 0x844: 0x3008, 0x845: 0x0040, -	0x846: 0x3308, 0x847: 0x3008, 0x848: 0x3008, 0x849: 0x0040, 0x84a: 0x3008, 0x84b: 0x3008, -	0x84c: 0x3308, 0x84d: 0x3b08, 0x84e: 0x0040, 0x84f: 0x0040, 0x850: 0x0040, 0x851: 0x0040, -	0x852: 0x0040, 0x853: 0x0040, 0x854: 0x0040, 0x855: 0x3008, 0x856: 0x3008, 0x857: 0x0040, -	0x858: 0x0040, 0x859: 0x0040, 0x85a: 0x0040, 0x85b: 0x0040, 0x85c: 0x0040, 0x85d: 0x0040, -	0x85e: 0x0008, 0x85f: 0x0040, 0x860: 0x0008, 0x861: 0x0008, 0x862: 0x3308, 0x863: 0x3308, -	0x864: 0x0040, 0x865: 0x0040, 0x866: 0x0008, 0x867: 0x0008, 0x868: 0x0008, 0x869: 0x0008, -	0x86a: 0x0008, 0x86b: 0x0008, 0x86c: 0x0008, 0x86d: 0x0008, 0x86e: 0x0008, 0x86f: 0x0008, -	0x870: 0x0040, 0x871: 0x0008, 0x872: 0x0008, 0x873: 0x0040, 0x874: 0x0040, 0x875: 0x0040, -	0x876: 0x0040, 0x877: 0x0040, 0x878: 0x0040, 0x879: 0x0040, 0x87a: 0x0040, 0x87b: 0x0040, -	0x87c: 0x0040, 0x87d: 0x0040, 0x87e: 0x0040, 0x87f: 0x0040, -	// Block 0x22, offset 0x880 -	0x880: 0x3008, 0x881: 0x3308, 0x882: 0x3308, 0x883: 0x3308, 0x884: 0x3308, 0x885: 0x0040, -	0x886: 0x3008, 0x887: 0x3008, 0x888: 0x3008, 0x889: 0x0040, 0x88a: 0x3008, 0x88b: 0x3008, -	0x88c: 0x3008, 0x88d: 0x3b08, 0x88e: 0x0008, 0x88f: 0x0018, 0x890: 0x0040, 0x891: 0x0040, -	0x892: 0x0040, 0x893: 0x0040, 0x894: 0x0008, 0x895: 0x0008, 0x896: 0x0008, 0x897: 0x3008, -	0x898: 0x0018, 0x899: 0x0018, 0x89a: 0x0018, 0x89b: 0x0018, 0x89c: 0x0018, 0x89d: 0x0018, -	0x89e: 0x0018, 0x89f: 0x0008, 0x8a0: 0x0008, 0x8a1: 0x0008, 0x8a2: 0x3308, 0x8a3: 0x3308, -	0x8a4: 0x0040, 0x8a5: 0x0040, 0x8a6: 0x0008, 0x8a7: 0x0008, 0x8a8: 0x0008, 0x8a9: 0x0008, -	0x8aa: 0x0008, 0x8ab: 0x0008, 0x8ac: 0x0008, 0x8ad: 0x0008, 0x8ae: 0x0008, 0x8af: 0x0008, -	0x8b0: 0x0018, 0x8b1: 0x0018, 0x8b2: 0x0018, 0x8b3: 0x0018, 0x8b4: 0x0018, 0x8b5: 0x0018, -	0x8b6: 0x0018, 0x8b7: 0x0018, 0x8b8: 0x0018, 0x8b9: 0x0018, 0x8ba: 0x0008, 0x8bb: 0x0008, -	0x8bc: 0x0008, 0x8bd: 0x0008, 0x8be: 0x0008, 0x8bf: 0x0008, -	// Block 0x23, offset 0x8c0 -	0x8c0: 0x0040, 0x8c1: 0x0008, 0x8c2: 0x0008, 0x8c3: 0x0040, 0x8c4: 0x0008, 0x8c5: 0x0040, -	0x8c6: 0x0040, 0x8c7: 0x0008, 0x8c8: 0x0008, 0x8c9: 0x0040, 0x8ca: 0x0008, 0x8cb: 0x0040, -	0x8cc: 0x0040, 0x8cd: 0x0008, 0x8ce: 0x0040, 0x8cf: 0x0040, 0x8d0: 0x0040, 0x8d1: 0x0040, -	0x8d2: 0x0040, 0x8d3: 0x0040, 0x8d4: 0x0008, 0x8d5: 0x0008, 0x8d6: 0x0008, 0x8d7: 0x0008, -	0x8d8: 0x0040, 0x8d9: 0x0008, 0x8da: 0x0008, 0x8db: 0x0008, 0x8dc: 0x0008, 0x8dd: 0x0008, -	0x8de: 0x0008, 0x8df: 0x0008, 0x8e0: 0x0040, 0x8e1: 0x0008, 0x8e2: 0x0008, 0x8e3: 0x0008, -	0x8e4: 0x0040, 0x8e5: 0x0008, 0x8e6: 0x0040, 0x8e7: 0x0008, 0x8e8: 0x0040, 0x8e9: 0x0040, -	0x8ea: 0x0008, 0x8eb: 0x0008, 0x8ec: 0x0040, 0x8ed: 0x0008, 0x8ee: 0x0008, 0x8ef: 0x0008, -	0x8f0: 0x0008, 0x8f1: 0x3308, 0x8f2: 0x0008, 0x8f3: 0x0929, 0x8f4: 0x3308, 0x8f5: 0x3308, -	0x8f6: 0x3308, 0x8f7: 0x3308, 0x8f8: 0x3308, 0x8f9: 0x3308, 0x8fa: 0x0040, 0x8fb: 0x3308, -	0x8fc: 0x3308, 0x8fd: 0x0008, 0x8fe: 0x0040, 0x8ff: 0x0040, -	// Block 0x24, offset 0x900 -	0x900: 0x0008, 0x901: 0x0008, 0x902: 0x0008, 0x903: 0x09d1, 0x904: 0x0008, 0x905: 0x0008, -	0x906: 0x0008, 0x907: 0x0008, 0x908: 0x0040, 0x909: 0x0008, 0x90a: 0x0008, 0x90b: 0x0008, -	0x90c: 0x0008, 0x90d: 0x0a09, 0x90e: 0x0008, 0x90f: 0x0008, 0x910: 0x0008, 0x911: 0x0008, -	0x912: 0x0a41, 0x913: 0x0008, 0x914: 0x0008, 0x915: 0x0008, 0x916: 0x0008, 0x917: 0x0a79, -	0x918: 0x0008, 0x919: 0x0008, 0x91a: 0x0008, 0x91b: 0x0008, 0x91c: 0x0ab1, 0x91d: 0x0008, -	0x91e: 0x0008, 0x91f: 0x0008, 0x920: 0x0008, 0x921: 0x0008, 0x922: 0x0008, 0x923: 0x0008, -	0x924: 0x0008, 0x925: 0x0008, 0x926: 0x0008, 0x927: 0x0008, 0x928: 0x0008, 0x929: 0x0ae9, -	0x92a: 0x0008, 0x92b: 0x0008, 0x92c: 0x0008, 0x92d: 0x0040, 0x92e: 0x0040, 0x92f: 0x0040, -	0x930: 0x0040, 0x931: 0x3308, 0x932: 0x3308, 0x933: 0x0b21, 0x934: 0x3308, 0x935: 0x0b59, -	0x936: 0x0b91, 0x937: 0x0bc9, 0x938: 0x0c19, 0x939: 0x0c51, 0x93a: 0x3308, 0x93b: 0x3308, -	0x93c: 0x3308, 0x93d: 0x3308, 0x93e: 0x3308, 0x93f: 0x3008, -	// Block 0x25, offset 0x940 -	0x940: 0x3308, 0x941: 0x0ca1, 0x942: 0x3308, 0x943: 0x3308, 0x944: 0x3b08, 0x945: 0x0018, -	0x946: 0x3308, 0x947: 0x3308, 0x948: 0x0008, 0x949: 0x0008, 0x94a: 0x0008, 0x94b: 0x0008, -	0x94c: 0x0008, 0x94d: 0x3308, 0x94e: 0x3308, 0x94f: 0x3308, 0x950: 0x3308, 0x951: 0x3308, -	0x952: 0x3308, 0x953: 0x0cd9, 0x954: 0x3308, 0x955: 0x3308, 0x956: 0x3308, 0x957: 0x3308, -	0x958: 0x0040, 0x959: 0x3308, 0x95a: 0x3308, 0x95b: 0x3308, 0x95c: 0x3308, 0x95d: 0x0d11, -	0x95e: 0x3308, 0x95f: 0x3308, 0x960: 0x3308, 0x961: 0x3308, 0x962: 0x0d49, 0x963: 0x3308, -	0x964: 0x3308, 0x965: 0x3308, 0x966: 0x3308, 0x967: 0x0d81, 0x968: 0x3308, 0x969: 0x3308, -	0x96a: 0x3308, 0x96b: 0x3308, 0x96c: 0x0db9, 0x96d: 0x3308, 0x96e: 0x3308, 0x96f: 0x3308, -	0x970: 0x3308, 0x971: 0x3308, 0x972: 0x3308, 0x973: 0x3308, 0x974: 0x3308, 0x975: 0x3308, -	0x976: 0x3308, 0x977: 0x3308, 0x978: 0x3308, 0x979: 0x0df1, 0x97a: 0x3308, 0x97b: 0x3308, -	0x97c: 0x3308, 0x97d: 0x0040, 0x97e: 0x0018, 0x97f: 0x0018, -	// Block 0x26, offset 0x980 -	0x980: 0x0008, 0x981: 0x0008, 0x982: 0x0008, 0x983: 0x0008, 0x984: 0x0008, 0x985: 0x0008, -	0x986: 0x0008, 0x987: 0x0008, 0x988: 0x0008, 0x989: 0x0008, 0x98a: 0x0008, 0x98b: 0x0008, -	0x98c: 0x0008, 0x98d: 0x0008, 0x98e: 0x0008, 0x98f: 0x0008, 0x990: 0x0008, 0x991: 0x0008, -	0x992: 0x0008, 0x993: 0x0008, 0x994: 0x0008, 0x995: 0x0008, 0x996: 0x0008, 0x997: 0x0008, -	0x998: 0x0008, 0x999: 0x0008, 0x99a: 0x0008, 0x99b: 0x0008, 0x99c: 0x0008, 0x99d: 0x0008, -	0x99e: 0x0008, 0x99f: 0x0008, 0x9a0: 0x0008, 0x9a1: 0x0008, 0x9a2: 0x0008, 0x9a3: 0x0008, -	0x9a4: 0x0008, 0x9a5: 0x0008, 0x9a6: 0x0008, 0x9a7: 0x0008, 0x9a8: 0x0008, 0x9a9: 0x0008, -	0x9aa: 0x0008, 0x9ab: 0x0008, 0x9ac: 0x0039, 0x9ad: 0x0ed1, 0x9ae: 0x0ee9, 0x9af: 0x0008, -	0x9b0: 0x0ef9, 0x9b1: 0x0f09, 0x9b2: 0x0f19, 0x9b3: 0x0f31, 0x9b4: 0x0249, 0x9b5: 0x0f41, -	0x9b6: 0x0259, 0x9b7: 0x0f51, 0x9b8: 0x0359, 0x9b9: 0x0f61, 0x9ba: 0x0f71, 0x9bb: 0x0008, -	0x9bc: 0x00d9, 0x9bd: 0x0f81, 0x9be: 0x0f99, 0x9bf: 0x0269, -	// Block 0x27, offset 0x9c0 -	0x9c0: 0x0fa9, 0x9c1: 0x0fb9, 0x9c2: 0x0279, 0x9c3: 0x0039, 0x9c4: 0x0fc9, 0x9c5: 0x0fe1, -	0x9c6: 0x059d, 0x9c7: 0x0ee9, 0x9c8: 0x0ef9, 0x9c9: 0x0f09, 0x9ca: 0x0ff9, 0x9cb: 0x1011, -	0x9cc: 0x1029, 0x9cd: 0x0f31, 0x9ce: 0x0008, 0x9cf: 0x0f51, 0x9d0: 0x0f61, 0x9d1: 0x1041, -	0x9d2: 0x00d9, 0x9d3: 0x1059, 0x9d4: 0x05b5, 0x9d5: 0x05b5, 0x9d6: 0x0f99, 0x9d7: 0x0fa9, -	0x9d8: 0x0fb9, 0x9d9: 0x059d, 0x9da: 0x1071, 0x9db: 0x1089, 0x9dc: 0x05cd, 0x9dd: 0x1099, -	0x9de: 0x10b1, 0x9df: 0x10c9, 0x9e0: 0x10e1, 0x9e1: 0x10f9, 0x9e2: 0x0f41, 0x9e3: 0x0269, -	0x9e4: 0x0fb9, 0x9e5: 0x1089, 0x9e6: 0x1099, 0x9e7: 0x10b1, 0x9e8: 0x1111, 0x9e9: 0x10e1, -	0x9ea: 0x10f9, 0x9eb: 0x0008, 0x9ec: 0x0008, 0x9ed: 0x0008, 0x9ee: 0x0008, 0x9ef: 0x0008, -	0x9f0: 0x0008, 0x9f1: 0x0008, 0x9f2: 0x0008, 0x9f3: 0x0008, 0x9f4: 0x0008, 0x9f5: 0x0008, -	0x9f6: 0x0008, 0x9f7: 0x0008, 0x9f8: 0x1129, 0x9f9: 0x0008, 0x9fa: 0x0008, 0x9fb: 0x0008, -	0x9fc: 0x0008, 0x9fd: 0x0008, 0x9fe: 0x0008, 0x9ff: 0x0008, -	// Block 0x28, offset 0xa00 -	0xa00: 0x0008, 0xa01: 0x0008, 0xa02: 0x0008, 0xa03: 0x0008, 0xa04: 0x0008, 0xa05: 0x0008, -	0xa06: 0x0008, 0xa07: 0x0008, 0xa08: 0x0008, 0xa09: 0x0008, 0xa0a: 0x0008, 0xa0b: 0x0008, -	0xa0c: 0x0008, 0xa0d: 0x0008, 0xa0e: 0x0008, 0xa0f: 0x0008, 0xa10: 0x0008, 0xa11: 0x0008, -	0xa12: 0x0008, 0xa13: 0x0008, 0xa14: 0x0008, 0xa15: 0x0008, 0xa16: 0x0008, 0xa17: 0x0008, -	0xa18: 0x0008, 0xa19: 0x0008, 0xa1a: 0x0008, 0xa1b: 0x1141, 0xa1c: 0x1159, 0xa1d: 0x1169, -	0xa1e: 0x1181, 0xa1f: 0x1029, 0xa20: 0x1199, 0xa21: 0x11a9, 0xa22: 0x11c1, 0xa23: 0x11d9, -	0xa24: 0x11f1, 0xa25: 0x1209, 0xa26: 0x1221, 0xa27: 0x05e5, 0xa28: 0x1239, 0xa29: 0x1251, -	0xa2a: 0xe17d, 0xa2b: 0x1269, 0xa2c: 0x1281, 0xa2d: 0x1299, 0xa2e: 0x12b1, 0xa2f: 0x12c9, -	0xa30: 0x12e1, 0xa31: 0x12f9, 0xa32: 0x1311, 0xa33: 0x1329, 0xa34: 0x1341, 0xa35: 0x1359, -	0xa36: 0x1371, 0xa37: 0x1389, 0xa38: 0x05fd, 0xa39: 0x13a1, 0xa3a: 0x13b9, 0xa3b: 0x13d1, -	0xa3c: 0x13e1, 0xa3d: 0x13f9, 0xa3e: 0x1411, 0xa3f: 0x1429, -	// Block 0x29, offset 0xa40 -	0xa40: 0xe00d, 0xa41: 0x0008, 0xa42: 0xe00d, 0xa43: 0x0008, 0xa44: 0xe00d, 0xa45: 0x0008, -	0xa46: 0xe00d, 0xa47: 0x0008, 0xa48: 0xe00d, 0xa49: 0x0008, 0xa4a: 0xe00d, 0xa4b: 0x0008, -	0xa4c: 0xe00d, 0xa4d: 0x0008, 0xa4e: 0xe00d, 0xa4f: 0x0008, 0xa50: 0xe00d, 0xa51: 0x0008, -	0xa52: 0xe00d, 0xa53: 0x0008, 0xa54: 0xe00d, 0xa55: 0x0008, 0xa56: 0xe00d, 0xa57: 0x0008, -	0xa58: 0xe00d, 0xa59: 0x0008, 0xa5a: 0xe00d, 0xa5b: 0x0008, 0xa5c: 0xe00d, 0xa5d: 0x0008, -	0xa5e: 0xe00d, 0xa5f: 0x0008, 0xa60: 0xe00d, 0xa61: 0x0008, 0xa62: 0xe00d, 0xa63: 0x0008, -	0xa64: 0xe00d, 0xa65: 0x0008, 0xa66: 0xe00d, 0xa67: 0x0008, 0xa68: 0xe00d, 0xa69: 0x0008, -	0xa6a: 0xe00d, 0xa6b: 0x0008, 0xa6c: 0xe00d, 0xa6d: 0x0008, 0xa6e: 0xe00d, 0xa6f: 0x0008, -	0xa70: 0xe00d, 0xa71: 0x0008, 0xa72: 0xe00d, 0xa73: 0x0008, 0xa74: 0xe00d, 0xa75: 0x0008, -	0xa76: 0xe00d, 0xa77: 0x0008, 0xa78: 0xe00d, 0xa79: 0x0008, 0xa7a: 0xe00d, 0xa7b: 0x0008, -	0xa7c: 0xe00d, 0xa7d: 0x0008, 0xa7e: 0xe00d, 0xa7f: 0x0008, -	// Block 0x2a, offset 0xa80 -	0xa80: 0xe00d, 0xa81: 0x0008, 0xa82: 0xe00d, 0xa83: 0x0008, 0xa84: 0xe00d, 0xa85: 0x0008, -	0xa86: 0xe00d, 0xa87: 0x0008, 0xa88: 0xe00d, 0xa89: 0x0008, 0xa8a: 0xe00d, 0xa8b: 0x0008, -	0xa8c: 0xe00d, 0xa8d: 0x0008, 0xa8e: 0xe00d, 0xa8f: 0x0008, 0xa90: 0xe00d, 0xa91: 0x0008, -	0xa92: 0xe00d, 0xa93: 0x0008, 0xa94: 0xe00d, 0xa95: 0x0008, 0xa96: 0x0008, 0xa97: 0x0008, -	0xa98: 0x0008, 0xa99: 0x0008, 0xa9a: 0x0615, 0xa9b: 0x0635, 0xa9c: 0x0008, 0xa9d: 0x0008, -	0xa9e: 0x1441, 0xa9f: 0x0008, 0xaa0: 0xe00d, 0xaa1: 0x0008, 0xaa2: 0xe00d, 0xaa3: 0x0008, -	0xaa4: 0xe00d, 0xaa5: 0x0008, 0xaa6: 0xe00d, 0xaa7: 0x0008, 0xaa8: 0xe00d, 0xaa9: 0x0008, -	0xaaa: 0xe00d, 0xaab: 0x0008, 0xaac: 0xe00d, 0xaad: 0x0008, 0xaae: 0xe00d, 0xaaf: 0x0008, -	0xab0: 0xe00d, 0xab1: 0x0008, 0xab2: 0xe00d, 0xab3: 0x0008, 0xab4: 0xe00d, 0xab5: 0x0008, -	0xab6: 0xe00d, 0xab7: 0x0008, 0xab8: 0xe00d, 0xab9: 0x0008, 0xaba: 0xe00d, 0xabb: 0x0008, -	0xabc: 0xe00d, 0xabd: 0x0008, 0xabe: 0xe00d, 0xabf: 0x0008, -	// Block 0x2b, offset 0xac0 -	0xac0: 0x0008, 0xac1: 0x0008, 0xac2: 0x0008, 0xac3: 0x0008, 0xac4: 0x0008, 0xac5: 0x0008, -	0xac6: 0x0040, 0xac7: 0x0040, 0xac8: 0xe045, 0xac9: 0xe045, 0xaca: 0xe045, 0xacb: 0xe045, -	0xacc: 0xe045, 0xacd: 0xe045, 0xace: 0x0040, 0xacf: 0x0040, 0xad0: 0x0008, 0xad1: 0x0008, -	0xad2: 0x0008, 0xad3: 0x0008, 0xad4: 0x0008, 0xad5: 0x0008, 0xad6: 0x0008, 0xad7: 0x0008, -	0xad8: 0x0040, 0xad9: 0xe045, 0xada: 0x0040, 0xadb: 0xe045, 0xadc: 0x0040, 0xadd: 0xe045, -	0xade: 0x0040, 0xadf: 0xe045, 0xae0: 0x0008, 0xae1: 0x0008, 0xae2: 0x0008, 0xae3: 0x0008, -	0xae4: 0x0008, 0xae5: 0x0008, 0xae6: 0x0008, 0xae7: 0x0008, 0xae8: 0xe045, 0xae9: 0xe045, -	0xaea: 0xe045, 0xaeb: 0xe045, 0xaec: 0xe045, 0xaed: 0xe045, 0xaee: 0xe045, 0xaef: 0xe045, -	0xaf0: 0x0008, 0xaf1: 0x1459, 0xaf2: 0x0008, 0xaf3: 0x1471, 0xaf4: 0x0008, 0xaf5: 0x1489, -	0xaf6: 0x0008, 0xaf7: 0x14a1, 0xaf8: 0x0008, 0xaf9: 0x14b9, 0xafa: 0x0008, 0xafb: 0x14d1, -	0xafc: 0x0008, 0xafd: 0x14e9, 0xafe: 0x0040, 0xaff: 0x0040, -	// Block 0x2c, offset 0xb00 -	0xb00: 0x1501, 0xb01: 0x1531, 0xb02: 0x1561, 0xb03: 0x1591, 0xb04: 0x15c1, 0xb05: 0x15f1, -	0xb06: 0x1621, 0xb07: 0x1651, 0xb08: 0x1501, 0xb09: 0x1531, 0xb0a: 0x1561, 0xb0b: 0x1591, -	0xb0c: 0x15c1, 0xb0d: 0x15f1, 0xb0e: 0x1621, 0xb0f: 0x1651, 0xb10: 0x1681, 0xb11: 0x16b1, -	0xb12: 0x16e1, 0xb13: 0x1711, 0xb14: 0x1741, 0xb15: 0x1771, 0xb16: 0x17a1, 0xb17: 0x17d1, -	0xb18: 0x1681, 0xb19: 0x16b1, 0xb1a: 0x16e1, 0xb1b: 0x1711, 0xb1c: 0x1741, 0xb1d: 0x1771, -	0xb1e: 0x17a1, 0xb1f: 0x17d1, 0xb20: 0x1801, 0xb21: 0x1831, 0xb22: 0x1861, 0xb23: 0x1891, -	0xb24: 0x18c1, 0xb25: 0x18f1, 0xb26: 0x1921, 0xb27: 0x1951, 0xb28: 0x1801, 0xb29: 0x1831, -	0xb2a: 0x1861, 0xb2b: 0x1891, 0xb2c: 0x18c1, 0xb2d: 0x18f1, 0xb2e: 0x1921, 0xb2f: 0x1951, -	0xb30: 0x0008, 0xb31: 0x0008, 0xb32: 0x1981, 0xb33: 0x19b1, 0xb34: 0x19d9, 0xb35: 0x0040, -	0xb36: 0x0008, 0xb37: 0x1a01, 0xb38: 0xe045, 0xb39: 0xe045, 0xb3a: 0x064d, 0xb3b: 0x1459, -	0xb3c: 0x19b1, 0xb3d: 0x0666, 0xb3e: 0x1a31, 0xb3f: 0x0686, -	// Block 0x2d, offset 0xb40 -	0xb40: 0x06a6, 0xb41: 0x1a4a, 0xb42: 0x1a79, 0xb43: 0x1aa9, 0xb44: 0x1ad1, 0xb45: 0x0040, -	0xb46: 0x0008, 0xb47: 0x1af9, 0xb48: 0x06c5, 0xb49: 0x1471, 0xb4a: 0x06dd, 0xb4b: 0x1489, -	0xb4c: 0x1aa9, 0xb4d: 0x1b2a, 0xb4e: 0x1b5a, 0xb4f: 0x1b8a, 0xb50: 0x0008, 0xb51: 0x0008, -	0xb52: 0x0008, 0xb53: 0x1bb9, 0xb54: 0x0040, 0xb55: 0x0040, 0xb56: 0x0008, 0xb57: 0x0008, -	0xb58: 0xe045, 0xb59: 0xe045, 0xb5a: 0x06f5, 0xb5b: 0x14a1, 0xb5c: 0x0040, 0xb5d: 0x1bd2, -	0xb5e: 0x1c02, 0xb5f: 0x1c32, 0xb60: 0x0008, 0xb61: 0x0008, 0xb62: 0x0008, 0xb63: 0x1c61, -	0xb64: 0x0008, 0xb65: 0x0008, 0xb66: 0x0008, 0xb67: 0x0008, 0xb68: 0xe045, 0xb69: 0xe045, -	0xb6a: 0x070d, 0xb6b: 0x14d1, 0xb6c: 0xe04d, 0xb6d: 0x1c7a, 0xb6e: 0x03d2, 0xb6f: 0x1caa, -	0xb70: 0x0040, 0xb71: 0x0040, 0xb72: 0x1cb9, 0xb73: 0x1ce9, 0xb74: 0x1d11, 0xb75: 0x0040, -	0xb76: 0x0008, 0xb77: 0x1d39, 0xb78: 0x0725, 0xb79: 0x14b9, 0xb7a: 0x0515, 0xb7b: 0x14e9, -	0xb7c: 0x1ce9, 0xb7d: 0x073e, 0xb7e: 0x075e, 0xb7f: 0x0040, -	// Block 0x2e, offset 0xb80 -	0xb80: 0x000a, 0xb81: 0x000a, 0xb82: 0x000a, 0xb83: 0x000a, 0xb84: 0x000a, 0xb85: 0x000a, -	0xb86: 0x000a, 0xb87: 0x000a, 0xb88: 0x000a, 0xb89: 0x000a, 0xb8a: 0x000a, 0xb8b: 0x03c0, -	0xb8c: 0x0003, 0xb8d: 0x0003, 0xb8e: 0x0340, 0xb8f: 0x0b40, 0xb90: 0x0018, 0xb91: 0xe00d, -	0xb92: 0x0018, 0xb93: 0x0018, 0xb94: 0x0018, 0xb95: 0x0018, 0xb96: 0x0018, 0xb97: 0x077e, -	0xb98: 0x0018, 0xb99: 0x0018, 0xb9a: 0x0018, 0xb9b: 0x0018, 0xb9c: 0x0018, 0xb9d: 0x0018, -	0xb9e: 0x0018, 0xb9f: 0x0018, 0xba0: 0x0018, 0xba1: 0x0018, 0xba2: 0x0018, 0xba3: 0x0018, -	0xba4: 0x0040, 0xba5: 0x0040, 0xba6: 0x0040, 0xba7: 0x0018, 0xba8: 0x0040, 0xba9: 0x0040, -	0xbaa: 0x0340, 0xbab: 0x0340, 0xbac: 0x0340, 0xbad: 0x0340, 0xbae: 0x0340, 0xbaf: 0x000a, -	0xbb0: 0x0018, 0xbb1: 0x0018, 0xbb2: 0x0018, 0xbb3: 0x1d69, 0xbb4: 0x1da1, 0xbb5: 0x0018, -	0xbb6: 0x1df1, 0xbb7: 0x1e29, 0xbb8: 0x0018, 0xbb9: 0x0018, 0xbba: 0x0018, 0xbbb: 0x0018, -	0xbbc: 0x1e7a, 0xbbd: 0x0018, 0xbbe: 0x079e, 0xbbf: 0x0018, -	// Block 0x2f, offset 0xbc0 -	0xbc0: 0x0018, 0xbc1: 0x0018, 0xbc2: 0x0018, 0xbc3: 0x0018, 0xbc4: 0x0018, 0xbc5: 0x0018, -	0xbc6: 0x0018, 0xbc7: 0x1e92, 0xbc8: 0x1eaa, 0xbc9: 0x1ec2, 0xbca: 0x0018, 0xbcb: 0x0018, -	0xbcc: 0x0018, 0xbcd: 0x0018, 0xbce: 0x0018, 0xbcf: 0x0018, 0xbd0: 0x0018, 0xbd1: 0x0018, -	0xbd2: 0x0018, 0xbd3: 0x0018, 0xbd4: 0x0018, 0xbd5: 0x0018, 0xbd6: 0x0018, 0xbd7: 0x1ed9, -	0xbd8: 0x0018, 0xbd9: 0x0018, 0xbda: 0x0018, 0xbdb: 0x0018, 0xbdc: 0x0018, 0xbdd: 0x0018, -	0xbde: 0x0018, 0xbdf: 0x000a, 0xbe0: 0x03c0, 0xbe1: 0x0340, 0xbe2: 0x0340, 0xbe3: 0x0340, -	0xbe4: 0x03c0, 0xbe5: 0x0040, 0xbe6: 0x0040, 0xbe7: 0x0040, 0xbe8: 0x0040, 0xbe9: 0x0040, -	0xbea: 0x0340, 0xbeb: 0x0340, 0xbec: 0x0340, 0xbed: 0x0340, 0xbee: 0x0340, 0xbef: 0x0340, -	0xbf0: 0x1f41, 0xbf1: 0x0f41, 0xbf2: 0x0040, 0xbf3: 0x0040, 0xbf4: 0x1f51, 0xbf5: 0x1f61, -	0xbf6: 0x1f71, 0xbf7: 0x1f81, 0xbf8: 0x1f91, 0xbf9: 0x1fa1, 0xbfa: 0x1fb2, 0xbfb: 0x07bd, -	0xbfc: 0x1fc2, 0xbfd: 0x1fd2, 0xbfe: 0x1fe2, 0xbff: 0x0f71, -	// Block 0x30, offset 0xc00 -	0xc00: 0x1f41, 0xc01: 0x00c9, 0xc02: 0x0069, 0xc03: 0x0079, 0xc04: 0x1f51, 0xc05: 0x1f61, -	0xc06: 0x1f71, 0xc07: 0x1f81, 0xc08: 0x1f91, 0xc09: 0x1fa1, 0xc0a: 0x1fb2, 0xc0b: 0x07d5, -	0xc0c: 0x1fc2, 0xc0d: 0x1fd2, 0xc0e: 0x1fe2, 0xc0f: 0x0040, 0xc10: 0x0039, 0xc11: 0x0f09, -	0xc12: 0x00d9, 0xc13: 0x0369, 0xc14: 0x0ff9, 0xc15: 0x0249, 0xc16: 0x0f51, 0xc17: 0x0359, -	0xc18: 0x0f61, 0xc19: 0x0f71, 0xc1a: 0x0f99, 0xc1b: 0x01d9, 0xc1c: 0x0fa9, 0xc1d: 0x0040, -	0xc1e: 0x0040, 0xc1f: 0x0040, 0xc20: 0x0018, 0xc21: 0x0018, 0xc22: 0x0018, 0xc23: 0x0018, -	0xc24: 0x0018, 0xc25: 0x0018, 0xc26: 0x0018, 0xc27: 0x0018, 0xc28: 0x1ff1, 0xc29: 0x0018, -	0xc2a: 0x0018, 0xc2b: 0x0018, 0xc2c: 0x0018, 0xc2d: 0x0018, 0xc2e: 0x0018, 0xc2f: 0x0018, -	0xc30: 0x0018, 0xc31: 0x0018, 0xc32: 0x0018, 0xc33: 0x0018, 0xc34: 0x0018, 0xc35: 0x0018, -	0xc36: 0x0018, 0xc37: 0x0018, 0xc38: 0x0018, 0xc39: 0x0018, 0xc3a: 0x0018, 0xc3b: 0x0018, -	0xc3c: 0x0018, 0xc3d: 0x0018, 0xc3e: 0x0018, 0xc3f: 0x0040, -	// Block 0x31, offset 0xc40 -	0xc40: 0x07ee, 0xc41: 0x080e, 0xc42: 0x1159, 0xc43: 0x082d, 0xc44: 0x0018, 0xc45: 0x084e, -	0xc46: 0x086e, 0xc47: 0x1011, 0xc48: 0x0018, 0xc49: 0x088d, 0xc4a: 0x0f31, 0xc4b: 0x0249, -	0xc4c: 0x0249, 0xc4d: 0x0249, 0xc4e: 0x0249, 0xc4f: 0x2009, 0xc50: 0x0f41, 0xc51: 0x0f41, -	0xc52: 0x0359, 0xc53: 0x0359, 0xc54: 0x0018, 0xc55: 0x0f71, 0xc56: 0x2021, 0xc57: 0x0018, -	0xc58: 0x0018, 0xc59: 0x0f99, 0xc5a: 0x2039, 0xc5b: 0x0269, 0xc5c: 0x0269, 0xc5d: 0x0269, -	0xc5e: 0x0018, 0xc5f: 0x0018, 0xc60: 0x2049, 0xc61: 0x08ad, 0xc62: 0x2061, 0xc63: 0x0018, -	0xc64: 0x13d1, 0xc65: 0x0018, 0xc66: 0x2079, 0xc67: 0x0018, 0xc68: 0x13d1, 0xc69: 0x0018, -	0xc6a: 0x0f51, 0xc6b: 0x2091, 0xc6c: 0x0ee9, 0xc6d: 0x1159, 0xc6e: 0x0018, 0xc6f: 0x0f09, -	0xc70: 0x0f09, 0xc71: 0x1199, 0xc72: 0x0040, 0xc73: 0x0f61, 0xc74: 0x00d9, 0xc75: 0x20a9, -	0xc76: 0x20c1, 0xc77: 0x20d9, 0xc78: 0x20f1, 0xc79: 0x0f41, 0xc7a: 0x0018, 0xc7b: 0x08cd, -	0xc7c: 0x2109, 0xc7d: 0x10b1, 0xc7e: 0x10b1, 0xc7f: 0x2109, -	// Block 0x32, offset 0xc80 -	0xc80: 0x08ed, 0xc81: 0x0018, 0xc82: 0x0018, 0xc83: 0x0018, 0xc84: 0x0018, 0xc85: 0x0ef9, -	0xc86: 0x0ef9, 0xc87: 0x0f09, 0xc88: 0x0f41, 0xc89: 0x0259, 0xc8a: 0x0018, 0xc8b: 0x0018, -	0xc8c: 0x0018, 0xc8d: 0x0018, 0xc8e: 0x0008, 0xc8f: 0x0018, 0xc90: 0x2121, 0xc91: 0x2151, -	0xc92: 0x2181, 0xc93: 0x21b9, 0xc94: 0x21e9, 0xc95: 0x2219, 0xc96: 0x2249, 0xc97: 0x2279, -	0xc98: 0x22a9, 0xc99: 0x22d9, 0xc9a: 0x2309, 0xc9b: 0x2339, 0xc9c: 0x2369, 0xc9d: 0x2399, -	0xc9e: 0x23c9, 0xc9f: 0x23f9, 0xca0: 0x0f41, 0xca1: 0x2421, 0xca2: 0x0905, 0xca3: 0x2439, -	0xca4: 0x1089, 0xca5: 0x2451, 0xca6: 0x0925, 0xca7: 0x2469, 0xca8: 0x2491, 0xca9: 0x0369, -	0xcaa: 0x24a9, 0xcab: 0x0945, 0xcac: 0x0359, 0xcad: 0x1159, 0xcae: 0x0ef9, 0xcaf: 0x0f61, -	0xcb0: 0x0f41, 0xcb1: 0x2421, 0xcb2: 0x0965, 0xcb3: 0x2439, 0xcb4: 0x1089, 0xcb5: 0x2451, -	0xcb6: 0x0985, 0xcb7: 0x2469, 0xcb8: 0x2491, 0xcb9: 0x0369, 0xcba: 0x24a9, 0xcbb: 0x09a5, -	0xcbc: 0x0359, 0xcbd: 0x1159, 0xcbe: 0x0ef9, 0xcbf: 0x0f61, -	// Block 0x33, offset 0xcc0 -	0xcc0: 0x0018, 0xcc1: 0x0018, 0xcc2: 0x0018, 0xcc3: 0x0018, 0xcc4: 0x0018, 0xcc5: 0x0018, -	0xcc6: 0x0018, 0xcc7: 0x0018, 0xcc8: 0x0018, 0xcc9: 0x0018, 0xcca: 0x0018, 0xccb: 0x0040, -	0xccc: 0x0040, 0xccd: 0x0040, 0xcce: 0x0040, 0xccf: 0x0040, 0xcd0: 0x0040, 0xcd1: 0x0040, -	0xcd2: 0x0040, 0xcd3: 0x0040, 0xcd4: 0x0040, 0xcd5: 0x0040, 0xcd6: 0x0040, 0xcd7: 0x0040, -	0xcd8: 0x0040, 0xcd9: 0x0040, 0xcda: 0x0040, 0xcdb: 0x0040, 0xcdc: 0x0040, 0xcdd: 0x0040, -	0xcde: 0x0040, 0xcdf: 0x0040, 0xce0: 0x00c9, 0xce1: 0x0069, 0xce2: 0x0079, 0xce3: 0x1f51, -	0xce4: 0x1f61, 0xce5: 0x1f71, 0xce6: 0x1f81, 0xce7: 0x1f91, 0xce8: 0x1fa1, 0xce9: 0x2601, -	0xcea: 0x2619, 0xceb: 0x2631, 0xcec: 0x2649, 0xced: 0x2661, 0xcee: 0x2679, 0xcef: 0x2691, -	0xcf0: 0x26a9, 0xcf1: 0x26c1, 0xcf2: 0x26d9, 0xcf3: 0x26f1, 0xcf4: 0x0a06, 0xcf5: 0x0a26, -	0xcf6: 0x0a46, 0xcf7: 0x0a66, 0xcf8: 0x0a86, 0xcf9: 0x0aa6, 0xcfa: 0x0ac6, 0xcfb: 0x0ae6, -	0xcfc: 0x0b06, 0xcfd: 0x270a, 0xcfe: 0x2732, 0xcff: 0x275a, -	// Block 0x34, offset 0xd00 -	0xd00: 0x2782, 0xd01: 0x27aa, 0xd02: 0x27d2, 0xd03: 0x27fa, 0xd04: 0x2822, 0xd05: 0x284a, -	0xd06: 0x2872, 0xd07: 0x289a, 0xd08: 0x0040, 0xd09: 0x0040, 0xd0a: 0x0040, 0xd0b: 0x0040, -	0xd0c: 0x0040, 0xd0d: 0x0040, 0xd0e: 0x0040, 0xd0f: 0x0040, 0xd10: 0x0040, 0xd11: 0x0040, -	0xd12: 0x0040, 0xd13: 0x0040, 0xd14: 0x0040, 0xd15: 0x0040, 0xd16: 0x0040, 0xd17: 0x0040, -	0xd18: 0x0040, 0xd19: 0x0040, 0xd1a: 0x0040, 0xd1b: 0x0040, 0xd1c: 0x0b26, 0xd1d: 0x0b46, -	0xd1e: 0x0b66, 0xd1f: 0x0b86, 0xd20: 0x0ba6, 0xd21: 0x0bc6, 0xd22: 0x0be6, 0xd23: 0x0c06, -	0xd24: 0x0c26, 0xd25: 0x0c46, 0xd26: 0x0c66, 0xd27: 0x0c86, 0xd28: 0x0ca6, 0xd29: 0x0cc6, -	0xd2a: 0x0ce6, 0xd2b: 0x0d06, 0xd2c: 0x0d26, 0xd2d: 0x0d46, 0xd2e: 0x0d66, 0xd2f: 0x0d86, -	0xd30: 0x0da6, 0xd31: 0x0dc6, 0xd32: 0x0de6, 0xd33: 0x0e06, 0xd34: 0x0e26, 0xd35: 0x0e46, -	0xd36: 0x0039, 0xd37: 0x0ee9, 0xd38: 0x1159, 0xd39: 0x0ef9, 0xd3a: 0x0f09, 0xd3b: 0x1199, -	0xd3c: 0x0f31, 0xd3d: 0x0249, 0xd3e: 0x0f41, 0xd3f: 0x0259, -	// Block 0x35, offset 0xd40 -	0xd40: 0x0f51, 0xd41: 0x0359, 0xd42: 0x0f61, 0xd43: 0x0f71, 0xd44: 0x00d9, 0xd45: 0x0f99, -	0xd46: 0x2039, 0xd47: 0x0269, 0xd48: 0x01d9, 0xd49: 0x0fa9, 0xd4a: 0x0fb9, 0xd4b: 0x1089, -	0xd4c: 0x0279, 0xd4d: 0x0369, 0xd4e: 0x0289, 0xd4f: 0x13d1, 0xd50: 0x0039, 0xd51: 0x0ee9, -	0xd52: 0x1159, 0xd53: 0x0ef9, 0xd54: 0x0f09, 0xd55: 0x1199, 0xd56: 0x0f31, 0xd57: 0x0249, -	0xd58: 0x0f41, 0xd59: 0x0259, 0xd5a: 0x0f51, 0xd5b: 0x0359, 0xd5c: 0x0f61, 0xd5d: 0x0f71, -	0xd5e: 0x00d9, 0xd5f: 0x0f99, 0xd60: 0x2039, 0xd61: 0x0269, 0xd62: 0x01d9, 0xd63: 0x0fa9, -	0xd64: 0x0fb9, 0xd65: 0x1089, 0xd66: 0x0279, 0xd67: 0x0369, 0xd68: 0x0289, 0xd69: 0x13d1, -	0xd6a: 0x1f41, 0xd6b: 0x0018, 0xd6c: 0x0018, 0xd6d: 0x0018, 0xd6e: 0x0018, 0xd6f: 0x0018, -	0xd70: 0x0018, 0xd71: 0x0018, 0xd72: 0x0018, 0xd73: 0x0018, 0xd74: 0x0018, 0xd75: 0x0018, -	0xd76: 0x0018, 0xd77: 0x0018, 0xd78: 0x0018, 0xd79: 0x0018, 0xd7a: 0x0018, 0xd7b: 0x0018, -	0xd7c: 0x0018, 0xd7d: 0x0018, 0xd7e: 0x0018, 0xd7f: 0x0018, -	// Block 0x36, offset 0xd80 -	0xd80: 0x0008, 0xd81: 0x0008, 0xd82: 0x0008, 0xd83: 0x0008, 0xd84: 0x0008, 0xd85: 0x0008, -	0xd86: 0x0008, 0xd87: 0x0008, 0xd88: 0x0008, 0xd89: 0x0008, 0xd8a: 0x0008, 0xd8b: 0x0008, -	0xd8c: 0x0008, 0xd8d: 0x0008, 0xd8e: 0x0008, 0xd8f: 0x0008, 0xd90: 0x0008, 0xd91: 0x0008, -	0xd92: 0x0008, 0xd93: 0x0008, 0xd94: 0x0008, 0xd95: 0x0008, 0xd96: 0x0008, 0xd97: 0x0008, -	0xd98: 0x0008, 0xd99: 0x0008, 0xd9a: 0x0008, 0xd9b: 0x0008, 0xd9c: 0x0008, 0xd9d: 0x0008, -	0xd9e: 0x0008, 0xd9f: 0x0040, 0xda0: 0xe00d, 0xda1: 0x0008, 0xda2: 0x2971, 0xda3: 0x0ebd, -	0xda4: 0x2989, 0xda5: 0x0008, 0xda6: 0x0008, 0xda7: 0xe07d, 0xda8: 0x0008, 0xda9: 0xe01d, -	0xdaa: 0x0008, 0xdab: 0xe03d, 0xdac: 0x0008, 0xdad: 0x0fe1, 0xdae: 0x1281, 0xdaf: 0x0fc9, -	0xdb0: 0x1141, 0xdb1: 0x0008, 0xdb2: 0xe00d, 0xdb3: 0x0008, 0xdb4: 0x0008, 0xdb5: 0xe01d, -	0xdb6: 0x0008, 0xdb7: 0x0008, 0xdb8: 0x0008, 0xdb9: 0x0008, 0xdba: 0x0008, 0xdbb: 0x0008, -	0xdbc: 0x0259, 0xdbd: 0x1089, 0xdbe: 0x29a1, 0xdbf: 0x29b9, -	// Block 0x37, offset 0xdc0 -	0xdc0: 0xe00d, 0xdc1: 0x0008, 0xdc2: 0xe00d, 0xdc3: 0x0008, 0xdc4: 0xe00d, 0xdc5: 0x0008, -	0xdc6: 0xe00d, 0xdc7: 0x0008, 0xdc8: 0xe00d, 0xdc9: 0x0008, 0xdca: 0xe00d, 0xdcb: 0x0008, -	0xdcc: 0xe00d, 0xdcd: 0x0008, 0xdce: 0xe00d, 0xdcf: 0x0008, 0xdd0: 0xe00d, 0xdd1: 0x0008, -	0xdd2: 0xe00d, 0xdd3: 0x0008, 0xdd4: 0xe00d, 0xdd5: 0x0008, 0xdd6: 0xe00d, 0xdd7: 0x0008, -	0xdd8: 0xe00d, 0xdd9: 0x0008, 0xdda: 0xe00d, 0xddb: 0x0008, 0xddc: 0xe00d, 0xddd: 0x0008, -	0xdde: 0xe00d, 0xddf: 0x0008, 0xde0: 0xe00d, 0xde1: 0x0008, 0xde2: 0xe00d, 0xde3: 0x0008, -	0xde4: 0x0008, 0xde5: 0x0018, 0xde6: 0x0018, 0xde7: 0x0018, 0xde8: 0x0018, 0xde9: 0x0018, -	0xdea: 0x0018, 0xdeb: 0xe03d, 0xdec: 0x0008, 0xded: 0xe01d, 0xdee: 0x0008, 0xdef: 0x3308, -	0xdf0: 0x3308, 0xdf1: 0x3308, 0xdf2: 0xe00d, 0xdf3: 0x0008, 0xdf4: 0x0040, 0xdf5: 0x0040, -	0xdf6: 0x0040, 0xdf7: 0x0040, 0xdf8: 0x0040, 0xdf9: 0x0018, 0xdfa: 0x0018, 0xdfb: 0x0018, -	0xdfc: 0x0018, 0xdfd: 0x0018, 0xdfe: 0x0018, 0xdff: 0x0018, -	// Block 0x38, offset 0xe00 -	0xe00: 0x26fd, 0xe01: 0x271d, 0xe02: 0x273d, 0xe03: 0x275d, 0xe04: 0x277d, 0xe05: 0x279d, -	0xe06: 0x27bd, 0xe07: 0x27dd, 0xe08: 0x27fd, 0xe09: 0x281d, 0xe0a: 0x283d, 0xe0b: 0x285d, -	0xe0c: 0x287d, 0xe0d: 0x289d, 0xe0e: 0x28bd, 0xe0f: 0x28dd, 0xe10: 0x28fd, 0xe11: 0x291d, -	0xe12: 0x293d, 0xe13: 0x295d, 0xe14: 0x297d, 0xe15: 0x299d, 0xe16: 0x0040, 0xe17: 0x0040, -	0xe18: 0x0040, 0xe19: 0x0040, 0xe1a: 0x0040, 0xe1b: 0x0040, 0xe1c: 0x0040, 0xe1d: 0x0040, -	0xe1e: 0x0040, 0xe1f: 0x0040, 0xe20: 0x0040, 0xe21: 0x0040, 0xe22: 0x0040, 0xe23: 0x0040, -	0xe24: 0x0040, 0xe25: 0x0040, 0xe26: 0x0040, 0xe27: 0x0040, 0xe28: 0x0040, 0xe29: 0x0040, -	0xe2a: 0x0040, 0xe2b: 0x0040, 0xe2c: 0x0040, 0xe2d: 0x0040, 0xe2e: 0x0040, 0xe2f: 0x0040, -	0xe30: 0x0040, 0xe31: 0x0040, 0xe32: 0x0040, 0xe33: 0x0040, 0xe34: 0x0040, 0xe35: 0x0040, -	0xe36: 0x0040, 0xe37: 0x0040, 0xe38: 0x0040, 0xe39: 0x0040, 0xe3a: 0x0040, 0xe3b: 0x0040, -	0xe3c: 0x0040, 0xe3d: 0x0040, 0xe3e: 0x0040, 0xe3f: 0x0040, -	// Block 0x39, offset 0xe40 -	0xe40: 0x000a, 0xe41: 0x0018, 0xe42: 0x29d1, 0xe43: 0x0018, 0xe44: 0x0018, 0xe45: 0x0008, -	0xe46: 0x0008, 0xe47: 0x0008, 0xe48: 0x0018, 0xe49: 0x0018, 0xe4a: 0x0018, 0xe4b: 0x0018, -	0xe4c: 0x0018, 0xe4d: 0x0018, 0xe4e: 0x0018, 0xe4f: 0x0018, 0xe50: 0x0018, 0xe51: 0x0018, -	0xe52: 0x0018, 0xe53: 0x0018, 0xe54: 0x0018, 0xe55: 0x0018, 0xe56: 0x0018, 0xe57: 0x0018, -	0xe58: 0x0018, 0xe59: 0x0018, 0xe5a: 0x0018, 0xe5b: 0x0018, 0xe5c: 0x0018, 0xe5d: 0x0018, -	0xe5e: 0x0018, 0xe5f: 0x0018, 0xe60: 0x0018, 0xe61: 0x0018, 0xe62: 0x0018, 0xe63: 0x0018, -	0xe64: 0x0018, 0xe65: 0x0018, 0xe66: 0x0018, 0xe67: 0x0018, 0xe68: 0x0018, 0xe69: 0x0018, -	0xe6a: 0x3308, 0xe6b: 0x3308, 0xe6c: 0x3308, 0xe6d: 0x3308, 0xe6e: 0x3018, 0xe6f: 0x3018, -	0xe70: 0x0018, 0xe71: 0x0018, 0xe72: 0x0018, 0xe73: 0x0018, 0xe74: 0x0018, 0xe75: 0x0018, -	0xe76: 0xe125, 0xe77: 0x0018, 0xe78: 0x29bd, 0xe79: 0x29dd, 0xe7a: 0x29fd, 0xe7b: 0x0018, -	0xe7c: 0x0008, 0xe7d: 0x0018, 0xe7e: 0x0018, 0xe7f: 0x0018, -	// Block 0x3a, offset 0xe80 -	0xe80: 0x2b3d, 0xe81: 0x2b5d, 0xe82: 0x2b7d, 0xe83: 0x2b9d, 0xe84: 0x2bbd, 0xe85: 0x2bdd, -	0xe86: 0x2bdd, 0xe87: 0x2bdd, 0xe88: 0x2bfd, 0xe89: 0x2bfd, 0xe8a: 0x2bfd, 0xe8b: 0x2bfd, -	0xe8c: 0x2c1d, 0xe8d: 0x2c1d, 0xe8e: 0x2c1d, 0xe8f: 0x2c3d, 0xe90: 0x2c5d, 0xe91: 0x2c5d, -	0xe92: 0x2a7d, 0xe93: 0x2a7d, 0xe94: 0x2c5d, 0xe95: 0x2c5d, 0xe96: 0x2c7d, 0xe97: 0x2c7d, -	0xe98: 0x2c5d, 0xe99: 0x2c5d, 0xe9a: 0x2a7d, 0xe9b: 0x2a7d, 0xe9c: 0x2c5d, 0xe9d: 0x2c5d, -	0xe9e: 0x2c3d, 0xe9f: 0x2c3d, 0xea0: 0x2c9d, 0xea1: 0x2c9d, 0xea2: 0x2cbd, 0xea3: 0x2cbd, -	0xea4: 0x0040, 0xea5: 0x2cdd, 0xea6: 0x2cfd, 0xea7: 0x2d1d, 0xea8: 0x2d1d, 0xea9: 0x2d3d, -	0xeaa: 0x2d5d, 0xeab: 0x2d7d, 0xeac: 0x2d9d, 0xead: 0x2dbd, 0xeae: 0x2ddd, 0xeaf: 0x2dfd, -	0xeb0: 0x2e1d, 0xeb1: 0x2e3d, 0xeb2: 0x2e3d, 0xeb3: 0x2e5d, 0xeb4: 0x2e7d, 0xeb5: 0x2e7d, -	0xeb6: 0x2e9d, 0xeb7: 0x2ebd, 0xeb8: 0x2e5d, 0xeb9: 0x2edd, 0xeba: 0x2efd, 0xebb: 0x2edd, -	0xebc: 0x2e5d, 0xebd: 0x2f1d, 0xebe: 0x2f3d, 0xebf: 0x2f5d, -	// Block 0x3b, offset 0xec0 -	0xec0: 0x2f7d, 0xec1: 0x2f9d, 0xec2: 0x2cfd, 0xec3: 0x2cdd, 0xec4: 0x2fbd, 0xec5: 0x2fdd, -	0xec6: 0x2ffd, 0xec7: 0x301d, 0xec8: 0x303d, 0xec9: 0x305d, 0xeca: 0x307d, 0xecb: 0x309d, -	0xecc: 0x30bd, 0xecd: 0x30dd, 0xece: 0x30fd, 0xecf: 0x0040, 0xed0: 0x0018, 0xed1: 0x0018, -	0xed2: 0x311d, 0xed3: 0x313d, 0xed4: 0x315d, 0xed5: 0x317d, 0xed6: 0x319d, 0xed7: 0x31bd, -	0xed8: 0x31dd, 0xed9: 0x31fd, 0xeda: 0x321d, 0xedb: 0x323d, 0xedc: 0x315d, 0xedd: 0x325d, -	0xede: 0x327d, 0xedf: 0x329d, 0xee0: 0x0008, 0xee1: 0x0008, 0xee2: 0x0008, 0xee3: 0x0008, -	0xee4: 0x0008, 0xee5: 0x0008, 0xee6: 0x0008, 0xee7: 0x0008, 0xee8: 0x0008, 0xee9: 0x0008, -	0xeea: 0x0008, 0xeeb: 0x0008, 0xeec: 0x0008, 0xeed: 0x0008, 0xeee: 0x0008, 0xeef: 0x0008, -	0xef0: 0x0008, 0xef1: 0x0008, 0xef2: 0x0008, 0xef3: 0x0008, 0xef4: 0x0008, 0xef5: 0x0008, -	0xef6: 0x0008, 0xef7: 0x0008, 0xef8: 0x0008, 0xef9: 0x0008, 0xefa: 0x0008, 0xefb: 0x0040, -	0xefc: 0x0040, 0xefd: 0x0040, 0xefe: 0x0040, 0xeff: 0x0040, -	// Block 0x3c, offset 0xf00 -	0xf00: 0x36a2, 0xf01: 0x36d2, 0xf02: 0x3702, 0xf03: 0x3732, 0xf04: 0x32bd, 0xf05: 0x32dd, -	0xf06: 0x32fd, 0xf07: 0x331d, 0xf08: 0x0018, 0xf09: 0x0018, 0xf0a: 0x0018, 0xf0b: 0x0018, -	0xf0c: 0x0018, 0xf0d: 0x0018, 0xf0e: 0x0018, 0xf0f: 0x0018, 0xf10: 0x333d, 0xf11: 0x3761, -	0xf12: 0x3779, 0xf13: 0x3791, 0xf14: 0x37a9, 0xf15: 0x37c1, 0xf16: 0x37d9, 0xf17: 0x37f1, -	0xf18: 0x3809, 0xf19: 0x3821, 0xf1a: 0x3839, 0xf1b: 0x3851, 0xf1c: 0x3869, 0xf1d: 0x3881, -	0xf1e: 0x3899, 0xf1f: 0x38b1, 0xf20: 0x335d, 0xf21: 0x337d, 0xf22: 0x339d, 0xf23: 0x33bd, -	0xf24: 0x33dd, 0xf25: 0x33dd, 0xf26: 0x33fd, 0xf27: 0x341d, 0xf28: 0x343d, 0xf29: 0x345d, -	0xf2a: 0x347d, 0xf2b: 0x349d, 0xf2c: 0x34bd, 0xf2d: 0x34dd, 0xf2e: 0x34fd, 0xf2f: 0x351d, -	0xf30: 0x353d, 0xf31: 0x355d, 0xf32: 0x357d, 0xf33: 0x359d, 0xf34: 0x35bd, 0xf35: 0x35dd, -	0xf36: 0x35fd, 0xf37: 0x361d, 0xf38: 0x363d, 0xf39: 0x365d, 0xf3a: 0x367d, 0xf3b: 0x369d, -	0xf3c: 0x38c9, 0xf3d: 0x3901, 0xf3e: 0x36bd, 0xf3f: 0x0018, -	// Block 0x3d, offset 0xf40 -	0xf40: 0x36dd, 0xf41: 0x36fd, 0xf42: 0x371d, 0xf43: 0x373d, 0xf44: 0x375d, 0xf45: 0x377d, -	0xf46: 0x379d, 0xf47: 0x37bd, 0xf48: 0x37dd, 0xf49: 0x37fd, 0xf4a: 0x381d, 0xf4b: 0x383d, -	0xf4c: 0x385d, 0xf4d: 0x387d, 0xf4e: 0x389d, 0xf4f: 0x38bd, 0xf50: 0x38dd, 0xf51: 0x38fd, -	0xf52: 0x391d, 0xf53: 0x393d, 0xf54: 0x395d, 0xf55: 0x397d, 0xf56: 0x399d, 0xf57: 0x39bd, -	0xf58: 0x39dd, 0xf59: 0x39fd, 0xf5a: 0x3a1d, 0xf5b: 0x3a3d, 0xf5c: 0x3a5d, 0xf5d: 0x3a7d, -	0xf5e: 0x3a9d, 0xf5f: 0x3abd, 0xf60: 0x3add, 0xf61: 0x3afd, 0xf62: 0x3b1d, 0xf63: 0x3b3d, -	0xf64: 0x3b5d, 0xf65: 0x3b7d, 0xf66: 0x127d, 0xf67: 0x3b9d, 0xf68: 0x3bbd, 0xf69: 0x3bdd, -	0xf6a: 0x3bfd, 0xf6b: 0x3c1d, 0xf6c: 0x3c3d, 0xf6d: 0x3c5d, 0xf6e: 0x239d, 0xf6f: 0x3c7d, -	0xf70: 0x3c9d, 0xf71: 0x3939, 0xf72: 0x3951, 0xf73: 0x3969, 0xf74: 0x3981, 0xf75: 0x3999, -	0xf76: 0x39b1, 0xf77: 0x39c9, 0xf78: 0x39e1, 0xf79: 0x39f9, 0xf7a: 0x3a11, 0xf7b: 0x3a29, -	0xf7c: 0x3a41, 0xf7d: 0x3a59, 0xf7e: 0x3a71, 0xf7f: 0x3a89, -	// Block 0x3e, offset 0xf80 -	0xf80: 0x3aa1, 0xf81: 0x3ac9, 0xf82: 0x3af1, 0xf83: 0x3b19, 0xf84: 0x3b41, 0xf85: 0x3b69, -	0xf86: 0x3b91, 0xf87: 0x3bb9, 0xf88: 0x3be1, 0xf89: 0x3c09, 0xf8a: 0x3c39, 0xf8b: 0x3c69, -	0xf8c: 0x3c99, 0xf8d: 0x3cbd, 0xf8e: 0x3cb1, 0xf8f: 0x3cdd, 0xf90: 0x3cfd, 0xf91: 0x3d15, -	0xf92: 0x3d2d, 0xf93: 0x3d45, 0xf94: 0x3d5d, 0xf95: 0x3d5d, 0xf96: 0x3d45, 0xf97: 0x3d75, -	0xf98: 0x07bd, 0xf99: 0x3d8d, 0xf9a: 0x3da5, 0xf9b: 0x3dbd, 0xf9c: 0x3dd5, 0xf9d: 0x3ded, -	0xf9e: 0x3e05, 0xf9f: 0x3e1d, 0xfa0: 0x3e35, 0xfa1: 0x3e4d, 0xfa2: 0x3e65, 0xfa3: 0x3e7d, -	0xfa4: 0x3e95, 0xfa5: 0x3e95, 0xfa6: 0x3ead, 0xfa7: 0x3ead, 0xfa8: 0x3ec5, 0xfa9: 0x3ec5, -	0xfaa: 0x3edd, 0xfab: 0x3ef5, 0xfac: 0x3f0d, 0xfad: 0x3f25, 0xfae: 0x3f3d, 0xfaf: 0x3f3d, -	0xfb0: 0x3f55, 0xfb1: 0x3f55, 0xfb2: 0x3f55, 0xfb3: 0x3f6d, 0xfb4: 0x3f85, 0xfb5: 0x3f9d, -	0xfb6: 0x3fb5, 0xfb7: 0x3f9d, 0xfb8: 0x3fcd, 0xfb9: 0x3fe5, 0xfba: 0x3f6d, 0xfbb: 0x3ffd, -	0xfbc: 0x4015, 0xfbd: 0x4015, 0xfbe: 0x4015, 0xfbf: 0x0040, -	// Block 0x3f, offset 0xfc0 -	0xfc0: 0x3cc9, 0xfc1: 0x3d31, 0xfc2: 0x3d99, 0xfc3: 0x3e01, 0xfc4: 0x3e51, 0xfc5: 0x3eb9, -	0xfc6: 0x3f09, 0xfc7: 0x3f59, 0xfc8: 0x3fd9, 0xfc9: 0x4041, 0xfca: 0x4091, 0xfcb: 0x40e1, -	0xfcc: 0x4131, 0xfcd: 0x4199, 0xfce: 0x4201, 0xfcf: 0x4251, 0xfd0: 0x42a1, 0xfd1: 0x42d9, -	0xfd2: 0x4329, 0xfd3: 0x4391, 0xfd4: 0x43f9, 0xfd5: 0x4431, 0xfd6: 0x44b1, 0xfd7: 0x4549, -	0xfd8: 0x45c9, 0xfd9: 0x4619, 0xfda: 0x4699, 0xfdb: 0x4719, 0xfdc: 0x4781, 0xfdd: 0x47d1, -	0xfde: 0x4821, 0xfdf: 0x4871, 0xfe0: 0x48d9, 0xfe1: 0x4959, 0xfe2: 0x49c1, 0xfe3: 0x4a11, -	0xfe4: 0x4a61, 0xfe5: 0x4ab1, 0xfe6: 0x4ae9, 0xfe7: 0x4b21, 0xfe8: 0x4b59, 0xfe9: 0x4b91, -	0xfea: 0x4be1, 0xfeb: 0x4c31, 0xfec: 0x4cb1, 0xfed: 0x4d01, 0xfee: 0x4d69, 0xfef: 0x4de9, -	0xff0: 0x4e39, 0xff1: 0x4e71, 0xff2: 0x4ea9, 0xff3: 0x4f29, 0xff4: 0x4f91, 0xff5: 0x5011, -	0xff6: 0x5061, 0xff7: 0x50e1, 0xff8: 0x5119, 0xff9: 0x5169, 0xffa: 0x51b9, 0xffb: 0x5209, -	0xffc: 0x5259, 0xffd: 0x52a9, 0xffe: 0x5311, 0xfff: 0x5361, -	// Block 0x40, offset 0x1000 -	0x1000: 0x5399, 0x1001: 0x53e9, 0x1002: 0x5439, 0x1003: 0x5489, 0x1004: 0x54f1, 0x1005: 0x5541, -	0x1006: 0x5591, 0x1007: 0x55e1, 0x1008: 0x5661, 0x1009: 0x56c9, 0x100a: 0x5701, 0x100b: 0x5781, -	0x100c: 0x57b9, 0x100d: 0x5821, 0x100e: 0x5889, 0x100f: 0x58d9, 0x1010: 0x5929, 0x1011: 0x5979, -	0x1012: 0x59e1, 0x1013: 0x5a19, 0x1014: 0x5a69, 0x1015: 0x5ad1, 0x1016: 0x5b09, 0x1017: 0x5b89, -	0x1018: 0x5bd9, 0x1019: 0x5c01, 0x101a: 0x5c29, 0x101b: 0x5c51, 0x101c: 0x5c79, 0x101d: 0x5ca1, -	0x101e: 0x5cc9, 0x101f: 0x5cf1, 0x1020: 0x5d19, 0x1021: 0x5d41, 0x1022: 0x5d69, 0x1023: 0x5d99, -	0x1024: 0x5dc9, 0x1025: 0x5df9, 0x1026: 0x5e29, 0x1027: 0x5e59, 0x1028: 0x5e89, 0x1029: 0x5eb9, -	0x102a: 0x5ee9, 0x102b: 0x5f19, 0x102c: 0x5f49, 0x102d: 0x5f79, 0x102e: 0x5fa9, 0x102f: 0x5fd9, -	0x1030: 0x6009, 0x1031: 0x402d, 0x1032: 0x6039, 0x1033: 0x6051, 0x1034: 0x404d, 0x1035: 0x6069, -	0x1036: 0x6081, 0x1037: 0x6099, 0x1038: 0x406d, 0x1039: 0x406d, 0x103a: 0x60b1, 0x103b: 0x60c9, -	0x103c: 0x6101, 0x103d: 0x6139, 0x103e: 0x6171, 0x103f: 0x61a9, -	// Block 0x41, offset 0x1040 -	0x1040: 0x6211, 0x1041: 0x6229, 0x1042: 0x408d, 0x1043: 0x6241, 0x1044: 0x6259, 0x1045: 0x6271, -	0x1046: 0x6289, 0x1047: 0x62a1, 0x1048: 0x40ad, 0x1049: 0x62b9, 0x104a: 0x62e1, 0x104b: 0x62f9, -	0x104c: 0x40cd, 0x104d: 0x40cd, 0x104e: 0x6311, 0x104f: 0x6329, 0x1050: 0x6341, 0x1051: 0x40ed, -	0x1052: 0x410d, 0x1053: 0x412d, 0x1054: 0x414d, 0x1055: 0x416d, 0x1056: 0x6359, 0x1057: 0x6371, -	0x1058: 0x6389, 0x1059: 0x63a1, 0x105a: 0x63b9, 0x105b: 0x418d, 0x105c: 0x63d1, 0x105d: 0x63e9, -	0x105e: 0x6401, 0x105f: 0x41ad, 0x1060: 0x41cd, 0x1061: 0x6419, 0x1062: 0x41ed, 0x1063: 0x420d, -	0x1064: 0x422d, 0x1065: 0x6431, 0x1066: 0x424d, 0x1067: 0x6449, 0x1068: 0x6479, 0x1069: 0x6211, -	0x106a: 0x426d, 0x106b: 0x428d, 0x106c: 0x42ad, 0x106d: 0x42cd, 0x106e: 0x64b1, 0x106f: 0x64f1, -	0x1070: 0x6539, 0x1071: 0x6551, 0x1072: 0x42ed, 0x1073: 0x6569, 0x1074: 0x6581, 0x1075: 0x6599, -	0x1076: 0x430d, 0x1077: 0x65b1, 0x1078: 0x65c9, 0x1079: 0x65b1, 0x107a: 0x65e1, 0x107b: 0x65f9, -	0x107c: 0x432d, 0x107d: 0x6611, 0x107e: 0x6629, 0x107f: 0x6611, -	// Block 0x42, offset 0x1080 -	0x1080: 0x434d, 0x1081: 0x436d, 0x1082: 0x0040, 0x1083: 0x6641, 0x1084: 0x6659, 0x1085: 0x6671, -	0x1086: 0x6689, 0x1087: 0x0040, 0x1088: 0x66c1, 0x1089: 0x66d9, 0x108a: 0x66f1, 0x108b: 0x6709, -	0x108c: 0x6721, 0x108d: 0x6739, 0x108e: 0x6401, 0x108f: 0x6751, 0x1090: 0x6769, 0x1091: 0x6781, -	0x1092: 0x438d, 0x1093: 0x6799, 0x1094: 0x6289, 0x1095: 0x43ad, 0x1096: 0x43cd, 0x1097: 0x67b1, -	0x1098: 0x0040, 0x1099: 0x43ed, 0x109a: 0x67c9, 0x109b: 0x67e1, 0x109c: 0x67f9, 0x109d: 0x6811, -	0x109e: 0x6829, 0x109f: 0x6859, 0x10a0: 0x6889, 0x10a1: 0x68b1, 0x10a2: 0x68d9, 0x10a3: 0x6901, -	0x10a4: 0x6929, 0x10a5: 0x6951, 0x10a6: 0x6979, 0x10a7: 0x69a1, 0x10a8: 0x69c9, 0x10a9: 0x69f1, -	0x10aa: 0x6a21, 0x10ab: 0x6a51, 0x10ac: 0x6a81, 0x10ad: 0x6ab1, 0x10ae: 0x6ae1, 0x10af: 0x6b11, -	0x10b0: 0x6b41, 0x10b1: 0x6b71, 0x10b2: 0x6ba1, 0x10b3: 0x6bd1, 0x10b4: 0x6c01, 0x10b5: 0x6c31, -	0x10b6: 0x6c61, 0x10b7: 0x6c91, 0x10b8: 0x6cc1, 0x10b9: 0x6cf1, 0x10ba: 0x6d21, 0x10bb: 0x6d51, -	0x10bc: 0x6d81, 0x10bd: 0x6db1, 0x10be: 0x6de1, 0x10bf: 0x440d, -	// Block 0x43, offset 0x10c0 -	0x10c0: 0xe00d, 0x10c1: 0x0008, 0x10c2: 0xe00d, 0x10c3: 0x0008, 0x10c4: 0xe00d, 0x10c5: 0x0008, -	0x10c6: 0xe00d, 0x10c7: 0x0008, 0x10c8: 0xe00d, 0x10c9: 0x0008, 0x10ca: 0xe00d, 0x10cb: 0x0008, -	0x10cc: 0xe00d, 0x10cd: 0x0008, 0x10ce: 0xe00d, 0x10cf: 0x0008, 0x10d0: 0xe00d, 0x10d1: 0x0008, -	0x10d2: 0xe00d, 0x10d3: 0x0008, 0x10d4: 0xe00d, 0x10d5: 0x0008, 0x10d6: 0xe00d, 0x10d7: 0x0008, -	0x10d8: 0xe00d, 0x10d9: 0x0008, 0x10da: 0xe00d, 0x10db: 0x0008, 0x10dc: 0xe00d, 0x10dd: 0x0008, -	0x10de: 0xe00d, 0x10df: 0x0008, 0x10e0: 0xe00d, 0x10e1: 0x0008, 0x10e2: 0xe00d, 0x10e3: 0x0008, -	0x10e4: 0xe00d, 0x10e5: 0x0008, 0x10e6: 0xe00d, 0x10e7: 0x0008, 0x10e8: 0xe00d, 0x10e9: 0x0008, -	0x10ea: 0xe00d, 0x10eb: 0x0008, 0x10ec: 0xe00d, 0x10ed: 0x0008, 0x10ee: 0x0008, 0x10ef: 0x3308, -	0x10f0: 0x3318, 0x10f1: 0x3318, 0x10f2: 0x3318, 0x10f3: 0x0018, 0x10f4: 0x3308, 0x10f5: 0x3308, -	0x10f6: 0x3308, 0x10f7: 0x3308, 0x10f8: 0x3308, 0x10f9: 0x3308, 0x10fa: 0x3308, 0x10fb: 0x3308, -	0x10fc: 0x3308, 0x10fd: 0x3308, 0x10fe: 0x0018, 0x10ff: 0x0008, -	// Block 0x44, offset 0x1100 -	0x1100: 0xe00d, 0x1101: 0x0008, 0x1102: 0xe00d, 0x1103: 0x0008, 0x1104: 0xe00d, 0x1105: 0x0008, -	0x1106: 0xe00d, 0x1107: 0x0008, 0x1108: 0xe00d, 0x1109: 0x0008, 0x110a: 0xe00d, 0x110b: 0x0008, -	0x110c: 0xe00d, 0x110d: 0x0008, 0x110e: 0xe00d, 0x110f: 0x0008, 0x1110: 0xe00d, 0x1111: 0x0008, -	0x1112: 0xe00d, 0x1113: 0x0008, 0x1114: 0xe00d, 0x1115: 0x0008, 0x1116: 0xe00d, 0x1117: 0x0008, -	0x1118: 0xe00d, 0x1119: 0x0008, 0x111a: 0xe00d, 0x111b: 0x0008, 0x111c: 0x0ea1, 0x111d: 0x6e11, -	0x111e: 0x3308, 0x111f: 0x3308, 0x1120: 0x0008, 0x1121: 0x0008, 0x1122: 0x0008, 0x1123: 0x0008, -	0x1124: 0x0008, 0x1125: 0x0008, 0x1126: 0x0008, 0x1127: 0x0008, 0x1128: 0x0008, 0x1129: 0x0008, -	0x112a: 0x0008, 0x112b: 0x0008, 0x112c: 0x0008, 0x112d: 0x0008, 0x112e: 0x0008, 0x112f: 0x0008, -	0x1130: 0x0008, 0x1131: 0x0008, 0x1132: 0x0008, 0x1133: 0x0008, 0x1134: 0x0008, 0x1135: 0x0008, -	0x1136: 0x0008, 0x1137: 0x0008, 0x1138: 0x0008, 0x1139: 0x0008, 0x113a: 0x0008, 0x113b: 0x0008, -	0x113c: 0x0008, 0x113d: 0x0008, 0x113e: 0x0008, 0x113f: 0x0008, -	// Block 0x45, offset 0x1140 -	0x1140: 0x0018, 0x1141: 0x0018, 0x1142: 0x0018, 0x1143: 0x0018, 0x1144: 0x0018, 0x1145: 0x0018, -	0x1146: 0x0018, 0x1147: 0x0018, 0x1148: 0x0018, 0x1149: 0x0018, 0x114a: 0x0018, 0x114b: 0x0018, -	0x114c: 0x0018, 0x114d: 0x0018, 0x114e: 0x0018, 0x114f: 0x0018, 0x1150: 0x0018, 0x1151: 0x0018, -	0x1152: 0x0018, 0x1153: 0x0018, 0x1154: 0x0018, 0x1155: 0x0018, 0x1156: 0x0018, 0x1157: 0x0008, -	0x1158: 0x0008, 0x1159: 0x0008, 0x115a: 0x0008, 0x115b: 0x0008, 0x115c: 0x0008, 0x115d: 0x0008, -	0x115e: 0x0008, 0x115f: 0x0008, 0x1160: 0x0018, 0x1161: 0x0018, 0x1162: 0xe00d, 0x1163: 0x0008, -	0x1164: 0xe00d, 0x1165: 0x0008, 0x1166: 0xe00d, 0x1167: 0x0008, 0x1168: 0xe00d, 0x1169: 0x0008, -	0x116a: 0xe00d, 0x116b: 0x0008, 0x116c: 0xe00d, 0x116d: 0x0008, 0x116e: 0xe00d, 0x116f: 0x0008, -	0x1170: 0x0008, 0x1171: 0x0008, 0x1172: 0xe00d, 0x1173: 0x0008, 0x1174: 0xe00d, 0x1175: 0x0008, -	0x1176: 0xe00d, 0x1177: 0x0008, 0x1178: 0xe00d, 0x1179: 0x0008, 0x117a: 0xe00d, 0x117b: 0x0008, -	0x117c: 0xe00d, 0x117d: 0x0008, 0x117e: 0xe00d, 0x117f: 0x0008, -	// Block 0x46, offset 0x1180 -	0x1180: 0xe00d, 0x1181: 0x0008, 0x1182: 0xe00d, 0x1183: 0x0008, 0x1184: 0xe00d, 0x1185: 0x0008, -	0x1186: 0xe00d, 0x1187: 0x0008, 0x1188: 0xe00d, 0x1189: 0x0008, 0x118a: 0xe00d, 0x118b: 0x0008, -	0x118c: 0xe00d, 0x118d: 0x0008, 0x118e: 0xe00d, 0x118f: 0x0008, 0x1190: 0xe00d, 0x1191: 0x0008, -	0x1192: 0xe00d, 0x1193: 0x0008, 0x1194: 0xe00d, 0x1195: 0x0008, 0x1196: 0xe00d, 0x1197: 0x0008, -	0x1198: 0xe00d, 0x1199: 0x0008, 0x119a: 0xe00d, 0x119b: 0x0008, 0x119c: 0xe00d, 0x119d: 0x0008, -	0x119e: 0xe00d, 0x119f: 0x0008, 0x11a0: 0xe00d, 0x11a1: 0x0008, 0x11a2: 0xe00d, 0x11a3: 0x0008, -	0x11a4: 0xe00d, 0x11a5: 0x0008, 0x11a6: 0xe00d, 0x11a7: 0x0008, 0x11a8: 0xe00d, 0x11a9: 0x0008, -	0x11aa: 0xe00d, 0x11ab: 0x0008, 0x11ac: 0xe00d, 0x11ad: 0x0008, 0x11ae: 0xe00d, 0x11af: 0x0008, -	0x11b0: 0xe0fd, 0x11b1: 0x0008, 0x11b2: 0x0008, 0x11b3: 0x0008, 0x11b4: 0x0008, 0x11b5: 0x0008, -	0x11b6: 0x0008, 0x11b7: 0x0008, 0x11b8: 0x0008, 0x11b9: 0xe01d, 0x11ba: 0x0008, 0x11bb: 0xe03d, -	0x11bc: 0x0008, 0x11bd: 0x442d, 0x11be: 0xe00d, 0x11bf: 0x0008, -	// Block 0x47, offset 0x11c0 -	0x11c0: 0xe00d, 0x11c1: 0x0008, 0x11c2: 0xe00d, 0x11c3: 0x0008, 0x11c4: 0xe00d, 0x11c5: 0x0008, -	0x11c6: 0xe00d, 0x11c7: 0x0008, 0x11c8: 0x0008, 0x11c9: 0x0018, 0x11ca: 0x0018, 0x11cb: 0xe03d, -	0x11cc: 0x0008, 0x11cd: 0x11d9, 0x11ce: 0x0008, 0x11cf: 0x0008, 0x11d0: 0xe00d, 0x11d1: 0x0008, -	0x11d2: 0xe00d, 0x11d3: 0x0008, 0x11d4: 0x0008, 0x11d5: 0x0008, 0x11d6: 0xe00d, 0x11d7: 0x0008, -	0x11d8: 0xe00d, 0x11d9: 0x0008, 0x11da: 0xe00d, 0x11db: 0x0008, 0x11dc: 0xe00d, 0x11dd: 0x0008, -	0x11de: 0xe00d, 0x11df: 0x0008, 0x11e0: 0xe00d, 0x11e1: 0x0008, 0x11e2: 0xe00d, 0x11e3: 0x0008, -	0x11e4: 0xe00d, 0x11e5: 0x0008, 0x11e6: 0xe00d, 0x11e7: 0x0008, 0x11e8: 0xe00d, 0x11e9: 0x0008, -	0x11ea: 0x6e29, 0x11eb: 0x1029, 0x11ec: 0x11c1, 0x11ed: 0x6e41, 0x11ee: 0x1221, 0x11ef: 0x0040, -	0x11f0: 0x6e59, 0x11f1: 0x6e71, 0x11f2: 0x1239, 0x11f3: 0x444d, 0x11f4: 0xe00d, 0x11f5: 0x0008, -	0x11f6: 0xe00d, 0x11f7: 0x0008, 0x11f8: 0x0040, 0x11f9: 0x0040, 0x11fa: 0x0040, 0x11fb: 0x0040, -	0x11fc: 0x0040, 0x11fd: 0x0040, 0x11fe: 0x0040, 0x11ff: 0x0040, -	// Block 0x48, offset 0x1200 -	0x1200: 0x64d5, 0x1201: 0x64f5, 0x1202: 0x6515, 0x1203: 0x6535, 0x1204: 0x6555, 0x1205: 0x6575, -	0x1206: 0x6595, 0x1207: 0x65b5, 0x1208: 0x65d5, 0x1209: 0x65f5, 0x120a: 0x6615, 0x120b: 0x6635, -	0x120c: 0x6655, 0x120d: 0x6675, 0x120e: 0x0008, 0x120f: 0x0008, 0x1210: 0x6695, 0x1211: 0x0008, -	0x1212: 0x66b5, 0x1213: 0x0008, 0x1214: 0x0008, 0x1215: 0x66d5, 0x1216: 0x66f5, 0x1217: 0x6715, -	0x1218: 0x6735, 0x1219: 0x6755, 0x121a: 0x6775, 0x121b: 0x6795, 0x121c: 0x67b5, 0x121d: 0x67d5, -	0x121e: 0x67f5, 0x121f: 0x0008, 0x1220: 0x6815, 0x1221: 0x0008, 0x1222: 0x6835, 0x1223: 0x0008, -	0x1224: 0x0008, 0x1225: 0x6855, 0x1226: 0x6875, 0x1227: 0x0008, 0x1228: 0x0008, 0x1229: 0x0008, -	0x122a: 0x6895, 0x122b: 0x68b5, 0x122c: 0x68d5, 0x122d: 0x68f5, 0x122e: 0x6915, 0x122f: 0x6935, -	0x1230: 0x6955, 0x1231: 0x6975, 0x1232: 0x6995, 0x1233: 0x69b5, 0x1234: 0x69d5, 0x1235: 0x69f5, -	0x1236: 0x6a15, 0x1237: 0x6a35, 0x1238: 0x6a55, 0x1239: 0x6a75, 0x123a: 0x6a95, 0x123b: 0x6ab5, -	0x123c: 0x6ad5, 0x123d: 0x6af5, 0x123e: 0x6b15, 0x123f: 0x6b35, -	// Block 0x49, offset 0x1240 -	0x1240: 0x7a95, 0x1241: 0x7ab5, 0x1242: 0x7ad5, 0x1243: 0x7af5, 0x1244: 0x7b15, 0x1245: 0x7b35, -	0x1246: 0x7b55, 0x1247: 0x7b75, 0x1248: 0x7b95, 0x1249: 0x7bb5, 0x124a: 0x7bd5, 0x124b: 0x7bf5, -	0x124c: 0x7c15, 0x124d: 0x7c35, 0x124e: 0x7c55, 0x124f: 0x6ec9, 0x1250: 0x6ef1, 0x1251: 0x6f19, -	0x1252: 0x7c75, 0x1253: 0x7c95, 0x1254: 0x7cb5, 0x1255: 0x6f41, 0x1256: 0x6f69, 0x1257: 0x6f91, -	0x1258: 0x7cd5, 0x1259: 0x7cf5, 0x125a: 0x0040, 0x125b: 0x0040, 0x125c: 0x0040, 0x125d: 0x0040, -	0x125e: 0x0040, 0x125f: 0x0040, 0x1260: 0x0040, 0x1261: 0x0040, 0x1262: 0x0040, 0x1263: 0x0040, -	0x1264: 0x0040, 0x1265: 0x0040, 0x1266: 0x0040, 0x1267: 0x0040, 0x1268: 0x0040, 0x1269: 0x0040, -	0x126a: 0x0040, 0x126b: 0x0040, 0x126c: 0x0040, 0x126d: 0x0040, 0x126e: 0x0040, 0x126f: 0x0040, -	0x1270: 0x0040, 0x1271: 0x0040, 0x1272: 0x0040, 0x1273: 0x0040, 0x1274: 0x0040, 0x1275: 0x0040, -	0x1276: 0x0040, 0x1277: 0x0040, 0x1278: 0x0040, 0x1279: 0x0040, 0x127a: 0x0040, 0x127b: 0x0040, -	0x127c: 0x0040, 0x127d: 0x0040, 0x127e: 0x0040, 0x127f: 0x0040, -	// Block 0x4a, offset 0x1280 -	0x1280: 0x6fb9, 0x1281: 0x6fd1, 0x1282: 0x6fe9, 0x1283: 0x7d15, 0x1284: 0x7d35, 0x1285: 0x7001, -	0x1286: 0x7001, 0x1287: 0x0040, 0x1288: 0x0040, 0x1289: 0x0040, 0x128a: 0x0040, 0x128b: 0x0040, -	0x128c: 0x0040, 0x128d: 0x0040, 0x128e: 0x0040, 0x128f: 0x0040, 0x1290: 0x0040, 0x1291: 0x0040, -	0x1292: 0x0040, 0x1293: 0x7019, 0x1294: 0x7041, 0x1295: 0x7069, 0x1296: 0x7091, 0x1297: 0x70b9, -	0x1298: 0x0040, 0x1299: 0x0040, 0x129a: 0x0040, 0x129b: 0x0040, 0x129c: 0x0040, 0x129d: 0x70e1, -	0x129e: 0x3308, 0x129f: 0x7109, 0x12a0: 0x7131, 0x12a1: 0x20a9, 0x12a2: 0x20f1, 0x12a3: 0x7149, -	0x12a4: 0x7161, 0x12a5: 0x7179, 0x12a6: 0x7191, 0x12a7: 0x71a9, 0x12a8: 0x71c1, 0x12a9: 0x1fb2, -	0x12aa: 0x71d9, 0x12ab: 0x7201, 0x12ac: 0x7229, 0x12ad: 0x7261, 0x12ae: 0x7299, 0x12af: 0x72c1, -	0x12b0: 0x72e9, 0x12b1: 0x7311, 0x12b2: 0x7339, 0x12b3: 0x7361, 0x12b4: 0x7389, 0x12b5: 0x73b1, -	0x12b6: 0x73d9, 0x12b7: 0x0040, 0x12b8: 0x7401, 0x12b9: 0x7429, 0x12ba: 0x7451, 0x12bb: 0x7479, -	0x12bc: 0x74a1, 0x12bd: 0x0040, 0x12be: 0x74c9, 0x12bf: 0x0040, -	// Block 0x4b, offset 0x12c0 -	0x12c0: 0x74f1, 0x12c1: 0x7519, 0x12c2: 0x0040, 0x12c3: 0x7541, 0x12c4: 0x7569, 0x12c5: 0x0040, -	0x12c6: 0x7591, 0x12c7: 0x75b9, 0x12c8: 0x75e1, 0x12c9: 0x7609, 0x12ca: 0x7631, 0x12cb: 0x7659, -	0x12cc: 0x7681, 0x12cd: 0x76a9, 0x12ce: 0x76d1, 0x12cf: 0x76f9, 0x12d0: 0x7721, 0x12d1: 0x7721, -	0x12d2: 0x7739, 0x12d3: 0x7739, 0x12d4: 0x7739, 0x12d5: 0x7739, 0x12d6: 0x7751, 0x12d7: 0x7751, -	0x12d8: 0x7751, 0x12d9: 0x7751, 0x12da: 0x7769, 0x12db: 0x7769, 0x12dc: 0x7769, 0x12dd: 0x7769, -	0x12de: 0x7781, 0x12df: 0x7781, 0x12e0: 0x7781, 0x12e1: 0x7781, 0x12e2: 0x7799, 0x12e3: 0x7799, -	0x12e4: 0x7799, 0x12e5: 0x7799, 0x12e6: 0x77b1, 0x12e7: 0x77b1, 0x12e8: 0x77b1, 0x12e9: 0x77b1, -	0x12ea: 0x77c9, 0x12eb: 0x77c9, 0x12ec: 0x77c9, 0x12ed: 0x77c9, 0x12ee: 0x77e1, 0x12ef: 0x77e1, -	0x12f0: 0x77e1, 0x12f1: 0x77e1, 0x12f2: 0x77f9, 0x12f3: 0x77f9, 0x12f4: 0x77f9, 0x12f5: 0x77f9, -	0x12f6: 0x7811, 0x12f7: 0x7811, 0x12f8: 0x7811, 0x12f9: 0x7811, 0x12fa: 0x7829, 0x12fb: 0x7829, -	0x12fc: 0x7829, 0x12fd: 0x7829, 0x12fe: 0x7841, 0x12ff: 0x7841, -	// Block 0x4c, offset 0x1300 -	0x1300: 0x7841, 0x1301: 0x7841, 0x1302: 0x7859, 0x1303: 0x7859, 0x1304: 0x7871, 0x1305: 0x7871, -	0x1306: 0x7889, 0x1307: 0x7889, 0x1308: 0x78a1, 0x1309: 0x78a1, 0x130a: 0x78b9, 0x130b: 0x78b9, -	0x130c: 0x78d1, 0x130d: 0x78d1, 0x130e: 0x78e9, 0x130f: 0x78e9, 0x1310: 0x78e9, 0x1311: 0x78e9, -	0x1312: 0x7901, 0x1313: 0x7901, 0x1314: 0x7901, 0x1315: 0x7901, 0x1316: 0x7919, 0x1317: 0x7919, -	0x1318: 0x7919, 0x1319: 0x7919, 0x131a: 0x7931, 0x131b: 0x7931, 0x131c: 0x7931, 0x131d: 0x7931, -	0x131e: 0x7949, 0x131f: 0x7949, 0x1320: 0x7961, 0x1321: 0x7961, 0x1322: 0x7961, 0x1323: 0x7961, -	0x1324: 0x7979, 0x1325: 0x7979, 0x1326: 0x7991, 0x1327: 0x7991, 0x1328: 0x7991, 0x1329: 0x7991, -	0x132a: 0x79a9, 0x132b: 0x79a9, 0x132c: 0x79a9, 0x132d: 0x79a9, 0x132e: 0x79c1, 0x132f: 0x79c1, -	0x1330: 0x79d9, 0x1331: 0x79d9, 0x1332: 0x0818, 0x1333: 0x0818, 0x1334: 0x0818, 0x1335: 0x0818, -	0x1336: 0x0818, 0x1337: 0x0818, 0x1338: 0x0818, 0x1339: 0x0818, 0x133a: 0x0818, 0x133b: 0x0818, -	0x133c: 0x0818, 0x133d: 0x0818, 0x133e: 0x0818, 0x133f: 0x0818, -	// Block 0x4d, offset 0x1340 -	0x1340: 0x0818, 0x1341: 0x0818, 0x1342: 0x0040, 0x1343: 0x0040, 0x1344: 0x0040, 0x1345: 0x0040, -	0x1346: 0x0040, 0x1347: 0x0040, 0x1348: 0x0040, 0x1349: 0x0040, 0x134a: 0x0040, 0x134b: 0x0040, -	0x134c: 0x0040, 0x134d: 0x0040, 0x134e: 0x0040, 0x134f: 0x0040, 0x1350: 0x0040, 0x1351: 0x0040, -	0x1352: 0x0040, 0x1353: 0x79f1, 0x1354: 0x79f1, 0x1355: 0x79f1, 0x1356: 0x79f1, 0x1357: 0x7a09, -	0x1358: 0x7a09, 0x1359: 0x7a21, 0x135a: 0x7a21, 0x135b: 0x7a39, 0x135c: 0x7a39, 0x135d: 0x0479, -	0x135e: 0x7a51, 0x135f: 0x7a51, 0x1360: 0x7a69, 0x1361: 0x7a69, 0x1362: 0x7a81, 0x1363: 0x7a81, -	0x1364: 0x7a99, 0x1365: 0x7a99, 0x1366: 0x7a99, 0x1367: 0x7a99, 0x1368: 0x7ab1, 0x1369: 0x7ab1, -	0x136a: 0x7ac9, 0x136b: 0x7ac9, 0x136c: 0x7af1, 0x136d: 0x7af1, 0x136e: 0x7b19, 0x136f: 0x7b19, -	0x1370: 0x7b41, 0x1371: 0x7b41, 0x1372: 0x7b69, 0x1373: 0x7b69, 0x1374: 0x7b91, 0x1375: 0x7b91, -	0x1376: 0x7bb9, 0x1377: 0x7bb9, 0x1378: 0x7bb9, 0x1379: 0x7be1, 0x137a: 0x7be1, 0x137b: 0x7be1, -	0x137c: 0x7c09, 0x137d: 0x7c09, 0x137e: 0x7c09, 0x137f: 0x7c09, -	// Block 0x4e, offset 0x1380 -	0x1380: 0x85f9, 0x1381: 0x8621, 0x1382: 0x8649, 0x1383: 0x8671, 0x1384: 0x8699, 0x1385: 0x86c1, -	0x1386: 0x86e9, 0x1387: 0x8711, 0x1388: 0x8739, 0x1389: 0x8761, 0x138a: 0x8789, 0x138b: 0x87b1, -	0x138c: 0x87d9, 0x138d: 0x8801, 0x138e: 0x8829, 0x138f: 0x8851, 0x1390: 0x8879, 0x1391: 0x88a1, -	0x1392: 0x88c9, 0x1393: 0x88f1, 0x1394: 0x8919, 0x1395: 0x8941, 0x1396: 0x8969, 0x1397: 0x8991, -	0x1398: 0x89b9, 0x1399: 0x89e1, 0x139a: 0x8a09, 0x139b: 0x8a31, 0x139c: 0x8a59, 0x139d: 0x8a81, -	0x139e: 0x8aaa, 0x139f: 0x8ada, 0x13a0: 0x8b0a, 0x13a1: 0x8b3a, 0x13a2: 0x8b6a, 0x13a3: 0x8b9a, -	0x13a4: 0x8bc9, 0x13a5: 0x8bf1, 0x13a6: 0x7c71, 0x13a7: 0x8c19, 0x13a8: 0x7be1, 0x13a9: 0x7c99, -	0x13aa: 0x8c41, 0x13ab: 0x8c69, 0x13ac: 0x7d39, 0x13ad: 0x8c91, 0x13ae: 0x7d61, 0x13af: 0x7d89, -	0x13b0: 0x8cb9, 0x13b1: 0x8ce1, 0x13b2: 0x7e29, 0x13b3: 0x8d09, 0x13b4: 0x7e51, 0x13b5: 0x7e79, -	0x13b6: 0x8d31, 0x13b7: 0x8d59, 0x13b8: 0x7ec9, 0x13b9: 0x8d81, 0x13ba: 0x7ef1, 0x13bb: 0x7f19, -	0x13bc: 0x83a1, 0x13bd: 0x83c9, 0x13be: 0x8441, 0x13bf: 0x8469, -	// Block 0x4f, offset 0x13c0 -	0x13c0: 0x8491, 0x13c1: 0x8531, 0x13c2: 0x8559, 0x13c3: 0x8581, 0x13c4: 0x85a9, 0x13c5: 0x8649, -	0x13c6: 0x8671, 0x13c7: 0x8699, 0x13c8: 0x8da9, 0x13c9: 0x8739, 0x13ca: 0x8dd1, 0x13cb: 0x8df9, -	0x13cc: 0x8829, 0x13cd: 0x8e21, 0x13ce: 0x8851, 0x13cf: 0x8879, 0x13d0: 0x8a81, 0x13d1: 0x8e49, -	0x13d2: 0x8e71, 0x13d3: 0x89b9, 0x13d4: 0x8e99, 0x13d5: 0x89e1, 0x13d6: 0x8a09, 0x13d7: 0x7c21, -	0x13d8: 0x7c49, 0x13d9: 0x8ec1, 0x13da: 0x7c71, 0x13db: 0x8ee9, 0x13dc: 0x7cc1, 0x13dd: 0x7ce9, -	0x13de: 0x7d11, 0x13df: 0x7d39, 0x13e0: 0x8f11, 0x13e1: 0x7db1, 0x13e2: 0x7dd9, 0x13e3: 0x7e01, -	0x13e4: 0x7e29, 0x13e5: 0x8f39, 0x13e6: 0x7ec9, 0x13e7: 0x7f41, 0x13e8: 0x7f69, 0x13e9: 0x7f91, -	0x13ea: 0x7fb9, 0x13eb: 0x7fe1, 0x13ec: 0x8031, 0x13ed: 0x8059, 0x13ee: 0x8081, 0x13ef: 0x80a9, -	0x13f0: 0x80d1, 0x13f1: 0x80f9, 0x13f2: 0x8f61, 0x13f3: 0x8121, 0x13f4: 0x8149, 0x13f5: 0x8171, -	0x13f6: 0x8199, 0x13f7: 0x81c1, 0x13f8: 0x81e9, 0x13f9: 0x8239, 0x13fa: 0x8261, 0x13fb: 0x8289, -	0x13fc: 0x82b1, 0x13fd: 0x82d9, 0x13fe: 0x8301, 0x13ff: 0x8329, -	// Block 0x50, offset 0x1400 -	0x1400: 0x8351, 0x1401: 0x8379, 0x1402: 0x83f1, 0x1403: 0x8419, 0x1404: 0x84b9, 0x1405: 0x84e1, -	0x1406: 0x8509, 0x1407: 0x8531, 0x1408: 0x8559, 0x1409: 0x85d1, 0x140a: 0x85f9, 0x140b: 0x8621, -	0x140c: 0x8649, 0x140d: 0x8f89, 0x140e: 0x86c1, 0x140f: 0x86e9, 0x1410: 0x8711, 0x1411: 0x8739, -	0x1412: 0x87b1, 0x1413: 0x87d9, 0x1414: 0x8801, 0x1415: 0x8829, 0x1416: 0x8fb1, 0x1417: 0x88a1, -	0x1418: 0x88c9, 0x1419: 0x8fd9, 0x141a: 0x8941, 0x141b: 0x8969, 0x141c: 0x8991, 0x141d: 0x89b9, -	0x141e: 0x9001, 0x141f: 0x7c71, 0x1420: 0x8ee9, 0x1421: 0x7d39, 0x1422: 0x8f11, 0x1423: 0x7e29, -	0x1424: 0x8f39, 0x1425: 0x7ec9, 0x1426: 0x9029, 0x1427: 0x80d1, 0x1428: 0x9051, 0x1429: 0x9079, -	0x142a: 0x90a1, 0x142b: 0x8531, 0x142c: 0x8559, 0x142d: 0x8649, 0x142e: 0x8829, 0x142f: 0x8fb1, -	0x1430: 0x89b9, 0x1431: 0x9001, 0x1432: 0x90c9, 0x1433: 0x9101, 0x1434: 0x9139, 0x1435: 0x9171, -	0x1436: 0x9199, 0x1437: 0x91c1, 0x1438: 0x91e9, 0x1439: 0x9211, 0x143a: 0x9239, 0x143b: 0x9261, -	0x143c: 0x9289, 0x143d: 0x92b1, 0x143e: 0x92d9, 0x143f: 0x9301, -	// Block 0x51, offset 0x1440 -	0x1440: 0x9329, 0x1441: 0x9351, 0x1442: 0x9379, 0x1443: 0x93a1, 0x1444: 0x93c9, 0x1445: 0x93f1, -	0x1446: 0x9419, 0x1447: 0x9441, 0x1448: 0x9469, 0x1449: 0x9491, 0x144a: 0x94b9, 0x144b: 0x94e1, -	0x144c: 0x9079, 0x144d: 0x9509, 0x144e: 0x9531, 0x144f: 0x9559, 0x1450: 0x9581, 0x1451: 0x9171, -	0x1452: 0x9199, 0x1453: 0x91c1, 0x1454: 0x91e9, 0x1455: 0x9211, 0x1456: 0x9239, 0x1457: 0x9261, -	0x1458: 0x9289, 0x1459: 0x92b1, 0x145a: 0x92d9, 0x145b: 0x9301, 0x145c: 0x9329, 0x145d: 0x9351, -	0x145e: 0x9379, 0x145f: 0x93a1, 0x1460: 0x93c9, 0x1461: 0x93f1, 0x1462: 0x9419, 0x1463: 0x9441, -	0x1464: 0x9469, 0x1465: 0x9491, 0x1466: 0x94b9, 0x1467: 0x94e1, 0x1468: 0x9079, 0x1469: 0x9509, -	0x146a: 0x9531, 0x146b: 0x9559, 0x146c: 0x9581, 0x146d: 0x9491, 0x146e: 0x94b9, 0x146f: 0x94e1, -	0x1470: 0x9079, 0x1471: 0x9051, 0x1472: 0x90a1, 0x1473: 0x8211, 0x1474: 0x8059, 0x1475: 0x8081, -	0x1476: 0x80a9, 0x1477: 0x9491, 0x1478: 0x94b9, 0x1479: 0x94e1, 0x147a: 0x8211, 0x147b: 0x8239, -	0x147c: 0x95a9, 0x147d: 0x95a9, 0x147e: 0x0018, 0x147f: 0x0018, -	// Block 0x52, offset 0x1480 -	0x1480: 0x0040, 0x1481: 0x0040, 0x1482: 0x0040, 0x1483: 0x0040, 0x1484: 0x0040, 0x1485: 0x0040, -	0x1486: 0x0040, 0x1487: 0x0040, 0x1488: 0x0040, 0x1489: 0x0040, 0x148a: 0x0040, 0x148b: 0x0040, -	0x148c: 0x0040, 0x148d: 0x0040, 0x148e: 0x0040, 0x148f: 0x0040, 0x1490: 0x95d1, 0x1491: 0x9609, -	0x1492: 0x9609, 0x1493: 0x9641, 0x1494: 0x9679, 0x1495: 0x96b1, 0x1496: 0x96e9, 0x1497: 0x9721, -	0x1498: 0x9759, 0x1499: 0x9759, 0x149a: 0x9791, 0x149b: 0x97c9, 0x149c: 0x9801, 0x149d: 0x9839, -	0x149e: 0x9871, 0x149f: 0x98a9, 0x14a0: 0x98a9, 0x14a1: 0x98e1, 0x14a2: 0x9919, 0x14a3: 0x9919, -	0x14a4: 0x9951, 0x14a5: 0x9951, 0x14a6: 0x9989, 0x14a7: 0x99c1, 0x14a8: 0x99c1, 0x14a9: 0x99f9, -	0x14aa: 0x9a31, 0x14ab: 0x9a31, 0x14ac: 0x9a69, 0x14ad: 0x9a69, 0x14ae: 0x9aa1, 0x14af: 0x9ad9, -	0x14b0: 0x9ad9, 0x14b1: 0x9b11, 0x14b2: 0x9b11, 0x14b3: 0x9b49, 0x14b4: 0x9b81, 0x14b5: 0x9bb9, -	0x14b6: 0x9bf1, 0x14b7: 0x9bf1, 0x14b8: 0x9c29, 0x14b9: 0x9c61, 0x14ba: 0x9c99, 0x14bb: 0x9cd1, -	0x14bc: 0x9d09, 0x14bd: 0x9d09, 0x14be: 0x9d41, 0x14bf: 0x9d79, -	// Block 0x53, offset 0x14c0 -	0x14c0: 0xa949, 0x14c1: 0xa981, 0x14c2: 0xa9b9, 0x14c3: 0xa8a1, 0x14c4: 0x9bb9, 0x14c5: 0x9989, -	0x14c6: 0xa9f1, 0x14c7: 0xaa29, 0x14c8: 0x0040, 0x14c9: 0x0040, 0x14ca: 0x0040, 0x14cb: 0x0040, -	0x14cc: 0x0040, 0x14cd: 0x0040, 0x14ce: 0x0040, 0x14cf: 0x0040, 0x14d0: 0x0040, 0x14d1: 0x0040, -	0x14d2: 0x0040, 0x14d3: 0x0040, 0x14d4: 0x0040, 0x14d5: 0x0040, 0x14d6: 0x0040, 0x14d7: 0x0040, -	0x14d8: 0x0040, 0x14d9: 0x0040, 0x14da: 0x0040, 0x14db: 0x0040, 0x14dc: 0x0040, 0x14dd: 0x0040, -	0x14de: 0x0040, 0x14df: 0x0040, 0x14e0: 0x0040, 0x14e1: 0x0040, 0x14e2: 0x0040, 0x14e3: 0x0040, -	0x14e4: 0x0040, 0x14e5: 0x0040, 0x14e6: 0x0040, 0x14e7: 0x0040, 0x14e8: 0x0040, 0x14e9: 0x0040, -	0x14ea: 0x0040, 0x14eb: 0x0040, 0x14ec: 0x0040, 0x14ed: 0x0040, 0x14ee: 0x0040, 0x14ef: 0x0040, -	0x14f0: 0xaa61, 0x14f1: 0xaa99, 0x14f2: 0xaad1, 0x14f3: 0xab19, 0x14f4: 0xab61, 0x14f5: 0xaba9, -	0x14f6: 0xabf1, 0x14f7: 0xac39, 0x14f8: 0xac81, 0x14f9: 0xacc9, 0x14fa: 0xad02, 0x14fb: 0xae12, -	0x14fc: 0xae91, 0x14fd: 0x0018, 0x14fe: 0x0040, 0x14ff: 0x0040, -	// Block 0x54, offset 0x1500 -	0x1500: 0x33c0, 0x1501: 0x33c0, 0x1502: 0x33c0, 0x1503: 0x33c0, 0x1504: 0x33c0, 0x1505: 0x33c0, -	0x1506: 0x33c0, 0x1507: 0x33c0, 0x1508: 0x33c0, 0x1509: 0x33c0, 0x150a: 0x33c0, 0x150b: 0x33c0, -	0x150c: 0x33c0, 0x150d: 0x33c0, 0x150e: 0x33c0, 0x150f: 0x33c0, 0x1510: 0xaeda, 0x1511: 0x7d55, -	0x1512: 0x0040, 0x1513: 0xaeea, 0x1514: 0x03c2, 0x1515: 0xaefa, 0x1516: 0xaf0a, 0x1517: 0x7d75, -	0x1518: 0x7d95, 0x1519: 0x0040, 0x151a: 0x0040, 0x151b: 0x0040, 0x151c: 0x0040, 0x151d: 0x0040, -	0x151e: 0x0040, 0x151f: 0x0040, 0x1520: 0x3308, 0x1521: 0x3308, 0x1522: 0x3308, 0x1523: 0x3308, -	0x1524: 0x3308, 0x1525: 0x3308, 0x1526: 0x3308, 0x1527: 0x3308, 0x1528: 0x3308, 0x1529: 0x3308, -	0x152a: 0x3308, 0x152b: 0x3308, 0x152c: 0x3308, 0x152d: 0x3308, 0x152e: 0x3308, 0x152f: 0x3308, -	0x1530: 0x0040, 0x1531: 0x7db5, 0x1532: 0x7dd5, 0x1533: 0xaf1a, 0x1534: 0xaf1a, 0x1535: 0x1fd2, -	0x1536: 0x1fe2, 0x1537: 0xaf2a, 0x1538: 0xaf3a, 0x1539: 0x7df5, 0x153a: 0x7e15, 0x153b: 0x7e35, -	0x153c: 0x7df5, 0x153d: 0x7e55, 0x153e: 0x7e75, 0x153f: 0x7e55, -	// Block 0x55, offset 0x1540 -	0x1540: 0x7e95, 0x1541: 0x7eb5, 0x1542: 0x7ed5, 0x1543: 0x7eb5, 0x1544: 0x7ef5, 0x1545: 0x0018, -	0x1546: 0x0018, 0x1547: 0xaf4a, 0x1548: 0xaf5a, 0x1549: 0x7f16, 0x154a: 0x7f36, 0x154b: 0x7f56, -	0x154c: 0x7f76, 0x154d: 0xaf1a, 0x154e: 0xaf1a, 0x154f: 0xaf1a, 0x1550: 0xaeda, 0x1551: 0x7f95, -	0x1552: 0x0040, 0x1553: 0x0040, 0x1554: 0x03c2, 0x1555: 0xaeea, 0x1556: 0xaf0a, 0x1557: 0xaefa, -	0x1558: 0x7fb5, 0x1559: 0x1fd2, 0x155a: 0x1fe2, 0x155b: 0xaf2a, 0x155c: 0xaf3a, 0x155d: 0x7e95, -	0x155e: 0x7ef5, 0x155f: 0xaf6a, 0x1560: 0xaf7a, 0x1561: 0xaf8a, 0x1562: 0x1fb2, 0x1563: 0xaf99, -	0x1564: 0xafaa, 0x1565: 0xafba, 0x1566: 0x1fc2, 0x1567: 0x0040, 0x1568: 0xafca, 0x1569: 0xafda, -	0x156a: 0xafea, 0x156b: 0xaffa, 0x156c: 0x0040, 0x156d: 0x0040, 0x156e: 0x0040, 0x156f: 0x0040, -	0x1570: 0x7fd6, 0x1571: 0xb009, 0x1572: 0x7ff6, 0x1573: 0x0808, 0x1574: 0x8016, 0x1575: 0x0040, -	0x1576: 0x8036, 0x1577: 0xb031, 0x1578: 0x8056, 0x1579: 0xb059, 0x157a: 0x8076, 0x157b: 0xb081, -	0x157c: 0x8096, 0x157d: 0xb0a9, 0x157e: 0x80b6, 0x157f: 0xb0d1, -	// Block 0x56, offset 0x1580 -	0x1580: 0xb0f9, 0x1581: 0xb111, 0x1582: 0xb111, 0x1583: 0xb129, 0x1584: 0xb129, 0x1585: 0xb141, -	0x1586: 0xb141, 0x1587: 0xb159, 0x1588: 0xb159, 0x1589: 0xb171, 0x158a: 0xb171, 0x158b: 0xb171, -	0x158c: 0xb171, 0x158d: 0xb189, 0x158e: 0xb189, 0x158f: 0xb1a1, 0x1590: 0xb1a1, 0x1591: 0xb1a1, -	0x1592: 0xb1a1, 0x1593: 0xb1b9, 0x1594: 0xb1b9, 0x1595: 0xb1d1, 0x1596: 0xb1d1, 0x1597: 0xb1d1, -	0x1598: 0xb1d1, 0x1599: 0xb1e9, 0x159a: 0xb1e9, 0x159b: 0xb1e9, 0x159c: 0xb1e9, 0x159d: 0xb201, -	0x159e: 0xb201, 0x159f: 0xb201, 0x15a0: 0xb201, 0x15a1: 0xb219, 0x15a2: 0xb219, 0x15a3: 0xb219, -	0x15a4: 0xb219, 0x15a5: 0xb231, 0x15a6: 0xb231, 0x15a7: 0xb231, 0x15a8: 0xb231, 0x15a9: 0xb249, -	0x15aa: 0xb249, 0x15ab: 0xb261, 0x15ac: 0xb261, 0x15ad: 0xb279, 0x15ae: 0xb279, 0x15af: 0xb291, -	0x15b0: 0xb291, 0x15b1: 0xb2a9, 0x15b2: 0xb2a9, 0x15b3: 0xb2a9, 0x15b4: 0xb2a9, 0x15b5: 0xb2c1, -	0x15b6: 0xb2c1, 0x15b7: 0xb2c1, 0x15b8: 0xb2c1, 0x15b9: 0xb2d9, 0x15ba: 0xb2d9, 0x15bb: 0xb2d9, -	0x15bc: 0xb2d9, 0x15bd: 0xb2f1, 0x15be: 0xb2f1, 0x15bf: 0xb2f1, -	// Block 0x57, offset 0x15c0 -	0x15c0: 0xb2f1, 0x15c1: 0xb309, 0x15c2: 0xb309, 0x15c3: 0xb309, 0x15c4: 0xb309, 0x15c5: 0xb321, -	0x15c6: 0xb321, 0x15c7: 0xb321, 0x15c8: 0xb321, 0x15c9: 0xb339, 0x15ca: 0xb339, 0x15cb: 0xb339, -	0x15cc: 0xb339, 0x15cd: 0xb351, 0x15ce: 0xb351, 0x15cf: 0xb351, 0x15d0: 0xb351, 0x15d1: 0xb369, -	0x15d2: 0xb369, 0x15d3: 0xb369, 0x15d4: 0xb369, 0x15d5: 0xb381, 0x15d6: 0xb381, 0x15d7: 0xb381, -	0x15d8: 0xb381, 0x15d9: 0xb399, 0x15da: 0xb399, 0x15db: 0xb399, 0x15dc: 0xb399, 0x15dd: 0xb3b1, -	0x15de: 0xb3b1, 0x15df: 0xb3b1, 0x15e0: 0xb3b1, 0x15e1: 0xb3c9, 0x15e2: 0xb3c9, 0x15e3: 0xb3c9, -	0x15e4: 0xb3c9, 0x15e5: 0xb3e1, 0x15e6: 0xb3e1, 0x15e7: 0xb3e1, 0x15e8: 0xb3e1, 0x15e9: 0xb3f9, -	0x15ea: 0xb3f9, 0x15eb: 0xb3f9, 0x15ec: 0xb3f9, 0x15ed: 0xb411, 0x15ee: 0xb411, 0x15ef: 0x7ab1, -	0x15f0: 0x7ab1, 0x15f1: 0xb429, 0x15f2: 0xb429, 0x15f3: 0xb429, 0x15f4: 0xb429, 0x15f5: 0xb441, -	0x15f6: 0xb441, 0x15f7: 0xb469, 0x15f8: 0xb469, 0x15f9: 0xb491, 0x15fa: 0xb491, 0x15fb: 0xb4b9, -	0x15fc: 0xb4b9, 0x15fd: 0x0040, 0x15fe: 0x0040, 0x15ff: 0x03c0, -	// Block 0x58, offset 0x1600 -	0x1600: 0x0040, 0x1601: 0xaefa, 0x1602: 0xb4e2, 0x1603: 0xaf6a, 0x1604: 0xafda, 0x1605: 0xafea, -	0x1606: 0xaf7a, 0x1607: 0xb4f2, 0x1608: 0x1fd2, 0x1609: 0x1fe2, 0x160a: 0xaf8a, 0x160b: 0x1fb2, -	0x160c: 0xaeda, 0x160d: 0xaf99, 0x160e: 0x29d1, 0x160f: 0xb502, 0x1610: 0x1f41, 0x1611: 0x00c9, -	0x1612: 0x0069, 0x1613: 0x0079, 0x1614: 0x1f51, 0x1615: 0x1f61, 0x1616: 0x1f71, 0x1617: 0x1f81, -	0x1618: 0x1f91, 0x1619: 0x1fa1, 0x161a: 0xaeea, 0x161b: 0x03c2, 0x161c: 0xafaa, 0x161d: 0x1fc2, -	0x161e: 0xafba, 0x161f: 0xaf0a, 0x1620: 0xaffa, 0x1621: 0x0039, 0x1622: 0x0ee9, 0x1623: 0x1159, -	0x1624: 0x0ef9, 0x1625: 0x0f09, 0x1626: 0x1199, 0x1627: 0x0f31, 0x1628: 0x0249, 0x1629: 0x0f41, -	0x162a: 0x0259, 0x162b: 0x0f51, 0x162c: 0x0359, 0x162d: 0x0f61, 0x162e: 0x0f71, 0x162f: 0x00d9, -	0x1630: 0x0f99, 0x1631: 0x2039, 0x1632: 0x0269, 0x1633: 0x01d9, 0x1634: 0x0fa9, 0x1635: 0x0fb9, -	0x1636: 0x1089, 0x1637: 0x0279, 0x1638: 0x0369, 0x1639: 0x0289, 0x163a: 0x13d1, 0x163b: 0xaf4a, -	0x163c: 0xafca, 0x163d: 0xaf5a, 0x163e: 0xb512, 0x163f: 0xaf1a, -	// Block 0x59, offset 0x1640 -	0x1640: 0x1caa, 0x1641: 0x0039, 0x1642: 0x0ee9, 0x1643: 0x1159, 0x1644: 0x0ef9, 0x1645: 0x0f09, -	0x1646: 0x1199, 0x1647: 0x0f31, 0x1648: 0x0249, 0x1649: 0x0f41, 0x164a: 0x0259, 0x164b: 0x0f51, -	0x164c: 0x0359, 0x164d: 0x0f61, 0x164e: 0x0f71, 0x164f: 0x00d9, 0x1650: 0x0f99, 0x1651: 0x2039, -	0x1652: 0x0269, 0x1653: 0x01d9, 0x1654: 0x0fa9, 0x1655: 0x0fb9, 0x1656: 0x1089, 0x1657: 0x0279, -	0x1658: 0x0369, 0x1659: 0x0289, 0x165a: 0x13d1, 0x165b: 0xaf2a, 0x165c: 0xb522, 0x165d: 0xaf3a, -	0x165e: 0xb532, 0x165f: 0x80d5, 0x1660: 0x80f5, 0x1661: 0x29d1, 0x1662: 0x8115, 0x1663: 0x8115, -	0x1664: 0x8135, 0x1665: 0x8155, 0x1666: 0x8175, 0x1667: 0x8195, 0x1668: 0x81b5, 0x1669: 0x81d5, -	0x166a: 0x81f5, 0x166b: 0x8215, 0x166c: 0x8235, 0x166d: 0x8255, 0x166e: 0x8275, 0x166f: 0x8295, -	0x1670: 0x82b5, 0x1671: 0x82d5, 0x1672: 0x82f5, 0x1673: 0x8315, 0x1674: 0x8335, 0x1675: 0x8355, -	0x1676: 0x8375, 0x1677: 0x8395, 0x1678: 0x83b5, 0x1679: 0x83d5, 0x167a: 0x83f5, 0x167b: 0x8415, -	0x167c: 0x81b5, 0x167d: 0x8435, 0x167e: 0x8455, 0x167f: 0x8215, -	// Block 0x5a, offset 0x1680 -	0x1680: 0x8475, 0x1681: 0x8495, 0x1682: 0x84b5, 0x1683: 0x84d5, 0x1684: 0x84f5, 0x1685: 0x8515, -	0x1686: 0x8535, 0x1687: 0x8555, 0x1688: 0x84d5, 0x1689: 0x8575, 0x168a: 0x84d5, 0x168b: 0x8595, -	0x168c: 0x8595, 0x168d: 0x85b5, 0x168e: 0x85b5, 0x168f: 0x85d5, 0x1690: 0x8515, 0x1691: 0x85f5, -	0x1692: 0x8615, 0x1693: 0x85f5, 0x1694: 0x8635, 0x1695: 0x8615, 0x1696: 0x8655, 0x1697: 0x8655, -	0x1698: 0x8675, 0x1699: 0x8675, 0x169a: 0x8695, 0x169b: 0x8695, 0x169c: 0x8615, 0x169d: 0x8115, -	0x169e: 0x86b5, 0x169f: 0x86d5, 0x16a0: 0x0040, 0x16a1: 0x86f5, 0x16a2: 0x8715, 0x16a3: 0x8735, -	0x16a4: 0x8755, 0x16a5: 0x8735, 0x16a6: 0x8775, 0x16a7: 0x8795, 0x16a8: 0x87b5, 0x16a9: 0x87b5, -	0x16aa: 0x87d5, 0x16ab: 0x87d5, 0x16ac: 0x87f5, 0x16ad: 0x87f5, 0x16ae: 0x87d5, 0x16af: 0x87d5, -	0x16b0: 0x8815, 0x16b1: 0x8835, 0x16b2: 0x8855, 0x16b3: 0x8875, 0x16b4: 0x8895, 0x16b5: 0x88b5, -	0x16b6: 0x88b5, 0x16b7: 0x88b5, 0x16b8: 0x88d5, 0x16b9: 0x88d5, 0x16ba: 0x88d5, 0x16bb: 0x88d5, -	0x16bc: 0x87b5, 0x16bd: 0x87b5, 0x16be: 0x87b5, 0x16bf: 0x0040, -	// Block 0x5b, offset 0x16c0 -	0x16c0: 0x0040, 0x16c1: 0x0040, 0x16c2: 0x8715, 0x16c3: 0x86f5, 0x16c4: 0x88f5, 0x16c5: 0x86f5, -	0x16c6: 0x8715, 0x16c7: 0x86f5, 0x16c8: 0x0040, 0x16c9: 0x0040, 0x16ca: 0x8915, 0x16cb: 0x8715, -	0x16cc: 0x8935, 0x16cd: 0x88f5, 0x16ce: 0x8935, 0x16cf: 0x8715, 0x16d0: 0x0040, 0x16d1: 0x0040, -	0x16d2: 0x8955, 0x16d3: 0x8975, 0x16d4: 0x8875, 0x16d5: 0x8935, 0x16d6: 0x88f5, 0x16d7: 0x8935, -	0x16d8: 0x0040, 0x16d9: 0x0040, 0x16da: 0x8995, 0x16db: 0x89b5, 0x16dc: 0x8995, 0x16dd: 0x0040, -	0x16de: 0x0040, 0x16df: 0x0040, 0x16e0: 0xb541, 0x16e1: 0xb559, 0x16e2: 0xb571, 0x16e3: 0x89d6, -	0x16e4: 0xb589, 0x16e5: 0xb5a1, 0x16e6: 0x89f5, 0x16e7: 0x0040, 0x16e8: 0x8a15, 0x16e9: 0x8a35, -	0x16ea: 0x8a55, 0x16eb: 0x8a35, 0x16ec: 0x8a75, 0x16ed: 0x8a95, 0x16ee: 0x8ab5, 0x16ef: 0x0040, -	0x16f0: 0x0040, 0x16f1: 0x0040, 0x16f2: 0x0040, 0x16f3: 0x0040, 0x16f4: 0x0040, 0x16f5: 0x0040, -	0x16f6: 0x0040, 0x16f7: 0x0040, 0x16f8: 0x0040, 0x16f9: 0x0340, 0x16fa: 0x0340, 0x16fb: 0x0340, -	0x16fc: 0x0040, 0x16fd: 0x0040, 0x16fe: 0x0040, 0x16ff: 0x0040, -	// Block 0x5c, offset 0x1700 -	0x1700: 0x0a08, 0x1701: 0x0a08, 0x1702: 0x0a08, 0x1703: 0x0a08, 0x1704: 0x0a08, 0x1705: 0x0c08, -	0x1706: 0x0808, 0x1707: 0x0c08, 0x1708: 0x0818, 0x1709: 0x0c08, 0x170a: 0x0c08, 0x170b: 0x0808, -	0x170c: 0x0808, 0x170d: 0x0908, 0x170e: 0x0c08, 0x170f: 0x0c08, 0x1710: 0x0c08, 0x1711: 0x0c08, -	0x1712: 0x0c08, 0x1713: 0x0a08, 0x1714: 0x0a08, 0x1715: 0x0a08, 0x1716: 0x0a08, 0x1717: 0x0908, -	0x1718: 0x0a08, 0x1719: 0x0a08, 0x171a: 0x0a08, 0x171b: 0x0a08, 0x171c: 0x0a08, 0x171d: 0x0c08, -	0x171e: 0x0a08, 0x171f: 0x0a08, 0x1720: 0x0a08, 0x1721: 0x0c08, 0x1722: 0x0808, 0x1723: 0x0808, -	0x1724: 0x0c08, 0x1725: 0x3308, 0x1726: 0x3308, 0x1727: 0x0040, 0x1728: 0x0040, 0x1729: 0x0040, -	0x172a: 0x0040, 0x172b: 0x0a18, 0x172c: 0x0a18, 0x172d: 0x0a18, 0x172e: 0x0a18, 0x172f: 0x0c18, -	0x1730: 0x0818, 0x1731: 0x0818, 0x1732: 0x0818, 0x1733: 0x0818, 0x1734: 0x0818, 0x1735: 0x0818, -	0x1736: 0x0818, 0x1737: 0x0040, 0x1738: 0x0040, 0x1739: 0x0040, 0x173a: 0x0040, 0x173b: 0x0040, -	0x173c: 0x0040, 0x173d: 0x0040, 0x173e: 0x0040, 0x173f: 0x0040, -	// Block 0x5d, offset 0x1740 -	0x1740: 0x0a08, 0x1741: 0x0c08, 0x1742: 0x0a08, 0x1743: 0x0c08, 0x1744: 0x0c08, 0x1745: 0x0c08, -	0x1746: 0x0a08, 0x1747: 0x0a08, 0x1748: 0x0a08, 0x1749: 0x0c08, 0x174a: 0x0a08, 0x174b: 0x0a08, -	0x174c: 0x0c08, 0x174d: 0x0a08, 0x174e: 0x0c08, 0x174f: 0x0c08, 0x1750: 0x0a08, 0x1751: 0x0c08, -	0x1752: 0x0040, 0x1753: 0x0040, 0x1754: 0x0040, 0x1755: 0x0040, 0x1756: 0x0040, 0x1757: 0x0040, -	0x1758: 0x0040, 0x1759: 0x0818, 0x175a: 0x0818, 0x175b: 0x0818, 0x175c: 0x0818, 0x175d: 0x0040, -	0x175e: 0x0040, 0x175f: 0x0040, 0x1760: 0x0040, 0x1761: 0x0040, 0x1762: 0x0040, 0x1763: 0x0040, -	0x1764: 0x0040, 0x1765: 0x0040, 0x1766: 0x0040, 0x1767: 0x0040, 0x1768: 0x0040, 0x1769: 0x0c18, -	0x176a: 0x0c18, 0x176b: 0x0c18, 0x176c: 0x0c18, 0x176d: 0x0a18, 0x176e: 0x0a18, 0x176f: 0x0818, -	0x1770: 0x0040, 0x1771: 0x0040, 0x1772: 0x0040, 0x1773: 0x0040, 0x1774: 0x0040, 0x1775: 0x0040, -	0x1776: 0x0040, 0x1777: 0x0040, 0x1778: 0x0040, 0x1779: 0x0040, 0x177a: 0x0040, 0x177b: 0x0040, -	0x177c: 0x0040, 0x177d: 0x0040, 0x177e: 0x0040, 0x177f: 0x0040, -	// Block 0x5e, offset 0x1780 -	0x1780: 0x3308, 0x1781: 0x3308, 0x1782: 0x3008, 0x1783: 0x3008, 0x1784: 0x0040, 0x1785: 0x0008, -	0x1786: 0x0008, 0x1787: 0x0008, 0x1788: 0x0008, 0x1789: 0x0008, 0x178a: 0x0008, 0x178b: 0x0008, -	0x178c: 0x0008, 0x178d: 0x0040, 0x178e: 0x0040, 0x178f: 0x0008, 0x1790: 0x0008, 0x1791: 0x0040, -	0x1792: 0x0040, 0x1793: 0x0008, 0x1794: 0x0008, 0x1795: 0x0008, 0x1796: 0x0008, 0x1797: 0x0008, -	0x1798: 0x0008, 0x1799: 0x0008, 0x179a: 0x0008, 0x179b: 0x0008, 0x179c: 0x0008, 0x179d: 0x0008, -	0x179e: 0x0008, 0x179f: 0x0008, 0x17a0: 0x0008, 0x17a1: 0x0008, 0x17a2: 0x0008, 0x17a3: 0x0008, -	0x17a4: 0x0008, 0x17a5: 0x0008, 0x17a6: 0x0008, 0x17a7: 0x0008, 0x17a8: 0x0008, 0x17a9: 0x0040, -	0x17aa: 0x0008, 0x17ab: 0x0008, 0x17ac: 0x0008, 0x17ad: 0x0008, 0x17ae: 0x0008, 0x17af: 0x0008, -	0x17b0: 0x0008, 0x17b1: 0x0040, 0x17b2: 0x0008, 0x17b3: 0x0008, 0x17b4: 0x0040, 0x17b5: 0x0008, -	0x17b6: 0x0008, 0x17b7: 0x0008, 0x17b8: 0x0008, 0x17b9: 0x0008, 0x17ba: 0x0040, 0x17bb: 0x0040, -	0x17bc: 0x3308, 0x17bd: 0x0008, 0x17be: 0x3008, 0x17bf: 0x3008, -	// Block 0x5f, offset 0x17c0 -	0x17c0: 0x3308, 0x17c1: 0x3008, 0x17c2: 0x3008, 0x17c3: 0x3008, 0x17c4: 0x3008, 0x17c5: 0x0040, -	0x17c6: 0x0040, 0x17c7: 0x3008, 0x17c8: 0x3008, 0x17c9: 0x0040, 0x17ca: 0x0040, 0x17cb: 0x3008, -	0x17cc: 0x3008, 0x17cd: 0x3808, 0x17ce: 0x0040, 0x17cf: 0x0040, 0x17d0: 0x0008, 0x17d1: 0x0040, -	0x17d2: 0x0040, 0x17d3: 0x0040, 0x17d4: 0x0040, 0x17d5: 0x0040, 0x17d6: 0x0040, 0x17d7: 0x3008, -	0x17d8: 0x0040, 0x17d9: 0x0040, 0x17da: 0x0040, 0x17db: 0x0040, 0x17dc: 0x0040, 0x17dd: 0x0008, -	0x17de: 0x0008, 0x17df: 0x0008, 0x17e0: 0x0008, 0x17e1: 0x0008, 0x17e2: 0x3008, 0x17e3: 0x3008, -	0x17e4: 0x0040, 0x17e5: 0x0040, 0x17e6: 0x3308, 0x17e7: 0x3308, 0x17e8: 0x3308, 0x17e9: 0x3308, -	0x17ea: 0x3308, 0x17eb: 0x3308, 0x17ec: 0x3308, 0x17ed: 0x0040, 0x17ee: 0x0040, 0x17ef: 0x0040, -	0x17f0: 0x3308, 0x17f1: 0x3308, 0x17f2: 0x3308, 0x17f3: 0x3308, 0x17f4: 0x3308, 0x17f5: 0x0040, -	0x17f6: 0x0040, 0x17f7: 0x0040, 0x17f8: 0x0040, 0x17f9: 0x0040, 0x17fa: 0x0040, 0x17fb: 0x0040, -	0x17fc: 0x0040, 0x17fd: 0x0040, 0x17fe: 0x0040, 0x17ff: 0x0040, -	// Block 0x60, offset 0x1800 -	0x1800: 0x0039, 0x1801: 0x0ee9, 0x1802: 0x1159, 0x1803: 0x0ef9, 0x1804: 0x0f09, 0x1805: 0x1199, -	0x1806: 0x0f31, 0x1807: 0x0249, 0x1808: 0x0f41, 0x1809: 0x0259, 0x180a: 0x0f51, 0x180b: 0x0359, -	0x180c: 0x0f61, 0x180d: 0x0f71, 0x180e: 0x00d9, 0x180f: 0x0f99, 0x1810: 0x2039, 0x1811: 0x0269, -	0x1812: 0x01d9, 0x1813: 0x0fa9, 0x1814: 0x0fb9, 0x1815: 0x1089, 0x1816: 0x0279, 0x1817: 0x0369, -	0x1818: 0x0289, 0x1819: 0x13d1, 0x181a: 0x0039, 0x181b: 0x0ee9, 0x181c: 0x1159, 0x181d: 0x0ef9, -	0x181e: 0x0f09, 0x181f: 0x1199, 0x1820: 0x0f31, 0x1821: 0x0249, 0x1822: 0x0f41, 0x1823: 0x0259, -	0x1824: 0x0f51, 0x1825: 0x0359, 0x1826: 0x0f61, 0x1827: 0x0f71, 0x1828: 0x00d9, 0x1829: 0x0f99, -	0x182a: 0x2039, 0x182b: 0x0269, 0x182c: 0x01d9, 0x182d: 0x0fa9, 0x182e: 0x0fb9, 0x182f: 0x1089, -	0x1830: 0x0279, 0x1831: 0x0369, 0x1832: 0x0289, 0x1833: 0x13d1, 0x1834: 0x0039, 0x1835: 0x0ee9, -	0x1836: 0x1159, 0x1837: 0x0ef9, 0x1838: 0x0f09, 0x1839: 0x1199, 0x183a: 0x0f31, 0x183b: 0x0249, -	0x183c: 0x0f41, 0x183d: 0x0259, 0x183e: 0x0f51, 0x183f: 0x0359, -	// Block 0x61, offset 0x1840 -	0x1840: 0x0f61, 0x1841: 0x0f71, 0x1842: 0x00d9, 0x1843: 0x0f99, 0x1844: 0x2039, 0x1845: 0x0269, -	0x1846: 0x01d9, 0x1847: 0x0fa9, 0x1848: 0x0fb9, 0x1849: 0x1089, 0x184a: 0x0279, 0x184b: 0x0369, -	0x184c: 0x0289, 0x184d: 0x13d1, 0x184e: 0x0039, 0x184f: 0x0ee9, 0x1850: 0x1159, 0x1851: 0x0ef9, -	0x1852: 0x0f09, 0x1853: 0x1199, 0x1854: 0x0f31, 0x1855: 0x0040, 0x1856: 0x0f41, 0x1857: 0x0259, -	0x1858: 0x0f51, 0x1859: 0x0359, 0x185a: 0x0f61, 0x185b: 0x0f71, 0x185c: 0x00d9, 0x185d: 0x0f99, -	0x185e: 0x2039, 0x185f: 0x0269, 0x1860: 0x01d9, 0x1861: 0x0fa9, 0x1862: 0x0fb9, 0x1863: 0x1089, -	0x1864: 0x0279, 0x1865: 0x0369, 0x1866: 0x0289, 0x1867: 0x13d1, 0x1868: 0x0039, 0x1869: 0x0ee9, -	0x186a: 0x1159, 0x186b: 0x0ef9, 0x186c: 0x0f09, 0x186d: 0x1199, 0x186e: 0x0f31, 0x186f: 0x0249, -	0x1870: 0x0f41, 0x1871: 0x0259, 0x1872: 0x0f51, 0x1873: 0x0359, 0x1874: 0x0f61, 0x1875: 0x0f71, -	0x1876: 0x00d9, 0x1877: 0x0f99, 0x1878: 0x2039, 0x1879: 0x0269, 0x187a: 0x01d9, 0x187b: 0x0fa9, -	0x187c: 0x0fb9, 0x187d: 0x1089, 0x187e: 0x0279, 0x187f: 0x0369, -	// Block 0x62, offset 0x1880 -	0x1880: 0x0289, 0x1881: 0x13d1, 0x1882: 0x0039, 0x1883: 0x0ee9, 0x1884: 0x1159, 0x1885: 0x0ef9, -	0x1886: 0x0f09, 0x1887: 0x1199, 0x1888: 0x0f31, 0x1889: 0x0249, 0x188a: 0x0f41, 0x188b: 0x0259, -	0x188c: 0x0f51, 0x188d: 0x0359, 0x188e: 0x0f61, 0x188f: 0x0f71, 0x1890: 0x00d9, 0x1891: 0x0f99, -	0x1892: 0x2039, 0x1893: 0x0269, 0x1894: 0x01d9, 0x1895: 0x0fa9, 0x1896: 0x0fb9, 0x1897: 0x1089, -	0x1898: 0x0279, 0x1899: 0x0369, 0x189a: 0x0289, 0x189b: 0x13d1, 0x189c: 0x0039, 0x189d: 0x0040, -	0x189e: 0x1159, 0x189f: 0x0ef9, 0x18a0: 0x0040, 0x18a1: 0x0040, 0x18a2: 0x0f31, 0x18a3: 0x0040, -	0x18a4: 0x0040, 0x18a5: 0x0259, 0x18a6: 0x0f51, 0x18a7: 0x0040, 0x18a8: 0x0040, 0x18a9: 0x0f71, -	0x18aa: 0x00d9, 0x18ab: 0x0f99, 0x18ac: 0x2039, 0x18ad: 0x0040, 0x18ae: 0x01d9, 0x18af: 0x0fa9, -	0x18b0: 0x0fb9, 0x18b1: 0x1089, 0x18b2: 0x0279, 0x18b3: 0x0369, 0x18b4: 0x0289, 0x18b5: 0x13d1, -	0x18b6: 0x0039, 0x18b7: 0x0ee9, 0x18b8: 0x1159, 0x18b9: 0x0ef9, 0x18ba: 0x0040, 0x18bb: 0x1199, -	0x18bc: 0x0040, 0x18bd: 0x0249, 0x18be: 0x0f41, 0x18bf: 0x0259, -	// Block 0x63, offset 0x18c0 -	0x18c0: 0x0f51, 0x18c1: 0x0359, 0x18c2: 0x0f61, 0x18c3: 0x0f71, 0x18c4: 0x0040, 0x18c5: 0x0f99, -	0x18c6: 0x2039, 0x18c7: 0x0269, 0x18c8: 0x01d9, 0x18c9: 0x0fa9, 0x18ca: 0x0fb9, 0x18cb: 0x1089, -	0x18cc: 0x0279, 0x18cd: 0x0369, 0x18ce: 0x0289, 0x18cf: 0x13d1, 0x18d0: 0x0039, 0x18d1: 0x0ee9, -	0x18d2: 0x1159, 0x18d3: 0x0ef9, 0x18d4: 0x0f09, 0x18d5: 0x1199, 0x18d6: 0x0f31, 0x18d7: 0x0249, -	0x18d8: 0x0f41, 0x18d9: 0x0259, 0x18da: 0x0f51, 0x18db: 0x0359, 0x18dc: 0x0f61, 0x18dd: 0x0f71, -	0x18de: 0x00d9, 0x18df: 0x0f99, 0x18e0: 0x2039, 0x18e1: 0x0269, 0x18e2: 0x01d9, 0x18e3: 0x0fa9, -	0x18e4: 0x0fb9, 0x18e5: 0x1089, 0x18e6: 0x0279, 0x18e7: 0x0369, 0x18e8: 0x0289, 0x18e9: 0x13d1, -	0x18ea: 0x0039, 0x18eb: 0x0ee9, 0x18ec: 0x1159, 0x18ed: 0x0ef9, 0x18ee: 0x0f09, 0x18ef: 0x1199, -	0x18f0: 0x0f31, 0x18f1: 0x0249, 0x18f2: 0x0f41, 0x18f3: 0x0259, 0x18f4: 0x0f51, 0x18f5: 0x0359, -	0x18f6: 0x0f61, 0x18f7: 0x0f71, 0x18f8: 0x00d9, 0x18f9: 0x0f99, 0x18fa: 0x2039, 0x18fb: 0x0269, -	0x18fc: 0x01d9, 0x18fd: 0x0fa9, 0x18fe: 0x0fb9, 0x18ff: 0x1089, -	// Block 0x64, offset 0x1900 -	0x1900: 0x0279, 0x1901: 0x0369, 0x1902: 0x0289, 0x1903: 0x13d1, 0x1904: 0x0039, 0x1905: 0x0ee9, -	0x1906: 0x0040, 0x1907: 0x0ef9, 0x1908: 0x0f09, 0x1909: 0x1199, 0x190a: 0x0f31, 0x190b: 0x0040, -	0x190c: 0x0040, 0x190d: 0x0259, 0x190e: 0x0f51, 0x190f: 0x0359, 0x1910: 0x0f61, 0x1911: 0x0f71, -	0x1912: 0x00d9, 0x1913: 0x0f99, 0x1914: 0x2039, 0x1915: 0x0040, 0x1916: 0x01d9, 0x1917: 0x0fa9, -	0x1918: 0x0fb9, 0x1919: 0x1089, 0x191a: 0x0279, 0x191b: 0x0369, 0x191c: 0x0289, 0x191d: 0x0040, -	0x191e: 0x0039, 0x191f: 0x0ee9, 0x1920: 0x1159, 0x1921: 0x0ef9, 0x1922: 0x0f09, 0x1923: 0x1199, -	0x1924: 0x0f31, 0x1925: 0x0249, 0x1926: 0x0f41, 0x1927: 0x0259, 0x1928: 0x0f51, 0x1929: 0x0359, -	0x192a: 0x0f61, 0x192b: 0x0f71, 0x192c: 0x00d9, 0x192d: 0x0f99, 0x192e: 0x2039, 0x192f: 0x0269, -	0x1930: 0x01d9, 0x1931: 0x0fa9, 0x1932: 0x0fb9, 0x1933: 0x1089, 0x1934: 0x0279, 0x1935: 0x0369, -	0x1936: 0x0289, 0x1937: 0x13d1, 0x1938: 0x0039, 0x1939: 0x0ee9, 0x193a: 0x0040, 0x193b: 0x0ef9, -	0x193c: 0x0f09, 0x193d: 0x1199, 0x193e: 0x0f31, 0x193f: 0x0040, -	// Block 0x65, offset 0x1940 -	0x1940: 0x0f41, 0x1941: 0x0259, 0x1942: 0x0f51, 0x1943: 0x0359, 0x1944: 0x0f61, 0x1945: 0x0040, -	0x1946: 0x00d9, 0x1947: 0x0040, 0x1948: 0x0040, 0x1949: 0x0040, 0x194a: 0x01d9, 0x194b: 0x0fa9, -	0x194c: 0x0fb9, 0x194d: 0x1089, 0x194e: 0x0279, 0x194f: 0x0369, 0x1950: 0x0289, 0x1951: 0x0040, -	0x1952: 0x0039, 0x1953: 0x0ee9, 0x1954: 0x1159, 0x1955: 0x0ef9, 0x1956: 0x0f09, 0x1957: 0x1199, -	0x1958: 0x0f31, 0x1959: 0x0249, 0x195a: 0x0f41, 0x195b: 0x0259, 0x195c: 0x0f51, 0x195d: 0x0359, -	0x195e: 0x0f61, 0x195f: 0x0f71, 0x1960: 0x00d9, 0x1961: 0x0f99, 0x1962: 0x2039, 0x1963: 0x0269, -	0x1964: 0x01d9, 0x1965: 0x0fa9, 0x1966: 0x0fb9, 0x1967: 0x1089, 0x1968: 0x0279, 0x1969: 0x0369, -	0x196a: 0x0289, 0x196b: 0x13d1, 0x196c: 0x0039, 0x196d: 0x0ee9, 0x196e: 0x1159, 0x196f: 0x0ef9, -	0x1970: 0x0f09, 0x1971: 0x1199, 0x1972: 0x0f31, 0x1973: 0x0249, 0x1974: 0x0f41, 0x1975: 0x0259, -	0x1976: 0x0f51, 0x1977: 0x0359, 0x1978: 0x0f61, 0x1979: 0x0f71, 0x197a: 0x00d9, 0x197b: 0x0f99, -	0x197c: 0x2039, 0x197d: 0x0269, 0x197e: 0x01d9, 0x197f: 0x0fa9, -	// Block 0x66, offset 0x1980 -	0x1980: 0x0fb9, 0x1981: 0x1089, 0x1982: 0x0279, 0x1983: 0x0369, 0x1984: 0x0289, 0x1985: 0x13d1, -	0x1986: 0x0039, 0x1987: 0x0ee9, 0x1988: 0x1159, 0x1989: 0x0ef9, 0x198a: 0x0f09, 0x198b: 0x1199, -	0x198c: 0x0f31, 0x198d: 0x0249, 0x198e: 0x0f41, 0x198f: 0x0259, 0x1990: 0x0f51, 0x1991: 0x0359, -	0x1992: 0x0f61, 0x1993: 0x0f71, 0x1994: 0x00d9, 0x1995: 0x0f99, 0x1996: 0x2039, 0x1997: 0x0269, -	0x1998: 0x01d9, 0x1999: 0x0fa9, 0x199a: 0x0fb9, 0x199b: 0x1089, 0x199c: 0x0279, 0x199d: 0x0369, -	0x199e: 0x0289, 0x199f: 0x13d1, 0x19a0: 0x0039, 0x19a1: 0x0ee9, 0x19a2: 0x1159, 0x19a3: 0x0ef9, -	0x19a4: 0x0f09, 0x19a5: 0x1199, 0x19a6: 0x0f31, 0x19a7: 0x0249, 0x19a8: 0x0f41, 0x19a9: 0x0259, -	0x19aa: 0x0f51, 0x19ab: 0x0359, 0x19ac: 0x0f61, 0x19ad: 0x0f71, 0x19ae: 0x00d9, 0x19af: 0x0f99, -	0x19b0: 0x2039, 0x19b1: 0x0269, 0x19b2: 0x01d9, 0x19b3: 0x0fa9, 0x19b4: 0x0fb9, 0x19b5: 0x1089, -	0x19b6: 0x0279, 0x19b7: 0x0369, 0x19b8: 0x0289, 0x19b9: 0x13d1, 0x19ba: 0x0039, 0x19bb: 0x0ee9, -	0x19bc: 0x1159, 0x19bd: 0x0ef9, 0x19be: 0x0f09, 0x19bf: 0x1199, -	// Block 0x67, offset 0x19c0 -	0x19c0: 0x0f31, 0x19c1: 0x0249, 0x19c2: 0x0f41, 0x19c3: 0x0259, 0x19c4: 0x0f51, 0x19c5: 0x0359, -	0x19c6: 0x0f61, 0x19c7: 0x0f71, 0x19c8: 0x00d9, 0x19c9: 0x0f99, 0x19ca: 0x2039, 0x19cb: 0x0269, -	0x19cc: 0x01d9, 0x19cd: 0x0fa9, 0x19ce: 0x0fb9, 0x19cf: 0x1089, 0x19d0: 0x0279, 0x19d1: 0x0369, -	0x19d2: 0x0289, 0x19d3: 0x13d1, 0x19d4: 0x0039, 0x19d5: 0x0ee9, 0x19d6: 0x1159, 0x19d7: 0x0ef9, -	0x19d8: 0x0f09, 0x19d9: 0x1199, 0x19da: 0x0f31, 0x19db: 0x0249, 0x19dc: 0x0f41, 0x19dd: 0x0259, -	0x19de: 0x0f51, 0x19df: 0x0359, 0x19e0: 0x0f61, 0x19e1: 0x0f71, 0x19e2: 0x00d9, 0x19e3: 0x0f99, -	0x19e4: 0x2039, 0x19e5: 0x0269, 0x19e6: 0x01d9, 0x19e7: 0x0fa9, 0x19e8: 0x0fb9, 0x19e9: 0x1089, -	0x19ea: 0x0279, 0x19eb: 0x0369, 0x19ec: 0x0289, 0x19ed: 0x13d1, 0x19ee: 0x0039, 0x19ef: 0x0ee9, -	0x19f0: 0x1159, 0x19f1: 0x0ef9, 0x19f2: 0x0f09, 0x19f3: 0x1199, 0x19f4: 0x0f31, 0x19f5: 0x0249, -	0x19f6: 0x0f41, 0x19f7: 0x0259, 0x19f8: 0x0f51, 0x19f9: 0x0359, 0x19fa: 0x0f61, 0x19fb: 0x0f71, -	0x19fc: 0x00d9, 0x19fd: 0x0f99, 0x19fe: 0x2039, 0x19ff: 0x0269, -	// Block 0x68, offset 0x1a00 -	0x1a00: 0x01d9, 0x1a01: 0x0fa9, 0x1a02: 0x0fb9, 0x1a03: 0x1089, 0x1a04: 0x0279, 0x1a05: 0x0369, -	0x1a06: 0x0289, 0x1a07: 0x13d1, 0x1a08: 0x0039, 0x1a09: 0x0ee9, 0x1a0a: 0x1159, 0x1a0b: 0x0ef9, -	0x1a0c: 0x0f09, 0x1a0d: 0x1199, 0x1a0e: 0x0f31, 0x1a0f: 0x0249, 0x1a10: 0x0f41, 0x1a11: 0x0259, -	0x1a12: 0x0f51, 0x1a13: 0x0359, 0x1a14: 0x0f61, 0x1a15: 0x0f71, 0x1a16: 0x00d9, 0x1a17: 0x0f99, -	0x1a18: 0x2039, 0x1a19: 0x0269, 0x1a1a: 0x01d9, 0x1a1b: 0x0fa9, 0x1a1c: 0x0fb9, 0x1a1d: 0x1089, -	0x1a1e: 0x0279, 0x1a1f: 0x0369, 0x1a20: 0x0289, 0x1a21: 0x13d1, 0x1a22: 0x0039, 0x1a23: 0x0ee9, -	0x1a24: 0x1159, 0x1a25: 0x0ef9, 0x1a26: 0x0f09, 0x1a27: 0x1199, 0x1a28: 0x0f31, 0x1a29: 0x0249, -	0x1a2a: 0x0f41, 0x1a2b: 0x0259, 0x1a2c: 0x0f51, 0x1a2d: 0x0359, 0x1a2e: 0x0f61, 0x1a2f: 0x0f71, -	0x1a30: 0x00d9, 0x1a31: 0x0f99, 0x1a32: 0x2039, 0x1a33: 0x0269, 0x1a34: 0x01d9, 0x1a35: 0x0fa9, -	0x1a36: 0x0fb9, 0x1a37: 0x1089, 0x1a38: 0x0279, 0x1a39: 0x0369, 0x1a3a: 0x0289, 0x1a3b: 0x13d1, -	0x1a3c: 0x0039, 0x1a3d: 0x0ee9, 0x1a3e: 0x1159, 0x1a3f: 0x0ef9, -	// Block 0x69, offset 0x1a40 -	0x1a40: 0x0f09, 0x1a41: 0x1199, 0x1a42: 0x0f31, 0x1a43: 0x0249, 0x1a44: 0x0f41, 0x1a45: 0x0259, -	0x1a46: 0x0f51, 0x1a47: 0x0359, 0x1a48: 0x0f61, 0x1a49: 0x0f71, 0x1a4a: 0x00d9, 0x1a4b: 0x0f99, -	0x1a4c: 0x2039, 0x1a4d: 0x0269, 0x1a4e: 0x01d9, 0x1a4f: 0x0fa9, 0x1a50: 0x0fb9, 0x1a51: 0x1089, -	0x1a52: 0x0279, 0x1a53: 0x0369, 0x1a54: 0x0289, 0x1a55: 0x13d1, 0x1a56: 0x0039, 0x1a57: 0x0ee9, -	0x1a58: 0x1159, 0x1a59: 0x0ef9, 0x1a5a: 0x0f09, 0x1a5b: 0x1199, 0x1a5c: 0x0f31, 0x1a5d: 0x0249, -	0x1a5e: 0x0f41, 0x1a5f: 0x0259, 0x1a60: 0x0f51, 0x1a61: 0x0359, 0x1a62: 0x0f61, 0x1a63: 0x0f71, -	0x1a64: 0x00d9, 0x1a65: 0x0f99, 0x1a66: 0x2039, 0x1a67: 0x0269, 0x1a68: 0x01d9, 0x1a69: 0x0fa9, -	0x1a6a: 0x0fb9, 0x1a6b: 0x1089, 0x1a6c: 0x0279, 0x1a6d: 0x0369, 0x1a6e: 0x0289, 0x1a6f: 0x13d1, -	0x1a70: 0x0039, 0x1a71: 0x0ee9, 0x1a72: 0x1159, 0x1a73: 0x0ef9, 0x1a74: 0x0f09, 0x1a75: 0x1199, -	0x1a76: 0x0f31, 0x1a77: 0x0249, 0x1a78: 0x0f41, 0x1a79: 0x0259, 0x1a7a: 0x0f51, 0x1a7b: 0x0359, -	0x1a7c: 0x0f61, 0x1a7d: 0x0f71, 0x1a7e: 0x00d9, 0x1a7f: 0x0f99, -	// Block 0x6a, offset 0x1a80 -	0x1a80: 0x2039, 0x1a81: 0x0269, 0x1a82: 0x01d9, 0x1a83: 0x0fa9, 0x1a84: 0x0fb9, 0x1a85: 0x1089, -	0x1a86: 0x0279, 0x1a87: 0x0369, 0x1a88: 0x0289, 0x1a89: 0x13d1, 0x1a8a: 0x0039, 0x1a8b: 0x0ee9, -	0x1a8c: 0x1159, 0x1a8d: 0x0ef9, 0x1a8e: 0x0f09, 0x1a8f: 0x1199, 0x1a90: 0x0f31, 0x1a91: 0x0249, -	0x1a92: 0x0f41, 0x1a93: 0x0259, 0x1a94: 0x0f51, 0x1a95: 0x0359, 0x1a96: 0x0f61, 0x1a97: 0x0f71, -	0x1a98: 0x00d9, 0x1a99: 0x0f99, 0x1a9a: 0x2039, 0x1a9b: 0x0269, 0x1a9c: 0x01d9, 0x1a9d: 0x0fa9, -	0x1a9e: 0x0fb9, 0x1a9f: 0x1089, 0x1aa0: 0x0279, 0x1aa1: 0x0369, 0x1aa2: 0x0289, 0x1aa3: 0x13d1, -	0x1aa4: 0xba81, 0x1aa5: 0xba99, 0x1aa6: 0x0040, 0x1aa7: 0x0040, 0x1aa8: 0xbab1, 0x1aa9: 0x1099, -	0x1aaa: 0x10b1, 0x1aab: 0x10c9, 0x1aac: 0xbac9, 0x1aad: 0xbae1, 0x1aae: 0xbaf9, 0x1aaf: 0x1429, -	0x1ab0: 0x1a31, 0x1ab1: 0xbb11, 0x1ab2: 0xbb29, 0x1ab3: 0xbb41, 0x1ab4: 0xbb59, 0x1ab5: 0xbb71, -	0x1ab6: 0xbb89, 0x1ab7: 0x2109, 0x1ab8: 0x1111, 0x1ab9: 0x1429, 0x1aba: 0xbba1, 0x1abb: 0xbbb9, -	0x1abc: 0xbbd1, 0x1abd: 0x10e1, 0x1abe: 0x10f9, 0x1abf: 0xbbe9, -	// Block 0x6b, offset 0x1ac0 -	0x1ac0: 0x2079, 0x1ac1: 0xbc01, 0x1ac2: 0xbab1, 0x1ac3: 0x1099, 0x1ac4: 0x10b1, 0x1ac5: 0x10c9, -	0x1ac6: 0xbac9, 0x1ac7: 0xbae1, 0x1ac8: 0xbaf9, 0x1ac9: 0x1429, 0x1aca: 0x1a31, 0x1acb: 0xbb11, -	0x1acc: 0xbb29, 0x1acd: 0xbb41, 0x1ace: 0xbb59, 0x1acf: 0xbb71, 0x1ad0: 0xbb89, 0x1ad1: 0x2109, -	0x1ad2: 0x1111, 0x1ad3: 0xbba1, 0x1ad4: 0xbba1, 0x1ad5: 0xbbb9, 0x1ad6: 0xbbd1, 0x1ad7: 0x10e1, -	0x1ad8: 0x10f9, 0x1ad9: 0xbbe9, 0x1ada: 0x2079, 0x1adb: 0xbc21, 0x1adc: 0xbac9, 0x1add: 0x1429, -	0x1ade: 0xbb11, 0x1adf: 0x10e1, 0x1ae0: 0x1111, 0x1ae1: 0x2109, 0x1ae2: 0xbab1, 0x1ae3: 0x1099, -	0x1ae4: 0x10b1, 0x1ae5: 0x10c9, 0x1ae6: 0xbac9, 0x1ae7: 0xbae1, 0x1ae8: 0xbaf9, 0x1ae9: 0x1429, -	0x1aea: 0x1a31, 0x1aeb: 0xbb11, 0x1aec: 0xbb29, 0x1aed: 0xbb41, 0x1aee: 0xbb59, 0x1aef: 0xbb71, -	0x1af0: 0xbb89, 0x1af1: 0x2109, 0x1af2: 0x1111, 0x1af3: 0x1429, 0x1af4: 0xbba1, 0x1af5: 0xbbb9, -	0x1af6: 0xbbd1, 0x1af7: 0x10e1, 0x1af8: 0x10f9, 0x1af9: 0xbbe9, 0x1afa: 0x2079, 0x1afb: 0xbc01, -	0x1afc: 0xbab1, 0x1afd: 0x1099, 0x1afe: 0x10b1, 0x1aff: 0x10c9, -	// Block 0x6c, offset 0x1b00 -	0x1b00: 0xbac9, 0x1b01: 0xbae1, 0x1b02: 0xbaf9, 0x1b03: 0x1429, 0x1b04: 0x1a31, 0x1b05: 0xbb11, -	0x1b06: 0xbb29, 0x1b07: 0xbb41, 0x1b08: 0xbb59, 0x1b09: 0xbb71, 0x1b0a: 0xbb89, 0x1b0b: 0x2109, -	0x1b0c: 0x1111, 0x1b0d: 0xbba1, 0x1b0e: 0xbba1, 0x1b0f: 0xbbb9, 0x1b10: 0xbbd1, 0x1b11: 0x10e1, -	0x1b12: 0x10f9, 0x1b13: 0xbbe9, 0x1b14: 0x2079, 0x1b15: 0xbc21, 0x1b16: 0xbac9, 0x1b17: 0x1429, -	0x1b18: 0xbb11, 0x1b19: 0x10e1, 0x1b1a: 0x1111, 0x1b1b: 0x2109, 0x1b1c: 0xbab1, 0x1b1d: 0x1099, -	0x1b1e: 0x10b1, 0x1b1f: 0x10c9, 0x1b20: 0xbac9, 0x1b21: 0xbae1, 0x1b22: 0xbaf9, 0x1b23: 0x1429, -	0x1b24: 0x1a31, 0x1b25: 0xbb11, 0x1b26: 0xbb29, 0x1b27: 0xbb41, 0x1b28: 0xbb59, 0x1b29: 0xbb71, -	0x1b2a: 0xbb89, 0x1b2b: 0x2109, 0x1b2c: 0x1111, 0x1b2d: 0x1429, 0x1b2e: 0xbba1, 0x1b2f: 0xbbb9, -	0x1b30: 0xbbd1, 0x1b31: 0x10e1, 0x1b32: 0x10f9, 0x1b33: 0xbbe9, 0x1b34: 0x2079, 0x1b35: 0xbc01, -	0x1b36: 0xbab1, 0x1b37: 0x1099, 0x1b38: 0x10b1, 0x1b39: 0x10c9, 0x1b3a: 0xbac9, 0x1b3b: 0xbae1, -	0x1b3c: 0xbaf9, 0x1b3d: 0x1429, 0x1b3e: 0x1a31, 0x1b3f: 0xbb11, -	// Block 0x6d, offset 0x1b40 -	0x1b40: 0xbb29, 0x1b41: 0xbb41, 0x1b42: 0xbb59, 0x1b43: 0xbb71, 0x1b44: 0xbb89, 0x1b45: 0x2109, -	0x1b46: 0x1111, 0x1b47: 0xbba1, 0x1b48: 0xbba1, 0x1b49: 0xbbb9, 0x1b4a: 0xbbd1, 0x1b4b: 0x10e1, -	0x1b4c: 0x10f9, 0x1b4d: 0xbbe9, 0x1b4e: 0x2079, 0x1b4f: 0xbc21, 0x1b50: 0xbac9, 0x1b51: 0x1429, -	0x1b52: 0xbb11, 0x1b53: 0x10e1, 0x1b54: 0x1111, 0x1b55: 0x2109, 0x1b56: 0xbab1, 0x1b57: 0x1099, -	0x1b58: 0x10b1, 0x1b59: 0x10c9, 0x1b5a: 0xbac9, 0x1b5b: 0xbae1, 0x1b5c: 0xbaf9, 0x1b5d: 0x1429, -	0x1b5e: 0x1a31, 0x1b5f: 0xbb11, 0x1b60: 0xbb29, 0x1b61: 0xbb41, 0x1b62: 0xbb59, 0x1b63: 0xbb71, -	0x1b64: 0xbb89, 0x1b65: 0x2109, 0x1b66: 0x1111, 0x1b67: 0x1429, 0x1b68: 0xbba1, 0x1b69: 0xbbb9, -	0x1b6a: 0xbbd1, 0x1b6b: 0x10e1, 0x1b6c: 0x10f9, 0x1b6d: 0xbbe9, 0x1b6e: 0x2079, 0x1b6f: 0xbc01, -	0x1b70: 0xbab1, 0x1b71: 0x1099, 0x1b72: 0x10b1, 0x1b73: 0x10c9, 0x1b74: 0xbac9, 0x1b75: 0xbae1, -	0x1b76: 0xbaf9, 0x1b77: 0x1429, 0x1b78: 0x1a31, 0x1b79: 0xbb11, 0x1b7a: 0xbb29, 0x1b7b: 0xbb41, -	0x1b7c: 0xbb59, 0x1b7d: 0xbb71, 0x1b7e: 0xbb89, 0x1b7f: 0x2109, -	// Block 0x6e, offset 0x1b80 -	0x1b80: 0x1111, 0x1b81: 0xbba1, 0x1b82: 0xbba1, 0x1b83: 0xbbb9, 0x1b84: 0xbbd1, 0x1b85: 0x10e1, -	0x1b86: 0x10f9, 0x1b87: 0xbbe9, 0x1b88: 0x2079, 0x1b89: 0xbc21, 0x1b8a: 0xbac9, 0x1b8b: 0x1429, -	0x1b8c: 0xbb11, 0x1b8d: 0x10e1, 0x1b8e: 0x1111, 0x1b8f: 0x2109, 0x1b90: 0xbab1, 0x1b91: 0x1099, -	0x1b92: 0x10b1, 0x1b93: 0x10c9, 0x1b94: 0xbac9, 0x1b95: 0xbae1, 0x1b96: 0xbaf9, 0x1b97: 0x1429, -	0x1b98: 0x1a31, 0x1b99: 0xbb11, 0x1b9a: 0xbb29, 0x1b9b: 0xbb41, 0x1b9c: 0xbb59, 0x1b9d: 0xbb71, -	0x1b9e: 0xbb89, 0x1b9f: 0x2109, 0x1ba0: 0x1111, 0x1ba1: 0x1429, 0x1ba2: 0xbba1, 0x1ba3: 0xbbb9, -	0x1ba4: 0xbbd1, 0x1ba5: 0x10e1, 0x1ba6: 0x10f9, 0x1ba7: 0xbbe9, 0x1ba8: 0x2079, 0x1ba9: 0xbc01, -	0x1baa: 0xbab1, 0x1bab: 0x1099, 0x1bac: 0x10b1, 0x1bad: 0x10c9, 0x1bae: 0xbac9, 0x1baf: 0xbae1, -	0x1bb0: 0xbaf9, 0x1bb1: 0x1429, 0x1bb2: 0x1a31, 0x1bb3: 0xbb11, 0x1bb4: 0xbb29, 0x1bb5: 0xbb41, -	0x1bb6: 0xbb59, 0x1bb7: 0xbb71, 0x1bb8: 0xbb89, 0x1bb9: 0x2109, 0x1bba: 0x1111, 0x1bbb: 0xbba1, -	0x1bbc: 0xbba1, 0x1bbd: 0xbbb9, 0x1bbe: 0xbbd1, 0x1bbf: 0x10e1, -	// Block 0x6f, offset 0x1bc0 -	0x1bc0: 0x10f9, 0x1bc1: 0xbbe9, 0x1bc2: 0x2079, 0x1bc3: 0xbc21, 0x1bc4: 0xbac9, 0x1bc5: 0x1429, -	0x1bc6: 0xbb11, 0x1bc7: 0x10e1, 0x1bc8: 0x1111, 0x1bc9: 0x2109, 0x1bca: 0xbc41, 0x1bcb: 0xbc41, -	0x1bcc: 0x0040, 0x1bcd: 0x0040, 0x1bce: 0x1f41, 0x1bcf: 0x00c9, 0x1bd0: 0x0069, 0x1bd1: 0x0079, -	0x1bd2: 0x1f51, 0x1bd3: 0x1f61, 0x1bd4: 0x1f71, 0x1bd5: 0x1f81, 0x1bd6: 0x1f91, 0x1bd7: 0x1fa1, -	0x1bd8: 0x1f41, 0x1bd9: 0x00c9, 0x1bda: 0x0069, 0x1bdb: 0x0079, 0x1bdc: 0x1f51, 0x1bdd: 0x1f61, -	0x1bde: 0x1f71, 0x1bdf: 0x1f81, 0x1be0: 0x1f91, 0x1be1: 0x1fa1, 0x1be2: 0x1f41, 0x1be3: 0x00c9, -	0x1be4: 0x0069, 0x1be5: 0x0079, 0x1be6: 0x1f51, 0x1be7: 0x1f61, 0x1be8: 0x1f71, 0x1be9: 0x1f81, -	0x1bea: 0x1f91, 0x1beb: 0x1fa1, 0x1bec: 0x1f41, 0x1bed: 0x00c9, 0x1bee: 0x0069, 0x1bef: 0x0079, -	0x1bf0: 0x1f51, 0x1bf1: 0x1f61, 0x1bf2: 0x1f71, 0x1bf3: 0x1f81, 0x1bf4: 0x1f91, 0x1bf5: 0x1fa1, -	0x1bf6: 0x1f41, 0x1bf7: 0x00c9, 0x1bf8: 0x0069, 0x1bf9: 0x0079, 0x1bfa: 0x1f51, 0x1bfb: 0x1f61, -	0x1bfc: 0x1f71, 0x1bfd: 0x1f81, 0x1bfe: 0x1f91, 0x1bff: 0x1fa1, -	// Block 0x70, offset 0x1c00 -	0x1c00: 0xe115, 0x1c01: 0xe115, 0x1c02: 0xe135, 0x1c03: 0xe135, 0x1c04: 0xe115, 0x1c05: 0xe115, -	0x1c06: 0xe175, 0x1c07: 0xe175, 0x1c08: 0xe115, 0x1c09: 0xe115, 0x1c0a: 0xe135, 0x1c0b: 0xe135, -	0x1c0c: 0xe115, 0x1c0d: 0xe115, 0x1c0e: 0xe1f5, 0x1c0f: 0xe1f5, 0x1c10: 0xe115, 0x1c11: 0xe115, -	0x1c12: 0xe135, 0x1c13: 0xe135, 0x1c14: 0xe115, 0x1c15: 0xe115, 0x1c16: 0xe175, 0x1c17: 0xe175, -	0x1c18: 0xe115, 0x1c19: 0xe115, 0x1c1a: 0xe135, 0x1c1b: 0xe135, 0x1c1c: 0xe115, 0x1c1d: 0xe115, -	0x1c1e: 0x8b05, 0x1c1f: 0x8b05, 0x1c20: 0x04b5, 0x1c21: 0x04b5, 0x1c22: 0x0a08, 0x1c23: 0x0a08, -	0x1c24: 0x0a08, 0x1c25: 0x0a08, 0x1c26: 0x0a08, 0x1c27: 0x0a08, 0x1c28: 0x0a08, 0x1c29: 0x0a08, -	0x1c2a: 0x0a08, 0x1c2b: 0x0a08, 0x1c2c: 0x0a08, 0x1c2d: 0x0a08, 0x1c2e: 0x0a08, 0x1c2f: 0x0a08, -	0x1c30: 0x0a08, 0x1c31: 0x0a08, 0x1c32: 0x0a08, 0x1c33: 0x0a08, 0x1c34: 0x0a08, 0x1c35: 0x0a08, -	0x1c36: 0x0a08, 0x1c37: 0x0a08, 0x1c38: 0x0a08, 0x1c39: 0x0a08, 0x1c3a: 0x0a08, 0x1c3b: 0x0a08, -	0x1c3c: 0x0a08, 0x1c3d: 0x0a08, 0x1c3e: 0x0a08, 0x1c3f: 0x0a08, -	// Block 0x71, offset 0x1c40 -	0x1c40: 0xb189, 0x1c41: 0xb1a1, 0x1c42: 0xb201, 0x1c43: 0xb249, 0x1c44: 0x0040, 0x1c45: 0xb411, -	0x1c46: 0xb291, 0x1c47: 0xb219, 0x1c48: 0xb309, 0x1c49: 0xb429, 0x1c4a: 0xb399, 0x1c4b: 0xb3b1, -	0x1c4c: 0xb3c9, 0x1c4d: 0xb3e1, 0x1c4e: 0xb2a9, 0x1c4f: 0xb339, 0x1c50: 0xb369, 0x1c51: 0xb2d9, -	0x1c52: 0xb381, 0x1c53: 0xb279, 0x1c54: 0xb2c1, 0x1c55: 0xb1d1, 0x1c56: 0xb1e9, 0x1c57: 0xb231, -	0x1c58: 0xb261, 0x1c59: 0xb2f1, 0x1c5a: 0xb321, 0x1c5b: 0xb351, 0x1c5c: 0xbc59, 0x1c5d: 0x7949, -	0x1c5e: 0xbc71, 0x1c5f: 0xbc89, 0x1c60: 0x0040, 0x1c61: 0xb1a1, 0x1c62: 0xb201, 0x1c63: 0x0040, -	0x1c64: 0xb3f9, 0x1c65: 0x0040, 0x1c66: 0x0040, 0x1c67: 0xb219, 0x1c68: 0x0040, 0x1c69: 0xb429, -	0x1c6a: 0xb399, 0x1c6b: 0xb3b1, 0x1c6c: 0xb3c9, 0x1c6d: 0xb3e1, 0x1c6e: 0xb2a9, 0x1c6f: 0xb339, -	0x1c70: 0xb369, 0x1c71: 0xb2d9, 0x1c72: 0xb381, 0x1c73: 0x0040, 0x1c74: 0xb2c1, 0x1c75: 0xb1d1, -	0x1c76: 0xb1e9, 0x1c77: 0xb231, 0x1c78: 0x0040, 0x1c79: 0xb2f1, 0x1c7a: 0x0040, 0x1c7b: 0xb351, -	0x1c7c: 0x0040, 0x1c7d: 0x0040, 0x1c7e: 0x0040, 0x1c7f: 0x0040, -	// Block 0x72, offset 0x1c80 -	0x1c80: 0x0040, 0x1c81: 0x0040, 0x1c82: 0xb201, 0x1c83: 0x0040, 0x1c84: 0x0040, 0x1c85: 0x0040, -	0x1c86: 0x0040, 0x1c87: 0xb219, 0x1c88: 0x0040, 0x1c89: 0xb429, 0x1c8a: 0x0040, 0x1c8b: 0xb3b1, -	0x1c8c: 0x0040, 0x1c8d: 0xb3e1, 0x1c8e: 0xb2a9, 0x1c8f: 0xb339, 0x1c90: 0x0040, 0x1c91: 0xb2d9, -	0x1c92: 0xb381, 0x1c93: 0x0040, 0x1c94: 0xb2c1, 0x1c95: 0x0040, 0x1c96: 0x0040, 0x1c97: 0xb231, -	0x1c98: 0x0040, 0x1c99: 0xb2f1, 0x1c9a: 0x0040, 0x1c9b: 0xb351, 0x1c9c: 0x0040, 0x1c9d: 0x7949, -	0x1c9e: 0x0040, 0x1c9f: 0xbc89, 0x1ca0: 0x0040, 0x1ca1: 0xb1a1, 0x1ca2: 0xb201, 0x1ca3: 0x0040, -	0x1ca4: 0xb3f9, 0x1ca5: 0x0040, 0x1ca6: 0x0040, 0x1ca7: 0xb219, 0x1ca8: 0xb309, 0x1ca9: 0xb429, -	0x1caa: 0xb399, 0x1cab: 0x0040, 0x1cac: 0xb3c9, 0x1cad: 0xb3e1, 0x1cae: 0xb2a9, 0x1caf: 0xb339, -	0x1cb0: 0xb369, 0x1cb1: 0xb2d9, 0x1cb2: 0xb381, 0x1cb3: 0x0040, 0x1cb4: 0xb2c1, 0x1cb5: 0xb1d1, -	0x1cb6: 0xb1e9, 0x1cb7: 0xb231, 0x1cb8: 0x0040, 0x1cb9: 0xb2f1, 0x1cba: 0xb321, 0x1cbb: 0xb351, -	0x1cbc: 0xbc59, 0x1cbd: 0x0040, 0x1cbe: 0xbc71, 0x1cbf: 0x0040, -	// Block 0x73, offset 0x1cc0 -	0x1cc0: 0xb189, 0x1cc1: 0xb1a1, 0x1cc2: 0xb201, 0x1cc3: 0xb249, 0x1cc4: 0xb3f9, 0x1cc5: 0xb411, -	0x1cc6: 0xb291, 0x1cc7: 0xb219, 0x1cc8: 0xb309, 0x1cc9: 0xb429, 0x1cca: 0x0040, 0x1ccb: 0xb3b1, -	0x1ccc: 0xb3c9, 0x1ccd: 0xb3e1, 0x1cce: 0xb2a9, 0x1ccf: 0xb339, 0x1cd0: 0xb369, 0x1cd1: 0xb2d9, -	0x1cd2: 0xb381, 0x1cd3: 0xb279, 0x1cd4: 0xb2c1, 0x1cd5: 0xb1d1, 0x1cd6: 0xb1e9, 0x1cd7: 0xb231, -	0x1cd8: 0xb261, 0x1cd9: 0xb2f1, 0x1cda: 0xb321, 0x1cdb: 0xb351, 0x1cdc: 0x0040, 0x1cdd: 0x0040, -	0x1cde: 0x0040, 0x1cdf: 0x0040, 0x1ce0: 0x0040, 0x1ce1: 0xb1a1, 0x1ce2: 0xb201, 0x1ce3: 0xb249, -	0x1ce4: 0x0040, 0x1ce5: 0xb411, 0x1ce6: 0xb291, 0x1ce7: 0xb219, 0x1ce8: 0xb309, 0x1ce9: 0xb429, -	0x1cea: 0x0040, 0x1ceb: 0xb3b1, 0x1cec: 0xb3c9, 0x1ced: 0xb3e1, 0x1cee: 0xb2a9, 0x1cef: 0xb339, -	0x1cf0: 0xb369, 0x1cf1: 0xb2d9, 0x1cf2: 0xb381, 0x1cf3: 0xb279, 0x1cf4: 0xb2c1, 0x1cf5: 0xb1d1, -	0x1cf6: 0xb1e9, 0x1cf7: 0xb231, 0x1cf8: 0xb261, 0x1cf9: 0xb2f1, 0x1cfa: 0xb321, 0x1cfb: 0xb351, -	0x1cfc: 0x0040, 0x1cfd: 0x0040, 0x1cfe: 0x0040, 0x1cff: 0x0040, -	// Block 0x74, offset 0x1d00 -	0x1d00: 0x0040, 0x1d01: 0xbca2, 0x1d02: 0xbcba, 0x1d03: 0xbcd2, 0x1d04: 0xbcea, 0x1d05: 0xbd02, -	0x1d06: 0xbd1a, 0x1d07: 0xbd32, 0x1d08: 0xbd4a, 0x1d09: 0xbd62, 0x1d0a: 0xbd7a, 0x1d0b: 0x0018, -	0x1d0c: 0x0018, 0x1d0d: 0x0040, 0x1d0e: 0x0040, 0x1d0f: 0x0040, 0x1d10: 0xbd92, 0x1d11: 0xbdb2, -	0x1d12: 0xbdd2, 0x1d13: 0xbdf2, 0x1d14: 0xbe12, 0x1d15: 0xbe32, 0x1d16: 0xbe52, 0x1d17: 0xbe72, -	0x1d18: 0xbe92, 0x1d19: 0xbeb2, 0x1d1a: 0xbed2, 0x1d1b: 0xbef2, 0x1d1c: 0xbf12, 0x1d1d: 0xbf32, -	0x1d1e: 0xbf52, 0x1d1f: 0xbf72, 0x1d20: 0xbf92, 0x1d21: 0xbfb2, 0x1d22: 0xbfd2, 0x1d23: 0xbff2, -	0x1d24: 0xc012, 0x1d25: 0xc032, 0x1d26: 0xc052, 0x1d27: 0xc072, 0x1d28: 0xc092, 0x1d29: 0xc0b2, -	0x1d2a: 0xc0d1, 0x1d2b: 0x1159, 0x1d2c: 0x0269, 0x1d2d: 0x6671, 0x1d2e: 0xc111, 0x1d2f: 0x0040, -	0x1d30: 0x0039, 0x1d31: 0x0ee9, 0x1d32: 0x1159, 0x1d33: 0x0ef9, 0x1d34: 0x0f09, 0x1d35: 0x1199, -	0x1d36: 0x0f31, 0x1d37: 0x0249, 0x1d38: 0x0f41, 0x1d39: 0x0259, 0x1d3a: 0x0f51, 0x1d3b: 0x0359, -	0x1d3c: 0x0f61, 0x1d3d: 0x0f71, 0x1d3e: 0x00d9, 0x1d3f: 0x0f99, -	// Block 0x75, offset 0x1d40 -	0x1d40: 0x2039, 0x1d41: 0x0269, 0x1d42: 0x01d9, 0x1d43: 0x0fa9, 0x1d44: 0x0fb9, 0x1d45: 0x1089, -	0x1d46: 0x0279, 0x1d47: 0x0369, 0x1d48: 0x0289, 0x1d49: 0x13d1, 0x1d4a: 0xc129, 0x1d4b: 0x65b1, -	0x1d4c: 0xc141, 0x1d4d: 0x1441, 0x1d4e: 0xc159, 0x1d4f: 0xc179, 0x1d50: 0x0018, 0x1d51: 0x0018, -	0x1d52: 0x0018, 0x1d53: 0x0018, 0x1d54: 0x0018, 0x1d55: 0x0018, 0x1d56: 0x0018, 0x1d57: 0x0018, -	0x1d58: 0x0018, 0x1d59: 0x0018, 0x1d5a: 0x0018, 0x1d5b: 0x0018, 0x1d5c: 0x0018, 0x1d5d: 0x0018, -	0x1d5e: 0x0018, 0x1d5f: 0x0018, 0x1d60: 0x0018, 0x1d61: 0x0018, 0x1d62: 0x0018, 0x1d63: 0x0018, -	0x1d64: 0x0018, 0x1d65: 0x0018, 0x1d66: 0x0018, 0x1d67: 0x0018, 0x1d68: 0x0018, 0x1d69: 0x0018, -	0x1d6a: 0xc191, 0x1d6b: 0xc1a9, 0x1d6c: 0x0040, 0x1d6d: 0x0040, 0x1d6e: 0x0040, 0x1d6f: 0x0040, -	0x1d70: 0x0018, 0x1d71: 0x0018, 0x1d72: 0x0018, 0x1d73: 0x0018, 0x1d74: 0x0018, 0x1d75: 0x0018, -	0x1d76: 0x0018, 0x1d77: 0x0018, 0x1d78: 0x0018, 0x1d79: 0x0018, 0x1d7a: 0x0018, 0x1d7b: 0x0018, -	0x1d7c: 0x0018, 0x1d7d: 0x0018, 0x1d7e: 0x0018, 0x1d7f: 0x0018, -	// Block 0x76, offset 0x1d80 -	0x1d80: 0xc1d9, 0x1d81: 0xc211, 0x1d82: 0xc249, 0x1d83: 0x0040, 0x1d84: 0x0040, 0x1d85: 0x0040, -	0x1d86: 0x0040, 0x1d87: 0x0040, 0x1d88: 0x0040, 0x1d89: 0x0040, 0x1d8a: 0x0040, 0x1d8b: 0x0040, -	0x1d8c: 0x0040, 0x1d8d: 0x0040, 0x1d8e: 0x0040, 0x1d8f: 0x0040, 0x1d90: 0xc269, 0x1d91: 0xc289, -	0x1d92: 0xc2a9, 0x1d93: 0xc2c9, 0x1d94: 0xc2e9, 0x1d95: 0xc309, 0x1d96: 0xc329, 0x1d97: 0xc349, -	0x1d98: 0xc369, 0x1d99: 0xc389, 0x1d9a: 0xc3a9, 0x1d9b: 0xc3c9, 0x1d9c: 0xc3e9, 0x1d9d: 0xc409, -	0x1d9e: 0xc429, 0x1d9f: 0xc449, 0x1da0: 0xc469, 0x1da1: 0xc489, 0x1da2: 0xc4a9, 0x1da3: 0xc4c9, -	0x1da4: 0xc4e9, 0x1da5: 0xc509, 0x1da6: 0xc529, 0x1da7: 0xc549, 0x1da8: 0xc569, 0x1da9: 0xc589, -	0x1daa: 0xc5a9, 0x1dab: 0xc5c9, 0x1dac: 0xc5e9, 0x1dad: 0xc609, 0x1dae: 0xc629, 0x1daf: 0xc649, -	0x1db0: 0xc669, 0x1db1: 0xc689, 0x1db2: 0xc6a9, 0x1db3: 0xc6c9, 0x1db4: 0xc6e9, 0x1db5: 0xc709, -	0x1db6: 0xc729, 0x1db7: 0xc749, 0x1db8: 0xc769, 0x1db9: 0xc789, 0x1dba: 0xc7a9, 0x1dbb: 0xc7c9, -	0x1dbc: 0x0040, 0x1dbd: 0x0040, 0x1dbe: 0x0040, 0x1dbf: 0x0040, -	// Block 0x77, offset 0x1dc0 -	0x1dc0: 0xcaf9, 0x1dc1: 0xcb19, 0x1dc2: 0xcb39, 0x1dc3: 0x8b1d, 0x1dc4: 0xcb59, 0x1dc5: 0xcb79, -	0x1dc6: 0xcb99, 0x1dc7: 0xcbb9, 0x1dc8: 0xcbd9, 0x1dc9: 0xcbf9, 0x1dca: 0xcc19, 0x1dcb: 0xcc39, -	0x1dcc: 0xcc59, 0x1dcd: 0x8b3d, 0x1dce: 0xcc79, 0x1dcf: 0xcc99, 0x1dd0: 0xccb9, 0x1dd1: 0xccd9, -	0x1dd2: 0x8b5d, 0x1dd3: 0xccf9, 0x1dd4: 0xcd19, 0x1dd5: 0xc429, 0x1dd6: 0x8b7d, 0x1dd7: 0xcd39, -	0x1dd8: 0xcd59, 0x1dd9: 0xcd79, 0x1dda: 0xcd99, 0x1ddb: 0xcdb9, 0x1ddc: 0x8b9d, 0x1ddd: 0xcdd9, -	0x1dde: 0xcdf9, 0x1ddf: 0xce19, 0x1de0: 0xce39, 0x1de1: 0xce59, 0x1de2: 0xc789, 0x1de3: 0xce79, -	0x1de4: 0xce99, 0x1de5: 0xceb9, 0x1de6: 0xced9, 0x1de7: 0xcef9, 0x1de8: 0xcf19, 0x1de9: 0xcf39, -	0x1dea: 0xcf59, 0x1deb: 0xcf79, 0x1dec: 0xcf99, 0x1ded: 0xcfb9, 0x1dee: 0xcfd9, 0x1def: 0xcff9, -	0x1df0: 0xd019, 0x1df1: 0xd039, 0x1df2: 0xd039, 0x1df3: 0xd039, 0x1df4: 0x8bbd, 0x1df5: 0xd059, -	0x1df6: 0xd079, 0x1df7: 0xd099, 0x1df8: 0x8bdd, 0x1df9: 0xd0b9, 0x1dfa: 0xd0d9, 0x1dfb: 0xd0f9, -	0x1dfc: 0xd119, 0x1dfd: 0xd139, 0x1dfe: 0xd159, 0x1dff: 0xd179, -	// Block 0x78, offset 0x1e00 -	0x1e00: 0xd199, 0x1e01: 0xd1b9, 0x1e02: 0xd1d9, 0x1e03: 0xd1f9, 0x1e04: 0xd219, 0x1e05: 0xd239, -	0x1e06: 0xd239, 0x1e07: 0xd259, 0x1e08: 0xd279, 0x1e09: 0xd299, 0x1e0a: 0xd2b9, 0x1e0b: 0xd2d9, -	0x1e0c: 0xd2f9, 0x1e0d: 0xd319, 0x1e0e: 0xd339, 0x1e0f: 0xd359, 0x1e10: 0xd379, 0x1e11: 0xd399, -	0x1e12: 0xd3b9, 0x1e13: 0xd3d9, 0x1e14: 0xd3f9, 0x1e15: 0xd419, 0x1e16: 0xd439, 0x1e17: 0xd459, -	0x1e18: 0xd479, 0x1e19: 0x8bfd, 0x1e1a: 0xd499, 0x1e1b: 0xd4b9, 0x1e1c: 0xd4d9, 0x1e1d: 0xc309, -	0x1e1e: 0xd4f9, 0x1e1f: 0xd519, 0x1e20: 0x8c1d, 0x1e21: 0x8c3d, 0x1e22: 0xd539, 0x1e23: 0xd559, -	0x1e24: 0xd579, 0x1e25: 0xd599, 0x1e26: 0xd5b9, 0x1e27: 0xd5d9, 0x1e28: 0x2040, 0x1e29: 0xd5f9, -	0x1e2a: 0xd619, 0x1e2b: 0xd619, 0x1e2c: 0x8c5d, 0x1e2d: 0xd639, 0x1e2e: 0xd659, 0x1e2f: 0xd679, -	0x1e30: 0xd699, 0x1e31: 0x8c7d, 0x1e32: 0xd6b9, 0x1e33: 0xd6d9, 0x1e34: 0x2040, 0x1e35: 0xd6f9, -	0x1e36: 0xd719, 0x1e37: 0xd739, 0x1e38: 0xd759, 0x1e39: 0xd779, 0x1e3a: 0xd799, 0x1e3b: 0x8c9d, -	0x1e3c: 0xd7b9, 0x1e3d: 0x8cbd, 0x1e3e: 0xd7d9, 0x1e3f: 0xd7f9, -	// Block 0x79, offset 0x1e40 -	0x1e40: 0xd819, 0x1e41: 0xd839, 0x1e42: 0xd859, 0x1e43: 0xd879, 0x1e44: 0xd899, 0x1e45: 0xd8b9, -	0x1e46: 0xd8d9, 0x1e47: 0xd8f9, 0x1e48: 0xd919, 0x1e49: 0x8cdd, 0x1e4a: 0xd939, 0x1e4b: 0xd959, -	0x1e4c: 0xd979, 0x1e4d: 0xd999, 0x1e4e: 0xd9b9, 0x1e4f: 0x8cfd, 0x1e50: 0xd9d9, 0x1e51: 0x8d1d, -	0x1e52: 0x8d3d, 0x1e53: 0xd9f9, 0x1e54: 0xda19, 0x1e55: 0xda19, 0x1e56: 0xda39, 0x1e57: 0x8d5d, -	0x1e58: 0x8d7d, 0x1e59: 0xda59, 0x1e5a: 0xda79, 0x1e5b: 0xda99, 0x1e5c: 0xdab9, 0x1e5d: 0xdad9, -	0x1e5e: 0xdaf9, 0x1e5f: 0xdb19, 0x1e60: 0xdb39, 0x1e61: 0xdb59, 0x1e62: 0xdb79, 0x1e63: 0xdb99, -	0x1e64: 0x8d9d, 0x1e65: 0xdbb9, 0x1e66: 0xdbd9, 0x1e67: 0xdbf9, 0x1e68: 0xdc19, 0x1e69: 0xdbf9, -	0x1e6a: 0xdc39, 0x1e6b: 0xdc59, 0x1e6c: 0xdc79, 0x1e6d: 0xdc99, 0x1e6e: 0xdcb9, 0x1e6f: 0xdcd9, -	0x1e70: 0xdcf9, 0x1e71: 0xdd19, 0x1e72: 0xdd39, 0x1e73: 0xdd59, 0x1e74: 0xdd79, 0x1e75: 0xdd99, -	0x1e76: 0xddb9, 0x1e77: 0xddd9, 0x1e78: 0x8dbd, 0x1e79: 0xddf9, 0x1e7a: 0xde19, 0x1e7b: 0xde39, -	0x1e7c: 0xde59, 0x1e7d: 0xde79, 0x1e7e: 0x8ddd, 0x1e7f: 0xde99, -	// Block 0x7a, offset 0x1e80 -	0x1e80: 0xe599, 0x1e81: 0xe5b9, 0x1e82: 0xe5d9, 0x1e83: 0xe5f9, 0x1e84: 0xe619, 0x1e85: 0xe639, -	0x1e86: 0x8efd, 0x1e87: 0xe659, 0x1e88: 0xe679, 0x1e89: 0xe699, 0x1e8a: 0xe6b9, 0x1e8b: 0xe6d9, -	0x1e8c: 0xe6f9, 0x1e8d: 0x8f1d, 0x1e8e: 0xe719, 0x1e8f: 0xe739, 0x1e90: 0x8f3d, 0x1e91: 0x8f5d, -	0x1e92: 0xe759, 0x1e93: 0xe779, 0x1e94: 0xe799, 0x1e95: 0xe7b9, 0x1e96: 0xe7d9, 0x1e97: 0xe7f9, -	0x1e98: 0xe819, 0x1e99: 0xe839, 0x1e9a: 0xe859, 0x1e9b: 0x8f7d, 0x1e9c: 0xe879, 0x1e9d: 0x8f9d, -	0x1e9e: 0xe899, 0x1e9f: 0x2040, 0x1ea0: 0xe8b9, 0x1ea1: 0xe8d9, 0x1ea2: 0xe8f9, 0x1ea3: 0x8fbd, -	0x1ea4: 0xe919, 0x1ea5: 0xe939, 0x1ea6: 0x8fdd, 0x1ea7: 0x8ffd, 0x1ea8: 0xe959, 0x1ea9: 0xe979, -	0x1eaa: 0xe999, 0x1eab: 0xe9b9, 0x1eac: 0xe9d9, 0x1ead: 0xe9d9, 0x1eae: 0xe9f9, 0x1eaf: 0xea19, -	0x1eb0: 0xea39, 0x1eb1: 0xea59, 0x1eb2: 0xea79, 0x1eb3: 0xea99, 0x1eb4: 0xeab9, 0x1eb5: 0x901d, -	0x1eb6: 0xead9, 0x1eb7: 0x903d, 0x1eb8: 0xeaf9, 0x1eb9: 0x905d, 0x1eba: 0xeb19, 0x1ebb: 0x907d, -	0x1ebc: 0x909d, 0x1ebd: 0x90bd, 0x1ebe: 0xeb39, 0x1ebf: 0xeb59, -	// Block 0x7b, offset 0x1ec0 -	0x1ec0: 0xeb79, 0x1ec1: 0x90dd, 0x1ec2: 0x90fd, 0x1ec3: 0x911d, 0x1ec4: 0x913d, 0x1ec5: 0xeb99, -	0x1ec6: 0xebb9, 0x1ec7: 0xebb9, 0x1ec8: 0xebd9, 0x1ec9: 0xebf9, 0x1eca: 0xec19, 0x1ecb: 0xec39, -	0x1ecc: 0xec59, 0x1ecd: 0x915d, 0x1ece: 0xec79, 0x1ecf: 0xec99, 0x1ed0: 0xecb9, 0x1ed1: 0xecd9, -	0x1ed2: 0x917d, 0x1ed3: 0xecf9, 0x1ed4: 0x919d, 0x1ed5: 0x91bd, 0x1ed6: 0xed19, 0x1ed7: 0xed39, -	0x1ed8: 0xed59, 0x1ed9: 0xed79, 0x1eda: 0xed99, 0x1edb: 0xedb9, 0x1edc: 0x91dd, 0x1edd: 0x91fd, -	0x1ede: 0x921d, 0x1edf: 0x2040, 0x1ee0: 0xedd9, 0x1ee1: 0x923d, 0x1ee2: 0xedf9, 0x1ee3: 0xee19, -	0x1ee4: 0xee39, 0x1ee5: 0x925d, 0x1ee6: 0xee59, 0x1ee7: 0xee79, 0x1ee8: 0xee99, 0x1ee9: 0xeeb9, -	0x1eea: 0xeed9, 0x1eeb: 0x927d, 0x1eec: 0xeef9, 0x1eed: 0xef19, 0x1eee: 0xef39, 0x1eef: 0xef59, -	0x1ef0: 0xef79, 0x1ef1: 0xef99, 0x1ef2: 0x929d, 0x1ef3: 0x92bd, 0x1ef4: 0xefb9, 0x1ef5: 0x92dd, -	0x1ef6: 0xefd9, 0x1ef7: 0x92fd, 0x1ef8: 0xeff9, 0x1ef9: 0xf019, 0x1efa: 0xf039, 0x1efb: 0x931d, -	0x1efc: 0x933d, 0x1efd: 0xf059, 0x1efe: 0x935d, 0x1eff: 0xf079, -	// Block 0x7c, offset 0x1f00 -	0x1f00: 0xf6b9, 0x1f01: 0xf6d9, 0x1f02: 0xf6f9, 0x1f03: 0xf719, 0x1f04: 0xf739, 0x1f05: 0x951d, -	0x1f06: 0xf759, 0x1f07: 0xf779, 0x1f08: 0xf799, 0x1f09: 0xf7b9, 0x1f0a: 0xf7d9, 0x1f0b: 0x953d, -	0x1f0c: 0x955d, 0x1f0d: 0xf7f9, 0x1f0e: 0xf819, 0x1f0f: 0xf839, 0x1f10: 0xf859, 0x1f11: 0xf879, -	0x1f12: 0xf899, 0x1f13: 0x957d, 0x1f14: 0xf8b9, 0x1f15: 0xf8d9, 0x1f16: 0xf8f9, 0x1f17: 0xf919, -	0x1f18: 0x959d, 0x1f19: 0x95bd, 0x1f1a: 0xf939, 0x1f1b: 0xf959, 0x1f1c: 0xf979, 0x1f1d: 0x95dd, -	0x1f1e: 0xf999, 0x1f1f: 0xf9b9, 0x1f20: 0x6815, 0x1f21: 0x95fd, 0x1f22: 0xf9d9, 0x1f23: 0xf9f9, -	0x1f24: 0xfa19, 0x1f25: 0x961d, 0x1f26: 0xfa39, 0x1f27: 0xfa59, 0x1f28: 0xfa79, 0x1f29: 0xfa99, -	0x1f2a: 0xfab9, 0x1f2b: 0xfad9, 0x1f2c: 0xfaf9, 0x1f2d: 0x963d, 0x1f2e: 0xfb19, 0x1f2f: 0xfb39, -	0x1f30: 0xfb59, 0x1f31: 0x965d, 0x1f32: 0xfb79, 0x1f33: 0xfb99, 0x1f34: 0xfbb9, 0x1f35: 0xfbd9, -	0x1f36: 0x7b35, 0x1f37: 0x967d, 0x1f38: 0xfbf9, 0x1f39: 0xfc19, 0x1f3a: 0xfc39, 0x1f3b: 0x969d, -	0x1f3c: 0xfc59, 0x1f3d: 0x96bd, 0x1f3e: 0xfc79, 0x1f3f: 0xfc79, -	// Block 0x7d, offset 0x1f40 -	0x1f40: 0xfc99, 0x1f41: 0x96dd, 0x1f42: 0xfcb9, 0x1f43: 0xfcd9, 0x1f44: 0xfcf9, 0x1f45: 0xfd19, -	0x1f46: 0xfd39, 0x1f47: 0xfd59, 0x1f48: 0xfd79, 0x1f49: 0x96fd, 0x1f4a: 0xfd99, 0x1f4b: 0xfdb9, -	0x1f4c: 0xfdd9, 0x1f4d: 0xfdf9, 0x1f4e: 0xfe19, 0x1f4f: 0xfe39, 0x1f50: 0x971d, 0x1f51: 0xfe59, -	0x1f52: 0x973d, 0x1f53: 0x975d, 0x1f54: 0x977d, 0x1f55: 0xfe79, 0x1f56: 0xfe99, 0x1f57: 0xfeb9, -	0x1f58: 0xfed9, 0x1f59: 0xfef9, 0x1f5a: 0xff19, 0x1f5b: 0xff39, 0x1f5c: 0xff59, 0x1f5d: 0x979d, -	0x1f5e: 0x0040, 0x1f5f: 0x0040, 0x1f60: 0x0040, 0x1f61: 0x0040, 0x1f62: 0x0040, 0x1f63: 0x0040, -	0x1f64: 0x0040, 0x1f65: 0x0040, 0x1f66: 0x0040, 0x1f67: 0x0040, 0x1f68: 0x0040, 0x1f69: 0x0040, -	0x1f6a: 0x0040, 0x1f6b: 0x0040, 0x1f6c: 0x0040, 0x1f6d: 0x0040, 0x1f6e: 0x0040, 0x1f6f: 0x0040, -	0x1f70: 0x0040, 0x1f71: 0x0040, 0x1f72: 0x0040, 0x1f73: 0x0040, 0x1f74: 0x0040, 0x1f75: 0x0040, -	0x1f76: 0x0040, 0x1f77: 0x0040, 0x1f78: 0x0040, 0x1f79: 0x0040, 0x1f7a: 0x0040, 0x1f7b: 0x0040, -	0x1f7c: 0x0040, 0x1f7d: 0x0040, 0x1f7e: 0x0040, 0x1f7f: 0x0040, -} - -// idnaIndex: 35 blocks, 2240 entries, 4480 bytes -// Block 0 is the zero block. -var idnaIndex = [2240]uint16{ -	// Block 0x0, offset 0x0 -	// Block 0x1, offset 0x40 -	// Block 0x2, offset 0x80 -	// Block 0x3, offset 0xc0 -	0xc2: 0x01, 0xc3: 0x7c, 0xc4: 0x02, 0xc5: 0x03, 0xc6: 0x04, 0xc7: 0x05, -	0xc8: 0x06, 0xc9: 0x7d, 0xca: 0x7e, 0xcb: 0x07, 0xcc: 0x7f, 0xcd: 0x08, 0xce: 0x09, 0xcf: 0x0a, -	0xd0: 0x80, 0xd1: 0x0b, 0xd2: 0x0c, 0xd3: 0x0d, 0xd4: 0x0e, 0xd5: 0x81, 0xd6: 0x82, 0xd7: 0x83, -	0xd8: 0x0f, 0xd9: 0x10, 0xda: 0x84, 0xdb: 0x11, 0xdc: 0x12, 0xdd: 0x85, 0xde: 0x86, 0xdf: 0x87, -	0xe0: 0x02, 0xe1: 0x03, 0xe2: 0x04, 0xe3: 0x05, 0xe4: 0x06, 0xe5: 0x07, 0xe6: 0x07, 0xe7: 0x07, -	0xe8: 0x07, 0xe9: 0x08, 0xea: 0x09, 0xeb: 0x07, 0xec: 0x07, 0xed: 0x0a, 0xee: 0x0b, 0xef: 0x0c, -	0xf0: 0x1c, 0xf1: 0x1d, 0xf2: 0x1d, 0xf3: 0x1f, 0xf4: 0x20, -	// Block 0x4, offset 0x100 -	0x120: 0x88, 0x121: 0x89, 0x122: 0x8a, 0x123: 0x8b, 0x124: 0x8c, 0x125: 0x13, 0x126: 0x14, 0x127: 0x15, -	0x128: 0x16, 0x129: 0x17, 0x12a: 0x18, 0x12b: 0x19, 0x12c: 0x1a, 0x12d: 0x1b, 0x12e: 0x1c, 0x12f: 0x8d, -	0x130: 0x8e, 0x131: 0x1d, 0x132: 0x1e, 0x133: 0x1f, 0x134: 0x8f, 0x135: 0x20, 0x136: 0x90, 0x137: 0x91, -	0x138: 0x92, 0x139: 0x93, 0x13a: 0x21, 0x13b: 0x94, 0x13c: 0x95, 0x13d: 0x22, 0x13e: 0x23, 0x13f: 0x96, -	// Block 0x5, offset 0x140 -	0x140: 0x97, 0x141: 0x98, 0x142: 0x99, 0x143: 0x9a, 0x144: 0x9b, 0x145: 0x9c, 0x146: 0x9d, 0x147: 0x9e, -	0x148: 0x9f, 0x149: 0xa0, 0x14a: 0xa1, 0x14b: 0xa2, 0x14c: 0xa3, 0x14d: 0xa4, 0x14e: 0xa5, 0x14f: 0xa6, -	0x150: 0xa7, 0x151: 0x9f, 0x152: 0x9f, 0x153: 0x9f, 0x154: 0x9f, 0x155: 0x9f, 0x156: 0x9f, 0x157: 0x9f, -	0x158: 0x9f, 0x159: 0xa8, 0x15a: 0xa9, 0x15b: 0xaa, 0x15c: 0xab, 0x15d: 0xac, 0x15e: 0xad, 0x15f: 0xae, -	0x160: 0xaf, 0x161: 0xb0, 0x162: 0xb1, 0x163: 0xb2, 0x164: 0xb3, 0x165: 0xb4, 0x166: 0xb5, 0x167: 0xb6, -	0x168: 0xb7, 0x169: 0xb8, 0x16a: 0xb9, 0x16b: 0xba, 0x16c: 0xbb, 0x16d: 0xbc, 0x16e: 0xbd, 0x16f: 0xbe, -	0x170: 0xbf, 0x171: 0xc0, 0x172: 0xc1, 0x173: 0xc2, 0x174: 0x24, 0x175: 0x25, 0x176: 0x26, 0x177: 0xc3, -	0x178: 0x27, 0x179: 0x27, 0x17a: 0x28, 0x17b: 0x27, 0x17c: 0xc4, 0x17d: 0x29, 0x17e: 0x2a, 0x17f: 0x2b, -	// Block 0x6, offset 0x180 -	0x180: 0x2c, 0x181: 0x2d, 0x182: 0x2e, 0x183: 0xc5, 0x184: 0x2f, 0x185: 0x30, 0x186: 0xc6, 0x187: 0x9b, -	0x188: 0xc7, 0x189: 0xc8, 0x18a: 0x9b, 0x18b: 0x9b, 0x18c: 0xc9, 0x18d: 0x9b, 0x18e: 0x9b, 0x18f: 0xca, -	0x190: 0xcb, 0x191: 0x31, 0x192: 0x32, 0x193: 0x33, 0x194: 0x9b, 0x195: 0x9b, 0x196: 0x9b, 0x197: 0x9b, -	0x198: 0x9b, 0x199: 0x9b, 0x19a: 0x9b, 0x19b: 0x9b, 0x19c: 0x9b, 0x19d: 0x9b, 0x19e: 0x9b, 0x19f: 0x9b, -	0x1a0: 0x9b, 0x1a1: 0x9b, 0x1a2: 0x9b, 0x1a3: 0x9b, 0x1a4: 0x9b, 0x1a5: 0x9b, 0x1a6: 0x9b, 0x1a7: 0x9b, -	0x1a8: 0xcc, 0x1a9: 0xcd, 0x1aa: 0x9b, 0x1ab: 0xce, 0x1ac: 0x9b, 0x1ad: 0xcf, 0x1ae: 0xd0, 0x1af: 0xd1, -	0x1b0: 0xd2, 0x1b1: 0x34, 0x1b2: 0x27, 0x1b3: 0x35, 0x1b4: 0xd3, 0x1b5: 0xd4, 0x1b6: 0xd5, 0x1b7: 0xd6, -	0x1b8: 0xd7, 0x1b9: 0xd8, 0x1ba: 0xd9, 0x1bb: 0xda, 0x1bc: 0xdb, 0x1bd: 0xdc, 0x1be: 0xdd, 0x1bf: 0x36, -	// Block 0x7, offset 0x1c0 -	0x1c0: 0x37, 0x1c1: 0xde, 0x1c2: 0xdf, 0x1c3: 0xe0, 0x1c4: 0xe1, 0x1c5: 0x38, 0x1c6: 0x39, 0x1c7: 0xe2, -	0x1c8: 0xe3, 0x1c9: 0x3a, 0x1ca: 0x3b, 0x1cb: 0x3c, 0x1cc: 0x3d, 0x1cd: 0x3e, 0x1ce: 0x3f, 0x1cf: 0x40, -	0x1d0: 0x9f, 0x1d1: 0x9f, 0x1d2: 0x9f, 0x1d3: 0x9f, 0x1d4: 0x9f, 0x1d5: 0x9f, 0x1d6: 0x9f, 0x1d7: 0x9f, -	0x1d8: 0x9f, 0x1d9: 0x9f, 0x1da: 0x9f, 0x1db: 0x9f, 0x1dc: 0x9f, 0x1dd: 0x9f, 0x1de: 0x9f, 0x1df: 0x9f, -	0x1e0: 0x9f, 0x1e1: 0x9f, 0x1e2: 0x9f, 0x1e3: 0x9f, 0x1e4: 0x9f, 0x1e5: 0x9f, 0x1e6: 0x9f, 0x1e7: 0x9f, -	0x1e8: 0x9f, 0x1e9: 0x9f, 0x1ea: 0x9f, 0x1eb: 0x9f, 0x1ec: 0x9f, 0x1ed: 0x9f, 0x1ee: 0x9f, 0x1ef: 0x9f, -	0x1f0: 0x9f, 0x1f1: 0x9f, 0x1f2: 0x9f, 0x1f3: 0x9f, 0x1f4: 0x9f, 0x1f5: 0x9f, 0x1f6: 0x9f, 0x1f7: 0x9f, -	0x1f8: 0x9f, 0x1f9: 0x9f, 0x1fa: 0x9f, 0x1fb: 0x9f, 0x1fc: 0x9f, 0x1fd: 0x9f, 0x1fe: 0x9f, 0x1ff: 0x9f, -	// Block 0x8, offset 0x200 -	0x200: 0x9f, 0x201: 0x9f, 0x202: 0x9f, 0x203: 0x9f, 0x204: 0x9f, 0x205: 0x9f, 0x206: 0x9f, 0x207: 0x9f, -	0x208: 0x9f, 0x209: 0x9f, 0x20a: 0x9f, 0x20b: 0x9f, 0x20c: 0x9f, 0x20d: 0x9f, 0x20e: 0x9f, 0x20f: 0x9f, -	0x210: 0x9f, 0x211: 0x9f, 0x212: 0x9f, 0x213: 0x9f, 0x214: 0x9f, 0x215: 0x9f, 0x216: 0x9f, 0x217: 0x9f, -	0x218: 0x9f, 0x219: 0x9f, 0x21a: 0x9f, 0x21b: 0x9f, 0x21c: 0x9f, 0x21d: 0x9f, 0x21e: 0x9f, 0x21f: 0x9f, -	0x220: 0x9f, 0x221: 0x9f, 0x222: 0x9f, 0x223: 0x9f, 0x224: 0x9f, 0x225: 0x9f, 0x226: 0x9f, 0x227: 0x9f, -	0x228: 0x9f, 0x229: 0x9f, 0x22a: 0x9f, 0x22b: 0x9f, 0x22c: 0x9f, 0x22d: 0x9f, 0x22e: 0x9f, 0x22f: 0x9f, -	0x230: 0x9f, 0x231: 0x9f, 0x232: 0x9f, 0x233: 0x9f, 0x234: 0x9f, 0x235: 0x9f, 0x236: 0xb2, 0x237: 0x9b, -	0x238: 0x9f, 0x239: 0x9f, 0x23a: 0x9f, 0x23b: 0x9f, 0x23c: 0x9f, 0x23d: 0x9f, 0x23e: 0x9f, 0x23f: 0x9f, -	// Block 0x9, offset 0x240 -	0x240: 0x9f, 0x241: 0x9f, 0x242: 0x9f, 0x243: 0x9f, 0x244: 0x9f, 0x245: 0x9f, 0x246: 0x9f, 0x247: 0x9f, -	0x248: 0x9f, 0x249: 0x9f, 0x24a: 0x9f, 0x24b: 0x9f, 0x24c: 0x9f, 0x24d: 0x9f, 0x24e: 0x9f, 0x24f: 0x9f, -	0x250: 0x9f, 0x251: 0x9f, 0x252: 0x9f, 0x253: 0x9f, 0x254: 0x9f, 0x255: 0x9f, 0x256: 0x9f, 0x257: 0x9f, -	0x258: 0x9f, 0x259: 0x9f, 0x25a: 0x9f, 0x25b: 0x9f, 0x25c: 0x9f, 0x25d: 0x9f, 0x25e: 0x9f, 0x25f: 0x9f, -	0x260: 0x9f, 0x261: 0x9f, 0x262: 0x9f, 0x263: 0x9f, 0x264: 0x9f, 0x265: 0x9f, 0x266: 0x9f, 0x267: 0x9f, -	0x268: 0x9f, 0x269: 0x9f, 0x26a: 0x9f, 0x26b: 0x9f, 0x26c: 0x9f, 0x26d: 0x9f, 0x26e: 0x9f, 0x26f: 0x9f, -	0x270: 0x9f, 0x271: 0x9f, 0x272: 0x9f, 0x273: 0x9f, 0x274: 0x9f, 0x275: 0x9f, 0x276: 0x9f, 0x277: 0x9f, -	0x278: 0x9f, 0x279: 0x9f, 0x27a: 0x9f, 0x27b: 0x9f, 0x27c: 0x9f, 0x27d: 0x9f, 0x27e: 0x9f, 0x27f: 0x9f, -	// Block 0xa, offset 0x280 -	0x280: 0x9f, 0x281: 0x9f, 0x282: 0x9f, 0x283: 0x9f, 0x284: 0x9f, 0x285: 0x9f, 0x286: 0x9f, 0x287: 0x9f, -	0x288: 0x9f, 0x289: 0x9f, 0x28a: 0x9f, 0x28b: 0x9f, 0x28c: 0x9f, 0x28d: 0x9f, 0x28e: 0x9f, 0x28f: 0x9f, -	0x290: 0x9f, 0x291: 0x9f, 0x292: 0x9f, 0x293: 0x9f, 0x294: 0x9f, 0x295: 0x9f, 0x296: 0x9f, 0x297: 0x9f, -	0x298: 0x9f, 0x299: 0x9f, 0x29a: 0x9f, 0x29b: 0x9f, 0x29c: 0x9f, 0x29d: 0x9f, 0x29e: 0x9f, 0x29f: 0x9f, -	0x2a0: 0x9f, 0x2a1: 0x9f, 0x2a2: 0x9f, 0x2a3: 0x9f, 0x2a4: 0x9f, 0x2a5: 0x9f, 0x2a6: 0x9f, 0x2a7: 0x9f, -	0x2a8: 0x9f, 0x2a9: 0x9f, 0x2aa: 0x9f, 0x2ab: 0x9f, 0x2ac: 0x9f, 0x2ad: 0x9f, 0x2ae: 0x9f, 0x2af: 0x9f, -	0x2b0: 0x9f, 0x2b1: 0x9f, 0x2b2: 0x9f, 0x2b3: 0x9f, 0x2b4: 0x9f, 0x2b5: 0x9f, 0x2b6: 0x9f, 0x2b7: 0x9f, -	0x2b8: 0x9f, 0x2b9: 0x9f, 0x2ba: 0x9f, 0x2bb: 0x9f, 0x2bc: 0x9f, 0x2bd: 0x9f, 0x2be: 0x9f, 0x2bf: 0xe4, -	// Block 0xb, offset 0x2c0 -	0x2c0: 0x9f, 0x2c1: 0x9f, 0x2c2: 0x9f, 0x2c3: 0x9f, 0x2c4: 0x9f, 0x2c5: 0x9f, 0x2c6: 0x9f, 0x2c7: 0x9f, -	0x2c8: 0x9f, 0x2c9: 0x9f, 0x2ca: 0x9f, 0x2cb: 0x9f, 0x2cc: 0x9f, 0x2cd: 0x9f, 0x2ce: 0x9f, 0x2cf: 0x9f, -	0x2d0: 0x9f, 0x2d1: 0x9f, 0x2d2: 0xe5, 0x2d3: 0xe6, 0x2d4: 0x9f, 0x2d5: 0x9f, 0x2d6: 0x9f, 0x2d7: 0x9f, -	0x2d8: 0xe7, 0x2d9: 0x41, 0x2da: 0x42, 0x2db: 0xe8, 0x2dc: 0x43, 0x2dd: 0x44, 0x2de: 0x45, 0x2df: 0xe9, -	0x2e0: 0xea, 0x2e1: 0xeb, 0x2e2: 0xec, 0x2e3: 0xed, 0x2e4: 0xee, 0x2e5: 0xef, 0x2e6: 0xf0, 0x2e7: 0xf1, -	0x2e8: 0xf2, 0x2e9: 0xf3, 0x2ea: 0xf4, 0x2eb: 0xf5, 0x2ec: 0xf6, 0x2ed: 0xf7, 0x2ee: 0xf8, 0x2ef: 0xf9, -	0x2f0: 0x9f, 0x2f1: 0x9f, 0x2f2: 0x9f, 0x2f3: 0x9f, 0x2f4: 0x9f, 0x2f5: 0x9f, 0x2f6: 0x9f, 0x2f7: 0x9f, -	0x2f8: 0x9f, 0x2f9: 0x9f, 0x2fa: 0x9f, 0x2fb: 0x9f, 0x2fc: 0x9f, 0x2fd: 0x9f, 0x2fe: 0x9f, 0x2ff: 0x9f, -	// Block 0xc, offset 0x300 -	0x300: 0x9f, 0x301: 0x9f, 0x302: 0x9f, 0x303: 0x9f, 0x304: 0x9f, 0x305: 0x9f, 0x306: 0x9f, 0x307: 0x9f, -	0x308: 0x9f, 0x309: 0x9f, 0x30a: 0x9f, 0x30b: 0x9f, 0x30c: 0x9f, 0x30d: 0x9f, 0x30e: 0x9f, 0x30f: 0x9f, -	0x310: 0x9f, 0x311: 0x9f, 0x312: 0x9f, 0x313: 0x9f, 0x314: 0x9f, 0x315: 0x9f, 0x316: 0x9f, 0x317: 0x9f, -	0x318: 0x9f, 0x319: 0x9f, 0x31a: 0x9f, 0x31b: 0x9f, 0x31c: 0x9f, 0x31d: 0x9f, 0x31e: 0xfa, 0x31f: 0xfb, -	// Block 0xd, offset 0x340 -	0x340: 0xba, 0x341: 0xba, 0x342: 0xba, 0x343: 0xba, 0x344: 0xba, 0x345: 0xba, 0x346: 0xba, 0x347: 0xba, -	0x348: 0xba, 0x349: 0xba, 0x34a: 0xba, 0x34b: 0xba, 0x34c: 0xba, 0x34d: 0xba, 0x34e: 0xba, 0x34f: 0xba, -	0x350: 0xba, 0x351: 0xba, 0x352: 0xba, 0x353: 0xba, 0x354: 0xba, 0x355: 0xba, 0x356: 0xba, 0x357: 0xba, -	0x358: 0xba, 0x359: 0xba, 0x35a: 0xba, 0x35b: 0xba, 0x35c: 0xba, 0x35d: 0xba, 0x35e: 0xba, 0x35f: 0xba, -	0x360: 0xba, 0x361: 0xba, 0x362: 0xba, 0x363: 0xba, 0x364: 0xba, 0x365: 0xba, 0x366: 0xba, 0x367: 0xba, -	0x368: 0xba, 0x369: 0xba, 0x36a: 0xba, 0x36b: 0xba, 0x36c: 0xba, 0x36d: 0xba, 0x36e: 0xba, 0x36f: 0xba, -	0x370: 0xba, 0x371: 0xba, 0x372: 0xba, 0x373: 0xba, 0x374: 0xba, 0x375: 0xba, 0x376: 0xba, 0x377: 0xba, -	0x378: 0xba, 0x379: 0xba, 0x37a: 0xba, 0x37b: 0xba, 0x37c: 0xba, 0x37d: 0xba, 0x37e: 0xba, 0x37f: 0xba, -	// Block 0xe, offset 0x380 -	0x380: 0xba, 0x381: 0xba, 0x382: 0xba, 0x383: 0xba, 0x384: 0xba, 0x385: 0xba, 0x386: 0xba, 0x387: 0xba, -	0x388: 0xba, 0x389: 0xba, 0x38a: 0xba, 0x38b: 0xba, 0x38c: 0xba, 0x38d: 0xba, 0x38e: 0xba, 0x38f: 0xba, -	0x390: 0xba, 0x391: 0xba, 0x392: 0xba, 0x393: 0xba, 0x394: 0xba, 0x395: 0xba, 0x396: 0xba, 0x397: 0xba, -	0x398: 0xba, 0x399: 0xba, 0x39a: 0xba, 0x39b: 0xba, 0x39c: 0xba, 0x39d: 0xba, 0x39e: 0xba, 0x39f: 0xba, -	0x3a0: 0xba, 0x3a1: 0xba, 0x3a2: 0xba, 0x3a3: 0xba, 0x3a4: 0xfc, 0x3a5: 0xfd, 0x3a6: 0xfe, 0x3a7: 0xff, -	0x3a8: 0x46, 0x3a9: 0x100, 0x3aa: 0x101, 0x3ab: 0x47, 0x3ac: 0x48, 0x3ad: 0x49, 0x3ae: 0x4a, 0x3af: 0x4b, -	0x3b0: 0x102, 0x3b1: 0x4c, 0x3b2: 0x4d, 0x3b3: 0x4e, 0x3b4: 0x4f, 0x3b5: 0x50, 0x3b6: 0x103, 0x3b7: 0x51, -	0x3b8: 0x52, 0x3b9: 0x53, 0x3ba: 0x54, 0x3bb: 0x55, 0x3bc: 0x56, 0x3bd: 0x57, 0x3be: 0x58, 0x3bf: 0x59, -	// Block 0xf, offset 0x3c0 -	0x3c0: 0x104, 0x3c1: 0x105, 0x3c2: 0x9f, 0x3c3: 0x106, 0x3c4: 0x107, 0x3c5: 0x9b, 0x3c6: 0x108, 0x3c7: 0x109, -	0x3c8: 0xba, 0x3c9: 0xba, 0x3ca: 0x10a, 0x3cb: 0x10b, 0x3cc: 0x10c, 0x3cd: 0x10d, 0x3ce: 0x10e, 0x3cf: 0x10f, -	0x3d0: 0x110, 0x3d1: 0x9f, 0x3d2: 0x111, 0x3d3: 0x112, 0x3d4: 0x113, 0x3d5: 0x114, 0x3d6: 0xba, 0x3d7: 0xba, -	0x3d8: 0x9f, 0x3d9: 0x9f, 0x3da: 0x9f, 0x3db: 0x9f, 0x3dc: 0x115, 0x3dd: 0x116, 0x3de: 0xba, 0x3df: 0xba, -	0x3e0: 0x117, 0x3e1: 0x118, 0x3e2: 0x119, 0x3e3: 0x11a, 0x3e4: 0x11b, 0x3e5: 0xba, 0x3e6: 0x11c, 0x3e7: 0x11d, -	0x3e8: 0x11e, 0x3e9: 0x11f, 0x3ea: 0x120, 0x3eb: 0x5a, 0x3ec: 0x121, 0x3ed: 0x122, 0x3ee: 0x5b, 0x3ef: 0xba, -	0x3f0: 0x123, 0x3f1: 0x124, 0x3f2: 0x125, 0x3f3: 0x126, 0x3f4: 0xba, 0x3f5: 0xba, 0x3f6: 0xba, 0x3f7: 0xba, -	0x3f8: 0xba, 0x3f9: 0x127, 0x3fa: 0xba, 0x3fb: 0xba, 0x3fc: 0xba, 0x3fd: 0xba, 0x3fe: 0xba, 0x3ff: 0xba, -	// Block 0x10, offset 0x400 -	0x400: 0x128, 0x401: 0x129, 0x402: 0x12a, 0x403: 0x12b, 0x404: 0x12c, 0x405: 0x12d, 0x406: 0x12e, 0x407: 0x12f, -	0x408: 0x130, 0x409: 0xba, 0x40a: 0x131, 0x40b: 0x132, 0x40c: 0x5c, 0x40d: 0x5d, 0x40e: 0xba, 0x40f: 0xba, -	0x410: 0x133, 0x411: 0x134, 0x412: 0x135, 0x413: 0x136, 0x414: 0xba, 0x415: 0xba, 0x416: 0x137, 0x417: 0x138, -	0x418: 0x139, 0x419: 0x13a, 0x41a: 0x13b, 0x41b: 0x13c, 0x41c: 0x13d, 0x41d: 0xba, 0x41e: 0xba, 0x41f: 0xba, -	0x420: 0xba, 0x421: 0xba, 0x422: 0x13e, 0x423: 0x13f, 0x424: 0xba, 0x425: 0xba, 0x426: 0xba, 0x427: 0xba, -	0x428: 0xba, 0x429: 0xba, 0x42a: 0xba, 0x42b: 0x140, 0x42c: 0xba, 0x42d: 0xba, 0x42e: 0xba, 0x42f: 0xba, -	0x430: 0x141, 0x431: 0x142, 0x432: 0x143, 0x433: 0xba, 0x434: 0xba, 0x435: 0xba, 0x436: 0xba, 0x437: 0xba, -	0x438: 0xba, 0x439: 0xba, 0x43a: 0xba, 0x43b: 0xba, 0x43c: 0xba, 0x43d: 0xba, 0x43e: 0xba, 0x43f: 0xba, -	// Block 0x11, offset 0x440 -	0x440: 0x9f, 0x441: 0x9f, 0x442: 0x9f, 0x443: 0x9f, 0x444: 0x9f, 0x445: 0x9f, 0x446: 0x9f, 0x447: 0x9f, -	0x448: 0x9f, 0x449: 0x9f, 0x44a: 0x9f, 0x44b: 0x9f, 0x44c: 0x9f, 0x44d: 0x9f, 0x44e: 0x144, 0x44f: 0xba, -	0x450: 0x9b, 0x451: 0x145, 0x452: 0x9f, 0x453: 0x9f, 0x454: 0x9f, 0x455: 0x146, 0x456: 0xba, 0x457: 0xba, -	0x458: 0xba, 0x459: 0xba, 0x45a: 0xba, 0x45b: 0xba, 0x45c: 0xba, 0x45d: 0xba, 0x45e: 0xba, 0x45f: 0xba, -	0x460: 0xba, 0x461: 0xba, 0x462: 0xba, 0x463: 0xba, 0x464: 0xba, 0x465: 0xba, 0x466: 0xba, 0x467: 0xba, -	0x468: 0xba, 0x469: 0xba, 0x46a: 0xba, 0x46b: 0xba, 0x46c: 0xba, 0x46d: 0xba, 0x46e: 0xba, 0x46f: 0xba, -	0x470: 0xba, 0x471: 0xba, 0x472: 0xba, 0x473: 0xba, 0x474: 0xba, 0x475: 0xba, 0x476: 0xba, 0x477: 0xba, -	0x478: 0xba, 0x479: 0xba, 0x47a: 0xba, 0x47b: 0xba, 0x47c: 0xba, 0x47d: 0xba, 0x47e: 0xba, 0x47f: 0xba, -	// Block 0x12, offset 0x480 -	0x480: 0x9f, 0x481: 0x9f, 0x482: 0x9f, 0x483: 0x9f, 0x484: 0x9f, 0x485: 0x9f, 0x486: 0x9f, 0x487: 0x9f, -	0x488: 0x9f, 0x489: 0x9f, 0x48a: 0x9f, 0x48b: 0x9f, 0x48c: 0x9f, 0x48d: 0x9f, 0x48e: 0x9f, 0x48f: 0x9f, -	0x490: 0x147, 0x491: 0xba, 0x492: 0xba, 0x493: 0xba, 0x494: 0xba, 0x495: 0xba, 0x496: 0xba, 0x497: 0xba, -	0x498: 0xba, 0x499: 0xba, 0x49a: 0xba, 0x49b: 0xba, 0x49c: 0xba, 0x49d: 0xba, 0x49e: 0xba, 0x49f: 0xba, -	0x4a0: 0xba, 0x4a1: 0xba, 0x4a2: 0xba, 0x4a3: 0xba, 0x4a4: 0xba, 0x4a5: 0xba, 0x4a6: 0xba, 0x4a7: 0xba, -	0x4a8: 0xba, 0x4a9: 0xba, 0x4aa: 0xba, 0x4ab: 0xba, 0x4ac: 0xba, 0x4ad: 0xba, 0x4ae: 0xba, 0x4af: 0xba, -	0x4b0: 0xba, 0x4b1: 0xba, 0x4b2: 0xba, 0x4b3: 0xba, 0x4b4: 0xba, 0x4b5: 0xba, 0x4b6: 0xba, 0x4b7: 0xba, -	0x4b8: 0xba, 0x4b9: 0xba, 0x4ba: 0xba, 0x4bb: 0xba, 0x4bc: 0xba, 0x4bd: 0xba, 0x4be: 0xba, 0x4bf: 0xba, -	// Block 0x13, offset 0x4c0 -	0x4c0: 0xba, 0x4c1: 0xba, 0x4c2: 0xba, 0x4c3: 0xba, 0x4c4: 0xba, 0x4c5: 0xba, 0x4c6: 0xba, 0x4c7: 0xba, -	0x4c8: 0xba, 0x4c9: 0xba, 0x4ca: 0xba, 0x4cb: 0xba, 0x4cc: 0xba, 0x4cd: 0xba, 0x4ce: 0xba, 0x4cf: 0xba, -	0x4d0: 0x9f, 0x4d1: 0x9f, 0x4d2: 0x9f, 0x4d3: 0x9f, 0x4d4: 0x9f, 0x4d5: 0x9f, 0x4d6: 0x9f, 0x4d7: 0x9f, -	0x4d8: 0x9f, 0x4d9: 0x148, 0x4da: 0xba, 0x4db: 0xba, 0x4dc: 0xba, 0x4dd: 0xba, 0x4de: 0xba, 0x4df: 0xba, -	0x4e0: 0xba, 0x4e1: 0xba, 0x4e2: 0xba, 0x4e3: 0xba, 0x4e4: 0xba, 0x4e5: 0xba, 0x4e6: 0xba, 0x4e7: 0xba, -	0x4e8: 0xba, 0x4e9: 0xba, 0x4ea: 0xba, 0x4eb: 0xba, 0x4ec: 0xba, 0x4ed: 0xba, 0x4ee: 0xba, 0x4ef: 0xba, -	0x4f0: 0xba, 0x4f1: 0xba, 0x4f2: 0xba, 0x4f3: 0xba, 0x4f4: 0xba, 0x4f5: 0xba, 0x4f6: 0xba, 0x4f7: 0xba, -	0x4f8: 0xba, 0x4f9: 0xba, 0x4fa: 0xba, 0x4fb: 0xba, 0x4fc: 0xba, 0x4fd: 0xba, 0x4fe: 0xba, 0x4ff: 0xba, -	// Block 0x14, offset 0x500 -	0x500: 0xba, 0x501: 0xba, 0x502: 0xba, 0x503: 0xba, 0x504: 0xba, 0x505: 0xba, 0x506: 0xba, 0x507: 0xba, -	0x508: 0xba, 0x509: 0xba, 0x50a: 0xba, 0x50b: 0xba, 0x50c: 0xba, 0x50d: 0xba, 0x50e: 0xba, 0x50f: 0xba, -	0x510: 0xba, 0x511: 0xba, 0x512: 0xba, 0x513: 0xba, 0x514: 0xba, 0x515: 0xba, 0x516: 0xba, 0x517: 0xba, -	0x518: 0xba, 0x519: 0xba, 0x51a: 0xba, 0x51b: 0xba, 0x51c: 0xba, 0x51d: 0xba, 0x51e: 0xba, 0x51f: 0xba, -	0x520: 0x9f, 0x521: 0x9f, 0x522: 0x9f, 0x523: 0x9f, 0x524: 0x9f, 0x525: 0x9f, 0x526: 0x9f, 0x527: 0x9f, -	0x528: 0x140, 0x529: 0x149, 0x52a: 0xba, 0x52b: 0x14a, 0x52c: 0x14b, 0x52d: 0x14c, 0x52e: 0x14d, 0x52f: 0xba, -	0x530: 0xba, 0x531: 0xba, 0x532: 0xba, 0x533: 0xba, 0x534: 0xba, 0x535: 0xba, 0x536: 0xba, 0x537: 0xba, -	0x538: 0xba, 0x539: 0xba, 0x53a: 0xba, 0x53b: 0xba, 0x53c: 0x9f, 0x53d: 0x14e, 0x53e: 0x14f, 0x53f: 0x150, -	// Block 0x15, offset 0x540 -	0x540: 0x9f, 0x541: 0x9f, 0x542: 0x9f, 0x543: 0x9f, 0x544: 0x9f, 0x545: 0x9f, 0x546: 0x9f, 0x547: 0x9f, -	0x548: 0x9f, 0x549: 0x9f, 0x54a: 0x9f, 0x54b: 0x9f, 0x54c: 0x9f, 0x54d: 0x9f, 0x54e: 0x9f, 0x54f: 0x9f, -	0x550: 0x9f, 0x551: 0x9f, 0x552: 0x9f, 0x553: 0x9f, 0x554: 0x9f, 0x555: 0x9f, 0x556: 0x9f, 0x557: 0x9f, -	0x558: 0x9f, 0x559: 0x9f, 0x55a: 0x9f, 0x55b: 0x9f, 0x55c: 0x9f, 0x55d: 0x9f, 0x55e: 0x9f, 0x55f: 0x151, -	0x560: 0x9f, 0x561: 0x9f, 0x562: 0x9f, 0x563: 0x9f, 0x564: 0x9f, 0x565: 0x9f, 0x566: 0x9f, 0x567: 0x9f, -	0x568: 0x9f, 0x569: 0x9f, 0x56a: 0x9f, 0x56b: 0x152, 0x56c: 0xba, 0x56d: 0xba, 0x56e: 0xba, 0x56f: 0xba, -	0x570: 0xba, 0x571: 0xba, 0x572: 0xba, 0x573: 0xba, 0x574: 0xba, 0x575: 0xba, 0x576: 0xba, 0x577: 0xba, -	0x578: 0xba, 0x579: 0xba, 0x57a: 0xba, 0x57b: 0xba, 0x57c: 0xba, 0x57d: 0xba, 0x57e: 0xba, 0x57f: 0xba, -	// Block 0x16, offset 0x580 -	0x580: 0x153, 0x581: 0xba, 0x582: 0xba, 0x583: 0xba, 0x584: 0xba, 0x585: 0xba, 0x586: 0xba, 0x587: 0xba, -	0x588: 0xba, 0x589: 0xba, 0x58a: 0xba, 0x58b: 0xba, 0x58c: 0xba, 0x58d: 0xba, 0x58e: 0xba, 0x58f: 0xba, -	0x590: 0xba, 0x591: 0xba, 0x592: 0xba, 0x593: 0xba, 0x594: 0xba, 0x595: 0xba, 0x596: 0xba, 0x597: 0xba, -	0x598: 0xba, 0x599: 0xba, 0x59a: 0xba, 0x59b: 0xba, 0x59c: 0xba, 0x59d: 0xba, 0x59e: 0xba, 0x59f: 0xba, -	0x5a0: 0xba, 0x5a1: 0xba, 0x5a2: 0xba, 0x5a3: 0xba, 0x5a4: 0xba, 0x5a5: 0xba, 0x5a6: 0xba, 0x5a7: 0xba, -	0x5a8: 0xba, 0x5a9: 0xba, 0x5aa: 0xba, 0x5ab: 0xba, 0x5ac: 0xba, 0x5ad: 0xba, 0x5ae: 0xba, 0x5af: 0xba, -	0x5b0: 0x9f, 0x5b1: 0x154, 0x5b2: 0x155, 0x5b3: 0xba, 0x5b4: 0xba, 0x5b5: 0xba, 0x5b6: 0xba, 0x5b7: 0xba, -	0x5b8: 0xba, 0x5b9: 0xba, 0x5ba: 0xba, 0x5bb: 0xba, 0x5bc: 0xba, 0x5bd: 0xba, 0x5be: 0xba, 0x5bf: 0xba, -	// Block 0x17, offset 0x5c0 -	0x5c0: 0x9b, 0x5c1: 0x9b, 0x5c2: 0x9b, 0x5c3: 0x156, 0x5c4: 0x157, 0x5c5: 0x158, 0x5c6: 0x159, 0x5c7: 0x15a, -	0x5c8: 0x9b, 0x5c9: 0x15b, 0x5ca: 0xba, 0x5cb: 0xba, 0x5cc: 0x9b, 0x5cd: 0x15c, 0x5ce: 0xba, 0x5cf: 0xba, -	0x5d0: 0x5e, 0x5d1: 0x5f, 0x5d2: 0x60, 0x5d3: 0x61, 0x5d4: 0x62, 0x5d5: 0x63, 0x5d6: 0x64, 0x5d7: 0x65, -	0x5d8: 0x66, 0x5d9: 0x67, 0x5da: 0x68, 0x5db: 0x69, 0x5dc: 0x6a, 0x5dd: 0x6b, 0x5de: 0x6c, 0x5df: 0x6d, -	0x5e0: 0x9b, 0x5e1: 0x9b, 0x5e2: 0x9b, 0x5e3: 0x9b, 0x5e4: 0x9b, 0x5e5: 0x9b, 0x5e6: 0x9b, 0x5e7: 0x9b, -	0x5e8: 0x15d, 0x5e9: 0x15e, 0x5ea: 0x15f, 0x5eb: 0xba, 0x5ec: 0xba, 0x5ed: 0xba, 0x5ee: 0xba, 0x5ef: 0xba, -	0x5f0: 0xba, 0x5f1: 0xba, 0x5f2: 0xba, 0x5f3: 0xba, 0x5f4: 0xba, 0x5f5: 0xba, 0x5f6: 0xba, 0x5f7: 0xba, -	0x5f8: 0xba, 0x5f9: 0xba, 0x5fa: 0xba, 0x5fb: 0xba, 0x5fc: 0xba, 0x5fd: 0xba, 0x5fe: 0xba, 0x5ff: 0xba, -	// Block 0x18, offset 0x600 -	0x600: 0x160, 0x601: 0xba, 0x602: 0xba, 0x603: 0xba, 0x604: 0xba, 0x605: 0xba, 0x606: 0xba, 0x607: 0xba, -	0x608: 0xba, 0x609: 0xba, 0x60a: 0xba, 0x60b: 0xba, 0x60c: 0xba, 0x60d: 0xba, 0x60e: 0xba, 0x60f: 0xba, -	0x610: 0xba, 0x611: 0xba, 0x612: 0xba, 0x613: 0xba, 0x614: 0xba, 0x615: 0xba, 0x616: 0xba, 0x617: 0xba, -	0x618: 0xba, 0x619: 0xba, 0x61a: 0xba, 0x61b: 0xba, 0x61c: 0xba, 0x61d: 0xba, 0x61e: 0xba, 0x61f: 0xba, -	0x620: 0x123, 0x621: 0x123, 0x622: 0x123, 0x623: 0x161, 0x624: 0x6e, 0x625: 0x162, 0x626: 0xba, 0x627: 0xba, -	0x628: 0xba, 0x629: 0xba, 0x62a: 0xba, 0x62b: 0xba, 0x62c: 0xba, 0x62d: 0xba, 0x62e: 0xba, 0x62f: 0xba, -	0x630: 0xba, 0x631: 0xba, 0x632: 0xba, 0x633: 0xba, 0x634: 0xba, 0x635: 0xba, 0x636: 0xba, 0x637: 0xba, -	0x638: 0x6f, 0x639: 0x70, 0x63a: 0x71, 0x63b: 0x163, 0x63c: 0xba, 0x63d: 0xba, 0x63e: 0xba, 0x63f: 0xba, -	// Block 0x19, offset 0x640 -	0x640: 0x164, 0x641: 0x9b, 0x642: 0x165, 0x643: 0x166, 0x644: 0x72, 0x645: 0x73, 0x646: 0x167, 0x647: 0x168, -	0x648: 0x74, 0x649: 0x169, 0x64a: 0xba, 0x64b: 0xba, 0x64c: 0x9b, 0x64d: 0x9b, 0x64e: 0x9b, 0x64f: 0x9b, -	0x650: 0x9b, 0x651: 0x9b, 0x652: 0x9b, 0x653: 0x9b, 0x654: 0x9b, 0x655: 0x9b, 0x656: 0x9b, 0x657: 0x9b, -	0x658: 0x9b, 0x659: 0x9b, 0x65a: 0x9b, 0x65b: 0x16a, 0x65c: 0x9b, 0x65d: 0x16b, 0x65e: 0x9b, 0x65f: 0x16c, -	0x660: 0x16d, 0x661: 0x16e, 0x662: 0x16f, 0x663: 0xba, 0x664: 0x170, 0x665: 0x171, 0x666: 0x172, 0x667: 0x173, -	0x668: 0xba, 0x669: 0xba, 0x66a: 0xba, 0x66b: 0xba, 0x66c: 0xba, 0x66d: 0xba, 0x66e: 0xba, 0x66f: 0xba, -	0x670: 0xba, 0x671: 0xba, 0x672: 0xba, 0x673: 0xba, 0x674: 0xba, 0x675: 0xba, 0x676: 0xba, 0x677: 0xba, -	0x678: 0xba, 0x679: 0xba, 0x67a: 0xba, 0x67b: 0xba, 0x67c: 0xba, 0x67d: 0xba, 0x67e: 0xba, 0x67f: 0xba, -	// Block 0x1a, offset 0x680 -	0x680: 0x9f, 0x681: 0x9f, 0x682: 0x9f, 0x683: 0x9f, 0x684: 0x9f, 0x685: 0x9f, 0x686: 0x9f, 0x687: 0x9f, -	0x688: 0x9f, 0x689: 0x9f, 0x68a: 0x9f, 0x68b: 0x9f, 0x68c: 0x9f, 0x68d: 0x9f, 0x68e: 0x9f, 0x68f: 0x9f, -	0x690: 0x9f, 0x691: 0x9f, 0x692: 0x9f, 0x693: 0x9f, 0x694: 0x9f, 0x695: 0x9f, 0x696: 0x9f, 0x697: 0x9f, -	0x698: 0x9f, 0x699: 0x9f, 0x69a: 0x9f, 0x69b: 0x174, 0x69c: 0x9f, 0x69d: 0x9f, 0x69e: 0x9f, 0x69f: 0x9f, -	0x6a0: 0x9f, 0x6a1: 0x9f, 0x6a2: 0x9f, 0x6a3: 0x9f, 0x6a4: 0x9f, 0x6a5: 0x9f, 0x6a6: 0x9f, 0x6a7: 0x9f, -	0x6a8: 0x9f, 0x6a9: 0x9f, 0x6aa: 0x9f, 0x6ab: 0x9f, 0x6ac: 0x9f, 0x6ad: 0x9f, 0x6ae: 0x9f, 0x6af: 0x9f, -	0x6b0: 0x9f, 0x6b1: 0x9f, 0x6b2: 0x9f, 0x6b3: 0x9f, 0x6b4: 0x9f, 0x6b5: 0x9f, 0x6b6: 0x9f, 0x6b7: 0x9f, -	0x6b8: 0x9f, 0x6b9: 0x9f, 0x6ba: 0x9f, 0x6bb: 0x9f, 0x6bc: 0x9f, 0x6bd: 0x9f, 0x6be: 0x9f, 0x6bf: 0x9f, -	// Block 0x1b, offset 0x6c0 -	0x6c0: 0x9f, 0x6c1: 0x9f, 0x6c2: 0x9f, 0x6c3: 0x9f, 0x6c4: 0x9f, 0x6c5: 0x9f, 0x6c6: 0x9f, 0x6c7: 0x9f, -	0x6c8: 0x9f, 0x6c9: 0x9f, 0x6ca: 0x9f, 0x6cb: 0x9f, 0x6cc: 0x9f, 0x6cd: 0x9f, 0x6ce: 0x9f, 0x6cf: 0x9f, -	0x6d0: 0x9f, 0x6d1: 0x9f, 0x6d2: 0x9f, 0x6d3: 0x9f, 0x6d4: 0x9f, 0x6d5: 0x9f, 0x6d6: 0x9f, 0x6d7: 0x9f, -	0x6d8: 0x9f, 0x6d9: 0x9f, 0x6da: 0x9f, 0x6db: 0x9f, 0x6dc: 0x175, 0x6dd: 0x9f, 0x6de: 0x9f, 0x6df: 0x9f, -	0x6e0: 0x176, 0x6e1: 0x9f, 0x6e2: 0x9f, 0x6e3: 0x9f, 0x6e4: 0x9f, 0x6e5: 0x9f, 0x6e6: 0x9f, 0x6e7: 0x9f, -	0x6e8: 0x9f, 0x6e9: 0x9f, 0x6ea: 0x9f, 0x6eb: 0x9f, 0x6ec: 0x9f, 0x6ed: 0x9f, 0x6ee: 0x9f, 0x6ef: 0x9f, -	0x6f0: 0x9f, 0x6f1: 0x9f, 0x6f2: 0x9f, 0x6f3: 0x9f, 0x6f4: 0x9f, 0x6f5: 0x9f, 0x6f6: 0x9f, 0x6f7: 0x9f, -	0x6f8: 0x9f, 0x6f9: 0x9f, 0x6fa: 0x9f, 0x6fb: 0x9f, 0x6fc: 0x9f, 0x6fd: 0x9f, 0x6fe: 0x9f, 0x6ff: 0x9f, -	// Block 0x1c, offset 0x700 -	0x700: 0x9f, 0x701: 0x9f, 0x702: 0x9f, 0x703: 0x9f, 0x704: 0x9f, 0x705: 0x9f, 0x706: 0x9f, 0x707: 0x9f, -	0x708: 0x9f, 0x709: 0x9f, 0x70a: 0x9f, 0x70b: 0x9f, 0x70c: 0x9f, 0x70d: 0x9f, 0x70e: 0x9f, 0x70f: 0x9f, -	0x710: 0x9f, 0x711: 0x9f, 0x712: 0x9f, 0x713: 0x9f, 0x714: 0x9f, 0x715: 0x9f, 0x716: 0x9f, 0x717: 0x9f, -	0x718: 0x9f, 0x719: 0x9f, 0x71a: 0x9f, 0x71b: 0x9f, 0x71c: 0x9f, 0x71d: 0x9f, 0x71e: 0x9f, 0x71f: 0x9f, -	0x720: 0x9f, 0x721: 0x9f, 0x722: 0x9f, 0x723: 0x9f, 0x724: 0x9f, 0x725: 0x9f, 0x726: 0x9f, 0x727: 0x9f, -	0x728: 0x9f, 0x729: 0x9f, 0x72a: 0x9f, 0x72b: 0x9f, 0x72c: 0x9f, 0x72d: 0x9f, 0x72e: 0x9f, 0x72f: 0x9f, -	0x730: 0x9f, 0x731: 0x9f, 0x732: 0x9f, 0x733: 0x9f, 0x734: 0x9f, 0x735: 0x9f, 0x736: 0x9f, 0x737: 0x9f, -	0x738: 0x9f, 0x739: 0x9f, 0x73a: 0x177, 0x73b: 0xba, 0x73c: 0xba, 0x73d: 0xba, 0x73e: 0xba, 0x73f: 0xba, -	// Block 0x1d, offset 0x740 -	0x740: 0xba, 0x741: 0xba, 0x742: 0xba, 0x743: 0xba, 0x744: 0xba, 0x745: 0xba, 0x746: 0xba, 0x747: 0xba, -	0x748: 0xba, 0x749: 0xba, 0x74a: 0xba, 0x74b: 0xba, 0x74c: 0xba, 0x74d: 0xba, 0x74e: 0xba, 0x74f: 0xba, -	0x750: 0xba, 0x751: 0xba, 0x752: 0xba, 0x753: 0xba, 0x754: 0xba, 0x755: 0xba, 0x756: 0xba, 0x757: 0xba, -	0x758: 0xba, 0x759: 0xba, 0x75a: 0xba, 0x75b: 0xba, 0x75c: 0xba, 0x75d: 0xba, 0x75e: 0xba, 0x75f: 0xba, -	0x760: 0x75, 0x761: 0x76, 0x762: 0x77, 0x763: 0x178, 0x764: 0x78, 0x765: 0x79, 0x766: 0x179, 0x767: 0x7a, -	0x768: 0x7b, 0x769: 0xba, 0x76a: 0xba, 0x76b: 0xba, 0x76c: 0xba, 0x76d: 0xba, 0x76e: 0xba, 0x76f: 0xba, -	0x770: 0xba, 0x771: 0xba, 0x772: 0xba, 0x773: 0xba, 0x774: 0xba, 0x775: 0xba, 0x776: 0xba, 0x777: 0xba, -	0x778: 0xba, 0x779: 0xba, 0x77a: 0xba, 0x77b: 0xba, 0x77c: 0xba, 0x77d: 0xba, 0x77e: 0xba, 0x77f: 0xba, -	// Block 0x1e, offset 0x780 -	0x790: 0x0d, 0x791: 0x0e, 0x792: 0x0f, 0x793: 0x10, 0x794: 0x11, 0x795: 0x0b, 0x796: 0x12, 0x797: 0x07, -	0x798: 0x13, 0x799: 0x0b, 0x79a: 0x0b, 0x79b: 0x14, 0x79c: 0x0b, 0x79d: 0x15, 0x79e: 0x16, 0x79f: 0x17, -	0x7a0: 0x07, 0x7a1: 0x07, 0x7a2: 0x07, 0x7a3: 0x07, 0x7a4: 0x07, 0x7a5: 0x07, 0x7a6: 0x07, 0x7a7: 0x07, -	0x7a8: 0x07, 0x7a9: 0x07, 0x7aa: 0x18, 0x7ab: 0x19, 0x7ac: 0x1a, 0x7ad: 0x0b, 0x7ae: 0x0b, 0x7af: 0x1b, -	0x7b0: 0x0b, 0x7b1: 0x0b, 0x7b2: 0x0b, 0x7b3: 0x0b, 0x7b4: 0x0b, 0x7b5: 0x0b, 0x7b6: 0x0b, 0x7b7: 0x0b, -	0x7b8: 0x0b, 0x7b9: 0x0b, 0x7ba: 0x0b, 0x7bb: 0x0b, 0x7bc: 0x0b, 0x7bd: 0x0b, 0x7be: 0x0b, 0x7bf: 0x0b, -	// Block 0x1f, offset 0x7c0 -	0x7c0: 0x0b, 0x7c1: 0x0b, 0x7c2: 0x0b, 0x7c3: 0x0b, 0x7c4: 0x0b, 0x7c5: 0x0b, 0x7c6: 0x0b, 0x7c7: 0x0b, -	0x7c8: 0x0b, 0x7c9: 0x0b, 0x7ca: 0x0b, 0x7cb: 0x0b, 0x7cc: 0x0b, 0x7cd: 0x0b, 0x7ce: 0x0b, 0x7cf: 0x0b, -	0x7d0: 0x0b, 0x7d1: 0x0b, 0x7d2: 0x0b, 0x7d3: 0x0b, 0x7d4: 0x0b, 0x7d5: 0x0b, 0x7d6: 0x0b, 0x7d7: 0x0b, -	0x7d8: 0x0b, 0x7d9: 0x0b, 0x7da: 0x0b, 0x7db: 0x0b, 0x7dc: 0x0b, 0x7dd: 0x0b, 0x7de: 0x0b, 0x7df: 0x0b, -	0x7e0: 0x0b, 0x7e1: 0x0b, 0x7e2: 0x0b, 0x7e3: 0x0b, 0x7e4: 0x0b, 0x7e5: 0x0b, 0x7e6: 0x0b, 0x7e7: 0x0b, -	0x7e8: 0x0b, 0x7e9: 0x0b, 0x7ea: 0x0b, 0x7eb: 0x0b, 0x7ec: 0x0b, 0x7ed: 0x0b, 0x7ee: 0x0b, 0x7ef: 0x0b, -	0x7f0: 0x0b, 0x7f1: 0x0b, 0x7f2: 0x0b, 0x7f3: 0x0b, 0x7f4: 0x0b, 0x7f5: 0x0b, 0x7f6: 0x0b, 0x7f7: 0x0b, -	0x7f8: 0x0b, 0x7f9: 0x0b, 0x7fa: 0x0b, 0x7fb: 0x0b, 0x7fc: 0x0b, 0x7fd: 0x0b, 0x7fe: 0x0b, 0x7ff: 0x0b, -	// Block 0x20, offset 0x800 -	0x800: 0x17a, 0x801: 0x17b, 0x802: 0xba, 0x803: 0xba, 0x804: 0x17c, 0x805: 0x17c, 0x806: 0x17c, 0x807: 0x17d, -	0x808: 0xba, 0x809: 0xba, 0x80a: 0xba, 0x80b: 0xba, 0x80c: 0xba, 0x80d: 0xba, 0x80e: 0xba, 0x80f: 0xba, -	0x810: 0xba, 0x811: 0xba, 0x812: 0xba, 0x813: 0xba, 0x814: 0xba, 0x815: 0xba, 0x816: 0xba, 0x817: 0xba, -	0x818: 0xba, 0x819: 0xba, 0x81a: 0xba, 0x81b: 0xba, 0x81c: 0xba, 0x81d: 0xba, 0x81e: 0xba, 0x81f: 0xba, -	0x820: 0xba, 0x821: 0xba, 0x822: 0xba, 0x823: 0xba, 0x824: 0xba, 0x825: 0xba, 0x826: 0xba, 0x827: 0xba, -	0x828: 0xba, 0x829: 0xba, 0x82a: 0xba, 0x82b: 0xba, 0x82c: 0xba, 0x82d: 0xba, 0x82e: 0xba, 0x82f: 0xba, -	0x830: 0xba, 0x831: 0xba, 0x832: 0xba, 0x833: 0xba, 0x834: 0xba, 0x835: 0xba, 0x836: 0xba, 0x837: 0xba, -	0x838: 0xba, 0x839: 0xba, 0x83a: 0xba, 0x83b: 0xba, 0x83c: 0xba, 0x83d: 0xba, 0x83e: 0xba, 0x83f: 0xba, -	// Block 0x21, offset 0x840 -	0x840: 0x0b, 0x841: 0x0b, 0x842: 0x0b, 0x843: 0x0b, 0x844: 0x0b, 0x845: 0x0b, 0x846: 0x0b, 0x847: 0x0b, -	0x848: 0x0b, 0x849: 0x0b, 0x84a: 0x0b, 0x84b: 0x0b, 0x84c: 0x0b, 0x84d: 0x0b, 0x84e: 0x0b, 0x84f: 0x0b, -	0x850: 0x0b, 0x851: 0x0b, 0x852: 0x0b, 0x853: 0x0b, 0x854: 0x0b, 0x855: 0x0b, 0x856: 0x0b, 0x857: 0x0b, -	0x858: 0x0b, 0x859: 0x0b, 0x85a: 0x0b, 0x85b: 0x0b, 0x85c: 0x0b, 0x85d: 0x0b, 0x85e: 0x0b, 0x85f: 0x0b, -	0x860: 0x1e, 0x861: 0x0b, 0x862: 0x0b, 0x863: 0x0b, 0x864: 0x0b, 0x865: 0x0b, 0x866: 0x0b, 0x867: 0x0b, -	0x868: 0x0b, 0x869: 0x0b, 0x86a: 0x0b, 0x86b: 0x0b, 0x86c: 0x0b, 0x86d: 0x0b, 0x86e: 0x0b, 0x86f: 0x0b, -	0x870: 0x0b, 0x871: 0x0b, 0x872: 0x0b, 0x873: 0x0b, 0x874: 0x0b, 0x875: 0x0b, 0x876: 0x0b, 0x877: 0x0b, -	0x878: 0x0b, 0x879: 0x0b, 0x87a: 0x0b, 0x87b: 0x0b, 0x87c: 0x0b, 0x87d: 0x0b, 0x87e: 0x0b, 0x87f: 0x0b, -	// Block 0x22, offset 0x880 -	0x880: 0x0b, 0x881: 0x0b, 0x882: 0x0b, 0x883: 0x0b, 0x884: 0x0b, 0x885: 0x0b, 0x886: 0x0b, 0x887: 0x0b, -	0x888: 0x0b, 0x889: 0x0b, 0x88a: 0x0b, 0x88b: 0x0b, 0x88c: 0x0b, 0x88d: 0x0b, 0x88e: 0x0b, 0x88f: 0x0b, -} - -// idnaSparseOffset: 258 entries, 516 bytes -var idnaSparseOffset = []uint16{0x0, 0x8, 0x19, 0x25, 0x27, 0x2c, 0x34, 0x3f, 0x4b, 0x4f, 0x5e, 0x63, 0x6b, 0x77, 0x85, 0x93, 0x98, 0xa1, 0xb1, 0xbf, 0xcc, 0xd8, 0xe9, 0xf3, 0xfa, 0x107, 0x118, 0x11f, 0x12a, 0x139, 0x147, 0x151, 0x153, 0x158, 0x15b, 0x15e, 0x160, 0x16c, 0x177, 0x17f, 0x185, 0x18b, 0x190, 0x195, 0x198, 0x19c, 0x1a2, 0x1a7, 0x1b3, 0x1bd, 0x1c3, 0x1d4, 0x1de, 0x1e1, 0x1e9, 0x1ec, 0x1f9, 0x201, 0x205, 0x20c, 0x214, 0x224, 0x230, 0x232, 0x23c, 0x248, 0x254, 0x260, 0x268, 0x26d, 0x277, 0x288, 0x28c, 0x297, 0x29b, 0x2a4, 0x2ac, 0x2b2, 0x2b7, 0x2ba, 0x2bd, 0x2c1, 0x2c7, 0x2cb, 0x2cf, 0x2d5, 0x2dc, 0x2e2, 0x2ea, 0x2f1, 0x2fc, 0x306, 0x30a, 0x30d, 0x313, 0x317, 0x319, 0x31c, 0x31e, 0x321, 0x32b, 0x32e, 0x33d, 0x341, 0x346, 0x349, 0x34d, 0x352, 0x357, 0x35d, 0x363, 0x372, 0x378, 0x37c, 0x38b, 0x390, 0x398, 0x3a2, 0x3ad, 0x3b5, 0x3c6, 0x3cf, 0x3df, 0x3ec, 0x3f6, 0x3fb, 0x408, 0x40c, 0x411, 0x413, 0x417, 0x419, 0x41d, 0x426, 0x42c, 0x430, 0x440, 0x44a, 0x44f, 0x452, 0x458, 0x45f, 0x464, 0x468, 0x46e, 0x473, 0x47c, 0x481, 0x487, 0x48e, 0x495, 0x49c, 0x4a0, 0x4a5, 0x4a8, 0x4ad, 0x4b9, 0x4bf, 0x4c4, 0x4cb, 0x4d3, 0x4d8, 0x4dc, 0x4ec, 0x4f3, 0x4f7, 0x4fb, 0x502, 0x504, 0x507, 0x50a, 0x50e, 0x512, 0x518, 0x521, 0x52d, 0x534, 0x53d, 0x545, 0x54c, 0x55a, 0x567, 0x574, 0x57d, 0x581, 0x58f, 0x597, 0x5a2, 0x5ab, 0x5b1, 0x5b9, 0x5c2, 0x5cc, 0x5cf, 0x5db, 0x5de, 0x5e3, 0x5e6, 0x5f0, 0x5f9, 0x605, 0x608, 0x60d, 0x610, 0x613, 0x616, 0x61d, 0x624, 0x628, 0x633, 0x636, 0x63c, 0x641, 0x645, 0x648, 0x64b, 0x64e, 0x653, 0x65d, 0x660, 0x664, 0x673, 0x67f, 0x683, 0x688, 0x68d, 0x691, 0x696, 0x69f, 0x6aa, 0x6b0, 0x6b8, 0x6bc, 0x6c0, 0x6c6, 0x6cc, 0x6d1, 0x6d4, 0x6e2, 0x6e9, 0x6ec, 0x6ef, 0x6f3, 0x6f9, 0x6fe, 0x708, 0x70d, 0x710, 0x713, 0x716, 0x719, 0x71d, 0x720, 0x730, 0x741, 0x746, 0x748, 0x74a} - -// idnaSparseValues: 1869 entries, 7476 bytes -var idnaSparseValues = [1869]valueRange{ -	// Block 0x0, offset 0x0 -	{value: 0x0000, lo: 0x07}, -	{value: 0xe105, lo: 0x80, hi: 0x96}, -	{value: 0x0018, lo: 0x97, hi: 0x97}, -	{value: 0xe105, lo: 0x98, hi: 0x9e}, -	{value: 0x001f, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbf}, -	// Block 0x1, offset 0x8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0xe01d, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0335, lo: 0x83, hi: 0x83}, -	{value: 0x034d, lo: 0x84, hi: 0x84}, -	{value: 0x0365, lo: 0x85, hi: 0x85}, -	{value: 0xe00d, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0xe00d, lo: 0x88, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x89}, -	{value: 0xe00d, lo: 0x8a, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe00d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0x8d}, -	{value: 0xe00d, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0xbf}, -	// Block 0x2, offset 0x19 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x0249, lo: 0xb0, hi: 0xb0}, -	{value: 0x037d, lo: 0xb1, hi: 0xb1}, -	{value: 0x0259, lo: 0xb2, hi: 0xb2}, -	{value: 0x0269, lo: 0xb3, hi: 0xb3}, -	{value: 0x034d, lo: 0xb4, hi: 0xb4}, -	{value: 0x0395, lo: 0xb5, hi: 0xb5}, -	{value: 0xe1bd, lo: 0xb6, hi: 0xb6}, -	{value: 0x0279, lo: 0xb7, hi: 0xb7}, -	{value: 0x0289, lo: 0xb8, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbf}, -	// Block 0x3, offset 0x25 -	{value: 0x0000, lo: 0x01}, -	{value: 0x3308, lo: 0x80, hi: 0xbf}, -	// Block 0x4, offset 0x27 -	{value: 0x0000, lo: 0x04}, -	{value: 0x03f5, lo: 0x80, hi: 0x8f}, -	{value: 0xe105, lo: 0x90, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x5, offset 0x2c -	{value: 0x0000, lo: 0x07}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x0545, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x0008, lo: 0x99, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x6, offset 0x34 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0401, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x88}, -	{value: 0x0018, lo: 0x89, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x3308, lo: 0x91, hi: 0xbd}, -	{value: 0x0818, lo: 0xbe, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x7, offset 0x3f -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0818, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x82}, -	{value: 0x0818, lo: 0x83, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x85}, -	{value: 0x0818, lo: 0x86, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0808, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x8, offset 0x4b -	{value: 0x0000, lo: 0x03}, -	{value: 0x0a08, lo: 0x80, hi: 0x87}, -	{value: 0x0c08, lo: 0x88, hi: 0x99}, -	{value: 0x0a08, lo: 0x9a, hi: 0xbf}, -	// Block 0x9, offset 0x4f -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3308, lo: 0x80, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8c}, -	{value: 0x0c08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0a08, lo: 0x8e, hi: 0x98}, -	{value: 0x0c08, lo: 0x99, hi: 0x9b}, -	{value: 0x0a08, lo: 0x9c, hi: 0xaa}, -	{value: 0x0c08, lo: 0xab, hi: 0xac}, -	{value: 0x0a08, lo: 0xad, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb1}, -	{value: 0x0a08, lo: 0xb2, hi: 0xb2}, -	{value: 0x0c08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0a08, lo: 0xb5, hi: 0xb7}, -	{value: 0x0c08, lo: 0xb8, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbf}, -	// Block 0xa, offset 0x5e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xb0}, -	{value: 0x0808, lo: 0xb1, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xb, offset 0x63 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0xc, offset 0x6b -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x99}, -	{value: 0x0808, lo: 0x9a, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa3}, -	{value: 0x0808, lo: 0xa4, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa7}, -	{value: 0x0808, lo: 0xa8, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0818, lo: 0xb0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd, offset 0x77 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0c08, lo: 0x80, hi: 0x80}, -	{value: 0x0a08, lo: 0x81, hi: 0x85}, -	{value: 0x0c08, lo: 0x86, hi: 0x87}, -	{value: 0x0a08, lo: 0x88, hi: 0x88}, -	{value: 0x0c08, lo: 0x89, hi: 0x89}, -	{value: 0x0a08, lo: 0x8a, hi: 0x93}, -	{value: 0x0c08, lo: 0x94, hi: 0x94}, -	{value: 0x0a08, lo: 0x95, hi: 0x95}, -	{value: 0x0808, lo: 0x96, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xe, offset 0x85 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0a08, lo: 0xa0, hi: 0xa9}, -	{value: 0x0c08, lo: 0xaa, hi: 0xac}, -	{value: 0x0808, lo: 0xad, hi: 0xad}, -	{value: 0x0c08, lo: 0xae, hi: 0xae}, -	{value: 0x0a08, lo: 0xaf, hi: 0xb0}, -	{value: 0x0c08, lo: 0xb1, hi: 0xb2}, -	{value: 0x0a08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0a08, lo: 0xb6, hi: 0xb8}, -	{value: 0x0c08, lo: 0xb9, hi: 0xb9}, -	{value: 0x0a08, lo: 0xba, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0xf, offset 0x93 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa1}, -	{value: 0x0840, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xbf}, -	// Block 0x10, offset 0x98 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x11, offset 0xa1 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x85}, -	{value: 0x3008, lo: 0x86, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x3008, lo: 0x8a, hi: 0x8c}, -	{value: 0x3b08, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x12, offset 0xb1 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xa9}, -	{value: 0x0008, lo: 0xaa, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x13, offset 0xbf -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x14, offset 0xcc -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0040, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x15, offset 0xd8 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x89}, -	{value: 0x3b08, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x3008, lo: 0x98, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x16, offset 0xe9 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb2}, -	{value: 0x08f1, lo: 0xb3, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb9}, -	{value: 0x3b08, lo: 0xba, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x0018, lo: 0xbf, hi: 0xbf}, -	// Block 0x17, offset 0xf3 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x8e}, -	{value: 0x0018, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0xbf}, -	// Block 0x18, offset 0xfa -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0961, lo: 0x9c, hi: 0x9c}, -	{value: 0x0999, lo: 0x9d, hi: 0x9d}, -	{value: 0x0008, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x19, offset 0x107 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8a}, -	{value: 0x0008, lo: 0x8b, hi: 0x8b}, -	{value: 0xe03d, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x1a, offset 0x118 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0xbf}, -	// Block 0x1b, offset 0x11f -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x1c, offset 0x12a -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x3008, lo: 0x96, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x3308, lo: 0x9e, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3008, lo: 0xa2, hi: 0xa4}, -	{value: 0x0008, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xbf}, -	// Block 0x1d, offset 0x139 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x8c}, -	{value: 0x3308, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x8e}, -	{value: 0x3008, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x3008, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0x1e, offset 0x147 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x86}, -	{value: 0x055d, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8c}, -	{value: 0x055d, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbb}, -	{value: 0xe105, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0x1f, offset 0x151 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0018, lo: 0x80, hi: 0xbf}, -	// Block 0x20, offset 0x153 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa0}, -	{value: 0x2018, lo: 0xa1, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x21, offset 0x158 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa7}, -	{value: 0x2018, lo: 0xa8, hi: 0xbf}, -	// Block 0x22, offset 0x15b -	{value: 0x0000, lo: 0x02}, -	{value: 0x2018, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0xbf}, -	// Block 0x23, offset 0x15e -	{value: 0x0000, lo: 0x01}, -	{value: 0x0008, lo: 0x80, hi: 0xbf}, -	// Block 0x24, offset 0x160 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x99}, -	{value: 0x0008, lo: 0x9a, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x25, offset 0x16c -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x26, offset 0x177 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x27, offset 0x17f -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0x0008, lo: 0x92, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbf}, -	// Block 0x28, offset 0x185 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x29, offset 0x18b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2a, offset 0x190 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x2b, offset 0x195 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x2c, offset 0x198 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xbf}, -	// Block 0x2d, offset 0x19c -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x2e, offset 0x1a2 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0x2f, offset 0x1a7 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8d}, -	{value: 0x0008, lo: 0x8e, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x3b08, lo: 0x94, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3b08, lo: 0xb4, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x30, offset 0x1b3 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x31, offset 0x1bd -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xb3}, -	{value: 0x3340, lo: 0xb4, hi: 0xb5}, -	{value: 0x3008, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbf}, -	// Block 0x32, offset 0x1c3 -	{value: 0x0000, lo: 0x10}, -	{value: 0x3008, lo: 0x80, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x3008, lo: 0x87, hi: 0x88}, -	{value: 0x3308, lo: 0x89, hi: 0x91}, -	{value: 0x3b08, lo: 0x92, hi: 0x92}, -	{value: 0x3308, lo: 0x93, hi: 0x93}, -	{value: 0x0018, lo: 0x94, hi: 0x96}, -	{value: 0x0008, lo: 0x97, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x33, offset 0x1d4 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0018, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x86}, -	{value: 0x0218, lo: 0x87, hi: 0x87}, -	{value: 0x0018, lo: 0x88, hi: 0x8a}, -	{value: 0x33c0, lo: 0x8b, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0208, lo: 0xa0, hi: 0xbf}, -	// Block 0x34, offset 0x1de -	{value: 0x0000, lo: 0x02}, -	{value: 0x0208, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x35, offset 0x1e1 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0208, lo: 0x87, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xa9}, -	{value: 0x0208, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x36, offset 0x1e9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0x37, offset 0x1ec -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb8}, -	{value: 0x3308, lo: 0xb9, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x38, offset 0x1f9 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0008, lo: 0x86, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0x39, offset 0x201 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x3a, offset 0x205 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0028, lo: 0x9a, hi: 0x9a}, -	{value: 0x0040, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0xbf}, -	// Block 0x3b, offset 0x20c -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x3308, lo: 0x97, hi: 0x98}, -	{value: 0x3008, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x3c, offset 0x214 -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x94}, -	{value: 0x3008, lo: 0x95, hi: 0x95}, -	{value: 0x3308, lo: 0x96, hi: 0x96}, -	{value: 0x3008, lo: 0x97, hi: 0x97}, -	{value: 0x3308, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3b08, lo: 0xa0, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xac}, -	{value: 0x3008, lo: 0xad, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0x3d, offset 0x224 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xbd}, -	{value: 0x3318, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x3e, offset 0x230 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0040, lo: 0x80, hi: 0xbf}, -	// Block 0x3f, offset 0x232 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x83}, -	{value: 0x3008, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x40, offset 0x23c -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x3808, lo: 0x84, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x41, offset 0x248 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3808, lo: 0xaa, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xbf}, -	// Block 0x42, offset 0x254 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa9}, -	{value: 0x3008, lo: 0xaa, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3808, lo: 0xb2, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbf}, -	// Block 0x43, offset 0x260 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x3008, lo: 0xa4, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbf}, -	// Block 0x44, offset 0x268 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x45, offset 0x26d -	{value: 0x0000, lo: 0x09}, -	{value: 0x0e29, lo: 0x80, hi: 0x80}, -	{value: 0x0e41, lo: 0x81, hi: 0x81}, -	{value: 0x0e59, lo: 0x82, hi: 0x82}, -	{value: 0x0e71, lo: 0x83, hi: 0x83}, -	{value: 0x0e89, lo: 0x84, hi: 0x85}, -	{value: 0x0ea1, lo: 0x86, hi: 0x86}, -	{value: 0x0eb9, lo: 0x87, hi: 0x87}, -	{value: 0x057d, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0x46, offset 0x277 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x92}, -	{value: 0x0018, lo: 0x93, hi: 0x93}, -	{value: 0x3308, lo: 0x94, hi: 0xa0}, -	{value: 0x3008, lo: 0xa1, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa8}, -	{value: 0x0008, lo: 0xa9, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x0008, lo: 0xae, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x47, offset 0x288 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0x48, offset 0x28c -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x87}, -	{value: 0xe045, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0xe045, lo: 0x98, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0xe045, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb7}, -	{value: 0xe045, lo: 0xb8, hi: 0xbf}, -	// Block 0x49, offset 0x297 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x3318, lo: 0x90, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbf}, -	// Block 0x4a, offset 0x29b -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x88}, -	{value: 0x24c1, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x4b, offset 0x2a4 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x24f1, lo: 0xac, hi: 0xac}, -	{value: 0x2529, lo: 0xad, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xae}, -	{value: 0x2579, lo: 0xaf, hi: 0xaf}, -	{value: 0x25b1, lo: 0xb0, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0x4c, offset 0x2ac -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x9f}, -	{value: 0x0080, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xad}, -	{value: 0x0080, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x4d, offset 0x2b2 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xa8}, -	{value: 0x09c5, lo: 0xa9, hi: 0xa9}, -	{value: 0x09e5, lo: 0xaa, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xbf}, -	// Block 0x4e, offset 0x2b7 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x4f, offset 0x2ba -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xbf}, -	// Block 0x50, offset 0x2bd -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x28c1, lo: 0x8c, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0xbf}, -	// Block 0x51, offset 0x2c1 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0e66, lo: 0xb4, hi: 0xb4}, -	{value: 0x292a, lo: 0xb5, hi: 0xb5}, -	{value: 0x0e86, lo: 0xb6, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x52, offset 0x2c7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x9b}, -	{value: 0x2941, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0xbf}, -	// Block 0x53, offset 0x2cb -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0x54, offset 0x2cf -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0018, lo: 0x98, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbc}, -	{value: 0x0018, lo: 0xbd, hi: 0xbf}, -	// Block 0x55, offset 0x2d5 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0xab}, -	{value: 0x0018, lo: 0xac, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x56, offset 0x2dc -	{value: 0x0000, lo: 0x05}, -	{value: 0xe185, lo: 0x80, hi: 0x8f}, -	{value: 0x03f5, lo: 0x90, hi: 0x9f}, -	{value: 0x0ea5, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x57, offset 0x2e2 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xa6}, -	{value: 0x0008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xac}, -	{value: 0x0008, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x58, offset 0x2ea -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xae}, -	{value: 0xe075, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0x59, offset 0x2f1 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x0008, lo: 0xb8, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x5a, offset 0x2fc -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xbf}, -	// Block 0x5b, offset 0x306 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0008, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x5c, offset 0x30a -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0xbf}, -	// Block 0x5d, offset 0x30d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9e}, -	{value: 0x0edd, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0x5e, offset 0x313 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xb2}, -	{value: 0x0efd, lo: 0xb3, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0x5f, offset 0x317 -	{value: 0x0020, lo: 0x01}, -	{value: 0x0f1d, lo: 0x80, hi: 0xbf}, -	// Block 0x60, offset 0x319 -	{value: 0x0020, lo: 0x02}, -	{value: 0x171d, lo: 0x80, hi: 0x8f}, -	{value: 0x18fd, lo: 0x90, hi: 0xbf}, -	// Block 0x61, offset 0x31c -	{value: 0x0020, lo: 0x01}, -	{value: 0x1efd, lo: 0x80, hi: 0xbf}, -	// Block 0x62, offset 0x31e -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0xbf}, -	// Block 0x63, offset 0x321 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x98}, -	{value: 0x3308, lo: 0x99, hi: 0x9a}, -	{value: 0x29e2, lo: 0x9b, hi: 0x9b}, -	{value: 0x2a0a, lo: 0x9c, hi: 0x9c}, -	{value: 0x0008, lo: 0x9d, hi: 0x9e}, -	{value: 0x2a31, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0008, lo: 0xa1, hi: 0xbf}, -	// Block 0x64, offset 0x32b -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xbe}, -	{value: 0x2a69, lo: 0xbf, hi: 0xbf}, -	// Block 0x65, offset 0x32e -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0040, lo: 0x80, hi: 0x84}, -	{value: 0x0008, lo: 0x85, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xb0}, -	{value: 0x2a1d, lo: 0xb1, hi: 0xb1}, -	{value: 0x2a3d, lo: 0xb2, hi: 0xb2}, -	{value: 0x2a5d, lo: 0xb3, hi: 0xb3}, -	{value: 0x2a7d, lo: 0xb4, hi: 0xb4}, -	{value: 0x2a5d, lo: 0xb5, hi: 0xb5}, -	{value: 0x2a9d, lo: 0xb6, hi: 0xb6}, -	{value: 0x2abd, lo: 0xb7, hi: 0xb7}, -	{value: 0x2add, lo: 0xb8, hi: 0xb9}, -	{value: 0x2afd, lo: 0xba, hi: 0xbb}, -	{value: 0x2b1d, lo: 0xbc, hi: 0xbd}, -	{value: 0x2afd, lo: 0xbe, hi: 0xbf}, -	// Block 0x66, offset 0x33d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x67, offset 0x341 -	{value: 0x0030, lo: 0x04}, -	{value: 0x2aa2, lo: 0x80, hi: 0x9d}, -	{value: 0x305a, lo: 0x9e, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x30a2, lo: 0xa0, hi: 0xbf}, -	// Block 0x68, offset 0x346 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x69, offset 0x349 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0040, lo: 0x8d, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0x6a, offset 0x34d -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0x6b, offset 0x352 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xbf}, -	// Block 0x6c, offset 0x357 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb1}, -	{value: 0x0018, lo: 0xb2, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x6d, offset 0x35d -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0xb6}, -	{value: 0x0008, lo: 0xb7, hi: 0xb7}, -	{value: 0x2009, lo: 0xb8, hi: 0xb8}, -	{value: 0x6e89, lo: 0xb9, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xbf}, -	// Block 0x6e, offset 0x363 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x3308, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x3308, lo: 0x8b, hi: 0x8b}, -	{value: 0x0008, lo: 0x8c, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa6}, -	{value: 0x3008, lo: 0xa7, hi: 0xa7}, -	{value: 0x0018, lo: 0xa8, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x6f, offset 0x372 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0208, lo: 0x80, hi: 0xb1}, -	{value: 0x0108, lo: 0xb2, hi: 0xb2}, -	{value: 0x0008, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0x70, offset 0x378 -	{value: 0x0000, lo: 0x03}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xbf}, -	// Block 0x71, offset 0x37c -	{value: 0x0000, lo: 0x0e}, -	{value: 0x3008, lo: 0x80, hi: 0x83}, -	{value: 0x3b08, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8d}, -	{value: 0x0018, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xba}, -	{value: 0x0008, lo: 0xbb, hi: 0xbb}, -	{value: 0x0018, lo: 0xbc, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x72, offset 0x38b -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x73, offset 0x390 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x3308, lo: 0x87, hi: 0x91}, -	{value: 0x3008, lo: 0x92, hi: 0x92}, -	{value: 0x3808, lo: 0x93, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0x74, offset 0x398 -	{value: 0x0000, lo: 0x09}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x3008, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb9}, -	{value: 0x3008, lo: 0xba, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbf}, -	// Block 0x75, offset 0x3a2 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0x76, offset 0x3ad -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xa8}, -	{value: 0x3308, lo: 0xa9, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb0}, -	{value: 0x3308, lo: 0xb1, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x77, offset 0x3b5 -	{value: 0x0000, lo: 0x10}, -	{value: 0x0008, lo: 0x80, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8c}, -	{value: 0x3008, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xb9}, -	{value: 0x0008, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbc}, -	{value: 0x3008, lo: 0xbd, hi: 0xbd}, -	{value: 0x0008, lo: 0xbe, hi: 0xbf}, -	// Block 0x78, offset 0x3c6 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb0}, -	{value: 0x0008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb4}, -	{value: 0x0008, lo: 0xb5, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb8}, -	{value: 0x0008, lo: 0xb9, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbf}, -	// Block 0x79, offset 0x3cf -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x9a}, -	{value: 0x0008, lo: 0x9b, hi: 0x9d}, -	{value: 0x0018, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xaa}, -	{value: 0x3008, lo: 0xab, hi: 0xab}, -	{value: 0x3308, lo: 0xac, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb5}, -	{value: 0x3b08, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x7a, offset 0x3df -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x88}, -	{value: 0x0008, lo: 0x89, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x90}, -	{value: 0x0008, lo: 0x91, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x7b, offset 0x3ec -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x4465, lo: 0x9c, hi: 0x9c}, -	{value: 0x447d, lo: 0x9d, hi: 0x9d}, -	{value: 0x2971, lo: 0x9e, hi: 0x9e}, -	{value: 0xe06d, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa5}, -	{value: 0x0040, lo: 0xa6, hi: 0xaf}, -	{value: 0x4495, lo: 0xb0, hi: 0xbf}, -	// Block 0x7c, offset 0x3f6 -	{value: 0x0000, lo: 0x04}, -	{value: 0x44b5, lo: 0x80, hi: 0x8f}, -	{value: 0x44d5, lo: 0x90, hi: 0x9f}, -	{value: 0x44f5, lo: 0xa0, hi: 0xaf}, -	{value: 0x44d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x7d, offset 0x3fb -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0xa2}, -	{value: 0x3008, lo: 0xa3, hi: 0xa4}, -	{value: 0x3308, lo: 0xa5, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa7}, -	{value: 0x3308, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xaa}, -	{value: 0x0018, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3b08, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0x7e, offset 0x408 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0x7f, offset 0x40c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x80, offset 0x411 -	{value: 0x0020, lo: 0x01}, -	{value: 0x4515, lo: 0x80, hi: 0xbf}, -	// Block 0x81, offset 0x413 -	{value: 0x0020, lo: 0x03}, -	{value: 0x4d15, lo: 0x80, hi: 0x94}, -	{value: 0x4ad5, lo: 0x95, hi: 0x95}, -	{value: 0x4fb5, lo: 0x96, hi: 0xbf}, -	// Block 0x82, offset 0x417 -	{value: 0x0020, lo: 0x01}, -	{value: 0x54f5, lo: 0x80, hi: 0xbf}, -	// Block 0x83, offset 0x419 -	{value: 0x0020, lo: 0x03}, -	{value: 0x5cf5, lo: 0x80, hi: 0x84}, -	{value: 0x5655, lo: 0x85, hi: 0x85}, -	{value: 0x5d95, lo: 0x86, hi: 0xbf}, -	// Block 0x84, offset 0x41d -	{value: 0x0020, lo: 0x08}, -	{value: 0x6b55, lo: 0x80, hi: 0x8f}, -	{value: 0x6d15, lo: 0x90, hi: 0x90}, -	{value: 0x6d55, lo: 0x91, hi: 0xab}, -	{value: 0x6ea1, lo: 0xac, hi: 0xac}, -	{value: 0x70b5, lo: 0xad, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x70d5, lo: 0xb0, hi: 0xbf}, -	// Block 0x85, offset 0x426 -	{value: 0x0020, lo: 0x05}, -	{value: 0x72d5, lo: 0x80, hi: 0xad}, -	{value: 0x6535, lo: 0xae, hi: 0xae}, -	{value: 0x7895, lo: 0xaf, hi: 0xb5}, -	{value: 0x6f55, lo: 0xb6, hi: 0xb6}, -	{value: 0x7975, lo: 0xb7, hi: 0xbf}, -	// Block 0x86, offset 0x42c -	{value: 0x0028, lo: 0x03}, -	{value: 0x7c21, lo: 0x80, hi: 0x82}, -	{value: 0x7be1, lo: 0x83, hi: 0x83}, -	{value: 0x7c99, lo: 0x84, hi: 0xbf}, -	// Block 0x87, offset 0x430 -	{value: 0x0038, lo: 0x0f}, -	{value: 0x9db1, lo: 0x80, hi: 0x83}, -	{value: 0x9e59, lo: 0x84, hi: 0x85}, -	{value: 0x9e91, lo: 0x86, hi: 0x87}, -	{value: 0x9ec9, lo: 0x88, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x91}, -	{value: 0xa089, lo: 0x92, hi: 0x97}, -	{value: 0xa1a1, lo: 0x98, hi: 0x9c}, -	{value: 0xa281, lo: 0x9d, hi: 0xb3}, -	{value: 0x9d41, lo: 0xb4, hi: 0xb4}, -	{value: 0x9db1, lo: 0xb5, hi: 0xb5}, -	{value: 0xa789, lo: 0xb6, hi: 0xbb}, -	{value: 0xa869, lo: 0xbc, hi: 0xbc}, -	{value: 0xa7f9, lo: 0xbd, hi: 0xbd}, -	{value: 0xa8d9, lo: 0xbe, hi: 0xbf}, -	// Block 0x88, offset 0x440 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8c}, -	{value: 0x0008, lo: 0x8d, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbb}, -	{value: 0x0008, lo: 0xbc, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0x89, offset 0x44a -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0x8a, offset 0x44f -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x8b, offset 0x452 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x82}, -	{value: 0x0040, lo: 0x83, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0x8c, offset 0x458 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x8e}, -	{value: 0x0040, lo: 0x8f, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0x8d, offset 0x45f -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x0040, lo: 0xbe, hi: 0xbf}, -	// Block 0x8e, offset 0x464 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9c}, -	{value: 0x0040, lo: 0x9d, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x8f, offset 0x468 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x90}, -	{value: 0x0040, lo: 0x91, hi: 0x9f}, -	{value: 0x3308, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x90, offset 0x46e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x91, offset 0x473 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x81}, -	{value: 0x0008, lo: 0x82, hi: 0x89}, -	{value: 0x0018, lo: 0x8a, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbf}, -	// Block 0x92, offset 0x47c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0x93, offset 0x481 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0xbf}, -	// Block 0x94, offset 0x487 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x97}, -	{value: 0x8ad5, lo: 0x98, hi: 0x9f}, -	{value: 0x8aed, lo: 0xa0, hi: 0xa7}, -	{value: 0x0008, lo: 0xa8, hi: 0xbf}, -	// Block 0x95, offset 0x48e -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x8aed, lo: 0xb0, hi: 0xb7}, -	{value: 0x8ad5, lo: 0xb8, hi: 0xbf}, -	// Block 0x96, offset 0x495 -	{value: 0x0000, lo: 0x06}, -	{value: 0xe145, lo: 0x80, hi: 0x87}, -	{value: 0xe1c5, lo: 0x88, hi: 0x8f}, -	{value: 0xe145, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0xbb}, -	{value: 0x0040, lo: 0xbc, hi: 0xbf}, -	// Block 0x97, offset 0x49c -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0x98, offset 0x4a0 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xae}, -	{value: 0x0018, lo: 0xaf, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x99, offset 0x4a5 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0x9a, offset 0x4a8 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xbf}, -	// Block 0x9b, offset 0x4ad -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0808, lo: 0x80, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x87}, -	{value: 0x0808, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0808, lo: 0x8a, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb6}, -	{value: 0x0808, lo: 0xb7, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbb}, -	{value: 0x0808, lo: 0xbc, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbe}, -	{value: 0x0808, lo: 0xbf, hi: 0xbf}, -	// Block 0x9c, offset 0x4b9 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x96}, -	{value: 0x0818, lo: 0x97, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb6}, -	{value: 0x0818, lo: 0xb7, hi: 0xbf}, -	// Block 0x9d, offset 0x4bf -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xa6}, -	{value: 0x0818, lo: 0xa7, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0x9e, offset 0x4c4 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb3}, -	{value: 0x0808, lo: 0xb4, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xba}, -	{value: 0x0818, lo: 0xbb, hi: 0xbf}, -	// Block 0x9f, offset 0x4cb -	{value: 0x0000, lo: 0x07}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0818, lo: 0x96, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbe}, -	{value: 0x0818, lo: 0xbf, hi: 0xbf}, -	// Block 0xa0, offset 0x4d3 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0808, lo: 0x80, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbb}, -	{value: 0x0818, lo: 0xbc, hi: 0xbd}, -	{value: 0x0808, lo: 0xbe, hi: 0xbf}, -	// Block 0xa1, offset 0x4d8 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0818, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x0818, lo: 0x92, hi: 0xbf}, -	// Block 0xa2, offset 0x4dc -	{value: 0x0000, lo: 0x0f}, -	{value: 0x0808, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x84}, -	{value: 0x3308, lo: 0x85, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x8b}, -	{value: 0x3308, lo: 0x8c, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x94}, -	{value: 0x0808, lo: 0x95, hi: 0x97}, -	{value: 0x0040, lo: 0x98, hi: 0x98}, -	{value: 0x0808, lo: 0x99, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xba}, -	{value: 0x0040, lo: 0xbb, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xa3, offset 0x4ec -	{value: 0x0000, lo: 0x06}, -	{value: 0x0818, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0818, lo: 0x90, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xbc}, -	{value: 0x0818, lo: 0xbd, hi: 0xbf}, -	// Block 0xa4, offset 0x4f3 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0x9c}, -	{value: 0x0818, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xa5, offset 0x4f7 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb8}, -	{value: 0x0018, lo: 0xb9, hi: 0xbf}, -	// Block 0xa6, offset 0x4fb -	{value: 0x0000, lo: 0x06}, -	{value: 0x0808, lo: 0x80, hi: 0x95}, -	{value: 0x0040, lo: 0x96, hi: 0x97}, -	{value: 0x0818, lo: 0x98, hi: 0x9f}, -	{value: 0x0808, lo: 0xa0, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb7}, -	{value: 0x0818, lo: 0xb8, hi: 0xbf}, -	// Block 0xa7, offset 0x502 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0808, lo: 0x80, hi: 0xbf}, -	// Block 0xa8, offset 0x504 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0808, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0xbf}, -	// Block 0xa9, offset 0x507 -	{value: 0x0000, lo: 0x02}, -	{value: 0x03dd, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xaa, offset 0x50a -	{value: 0x0000, lo: 0x03}, -	{value: 0x0808, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xb9}, -	{value: 0x0818, lo: 0xba, hi: 0xbf}, -	// Block 0xab, offset 0x50e -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0818, lo: 0xa0, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xac, offset 0x512 -	{value: 0x0000, lo: 0x05}, -	{value: 0x3008, lo: 0x80, hi: 0x80}, -	{value: 0x3308, lo: 0x81, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xad, offset 0x518 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x85}, -	{value: 0x3b08, lo: 0x86, hi: 0x86}, -	{value: 0x0018, lo: 0x87, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x91}, -	{value: 0x0018, lo: 0x92, hi: 0xa5}, -	{value: 0x0008, lo: 0xa6, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xae, offset 0x521 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb6}, -	{value: 0x3008, lo: 0xb7, hi: 0xb8}, -	{value: 0x3b08, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x0018, lo: 0xbb, hi: 0xbc}, -	{value: 0x0340, lo: 0xbd, hi: 0xbd}, -	{value: 0x0018, lo: 0xbe, hi: 0xbf}, -	// Block 0xaf, offset 0x52d -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb0, offset 0x534 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xb2}, -	{value: 0x3b08, lo: 0xb3, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xbf}, -	// Block 0xb1, offset 0x53d -	{value: 0x0000, lo: 0x07}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb3}, -	{value: 0x0018, lo: 0xb4, hi: 0xb5}, -	{value: 0x0008, lo: 0xb6, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xb2, offset 0x545 -	{value: 0x0000, lo: 0x06}, -	{value: 0x3308, lo: 0x80, hi: 0x81}, -	{value: 0x3008, lo: 0x82, hi: 0x82}, -	{value: 0x0008, lo: 0x83, hi: 0xb2}, -	{value: 0x3008, lo: 0xb3, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xbe}, -	{value: 0x3008, lo: 0xbf, hi: 0xbf}, -	// Block 0xb3, offset 0x54c -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3808, lo: 0x80, hi: 0x80}, -	{value: 0x0008, lo: 0x81, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x89}, -	{value: 0x3308, lo: 0x8a, hi: 0x8c}, -	{value: 0x0018, lo: 0x8d, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0008, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x0018, lo: 0xa1, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xb4, offset 0x55a -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xae}, -	{value: 0x3308, lo: 0xaf, hi: 0xb1}, -	{value: 0x3008, lo: 0xb2, hi: 0xb3}, -	{value: 0x3308, lo: 0xb4, hi: 0xb4}, -	{value: 0x3808, lo: 0xb5, hi: 0xb5}, -	{value: 0x3308, lo: 0xb6, hi: 0xb7}, -	{value: 0x0018, lo: 0xb8, hi: 0xbd}, -	{value: 0x3308, lo: 0xbe, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xb5, offset 0x567 -	{value: 0x0000, lo: 0x0c}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x0008, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0x8d}, -	{value: 0x0040, lo: 0x8e, hi: 0x8e}, -	{value: 0x0008, lo: 0x8f, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9e}, -	{value: 0x0008, lo: 0x9f, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbf}, -	// Block 0xb6, offset 0x574 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x3308, lo: 0x9f, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa9}, -	{value: 0x3b08, lo: 0xaa, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0040, lo: 0xba, hi: 0xbf}, -	// Block 0xb7, offset 0x57d -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x3008, lo: 0xb5, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbf}, -	// Block 0xb8, offset 0x581 -	{value: 0x0000, lo: 0x0d}, -	{value: 0x3008, lo: 0x80, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x84}, -	{value: 0x3008, lo: 0x85, hi: 0x85}, -	{value: 0x3308, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x8a}, -	{value: 0x0018, lo: 0x8b, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0x9b}, -	{value: 0x0040, lo: 0x9c, hi: 0x9c}, -	{value: 0x0018, lo: 0x9d, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xb9, offset 0x58f -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xb8}, -	{value: 0x3008, lo: 0xb9, hi: 0xb9}, -	{value: 0x3308, lo: 0xba, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbe}, -	{value: 0x3308, lo: 0xbf, hi: 0xbf}, -	// Block 0xba, offset 0x597 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x3008, lo: 0x81, hi: 0x81}, -	{value: 0x3b08, lo: 0x82, hi: 0x82}, -	{value: 0x3308, lo: 0x83, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x85}, -	{value: 0x0018, lo: 0x86, hi: 0x86}, -	{value: 0x0008, lo: 0x87, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xbb, offset 0x5a2 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xb7}, -	{value: 0x3008, lo: 0xb8, hi: 0xbb}, -	{value: 0x3308, lo: 0xbc, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbc, offset 0x5ab -	{value: 0x0000, lo: 0x05}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x97}, -	{value: 0x0008, lo: 0x98, hi: 0x9b}, -	{value: 0x3308, lo: 0x9c, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0xbf}, -	// Block 0xbd, offset 0x5b1 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3008, lo: 0xb0, hi: 0xb2}, -	{value: 0x3308, lo: 0xb3, hi: 0xba}, -	{value: 0x3008, lo: 0xbb, hi: 0xbc}, -	{value: 0x3308, lo: 0xbd, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xbe, offset 0x5b9 -	{value: 0x0000, lo: 0x08}, -	{value: 0x3308, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x83}, -	{value: 0x0008, lo: 0x84, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xbf, offset 0x5c2 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x3308, lo: 0xab, hi: 0xab}, -	{value: 0x3008, lo: 0xac, hi: 0xac}, -	{value: 0x3308, lo: 0xad, hi: 0xad}, -	{value: 0x3008, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb5}, -	{value: 0x3808, lo: 0xb6, hi: 0xb6}, -	{value: 0x3308, lo: 0xb7, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbf}, -	// Block 0xc0, offset 0x5cc -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x89}, -	{value: 0x0040, lo: 0x8a, hi: 0xbf}, -	// Block 0xc1, offset 0x5cf -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9f}, -	{value: 0x3008, lo: 0xa0, hi: 0xa1}, -	{value: 0x3308, lo: 0xa2, hi: 0xa5}, -	{value: 0x3008, lo: 0xa6, hi: 0xa6}, -	{value: 0x3308, lo: 0xa7, hi: 0xaa}, -	{value: 0x3b08, lo: 0xab, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xb9}, -	{value: 0x0018, lo: 0xba, hi: 0xbf}, -	// Block 0xc2, offset 0x5db -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x049d, lo: 0xa0, hi: 0xbf}, -	// Block 0xc3, offset 0x5de -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbe}, -	{value: 0x0008, lo: 0xbf, hi: 0xbf}, -	// Block 0xc4, offset 0x5e3 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb8}, -	{value: 0x0040, lo: 0xb9, hi: 0xbf}, -	// Block 0xc5, offset 0x5e6 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x89}, -	{value: 0x0008, lo: 0x8a, hi: 0xae}, -	{value: 0x3008, lo: 0xaf, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xb7}, -	{value: 0x3308, lo: 0xb8, hi: 0xbd}, -	{value: 0x3008, lo: 0xbe, hi: 0xbe}, -	{value: 0x3b08, lo: 0xbf, hi: 0xbf}, -	// Block 0xc6, offset 0x5f0 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0008, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0018, lo: 0x9a, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0008, lo: 0xb2, hi: 0xbf}, -	// Block 0xc7, offset 0x5f9 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x91}, -	{value: 0x3308, lo: 0x92, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xa8}, -	{value: 0x3008, lo: 0xa9, hi: 0xa9}, -	{value: 0x3308, lo: 0xaa, hi: 0xb0}, -	{value: 0x3008, lo: 0xb1, hi: 0xb1}, -	{value: 0x3308, lo: 0xb2, hi: 0xb3}, -	{value: 0x3008, lo: 0xb4, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xc8, offset 0x605 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0xbf}, -	// Block 0xc9, offset 0x608 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xca, offset 0x60d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0040, lo: 0x84, hi: 0xbf}, -	// Block 0xcb, offset 0x610 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xbf}, -	// Block 0xcc, offset 0x613 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0xbf}, -	// Block 0xcd, offset 0x616 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0008, lo: 0x80, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa9}, -	{value: 0x0040, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xce, offset 0x61d -	{value: 0x0000, lo: 0x06}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb4}, -	{value: 0x0018, lo: 0xb5, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xcf, offset 0x624 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0xaf}, -	{value: 0x3308, lo: 0xb0, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xbf}, -	// Block 0xd0, offset 0x628 -	{value: 0x0000, lo: 0x0a}, -	{value: 0x0008, lo: 0x80, hi: 0x83}, -	{value: 0x0018, lo: 0x84, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9a}, -	{value: 0x0018, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x0008, lo: 0xa3, hi: 0xb7}, -	{value: 0x0040, lo: 0xb8, hi: 0xbc}, -	{value: 0x0008, lo: 0xbd, hi: 0xbf}, -	// Block 0xd1, offset 0x633 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0xbf}, -	// Block 0xd2, offset 0x636 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0008, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x90}, -	{value: 0x3008, lo: 0x91, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xd3, offset 0x63c -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x8e}, -	{value: 0x3308, lo: 0x8f, hi: 0x92}, -	{value: 0x0008, lo: 0x93, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xd4, offset 0x641 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xa0}, -	{value: 0x0040, lo: 0xa1, hi: 0xbf}, -	// Block 0xd5, offset 0x645 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xd6, offset 0x648 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb2}, -	{value: 0x0040, lo: 0xb3, hi: 0xbf}, -	// Block 0xd7, offset 0x64b -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0xbf}, -	// Block 0xd8, offset 0x64e -	{value: 0x0000, lo: 0x04}, -	{value: 0x0008, lo: 0x80, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xaf}, -	{value: 0x0008, lo: 0xb0, hi: 0xbc}, -	{value: 0x0040, lo: 0xbd, hi: 0xbf}, -	// Block 0xd9, offset 0x653 -	{value: 0x0000, lo: 0x09}, -	{value: 0x0008, lo: 0x80, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0x0008, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9b}, -	{value: 0x0018, lo: 0x9c, hi: 0x9c}, -	{value: 0x3308, lo: 0x9d, hi: 0x9e}, -	{value: 0x0018, lo: 0x9f, hi: 0x9f}, -	{value: 0x03c0, lo: 0xa0, hi: 0xa3}, -	{value: 0x0040, lo: 0xa4, hi: 0xbf}, -	// Block 0xda, offset 0x65d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xdb, offset 0x660 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xa6}, -	{value: 0x0040, lo: 0xa7, hi: 0xa8}, -	{value: 0x0018, lo: 0xa9, hi: 0xbf}, -	// Block 0xdc, offset 0x664 -	{value: 0x0000, lo: 0x0e}, -	{value: 0x0018, lo: 0x80, hi: 0x9d}, -	{value: 0xb5b9, lo: 0x9e, hi: 0x9e}, -	{value: 0xb601, lo: 0x9f, hi: 0x9f}, -	{value: 0xb649, lo: 0xa0, hi: 0xa0}, -	{value: 0xb6b1, lo: 0xa1, hi: 0xa1}, -	{value: 0xb719, lo: 0xa2, hi: 0xa2}, -	{value: 0xb781, lo: 0xa3, hi: 0xa3}, -	{value: 0xb7e9, lo: 0xa4, hi: 0xa4}, -	{value: 0x3018, lo: 0xa5, hi: 0xa6}, -	{value: 0x3318, lo: 0xa7, hi: 0xa9}, -	{value: 0x0018, lo: 0xaa, hi: 0xac}, -	{value: 0x3018, lo: 0xad, hi: 0xb2}, -	{value: 0x0340, lo: 0xb3, hi: 0xba}, -	{value: 0x3318, lo: 0xbb, hi: 0xbf}, -	// Block 0xdd, offset 0x673 -	{value: 0x0000, lo: 0x0b}, -	{value: 0x3318, lo: 0x80, hi: 0x82}, -	{value: 0x0018, lo: 0x83, hi: 0x84}, -	{value: 0x3318, lo: 0x85, hi: 0x8b}, -	{value: 0x0018, lo: 0x8c, hi: 0xa9}, -	{value: 0x3318, lo: 0xaa, hi: 0xad}, -	{value: 0x0018, lo: 0xae, hi: 0xba}, -	{value: 0xb851, lo: 0xbb, hi: 0xbb}, -	{value: 0xb899, lo: 0xbc, hi: 0xbc}, -	{value: 0xb8e1, lo: 0xbd, hi: 0xbd}, -	{value: 0xb949, lo: 0xbe, hi: 0xbe}, -	{value: 0xb9b1, lo: 0xbf, hi: 0xbf}, -	// Block 0xde, offset 0x67f -	{value: 0x0000, lo: 0x03}, -	{value: 0xba19, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0xa8}, -	{value: 0x0040, lo: 0xa9, hi: 0xbf}, -	// Block 0xdf, offset 0x683 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x81}, -	{value: 0x3318, lo: 0x82, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x85}, -	{value: 0x0040, lo: 0x86, hi: 0xbf}, -	// Block 0xe0, offset 0x688 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xe1, offset 0x68d -	{value: 0x0000, lo: 0x03}, -	{value: 0x3308, lo: 0x80, hi: 0xb6}, -	{value: 0x0018, lo: 0xb7, hi: 0xba}, -	{value: 0x3308, lo: 0xbb, hi: 0xbf}, -	// Block 0xe2, offset 0x691 -	{value: 0x0000, lo: 0x04}, -	{value: 0x3308, lo: 0x80, hi: 0xac}, -	{value: 0x0018, lo: 0xad, hi: 0xb4}, -	{value: 0x3308, lo: 0xb5, hi: 0xb5}, -	{value: 0x0018, lo: 0xb6, hi: 0xbf}, -	// Block 0xe3, offset 0x696 -	{value: 0x0000, lo: 0x08}, -	{value: 0x0018, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x84}, -	{value: 0x0018, lo: 0x85, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xa0}, -	{value: 0x3308, lo: 0xa1, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -	// Block 0xe4, offset 0x69f -	{value: 0x0000, lo: 0x0a}, -	{value: 0x3308, lo: 0x80, hi: 0x86}, -	{value: 0x0040, lo: 0x87, hi: 0x87}, -	{value: 0x3308, lo: 0x88, hi: 0x98}, -	{value: 0x0040, lo: 0x99, hi: 0x9a}, -	{value: 0x3308, lo: 0x9b, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xa2}, -	{value: 0x3308, lo: 0xa3, hi: 0xa4}, -	{value: 0x0040, lo: 0xa5, hi: 0xa5}, -	{value: 0x3308, lo: 0xa6, hi: 0xaa}, -	{value: 0x0040, lo: 0xab, hi: 0xbf}, -	// Block 0xe5, offset 0x6aa -	{value: 0x0000, lo: 0x05}, -	{value: 0x0808, lo: 0x80, hi: 0x84}, -	{value: 0x0040, lo: 0x85, hi: 0x86}, -	{value: 0x0818, lo: 0x87, hi: 0x8f}, -	{value: 0x3308, lo: 0x90, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xe6, offset 0x6b0 -	{value: 0x0000, lo: 0x07}, -	{value: 0x0a08, lo: 0x80, hi: 0x83}, -	{value: 0x3308, lo: 0x84, hi: 0x8a}, -	{value: 0x0040, lo: 0x8b, hi: 0x8f}, -	{value: 0x0808, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9d}, -	{value: 0x0818, lo: 0x9e, hi: 0x9f}, -	{value: 0x0040, lo: 0xa0, hi: 0xbf}, -	// Block 0xe7, offset 0x6b8 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0040, lo: 0x80, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb1}, -	{value: 0x0040, lo: 0xb2, hi: 0xbf}, -	// Block 0xe8, offset 0x6bc -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0xab}, -	{value: 0x0040, lo: 0xac, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xbf}, -	// Block 0xe9, offset 0x6c0 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x93}, -	{value: 0x0040, lo: 0x94, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xae}, -	{value: 0x0040, lo: 0xaf, hi: 0xb0}, -	{value: 0x0018, lo: 0xb1, hi: 0xbf}, -	// Block 0xea, offset 0x6c6 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0018, lo: 0x81, hi: 0x8f}, -	{value: 0x0040, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xb5}, -	{value: 0x0040, lo: 0xb6, hi: 0xbf}, -	// Block 0xeb, offset 0x6cc -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8f}, -	{value: 0xc1c1, lo: 0x90, hi: 0x90}, -	{value: 0x0018, lo: 0x91, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xbf}, -	// Block 0xec, offset 0x6d1 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0040, lo: 0x80, hi: 0xa5}, -	{value: 0x0018, lo: 0xa6, hi: 0xbf}, -	// Block 0xed, offset 0x6d4 -	{value: 0x0000, lo: 0x0d}, -	{value: 0xc7e9, lo: 0x80, hi: 0x80}, -	{value: 0xc839, lo: 0x81, hi: 0x81}, -	{value: 0xc889, lo: 0x82, hi: 0x82}, -	{value: 0xc8d9, lo: 0x83, hi: 0x83}, -	{value: 0xc929, lo: 0x84, hi: 0x84}, -	{value: 0xc979, lo: 0x85, hi: 0x85}, -	{value: 0xc9c9, lo: 0x86, hi: 0x86}, -	{value: 0xca19, lo: 0x87, hi: 0x87}, -	{value: 0xca69, lo: 0x88, hi: 0x88}, -	{value: 0x0040, lo: 0x89, hi: 0x8f}, -	{value: 0xcab9, lo: 0x90, hi: 0x90}, -	{value: 0xcad9, lo: 0x91, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0xbf}, -	// Block 0xee, offset 0x6e2 -	{value: 0x0000, lo: 0x06}, -	{value: 0x0018, lo: 0x80, hi: 0x92}, -	{value: 0x0040, lo: 0x93, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xac}, -	{value: 0x0040, lo: 0xad, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb6}, -	{value: 0x0040, lo: 0xb7, hi: 0xbf}, -	// Block 0xef, offset 0x6e9 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0xb3}, -	{value: 0x0040, lo: 0xb4, hi: 0xbf}, -	// Block 0xf0, offset 0x6ec -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x94}, -	{value: 0x0040, lo: 0x95, hi: 0xbf}, -	// Block 0xf1, offset 0x6ef -	{value: 0x0000, lo: 0x03}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xbf}, -	// Block 0xf2, offset 0x6f3 -	{value: 0x0000, lo: 0x05}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x99}, -	{value: 0x0040, lo: 0x9a, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xbf}, -	// Block 0xf3, offset 0x6f9 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x87}, -	{value: 0x0040, lo: 0x88, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0xad}, -	{value: 0x0040, lo: 0xae, hi: 0xbf}, -	// Block 0xf4, offset 0x6fe -	{value: 0x0000, lo: 0x09}, -	{value: 0x0040, lo: 0x80, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0x9f}, -	{value: 0x0018, lo: 0xa0, hi: 0xa7}, -	{value: 0x0040, lo: 0xa8, hi: 0xaf}, -	{value: 0x0018, lo: 0xb0, hi: 0xb0}, -	{value: 0x0040, lo: 0xb1, hi: 0xb2}, -	{value: 0x0018, lo: 0xb3, hi: 0xbe}, -	{value: 0x0040, lo: 0xbf, hi: 0xbf}, -	// Block 0xf5, offset 0x708 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0018, lo: 0x80, hi: 0x8b}, -	{value: 0x0040, lo: 0x8c, hi: 0x8f}, -	{value: 0x0018, lo: 0x90, hi: 0x9e}, -	{value: 0x0040, lo: 0x9f, hi: 0xbf}, -	// Block 0xf6, offset 0x70d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x91}, -	{value: 0x0040, lo: 0x92, hi: 0xbf}, -	// Block 0xf7, offset 0x710 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0018, lo: 0x80, hi: 0x80}, -	{value: 0x0040, lo: 0x81, hi: 0xbf}, -	// Block 0xf8, offset 0x713 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0x96}, -	{value: 0x0040, lo: 0x97, hi: 0xbf}, -	// Block 0xf9, offset 0x716 -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xb4}, -	{value: 0x0040, lo: 0xb5, hi: 0xbf}, -	// Block 0xfa, offset 0x719 -	{value: 0x0000, lo: 0x03}, -	{value: 0x0008, lo: 0x80, hi: 0x9d}, -	{value: 0x0040, lo: 0x9e, hi: 0x9f}, -	{value: 0x0008, lo: 0xa0, hi: 0xbf}, -	// Block 0xfb, offset 0x71d -	{value: 0x0000, lo: 0x02}, -	{value: 0x0008, lo: 0x80, hi: 0xa1}, -	{value: 0x0040, lo: 0xa2, hi: 0xbf}, -	// Block 0xfc, offset 0x720 -	{value: 0x0020, lo: 0x0f}, -	{value: 0xdeb9, lo: 0x80, hi: 0x89}, -	{value: 0x8dfd, lo: 0x8a, hi: 0x8a}, -	{value: 0xdff9, lo: 0x8b, hi: 0x9c}, -	{value: 0x8e1d, lo: 0x9d, hi: 0x9d}, -	{value: 0xe239, lo: 0x9e, hi: 0xa2}, -	{value: 0x8e3d, lo: 0xa3, hi: 0xa3}, -	{value: 0xe2d9, lo: 0xa4, hi: 0xab}, -	{value: 0x7ed5, lo: 0xac, hi: 0xac}, -	{value: 0xe3d9, lo: 0xad, hi: 0xaf}, -	{value: 0x8e5d, lo: 0xb0, hi: 0xb0}, -	{value: 0xe439, lo: 0xb1, hi: 0xb6}, -	{value: 0x8e7d, lo: 0xb7, hi: 0xb9}, -	{value: 0xe4f9, lo: 0xba, hi: 0xba}, -	{value: 0x8edd, lo: 0xbb, hi: 0xbb}, -	{value: 0xe519, lo: 0xbc, hi: 0xbf}, -	// Block 0xfd, offset 0x730 -	{value: 0x0020, lo: 0x10}, -	{value: 0x937d, lo: 0x80, hi: 0x80}, -	{value: 0xf099, lo: 0x81, hi: 0x86}, -	{value: 0x939d, lo: 0x87, hi: 0x8a}, -	{value: 0xd9f9, lo: 0x8b, hi: 0x8b}, -	{value: 0xf159, lo: 0x8c, hi: 0x96}, -	{value: 0x941d, lo: 0x97, hi: 0x97}, -	{value: 0xf2b9, lo: 0x98, hi: 0xa3}, -	{value: 0x943d, lo: 0xa4, hi: 0xa6}, -	{value: 0xf439, lo: 0xa7, hi: 0xaa}, -	{value: 0x949d, lo: 0xab, hi: 0xab}, -	{value: 0xf4b9, lo: 0xac, hi: 0xac}, -	{value: 0x94bd, lo: 0xad, hi: 0xad}, -	{value: 0xf4d9, lo: 0xae, hi: 0xaf}, -	{value: 0x94dd, lo: 0xb0, hi: 0xb1}, -	{value: 0xf519, lo: 0xb2, hi: 0xbe}, -	{value: 0x2040, lo: 0xbf, hi: 0xbf}, -	// Block 0xfe, offset 0x741 -	{value: 0x0000, lo: 0x04}, -	{value: 0x0040, lo: 0x80, hi: 0x80}, -	{value: 0x0340, lo: 0x81, hi: 0x81}, -	{value: 0x0040, lo: 0x82, hi: 0x9f}, -	{value: 0x0340, lo: 0xa0, hi: 0xbf}, -	// Block 0xff, offset 0x746 -	{value: 0x0000, lo: 0x01}, -	{value: 0x0340, lo: 0x80, hi: 0xbf}, -	// Block 0x100, offset 0x748 -	{value: 0x0000, lo: 0x01}, -	{value: 0x33c0, lo: 0x80, hi: 0xbf}, -	// Block 0x101, offset 0x74a -	{value: 0x0000, lo: 0x02}, -	{value: 0x33c0, lo: 0x80, hi: 0xaf}, -	{value: 0x0040, lo: 0xb0, hi: 0xbf}, -} - -// Total table size 41662 bytes (40KiB); checksum: 355A58A4 diff --git a/vendor/golang.org/x/net/idna/trie.go b/vendor/golang.org/x/net/idna/trie.go deleted file mode 100644 index 421274172..000000000 --- a/vendor/golang.org/x/net/idna/trie.go +++ /dev/null @@ -1,51 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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. - -package idna - -// Sparse block handling code. - -type valueRange struct { -	value  uint16 // header: value:stride -	lo, hi byte   // header: lo:n -} - -type sparseBlocks struct { -	values []valueRange -	offset []uint16 -} - -var idnaSparse = sparseBlocks{ -	values: idnaSparseValues[:], -	offset: idnaSparseOffset[:], -} - -// Don't use newIdnaTrie to avoid unconditional linking in of the table. -var trie = &idnaTrie{} - -// lookup determines the type of block n and looks up the value for b. -// For n < t.cutoff, the block is a simple lookup table. Otherwise, the block -// is a list of ranges with an accompanying value. Given a matching range r, -// the value for b is by r.value + (b - r.lo) * stride. -func (t *sparseBlocks) lookup(n uint32, b byte) uint16 { -	offset := t.offset[n] -	header := t.values[offset] -	lo := offset + 1 -	hi := lo + uint16(header.lo) -	for lo < hi { -		m := lo + (hi-lo)/2 -		r := t.values[m] -		if r.lo <= b && b <= r.hi { -			return r.value + uint16(b-r.lo)*header.value -		} -		if b < r.lo { -			hi = m -		} else { -			lo = m + 1 -		} -	} -	return 0 -} diff --git a/vendor/golang.org/x/net/idna/trie12.0.0.go b/vendor/golang.org/x/net/idna/trie12.0.0.go deleted file mode 100644 index 8a75b9667..000000000 --- a/vendor/golang.org/x/net/idna/trie12.0.0.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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 !go1.16 - -package idna - -// appendMapping appends the mapping for the respective rune. isMapped must be -// true. A mapping is a categorization of a rune as defined in UTS #46. -func (c info) appendMapping(b []byte, s string) []byte { -	index := int(c >> indexShift) -	if c&xorBit == 0 { -		s := mappings[index:] -		return append(b, s[1:s[0]+1]...) -	} -	b = append(b, s...) -	if c&inlineXOR == inlineXOR { -		// TODO: support and handle two-byte inline masks -		b[len(b)-1] ^= byte(index) -	} else { -		for p := len(b) - int(xorData[index]); p < len(b); p++ { -			index++ -			b[p] ^= xorData[index] -		} -	} -	return b -} diff --git a/vendor/golang.org/x/net/idna/trie13.0.0.go b/vendor/golang.org/x/net/idna/trie13.0.0.go deleted file mode 100644 index fa45bb907..000000000 --- a/vendor/golang.org/x/net/idna/trie13.0.0.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -// Copyright 2016 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 go1.16 - -package idna - -// appendMapping appends the mapping for the respective rune. isMapped must be -// true. A mapping is a categorization of a rune as defined in UTS #46. -func (c info) appendMapping(b []byte, s string) []byte { -	index := int(c >> indexShift) -	if c&xorBit == 0 { -		p := index -		return append(b, mappings[mappingIndex[p]:mappingIndex[p+1]]...) -	} -	b = append(b, s...) -	if c&inlineXOR == inlineXOR { -		// TODO: support and handle two-byte inline masks -		b[len(b)-1] ^= byte(index) -	} else { -		for p := len(b) - int(xorData[index]); p < len(b); p++ { -			index++ -			b[p] ^= xorData[index] -		} -	} -	return b -} diff --git a/vendor/golang.org/x/net/idna/trieval.go b/vendor/golang.org/x/net/idna/trieval.go deleted file mode 100644 index 9c070a44b..000000000 --- a/vendor/golang.org/x/net/idna/trieval.go +++ /dev/null @@ -1,119 +0,0 @@ -// Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT. - -package idna - -// This file contains definitions for interpreting the trie value of the idna -// trie generated by "go run gen*.go". It is shared by both the generator -// program and the resultant package. Sharing is achieved by the generator -// copying gen_trieval.go to trieval.go and changing what's above this comment. - -// info holds information from the IDNA mapping table for a single rune. It is -// the value returned by a trie lookup. In most cases, all information fits in -// a 16-bit value. For mappings, this value may contain an index into a slice -// with the mapped string. Such mappings can consist of the actual mapped value -// or an XOR pattern to be applied to the bytes of the UTF8 encoding of the -// input rune. This technique is used by the cases packages and reduces the -// table size significantly. -// -// The per-rune values have the following format: -// -//	if mapped { -//	  if inlinedXOR { -//	    15..13 inline XOR marker -//	    12..11 unused -//	    10..3  inline XOR mask -//	  } else { -//	    15..3  index into xor or mapping table -//	  } -//	} else { -//	    15..14 unused -//	    13     mayNeedNorm -//	    12..11 attributes -//	    10..8  joining type -//	     7..3  category type -//	} -//	   2  use xor pattern -//	1..0  mapped category -// -// See the definitions below for a more detailed description of the various -// bits. -type info uint16 - -const ( -	catSmallMask = 0x3 -	catBigMask   = 0xF8 -	indexShift   = 3 -	xorBit       = 0x4    // interpret the index as an xor pattern -	inlineXOR    = 0xE000 // These bits are set if the XOR pattern is inlined. - -	joinShift = 8 -	joinMask  = 0x07 - -	// Attributes -	attributesMask = 0x1800 -	viramaModifier = 0x1800 -	modifier       = 0x1000 -	rtl            = 0x0800 - -	mayNeedNorm = 0x2000 -) - -// A category corresponds to a category defined in the IDNA mapping table. -type category uint16 - -const ( -	unknown              category = 0 // not currently defined in unicode. -	mapped               category = 1 -	disallowedSTD3Mapped category = 2 -	deviation            category = 3 -) - -const ( -	valid               category = 0x08 -	validNV8            category = 0x18 -	validXV8            category = 0x28 -	disallowed          category = 0x40 -	disallowedSTD3Valid category = 0x80 -	ignored             category = 0xC0 -) - -// join types and additional rune information -const ( -	joiningL = (iota + 1) -	joiningD -	joiningT -	joiningR - -	//the following types are derived during processing -	joinZWJ -	joinZWNJ -	joinVirama -	numJoinTypes -) - -func (c info) isMapped() bool { -	return c&0x3 != 0 -} - -func (c info) category() category { -	small := c & catSmallMask -	if small != 0 { -		return category(small) -	} -	return category(c & catBigMask) -} - -func (c info) joinType() info { -	if c.isMapped() { -		return 0 -	} -	return (c >> joinShift) & joinMask -} - -func (c info) isModifier() bool { -	return c&(modifier|catSmallMask) == modifier -} - -func (c info) isViramaModifier() bool { -	return c&(attributesMask|catSmallMask) == viramaModifier -} diff --git a/vendor/golang.org/x/net/internal/httpcommon/ascii.go b/vendor/golang.org/x/net/internal/httpcommon/ascii.go deleted file mode 100644 index ed14da5af..000000000 --- a/vendor/golang.org/x/net/internal/httpcommon/ascii.go +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2025 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. - -package httpcommon - -import "strings" - -// The HTTP protocols are defined in terms of ASCII, not Unicode. This file -// contains helper functions which may use Unicode-aware functions which would -// otherwise be unsafe and could introduce vulnerabilities if used improperly. - -// asciiEqualFold is strings.EqualFold, ASCII only. It reports whether s and t -// are equal, ASCII-case-insensitively. -func asciiEqualFold(s, t string) bool { -	if len(s) != len(t) { -		return false -	} -	for i := 0; i < len(s); i++ { -		if lower(s[i]) != lower(t[i]) { -			return false -		} -	} -	return true -} - -// lower returns the ASCII lowercase version of b. -func lower(b byte) byte { -	if 'A' <= b && b <= 'Z' { -		return b + ('a' - 'A') -	} -	return b -} - -// isASCIIPrint returns whether s is ASCII and printable according to -// https://tools.ietf.org/html/rfc20#section-4.2. -func isASCIIPrint(s string) bool { -	for i := 0; i < len(s); i++ { -		if s[i] < ' ' || s[i] > '~' { -			return false -		} -	} -	return true -} - -// asciiToLower returns the lowercase version of s if s is ASCII and printable, -// and whether or not it was. -func asciiToLower(s string) (lower string, ok bool) { -	if !isASCIIPrint(s) { -		return "", false -	} -	return strings.ToLower(s), true -} diff --git a/vendor/golang.org/x/net/internal/httpcommon/headermap.go b/vendor/golang.org/x/net/internal/httpcommon/headermap.go deleted file mode 100644 index ad3fbacd6..000000000 --- a/vendor/golang.org/x/net/internal/httpcommon/headermap.go +++ /dev/null @@ -1,115 +0,0 @@ -// Copyright 2025 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. - -package httpcommon - -import ( -	"net/http" -	"sync" -) - -var ( -	commonBuildOnce   sync.Once -	commonLowerHeader map[string]string // Go-Canonical-Case -> lower-case -	commonCanonHeader map[string]string // lower-case -> Go-Canonical-Case -) - -func buildCommonHeaderMapsOnce() { -	commonBuildOnce.Do(buildCommonHeaderMaps) -} - -func buildCommonHeaderMaps() { -	common := []string{ -		"accept", -		"accept-charset", -		"accept-encoding", -		"accept-language", -		"accept-ranges", -		"age", -		"access-control-allow-credentials", -		"access-control-allow-headers", -		"access-control-allow-methods", -		"access-control-allow-origin", -		"access-control-expose-headers", -		"access-control-max-age", -		"access-control-request-headers", -		"access-control-request-method", -		"allow", -		"authorization", -		"cache-control", -		"content-disposition", -		"content-encoding", -		"content-language", -		"content-length", -		"content-location", -		"content-range", -		"content-type", -		"cookie", -		"date", -		"etag", -		"expect", -		"expires", -		"from", -		"host", -		"if-match", -		"if-modified-since", -		"if-none-match", -		"if-unmodified-since", -		"last-modified", -		"link", -		"location", -		"max-forwards", -		"origin", -		"proxy-authenticate", -		"proxy-authorization", -		"range", -		"referer", -		"refresh", -		"retry-after", -		"server", -		"set-cookie", -		"strict-transport-security", -		"trailer", -		"transfer-encoding", -		"user-agent", -		"vary", -		"via", -		"www-authenticate", -		"x-forwarded-for", -		"x-forwarded-proto", -	} -	commonLowerHeader = make(map[string]string, len(common)) -	commonCanonHeader = make(map[string]string, len(common)) -	for _, v := range common { -		chk := http.CanonicalHeaderKey(v) -		commonLowerHeader[chk] = v -		commonCanonHeader[v] = chk -	} -} - -// LowerHeader returns the lowercase form of a header name, -// used on the wire for HTTP/2 and HTTP/3 requests. -func LowerHeader(v string) (lower string, ascii bool) { -	buildCommonHeaderMapsOnce() -	if s, ok := commonLowerHeader[v]; ok { -		return s, true -	} -	return asciiToLower(v) -} - -// CanonicalHeader canonicalizes a header name. (For example, "host" becomes "Host".) -func CanonicalHeader(v string) string { -	buildCommonHeaderMapsOnce() -	if s, ok := commonCanonHeader[v]; ok { -		return s -	} -	return http.CanonicalHeaderKey(v) -} - -// CachedCanonicalHeader returns the canonical form of a well-known header name. -func CachedCanonicalHeader(v string) (string, bool) { -	buildCommonHeaderMapsOnce() -	s, ok := commonCanonHeader[v] -	return s, ok -} diff --git a/vendor/golang.org/x/net/internal/httpcommon/request.go b/vendor/golang.org/x/net/internal/httpcommon/request.go deleted file mode 100644 index 343914773..000000000 --- a/vendor/golang.org/x/net/internal/httpcommon/request.go +++ /dev/null @@ -1,379 +0,0 @@ -// Copyright 2025 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. - -package httpcommon - -import ( -	"errors" -	"fmt" -	"net/http" -	"net/http/httptrace" -	"sort" -	"strconv" -	"strings" - -	"golang.org/x/net/http/httpguts" -	"golang.org/x/net/http2/hpack" -) - -var ( -	ErrRequestHeaderListSize = errors.New("request header list larger than peer's advertised limit") -) - -// EncodeHeadersParam is parameters to EncodeHeaders. -type EncodeHeadersParam struct { -	Request *http.Request - -	// AddGzipHeader indicates that an "accept-encoding: gzip" header should be -	// added to the request. -	AddGzipHeader bool - -	// PeerMaxHeaderListSize, when non-zero, is the peer's MAX_HEADER_LIST_SIZE setting. -	PeerMaxHeaderListSize uint64 - -	// DefaultUserAgent is the User-Agent header to send when the request -	// neither contains a User-Agent nor disables it. -	DefaultUserAgent string -} - -// EncodeHeadersParam is the result of EncodeHeaders. -type EncodeHeadersResult struct { -	HasBody     bool -	HasTrailers bool -} - -// EncodeHeaders constructs request headers common to HTTP/2 and HTTP/3. -// It validates a request and calls headerf with each pseudo-header and header -// for the request. -// The headerf function is called with the validated, canonicalized header name. -func EncodeHeaders(param EncodeHeadersParam, headerf func(name, value string)) (res EncodeHeadersResult, _ error) { -	req := param.Request - -	// Check for invalid connection-level headers. -	if err := checkConnHeaders(req); err != nil { -		return res, err -	} - -	if req.URL == nil { -		return res, errors.New("Request.URL is nil") -	} - -	host := req.Host -	if host == "" { -		host = req.URL.Host -	} -	host, err := httpguts.PunycodeHostPort(host) -	if err != nil { -		return res, err -	} -	if !httpguts.ValidHostHeader(host) { -		return res, errors.New("invalid Host header") -	} - -	// isNormalConnect is true if this is a non-extended CONNECT request. -	isNormalConnect := false -	protocol := req.Header.Get(":protocol") -	if req.Method == "CONNECT" && protocol == "" { -		isNormalConnect = true -	} else if protocol != "" && req.Method != "CONNECT" { -		return res, errors.New("invalid :protocol header in non-CONNECT request") -	} - -	// Validate the path, except for non-extended CONNECT requests which have no path. -	var path string -	if !isNormalConnect { -		path = req.URL.RequestURI() -		if !validPseudoPath(path) { -			orig := path -			path = strings.TrimPrefix(path, req.URL.Scheme+"://"+host) -			if !validPseudoPath(path) { -				if req.URL.Opaque != "" { -					return res, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque) -				} else { -					return res, fmt.Errorf("invalid request :path %q", orig) -				} -			} -		} -	} - -	// Check for any invalid headers+trailers and return an error before we -	// potentially pollute our hpack state. (We want to be able to -	// continue to reuse the hpack encoder for future requests) -	if err := validateHeaders(req.Header); err != "" { -		return res, fmt.Errorf("invalid HTTP header %s", err) -	} -	if err := validateHeaders(req.Trailer); err != "" { -		return res, fmt.Errorf("invalid HTTP trailer %s", err) -	} - -	contentLength := ActualContentLength(req) - -	trailers, err := commaSeparatedTrailers(req) -	if err != nil { -		return res, err -	} - -	enumerateHeaders := func(f func(name, value string)) { -		// 8.1.2.3 Request Pseudo-Header Fields -		// The :path pseudo-header field includes the path and query parts of the -		// target URI (the path-absolute production and optionally a '?' character -		// followed by the query production, see Sections 3.3 and 3.4 of -		// [RFC3986]). -		f(":authority", host) -		m := req.Method -		if m == "" { -			m = http.MethodGet -		} -		f(":method", m) -		if !isNormalConnect { -			f(":path", path) -			f(":scheme", req.URL.Scheme) -		} -		if protocol != "" { -			f(":protocol", protocol) -		} -		if trailers != "" { -			f("trailer", trailers) -		} - -		var didUA bool -		for k, vv := range req.Header { -			if asciiEqualFold(k, "host") || asciiEqualFold(k, "content-length") { -				// Host is :authority, already sent. -				// Content-Length is automatic, set below. -				continue -			} else if asciiEqualFold(k, "connection") || -				asciiEqualFold(k, "proxy-connection") || -				asciiEqualFold(k, "transfer-encoding") || -				asciiEqualFold(k, "upgrade") || -				asciiEqualFold(k, "keep-alive") { -				// Per 8.1.2.2 Connection-Specific Header -				// Fields, don't send connection-specific -				// fields. We have already checked if any -				// are error-worthy so just ignore the rest. -				continue -			} else if asciiEqualFold(k, "user-agent") { -				// Match Go's http1 behavior: at most one -				// User-Agent. If set to nil or empty string, -				// then omit it. Otherwise if not mentioned, -				// include the default (below). -				didUA = true -				if len(vv) < 1 { -					continue -				} -				vv = vv[:1] -				if vv[0] == "" { -					continue -				} -			} else if asciiEqualFold(k, "cookie") { -				// Per 8.1.2.5 To allow for better compression efficiency, the -				// Cookie header field MAY be split into separate header fields, -				// each with one or more cookie-pairs. -				for _, v := range vv { -					for { -						p := strings.IndexByte(v, ';') -						if p < 0 { -							break -						} -						f("cookie", v[:p]) -						p++ -						// strip space after semicolon if any. -						for p+1 <= len(v) && v[p] == ' ' { -							p++ -						} -						v = v[p:] -					} -					if len(v) > 0 { -						f("cookie", v) -					} -				} -				continue -			} else if k == ":protocol" { -				// :protocol pseudo-header was already sent above. -				continue -			} - -			for _, v := range vv { -				f(k, v) -			} -		} -		if shouldSendReqContentLength(req.Method, contentLength) { -			f("content-length", strconv.FormatInt(contentLength, 10)) -		} -		if param.AddGzipHeader { -			f("accept-encoding", "gzip") -		} -		if !didUA { -			f("user-agent", param.DefaultUserAgent) -		} -	} - -	// Do a first pass over the headers counting bytes to ensure -	// we don't exceed cc.peerMaxHeaderListSize. This is done as a -	// separate pass before encoding the headers to prevent -	// modifying the hpack state. -	if param.PeerMaxHeaderListSize > 0 { -		hlSize := uint64(0) -		enumerateHeaders(func(name, value string) { -			hf := hpack.HeaderField{Name: name, Value: value} -			hlSize += uint64(hf.Size()) -		}) - -		if hlSize > param.PeerMaxHeaderListSize { -			return res, ErrRequestHeaderListSize -		} -	} - -	trace := httptrace.ContextClientTrace(req.Context()) - -	// Header list size is ok. Write the headers. -	enumerateHeaders(func(name, value string) { -		name, ascii := LowerHeader(name) -		if !ascii { -			// Skip writing invalid headers. Per RFC 7540, Section 8.1.2, header -			// field names have to be ASCII characters (just as in HTTP/1.x). -			return -		} - -		headerf(name, value) - -		if trace != nil && trace.WroteHeaderField != nil { -			trace.WroteHeaderField(name, []string{value}) -		} -	}) - -	res.HasBody = contentLength != 0 -	res.HasTrailers = trailers != "" -	return res, nil -} - -// IsRequestGzip reports whether we should add an Accept-Encoding: gzip header -// for a request. -func IsRequestGzip(req *http.Request, disableCompression bool) bool { -	// TODO(bradfitz): this is a copy of the logic in net/http. Unify somewhere? -	if !disableCompression && -		req.Header.Get("Accept-Encoding") == "" && -		req.Header.Get("Range") == "" && -		req.Method != "HEAD" { -		// Request gzip only, not deflate. Deflate is ambiguous and -		// not as universally supported anyway. -		// See: https://zlib.net/zlib_faq.html#faq39 -		// -		// Note that we don't request this for HEAD requests, -		// due to a bug in nginx: -		//   http://trac.nginx.org/nginx/ticket/358 -		//   https://golang.org/issue/5522 -		// -		// We don't request gzip if the request is for a range, since -		// auto-decoding a portion of a gzipped document will just fail -		// anyway. See https://golang.org/issue/8923 -		return true -	} -	return false -} - -// checkConnHeaders checks whether req has any invalid connection-level headers. -// -// https://www.rfc-editor.org/rfc/rfc9114.html#section-4.2-3 -// https://www.rfc-editor.org/rfc/rfc9113.html#section-8.2.2-1 -// -// Certain headers are special-cased as okay but not transmitted later. -// For example, we allow "Transfer-Encoding: chunked", but drop the header when encoding. -func checkConnHeaders(req *http.Request) error { -	if v := req.Header.Get("Upgrade"); v != "" { -		return fmt.Errorf("invalid Upgrade request header: %q", req.Header["Upgrade"]) -	} -	if vv := req.Header["Transfer-Encoding"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && vv[0] != "chunked") { -		return fmt.Errorf("invalid Transfer-Encoding request header: %q", vv) -	} -	if vv := req.Header["Connection"]; len(vv) > 0 && (len(vv) > 1 || vv[0] != "" && !asciiEqualFold(vv[0], "close") && !asciiEqualFold(vv[0], "keep-alive")) { -		return fmt.Errorf("invalid Connection request header: %q", vv) -	} -	return nil -} - -func commaSeparatedTrailers(req *http.Request) (string, error) { -	keys := make([]string, 0, len(req.Trailer)) -	for k := range req.Trailer { -		k = CanonicalHeader(k) -		switch k { -		case "Transfer-Encoding", "Trailer", "Content-Length": -			return "", fmt.Errorf("invalid Trailer key %q", k) -		} -		keys = append(keys, k) -	} -	if len(keys) > 0 { -		sort.Strings(keys) -		return strings.Join(keys, ","), nil -	} -	return "", nil -} - -// ActualContentLength returns a sanitized version of -// req.ContentLength, where 0 actually means zero (not unknown) and -1 -// means unknown. -func ActualContentLength(req *http.Request) int64 { -	if req.Body == nil || req.Body == http.NoBody { -		return 0 -	} -	if req.ContentLength != 0 { -		return req.ContentLength -	} -	return -1 -} - -// validPseudoPath reports whether v is a valid :path pseudo-header -// value. It must be either: -// -//   - a non-empty string starting with '/' -//   - the string '*', for OPTIONS requests. -// -// For now this is only used a quick check for deciding when to clean -// up Opaque URLs before sending requests from the Transport. -// See golang.org/issue/16847 -// -// We used to enforce that the path also didn't start with "//", but -// Google's GFE accepts such paths and Chrome sends them, so ignore -// that part of the spec. See golang.org/issue/19103. -func validPseudoPath(v string) bool { -	return (len(v) > 0 && v[0] == '/') || v == "*" -} - -func validateHeaders(hdrs http.Header) string { -	for k, vv := range hdrs { -		if !httpguts.ValidHeaderFieldName(k) && k != ":protocol" { -			return fmt.Sprintf("name %q", k) -		} -		for _, v := range vv { -			if !httpguts.ValidHeaderFieldValue(v) { -				// Don't include the value in the error, -				// because it may be sensitive. -				return fmt.Sprintf("value for header %q", k) -			} -		} -	} -	return "" -} - -// shouldSendReqContentLength reports whether we should send -// a "content-length" request header. This logic is basically a copy of the net/http -// transferWriter.shouldSendContentLength. -// The contentLength is the corrected contentLength (so 0 means actually 0, not unknown). -// -1 means unknown. -func shouldSendReqContentLength(method string, contentLength int64) bool { -	if contentLength > 0 { -		return true -	} -	if contentLength < 0 { -		return false -	} -	// For zero bodies, whether we send a content-length depends on the method. -	// It also kinda doesn't matter for http2 either way, with END_STREAM. -	switch method { -	case "POST", "PUT", "PATCH": -		return true -	default: -		return false -	} -} diff --git a/vendor/golang.org/x/net/internal/iana/const.go b/vendor/golang.org/x/net/internal/iana/const.go deleted file mode 100644 index cea712fac..000000000 --- a/vendor/golang.org/x/net/internal/iana/const.go +++ /dev/null @@ -1,223 +0,0 @@ -// go generate gen.go -// Code generated by the command above; DO NOT EDIT. - -// Package iana provides protocol number resources managed by the Internet Assigned Numbers Authority (IANA). -package iana // import "golang.org/x/net/internal/iana" - -// Differentiated Services Field Codepoints (DSCP), Updated: 2018-05-04 -const ( -	DiffServCS0           = 0x00 // CS0 -	DiffServCS1           = 0x20 // CS1 -	DiffServCS2           = 0x40 // CS2 -	DiffServCS3           = 0x60 // CS3 -	DiffServCS4           = 0x80 // CS4 -	DiffServCS5           = 0xa0 // CS5 -	DiffServCS6           = 0xc0 // CS6 -	DiffServCS7           = 0xe0 // CS7 -	DiffServAF11          = 0x28 // AF11 -	DiffServAF12          = 0x30 // AF12 -	DiffServAF13          = 0x38 // AF13 -	DiffServAF21          = 0x48 // AF21 -	DiffServAF22          = 0x50 // AF22 -	DiffServAF23          = 0x58 // AF23 -	DiffServAF31          = 0x68 // AF31 -	DiffServAF32          = 0x70 // AF32 -	DiffServAF33          = 0x78 // AF33 -	DiffServAF41          = 0x88 // AF41 -	DiffServAF42          = 0x90 // AF42 -	DiffServAF43          = 0x98 // AF43 -	DiffServEF            = 0xb8 // EF -	DiffServVOICEADMIT    = 0xb0 // VOICE-ADMIT -	NotECNTransport       = 0x00 // Not-ECT (Not ECN-Capable Transport) -	ECNTransport1         = 0x01 // ECT(1) (ECN-Capable Transport(1)) -	ECNTransport0         = 0x02 // ECT(0) (ECN-Capable Transport(0)) -	CongestionExperienced = 0x03 // CE (Congestion Experienced) -) - -// Protocol Numbers, Updated: 2017-10-13 -const ( -	ProtocolIP             = 0   // IPv4 encapsulation, pseudo protocol number -	ProtocolHOPOPT         = 0   // IPv6 Hop-by-Hop Option -	ProtocolICMP           = 1   // Internet Control Message -	ProtocolIGMP           = 2   // Internet Group Management -	ProtocolGGP            = 3   // Gateway-to-Gateway -	ProtocolIPv4           = 4   // IPv4 encapsulation -	ProtocolST             = 5   // Stream -	ProtocolTCP            = 6   // Transmission Control -	ProtocolCBT            = 7   // CBT -	ProtocolEGP            = 8   // Exterior Gateway Protocol -	ProtocolIGP            = 9   // any private interior gateway (used by Cisco for their IGRP) -	ProtocolBBNRCCMON      = 10  // BBN RCC Monitoring -	ProtocolNVPII          = 11  // Network Voice Protocol -	ProtocolPUP            = 12  // PUP -	ProtocolEMCON          = 14  // EMCON -	ProtocolXNET           = 15  // Cross Net Debugger -	ProtocolCHAOS          = 16  // Chaos -	ProtocolUDP            = 17  // User Datagram -	ProtocolMUX            = 18  // Multiplexing -	ProtocolDCNMEAS        = 19  // DCN Measurement Subsystems -	ProtocolHMP            = 20  // Host Monitoring -	ProtocolPRM            = 21  // Packet Radio Measurement -	ProtocolXNSIDP         = 22  // XEROX NS IDP -	ProtocolTRUNK1         = 23  // Trunk-1 -	ProtocolTRUNK2         = 24  // Trunk-2 -	ProtocolLEAF1          = 25  // Leaf-1 -	ProtocolLEAF2          = 26  // Leaf-2 -	ProtocolRDP            = 27  // Reliable Data Protocol -	ProtocolIRTP           = 28  // Internet Reliable Transaction -	ProtocolISOTP4         = 29  // ISO Transport Protocol Class 4 -	ProtocolNETBLT         = 30  // Bulk Data Transfer Protocol -	ProtocolMFENSP         = 31  // MFE Network Services Protocol -	ProtocolMERITINP       = 32  // MERIT Internodal Protocol -	ProtocolDCCP           = 33  // Datagram Congestion Control Protocol -	Protocol3PC            = 34  // Third Party Connect Protocol -	ProtocolIDPR           = 35  // Inter-Domain Policy Routing Protocol -	ProtocolXTP            = 36  // XTP -	ProtocolDDP            = 37  // Datagram Delivery Protocol -	ProtocolIDPRCMTP       = 38  // IDPR Control Message Transport Proto -	ProtocolTPPP           = 39  // TP++ Transport Protocol -	ProtocolIL             = 40  // IL Transport Protocol -	ProtocolIPv6           = 41  // IPv6 encapsulation -	ProtocolSDRP           = 42  // Source Demand Routing Protocol -	ProtocolIPv6Route      = 43  // Routing Header for IPv6 -	ProtocolIPv6Frag       = 44  // Fragment Header for IPv6 -	ProtocolIDRP           = 45  // Inter-Domain Routing Protocol -	ProtocolRSVP           = 46  // Reservation Protocol -	ProtocolGRE            = 47  // Generic Routing Encapsulation -	ProtocolDSR            = 48  // Dynamic Source Routing Protocol -	ProtocolBNA            = 49  // BNA -	ProtocolESP            = 50  // Encap Security Payload -	ProtocolAH             = 51  // Authentication Header -	ProtocolINLSP          = 52  // Integrated Net Layer Security  TUBA -	ProtocolNARP           = 54  // NBMA Address Resolution Protocol -	ProtocolMOBILE         = 55  // IP Mobility -	ProtocolTLSP           = 56  // Transport Layer Security Protocol using Kryptonet key management -	ProtocolSKIP           = 57  // SKIP -	ProtocolIPv6ICMP       = 58  // ICMP for IPv6 -	ProtocolIPv6NoNxt      = 59  // No Next Header for IPv6 -	ProtocolIPv6Opts       = 60  // Destination Options for IPv6 -	ProtocolCFTP           = 62  // CFTP -	ProtocolSATEXPAK       = 64  // SATNET and Backroom EXPAK -	ProtocolKRYPTOLAN      = 65  // Kryptolan -	ProtocolRVD            = 66  // MIT Remote Virtual Disk Protocol -	ProtocolIPPC           = 67  // Internet Pluribus Packet Core -	ProtocolSATMON         = 69  // SATNET Monitoring -	ProtocolVISA           = 70  // VISA Protocol -	ProtocolIPCV           = 71  // Internet Packet Core Utility -	ProtocolCPNX           = 72  // Computer Protocol Network Executive -	ProtocolCPHB           = 73  // Computer Protocol Heart Beat -	ProtocolWSN            = 74  // Wang Span Network -	ProtocolPVP            = 75  // Packet Video Protocol -	ProtocolBRSATMON       = 76  // Backroom SATNET Monitoring -	ProtocolSUNND          = 77  // SUN ND PROTOCOL-Temporary -	ProtocolWBMON          = 78  // WIDEBAND Monitoring -	ProtocolWBEXPAK        = 79  // WIDEBAND EXPAK -	ProtocolISOIP          = 80  // ISO Internet Protocol -	ProtocolVMTP           = 81  // VMTP -	ProtocolSECUREVMTP     = 82  // SECURE-VMTP -	ProtocolVINES          = 83  // VINES -	ProtocolTTP            = 84  // Transaction Transport Protocol -	ProtocolIPTM           = 84  // Internet Protocol Traffic Manager -	ProtocolNSFNETIGP      = 85  // NSFNET-IGP -	ProtocolDGP            = 86  // Dissimilar Gateway Protocol -	ProtocolTCF            = 87  // TCF -	ProtocolEIGRP          = 88  // EIGRP -	ProtocolOSPFIGP        = 89  // OSPFIGP -	ProtocolSpriteRPC      = 90  // Sprite RPC Protocol -	ProtocolLARP           = 91  // Locus Address Resolution Protocol -	ProtocolMTP            = 92  // Multicast Transport Protocol -	ProtocolAX25           = 93  // AX.25 Frames -	ProtocolIPIP           = 94  // IP-within-IP Encapsulation Protocol -	ProtocolSCCSP          = 96  // Semaphore Communications Sec. Pro. -	ProtocolETHERIP        = 97  // Ethernet-within-IP Encapsulation -	ProtocolENCAP          = 98  // Encapsulation Header -	ProtocolGMTP           = 100 // GMTP -	ProtocolIFMP           = 101 // Ipsilon Flow Management Protocol -	ProtocolPNNI           = 102 // PNNI over IP -	ProtocolPIM            = 103 // Protocol Independent Multicast -	ProtocolARIS           = 104 // ARIS -	ProtocolSCPS           = 105 // SCPS -	ProtocolQNX            = 106 // QNX -	ProtocolAN             = 107 // Active Networks -	ProtocolIPComp         = 108 // IP Payload Compression Protocol -	ProtocolSNP            = 109 // Sitara Networks Protocol -	ProtocolCompaqPeer     = 110 // Compaq Peer Protocol -	ProtocolIPXinIP        = 111 // IPX in IP -	ProtocolVRRP           = 112 // Virtual Router Redundancy Protocol -	ProtocolPGM            = 113 // PGM Reliable Transport Protocol -	ProtocolL2TP           = 115 // Layer Two Tunneling Protocol -	ProtocolDDX            = 116 // D-II Data Exchange (DDX) -	ProtocolIATP           = 117 // Interactive Agent Transfer Protocol -	ProtocolSTP            = 118 // Schedule Transfer Protocol -	ProtocolSRP            = 119 // SpectraLink Radio Protocol -	ProtocolUTI            = 120 // UTI -	ProtocolSMP            = 121 // Simple Message Protocol -	ProtocolPTP            = 123 // Performance Transparency Protocol -	ProtocolISIS           = 124 // ISIS over IPv4 -	ProtocolFIRE           = 125 // FIRE -	ProtocolCRTP           = 126 // Combat Radio Transport Protocol -	ProtocolCRUDP          = 127 // Combat Radio User Datagram -	ProtocolSSCOPMCE       = 128 // SSCOPMCE -	ProtocolIPLT           = 129 // IPLT -	ProtocolSPS            = 130 // Secure Packet Shield -	ProtocolPIPE           = 131 // Private IP Encapsulation within IP -	ProtocolSCTP           = 132 // Stream Control Transmission Protocol -	ProtocolFC             = 133 // Fibre Channel -	ProtocolRSVPE2EIGNORE  = 134 // RSVP-E2E-IGNORE -	ProtocolMobilityHeader = 135 // Mobility Header -	ProtocolUDPLite        = 136 // UDPLite -	ProtocolMPLSinIP       = 137 // MPLS-in-IP -	ProtocolMANET          = 138 // MANET Protocols -	ProtocolHIP            = 139 // Host Identity Protocol -	ProtocolShim6          = 140 // Shim6 Protocol -	ProtocolWESP           = 141 // Wrapped Encapsulating Security Payload -	ProtocolROHC           = 142 // Robust Header Compression -	ProtocolReserved       = 255 // Reserved -) - -// Address Family Numbers, Updated: 2018-04-02 -const ( -	AddrFamilyIPv4                          = 1     // IP (IP version 4) -	AddrFamilyIPv6                          = 2     // IP6 (IP version 6) -	AddrFamilyNSAP                          = 3     // NSAP -	AddrFamilyHDLC                          = 4     // HDLC (8-bit multidrop) -	AddrFamilyBBN1822                       = 5     // BBN 1822 -	AddrFamily802                           = 6     // 802 (includes all 802 media plus Ethernet "canonical format") -	AddrFamilyE163                          = 7     // E.163 -	AddrFamilyE164                          = 8     // E.164 (SMDS, Frame Relay, ATM) -	AddrFamilyF69                           = 9     // F.69 (Telex) -	AddrFamilyX121                          = 10    // X.121 (X.25, Frame Relay) -	AddrFamilyIPX                           = 11    // IPX -	AddrFamilyAppletalk                     = 12    // Appletalk -	AddrFamilyDecnetIV                      = 13    // Decnet IV -	AddrFamilyBanyanVines                   = 14    // Banyan Vines -	AddrFamilyE164withSubaddress            = 15    // E.164 with NSAP format subaddress -	AddrFamilyDNS                           = 16    // DNS (Domain Name System) -	AddrFamilyDistinguishedName             = 17    // Distinguished Name -	AddrFamilyASNumber                      = 18    // AS Number -	AddrFamilyXTPoverIPv4                   = 19    // XTP over IP version 4 -	AddrFamilyXTPoverIPv6                   = 20    // XTP over IP version 6 -	AddrFamilyXTPnativemodeXTP              = 21    // XTP native mode XTP -	AddrFamilyFibreChannelWorldWidePortName = 22    // Fibre Channel World-Wide Port Name -	AddrFamilyFibreChannelWorldWideNodeName = 23    // Fibre Channel World-Wide Node Name -	AddrFamilyGWID                          = 24    // GWID -	AddrFamilyL2VPN                         = 25    // AFI for L2VPN information -	AddrFamilyMPLSTPSectionEndpointID       = 26    // MPLS-TP Section Endpoint Identifier -	AddrFamilyMPLSTPLSPEndpointID           = 27    // MPLS-TP LSP Endpoint Identifier -	AddrFamilyMPLSTPPseudowireEndpointID    = 28    // MPLS-TP Pseudowire Endpoint Identifier -	AddrFamilyMTIPv4                        = 29    // MT IP: Multi-Topology IP version 4 -	AddrFamilyMTIPv6                        = 30    // MT IPv6: Multi-Topology IP version 6 -	AddrFamilyEIGRPCommonServiceFamily      = 16384 // EIGRP Common Service Family -	AddrFamilyEIGRPIPv4ServiceFamily        = 16385 // EIGRP IPv4 Service Family -	AddrFamilyEIGRPIPv6ServiceFamily        = 16386 // EIGRP IPv6 Service Family -	AddrFamilyLISPCanonicalAddressFormat    = 16387 // LISP Canonical Address Format (LCAF) -	AddrFamilyBGPLS                         = 16388 // BGP-LS -	AddrFamily48bitMAC                      = 16389 // 48-bit MAC -	AddrFamily64bitMAC                      = 16390 // 64-bit MAC -	AddrFamilyOUI                           = 16391 // OUI -	AddrFamilyMACFinal24bits                = 16392 // MAC/24 -	AddrFamilyMACFinal40bits                = 16393 // MAC/40 -	AddrFamilyIPv6Initial64bits             = 16394 // IPv6/64 -	AddrFamilyRBridgePortID                 = 16395 // RBridge Port ID -	AddrFamilyTRILLNickname                 = 16396 // TRILL Nickname -) diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr.go b/vendor/golang.org/x/net/internal/socket/cmsghdr.go deleted file mode 100644 index 33a5bf59c..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package socket - -func (h *cmsghdr) len() int { return int(h.Len) } -func (h *cmsghdr) lvl() int { return int(h.Level) } -func (h *cmsghdr) typ() int { return int(h.Type) } diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go deleted file mode 100644 index 68f438c84..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_bsd.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || netbsd || openbsd - -package socket - -func (h *cmsghdr) set(l, lvl, typ int) { -	h.Len = uint32(l) -	h.Level = int32(lvl) -	h.Type = int32(typ) -} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go deleted file mode 100644 index 058ea8de8..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_32bit.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2017 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 (arm || mips || mipsle || 386 || ppc) && linux - -package socket - -func (h *cmsghdr) set(l, lvl, typ int) { -	h.Len = uint32(l) -	h.Level = int32(lvl) -	h.Type = int32(typ) -} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go deleted file mode 100644 index 3ca0d3a0a..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_linux_64bit.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2017 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 (arm64 || amd64 || loong64 || ppc64 || ppc64le || mips64 || mips64le || riscv64 || s390x) && linux - -package socket - -func (h *cmsghdr) set(l, lvl, typ int) { -	h.Len = uint64(l) -	h.Level = int32(lvl) -	h.Type = int32(typ) -} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go deleted file mode 100644 index 6d0e426cd..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_solaris_64bit.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2017 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 amd64 && solaris - -package socket - -func (h *cmsghdr) set(l, lvl, typ int) { -	h.Len = uint32(l) -	h.Level = int32(lvl) -	h.Type = int32(typ) -} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go deleted file mode 100644 index 7ca9cb7e7..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_stub.go +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos - -package socket - -func controlHeaderLen() int { -	return 0 -} - -func controlMessageLen(dataLen int) int { -	return 0 -} - -func controlMessageSpace(dataLen int) int { -	return 0 -} - -type cmsghdr struct{} - -func (h *cmsghdr) len() int { return 0 } -func (h *cmsghdr) lvl() int { return 0 } -func (h *cmsghdr) typ() int { return 0 } - -func (h *cmsghdr) set(l, lvl, typ int) {} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_unix.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_unix.go deleted file mode 100644 index 0211f225b..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_unix.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2020 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package socket - -import "golang.org/x/sys/unix" - -func controlHeaderLen() int { -	return unix.CmsgLen(0) -} - -func controlMessageLen(dataLen int) int { -	return unix.CmsgLen(dataLen) -} - -func controlMessageSpace(dataLen int) int { -	return unix.CmsgSpace(dataLen) -} diff --git a/vendor/golang.org/x/net/internal/socket/cmsghdr_zos_s390x.go b/vendor/golang.org/x/net/internal/socket/cmsghdr_zos_s390x.go deleted file mode 100644 index 68dc8ad63..000000000 --- a/vendor/golang.org/x/net/internal/socket/cmsghdr_zos_s390x.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2020 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. - -package socket - -func (h *cmsghdr) set(l, lvl, typ int) { -	h.Len = int32(l) -	h.Level = int32(lvl) -	h.Type = int32(typ) -} diff --git a/vendor/golang.org/x/net/internal/socket/complete_dontwait.go b/vendor/golang.org/x/net/internal/socket/complete_dontwait.go deleted file mode 100644 index 2038f2904..000000000 --- a/vendor/golang.org/x/net/internal/socket/complete_dontwait.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2021 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 darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris - -package socket - -import ( -	"syscall" -) - -// ioComplete checks the flags and result of a syscall, to be used as return -// value in a syscall.RawConn.Read or Write callback. -func ioComplete(flags int, operr error) bool { -	if flags&syscall.MSG_DONTWAIT != 0 { -		// Caller explicitly said don't wait, so always return immediately. -		return true -	} -	if operr == syscall.EAGAIN || operr == syscall.EWOULDBLOCK { -		// No data available, block for I/O and try again. -		return false -	} -	return true -} diff --git a/vendor/golang.org/x/net/internal/socket/complete_nodontwait.go b/vendor/golang.org/x/net/internal/socket/complete_nodontwait.go deleted file mode 100644 index 70e6f448b..000000000 --- a/vendor/golang.org/x/net/internal/socket/complete_nodontwait.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2021 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 aix || windows || zos - -package socket - -import ( -	"syscall" -) - -// ioComplete checks the flags and result of a syscall, to be used as return -// value in a syscall.RawConn.Read or Write callback. -func ioComplete(flags int, operr error) bool { -	if operr == syscall.EAGAIN || operr == syscall.EWOULDBLOCK { -		// No data available, block for I/O and try again. -		return false -	} -	return true -} diff --git a/vendor/golang.org/x/net/internal/socket/empty.s b/vendor/golang.org/x/net/internal/socket/empty.s deleted file mode 100644 index 49d79791e..000000000 --- a/vendor/golang.org/x/net/internal/socket/empty.s +++ /dev/null @@ -1,7 +0,0 @@ -// Copyright 2018 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 darwin && go1.12 - -// This exists solely so we can linkname in symbols from syscall. diff --git a/vendor/golang.org/x/net/internal/socket/error_unix.go b/vendor/golang.org/x/net/internal/socket/error_unix.go deleted file mode 100644 index 7a5cc5c43..000000000 --- a/vendor/golang.org/x/net/internal/socket/error_unix.go +++ /dev/null @@ -1,31 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package socket - -import "syscall" - -var ( -	errEAGAIN error = syscall.EAGAIN -	errEINVAL error = syscall.EINVAL -	errENOENT error = syscall.ENOENT -) - -// errnoErr returns common boxed Errno values, to prevent allocations -// at runtime. -func errnoErr(errno syscall.Errno) error { -	switch errno { -	case 0: -		return nil -	case syscall.EAGAIN: -		return errEAGAIN -	case syscall.EINVAL: -		return errEINVAL -	case syscall.ENOENT: -		return errENOENT -	} -	return errno -} diff --git a/vendor/golang.org/x/net/internal/socket/error_windows.go b/vendor/golang.org/x/net/internal/socket/error_windows.go deleted file mode 100644 index 6a6379a8b..000000000 --- a/vendor/golang.org/x/net/internal/socket/error_windows.go +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2017 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. - -package socket - -import "syscall" - -var ( -	errERROR_IO_PENDING error = syscall.ERROR_IO_PENDING -	errEINVAL           error = syscall.EINVAL -) - -// errnoErr returns common boxed Errno values, to prevent allocations -// at runtime. -func errnoErr(errno syscall.Errno) error { -	switch errno { -	case 0: -		return nil -	case syscall.ERROR_IO_PENDING: -		return errERROR_IO_PENDING -	case syscall.EINVAL: -		return errEINVAL -	} -	return errno -} diff --git a/vendor/golang.org/x/net/internal/socket/iovec_32bit.go b/vendor/golang.org/x/net/internal/socket/iovec_32bit.go deleted file mode 100644 index 340e53fbd..000000000 --- a/vendor/golang.org/x/net/internal/socket/iovec_32bit.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2017 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 (arm || mips || mipsle || 386 || ppc) && (darwin || dragonfly || freebsd || linux || netbsd || openbsd) - -package socket - -import "unsafe" - -func (v *iovec) set(b []byte) { -	l := len(b) -	if l == 0 { -		return -	} -	v.Base = (*byte)(unsafe.Pointer(&b[0])) -	v.Len = uint32(l) -} diff --git a/vendor/golang.org/x/net/internal/socket/iovec_64bit.go b/vendor/golang.org/x/net/internal/socket/iovec_64bit.go deleted file mode 100644 index 26470c191..000000000 --- a/vendor/golang.org/x/net/internal/socket/iovec_64bit.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2017 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 (arm64 || amd64 || loong64 || ppc64 || ppc64le || mips64 || mips64le || riscv64 || s390x) && (aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || zos) - -package socket - -import "unsafe" - -func (v *iovec) set(b []byte) { -	l := len(b) -	if l == 0 { -		return -	} -	v.Base = (*byte)(unsafe.Pointer(&b[0])) -	v.Len = uint64(l) -} diff --git a/vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go b/vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go deleted file mode 100644 index 8859ce103..000000000 --- a/vendor/golang.org/x/net/internal/socket/iovec_solaris_64bit.go +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2017 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 amd64 && solaris - -package socket - -import "unsafe" - -func (v *iovec) set(b []byte) { -	l := len(b) -	if l == 0 { -		return -	} -	v.Base = (*int8)(unsafe.Pointer(&b[0])) -	v.Len = uint64(l) -} diff --git a/vendor/golang.org/x/net/internal/socket/iovec_stub.go b/vendor/golang.org/x/net/internal/socket/iovec_stub.go deleted file mode 100644 index da886b032..000000000 --- a/vendor/golang.org/x/net/internal/socket/iovec_stub.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos - -package socket - -type iovec struct{} - -func (v *iovec) set(b []byte) {} diff --git a/vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go b/vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go deleted file mode 100644 index 4825b21e3..000000000 --- a/vendor/golang.org/x/net/internal/socket/mmsghdr_stub.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2017 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 !aix && !linux && !netbsd - -package socket - -import "net" - -type mmsghdr struct{} - -type mmsghdrs []mmsghdr - -func (hs mmsghdrs) pack(ms []Message, parseFn func([]byte, string) (net.Addr, error), marshalFn func(net.Addr) []byte) error { -	return nil -} - -func (hs mmsghdrs) unpack(ms []Message, parseFn func([]byte, string) (net.Addr, error), hint string) error { -	return nil -} diff --git a/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go b/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go deleted file mode 100644 index 311fd2c78..000000000 --- a/vendor/golang.org/x/net/internal/socket/mmsghdr_unix.go +++ /dev/null @@ -1,195 +0,0 @@ -// Copyright 2017 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 aix || linux || netbsd - -package socket - -import ( -	"net" -	"os" -	"sync" -	"syscall" -) - -type mmsghdrs []mmsghdr - -func (hs mmsghdrs) unpack(ms []Message, parseFn func([]byte, string) (net.Addr, error), hint string) error { -	for i := range hs { -		ms[i].N = int(hs[i].Len) -		ms[i].NN = hs[i].Hdr.controllen() -		ms[i].Flags = hs[i].Hdr.flags() -		if parseFn != nil { -			var err error -			ms[i].Addr, err = parseFn(hs[i].Hdr.name(), hint) -			if err != nil { -				return err -			} -		} -	} -	return nil -} - -// mmsghdrsPacker packs Message-slices into mmsghdrs (re-)using pre-allocated buffers. -type mmsghdrsPacker struct { -	// hs are the pre-allocated mmsghdrs. -	hs mmsghdrs -	// sockaddrs is the pre-allocated buffer for the Hdr.Name buffers. -	// We use one large buffer for all messages and slice it up. -	sockaddrs []byte -	// vs are the pre-allocated iovecs. -	// We allocate one large buffer for all messages and slice it up. This allows to reuse the buffer -	// if the number of buffers per message is distributed differently between calls. -	vs []iovec -} - -func (p *mmsghdrsPacker) prepare(ms []Message) { -	n := len(ms) -	if n <= cap(p.hs) { -		p.hs = p.hs[:n] -	} else { -		p.hs = make(mmsghdrs, n) -	} -	if n*sizeofSockaddrInet6 <= cap(p.sockaddrs) { -		p.sockaddrs = p.sockaddrs[:n*sizeofSockaddrInet6] -	} else { -		p.sockaddrs = make([]byte, n*sizeofSockaddrInet6) -	} - -	nb := 0 -	for _, m := range ms { -		nb += len(m.Buffers) -	} -	if nb <= cap(p.vs) { -		p.vs = p.vs[:nb] -	} else { -		p.vs = make([]iovec, nb) -	} -} - -func (p *mmsghdrsPacker) pack(ms []Message, parseFn func([]byte, string) (net.Addr, error), marshalFn func(net.Addr, []byte) int) mmsghdrs { -	p.prepare(ms) -	hs := p.hs -	vsRest := p.vs -	saRest := p.sockaddrs -	for i := range hs { -		nvs := len(ms[i].Buffers) -		vs := vsRest[:nvs] -		vsRest = vsRest[nvs:] - -		var sa []byte -		if parseFn != nil { -			sa = saRest[:sizeofSockaddrInet6] -			saRest = saRest[sizeofSockaddrInet6:] -		} else if marshalFn != nil { -			n := marshalFn(ms[i].Addr, saRest) -			if n > 0 { -				sa = saRest[:n] -				saRest = saRest[n:] -			} -		} -		hs[i].Hdr.pack(vs, ms[i].Buffers, ms[i].OOB, sa) -	} -	return hs -} - -// syscaller is a helper to invoke recvmmsg and sendmmsg via the RawConn.Read/Write interface. -// It is reusable, to amortize the overhead of allocating a closure for the function passed to -// RawConn.Read/Write. -type syscaller struct { -	n     int -	operr error -	hs    mmsghdrs -	flags int - -	boundRecvmmsgF func(uintptr) bool -	boundSendmmsgF func(uintptr) bool -} - -func (r *syscaller) init() { -	r.boundRecvmmsgF = r.recvmmsgF -	r.boundSendmmsgF = r.sendmmsgF -} - -func (r *syscaller) recvmmsg(c syscall.RawConn, hs mmsghdrs, flags int) (int, error) { -	r.n = 0 -	r.operr = nil -	r.hs = hs -	r.flags = flags -	if err := c.Read(r.boundRecvmmsgF); err != nil { -		return r.n, err -	} -	if r.operr != nil { -		return r.n, os.NewSyscallError("recvmmsg", r.operr) -	} -	return r.n, nil -} - -func (r *syscaller) recvmmsgF(s uintptr) bool { -	r.n, r.operr = recvmmsg(s, r.hs, r.flags) -	return ioComplete(r.flags, r.operr) -} - -func (r *syscaller) sendmmsg(c syscall.RawConn, hs mmsghdrs, flags int) (int, error) { -	r.n = 0 -	r.operr = nil -	r.hs = hs -	r.flags = flags -	if err := c.Write(r.boundSendmmsgF); err != nil { -		return r.n, err -	} -	if r.operr != nil { -		return r.n, os.NewSyscallError("sendmmsg", r.operr) -	} -	return r.n, nil -} - -func (r *syscaller) sendmmsgF(s uintptr) bool { -	r.n, r.operr = sendmmsg(s, r.hs, r.flags) -	return ioComplete(r.flags, r.operr) -} - -// mmsgTmps holds reusable temporary helpers for recvmmsg and sendmmsg. -type mmsgTmps struct { -	packer    mmsghdrsPacker -	syscaller syscaller -} - -var defaultMmsgTmpsPool = mmsgTmpsPool{ -	p: sync.Pool{ -		New: func() interface{} { -			tmps := new(mmsgTmps) -			tmps.syscaller.init() -			return tmps -		}, -	}, -} - -type mmsgTmpsPool struct { -	p sync.Pool -} - -func (p *mmsgTmpsPool) Get() *mmsgTmps { -	m := p.p.Get().(*mmsgTmps) -	// Clear fields up to the len (not the cap) of the slice, -	// assuming that the previous caller only used that many elements. -	for i := range m.packer.sockaddrs { -		m.packer.sockaddrs[i] = 0 -	} -	m.packer.sockaddrs = m.packer.sockaddrs[:0] -	for i := range m.packer.vs { -		m.packer.vs[i] = iovec{} -	} -	m.packer.vs = m.packer.vs[:0] -	for i := range m.packer.hs { -		m.packer.hs[i].Len = 0 -		m.packer.hs[i].Hdr = msghdr{} -	} -	m.packer.hs = m.packer.hs[:0] -	return m -} - -func (p *mmsgTmpsPool) Put(tmps *mmsgTmps) { -	p.p.Put(tmps) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_bsd.go b/vendor/golang.org/x/net/internal/socket/msghdr_bsd.go deleted file mode 100644 index ebff4f6e0..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_bsd.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || netbsd || openbsd - -package socket - -import "unsafe" - -func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) { -	for i := range vs { -		vs[i].set(bs[i]) -	} -	h.setIov(vs) -	if len(oob) > 0 { -		h.Control = (*byte)(unsafe.Pointer(&oob[0])) -		h.Controllen = uint32(len(oob)) -	} -	if sa != nil { -		h.Name = (*byte)(unsafe.Pointer(&sa[0])) -		h.Namelen = uint32(len(sa)) -	} -} - -func (h *msghdr) name() []byte { -	if h.Name != nil && h.Namelen > 0 { -		return (*[sizeofSockaddrInet6]byte)(unsafe.Pointer(h.Name))[:h.Namelen] -	} -	return nil -} - -func (h *msghdr) controllen() int { -	return int(h.Controllen) -} - -func (h *msghdr) flags() int { -	return int(h.Flags) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go b/vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go deleted file mode 100644 index 62e6fe861..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_bsdvar.go +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || netbsd - -package socket - -func (h *msghdr) setIov(vs []iovec) { -	l := len(vs) -	if l == 0 { -		return -	} -	h.Iov = &vs[0] -	h.Iovlen = int32(l) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_linux.go b/vendor/golang.org/x/net/internal/socket/msghdr_linux.go deleted file mode 100644 index 5a38798cc..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_linux.go +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright 2017 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. - -package socket - -import "unsafe" - -func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) { -	for i := range vs { -		vs[i].set(bs[i]) -	} -	h.setIov(vs) -	if len(oob) > 0 { -		h.setControl(oob) -	} -	if sa != nil { -		h.Name = (*byte)(unsafe.Pointer(&sa[0])) -		h.Namelen = uint32(len(sa)) -	} -} - -func (h *msghdr) name() []byte { -	if h.Name != nil && h.Namelen > 0 { -		return (*[sizeofSockaddrInet6]byte)(unsafe.Pointer(h.Name))[:h.Namelen] -	} -	return nil -} - -func (h *msghdr) controllen() int { -	return int(h.Controllen) -} - -func (h *msghdr) flags() int { -	return int(h.Flags) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go b/vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go deleted file mode 100644 index 3dd07250a..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_linux_32bit.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2017 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 (arm || mips || mipsle || 386 || ppc) && linux - -package socket - -import "unsafe" - -func (h *msghdr) setIov(vs []iovec) { -	l := len(vs) -	if l == 0 { -		return -	} -	h.Iov = &vs[0] -	h.Iovlen = uint32(l) -} - -func (h *msghdr) setControl(b []byte) { -	h.Control = (*byte)(unsafe.Pointer(&b[0])) -	h.Controllen = uint32(len(b)) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go b/vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go deleted file mode 100644 index 5af9ddd6a..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_linux_64bit.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2017 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 (arm64 || amd64 || loong64 || ppc64 || ppc64le || mips64 || mips64le || riscv64 || s390x) && linux - -package socket - -import "unsafe" - -func (h *msghdr) setIov(vs []iovec) { -	l := len(vs) -	if l == 0 { -		return -	} -	h.Iov = &vs[0] -	h.Iovlen = uint64(l) -} - -func (h *msghdr) setControl(b []byte) { -	h.Control = (*byte)(unsafe.Pointer(&b[0])) -	h.Controllen = uint64(len(b)) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go b/vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go deleted file mode 100644 index 71a69e251..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_openbsd.go +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2017 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. - -package socket - -func (h *msghdr) setIov(vs []iovec) { -	l := len(vs) -	if l == 0 { -		return -	} -	h.Iov = &vs[0] -	h.Iovlen = uint32(l) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go b/vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go deleted file mode 100644 index e212b50f8..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_solaris_64bit.go +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright 2017 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 amd64 && solaris - -package socket - -import "unsafe" - -func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) { -	for i := range vs { -		vs[i].set(bs[i]) -	} -	if len(vs) > 0 { -		h.Iov = &vs[0] -		h.Iovlen = int32(len(vs)) -	} -	if len(oob) > 0 { -		h.Accrights = (*int8)(unsafe.Pointer(&oob[0])) -		h.Accrightslen = int32(len(oob)) -	} -	if sa != nil { -		h.Name = (*byte)(unsafe.Pointer(&sa[0])) -		h.Namelen = uint32(len(sa)) -	} -} - -func (h *msghdr) controllen() int { -	return int(h.Accrightslen) -} - -func (h *msghdr) flags() int { -	return int(NativeEndian.Uint32(h.Pad_cgo_2[:])) -} diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_stub.go b/vendor/golang.org/x/net/internal/socket/msghdr_stub.go deleted file mode 100644 index e87677645..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_stub.go +++ /dev/null @@ -1,14 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos - -package socket - -type msghdr struct{} - -func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) {} -func (h *msghdr) name() []byte                                        { return nil } -func (h *msghdr) controllen() int                                     { return 0 } -func (h *msghdr) flags() int                                          { return 0 } diff --git a/vendor/golang.org/x/net/internal/socket/msghdr_zos_s390x.go b/vendor/golang.org/x/net/internal/socket/msghdr_zos_s390x.go deleted file mode 100644 index 529db68ee..000000000 --- a/vendor/golang.org/x/net/internal/socket/msghdr_zos_s390x.go +++ /dev/null @@ -1,35 +0,0 @@ -// Copyright 2020 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 s390x && zos - -package socket - -import "unsafe" - -func (h *msghdr) pack(vs []iovec, bs [][]byte, oob []byte, sa []byte) { -	for i := range vs { -		vs[i].set(bs[i]) -	} -	if len(vs) > 0 { -		h.Iov = &vs[0] -		h.Iovlen = int32(len(vs)) -	} -	if len(oob) > 0 { -		h.Control = (*byte)(unsafe.Pointer(&oob[0])) -		h.Controllen = uint32(len(oob)) -	} -	if sa != nil { -		h.Name = (*byte)(unsafe.Pointer(&sa[0])) -		h.Namelen = uint32(len(sa)) -	} -} - -func (h *msghdr) controllen() int { -	return int(h.Controllen) -} - -func (h *msghdr) flags() int { -	return int(h.Flags) -} diff --git a/vendor/golang.org/x/net/internal/socket/norace.go b/vendor/golang.org/x/net/internal/socket/norace.go deleted file mode 100644 index 8af30ecfb..000000000 --- a/vendor/golang.org/x/net/internal/socket/norace.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2019 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 !race - -package socket - -func (m *Message) raceRead() { -} -func (m *Message) raceWrite() { -} diff --git a/vendor/golang.org/x/net/internal/socket/race.go b/vendor/golang.org/x/net/internal/socket/race.go deleted file mode 100644 index 9afa95808..000000000 --- a/vendor/golang.org/x/net/internal/socket/race.go +++ /dev/null @@ -1,37 +0,0 @@ -// Copyright 2019 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 race - -package socket - -import ( -	"runtime" -	"unsafe" -) - -// This package reads and writes the Message buffers using a -// direct system call, which the race detector can't see. -// These functions tell the race detector what is going on during the syscall. - -func (m *Message) raceRead() { -	for _, b := range m.Buffers { -		if len(b) > 0 { -			runtime.RaceReadRange(unsafe.Pointer(&b[0]), len(b)) -		} -	} -	if b := m.OOB; len(b) > 0 { -		runtime.RaceReadRange(unsafe.Pointer(&b[0]), len(b)) -	} -} -func (m *Message) raceWrite() { -	for _, b := range m.Buffers { -		if len(b) > 0 { -			runtime.RaceWriteRange(unsafe.Pointer(&b[0]), len(b)) -		} -	} -	if b := m.OOB; len(b) > 0 { -		runtime.RaceWriteRange(unsafe.Pointer(&b[0]), len(b)) -	} -} diff --git a/vendor/golang.org/x/net/internal/socket/rawconn.go b/vendor/golang.org/x/net/internal/socket/rawconn.go deleted file mode 100644 index 87e81071c..000000000 --- a/vendor/golang.org/x/net/internal/socket/rawconn.go +++ /dev/null @@ -1,91 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"errors" -	"net" -	"os" -	"syscall" -) - -// A Conn represents a raw connection. -type Conn struct { -	network string -	c       syscall.RawConn -} - -// tcpConn is an interface implemented by net.TCPConn. -// It can be used for interface assertions to check if a net.Conn is a TCP connection. -type tcpConn interface { -	SyscallConn() (syscall.RawConn, error) -	SetLinger(int) error -} - -var _ tcpConn = (*net.TCPConn)(nil) - -// udpConn is an interface implemented by net.UDPConn. -// It can be used for interface assertions to check if a net.Conn is a UDP connection. -type udpConn interface { -	SyscallConn() (syscall.RawConn, error) -	ReadMsgUDP(b, oob []byte) (n, oobn, flags int, addr *net.UDPAddr, err error) -} - -var _ udpConn = (*net.UDPConn)(nil) - -// ipConn is an interface implemented by net.IPConn. -// It can be used for interface assertions to check if a net.Conn is an IP connection. -type ipConn interface { -	SyscallConn() (syscall.RawConn, error) -	ReadMsgIP(b, oob []byte) (n, oobn, flags int, addr *net.IPAddr, err error) -} - -var _ ipConn = (*net.IPConn)(nil) - -// NewConn returns a new raw connection. -func NewConn(c net.Conn) (*Conn, error) { -	var err error -	var cc Conn -	switch c := c.(type) { -	case tcpConn: -		cc.network = "tcp" -		cc.c, err = c.SyscallConn() -	case udpConn: -		cc.network = "udp" -		cc.c, err = c.SyscallConn() -	case ipConn: -		cc.network = "ip" -		cc.c, err = c.SyscallConn() -	default: -		return nil, errors.New("unknown connection type") -	} -	if err != nil { -		return nil, err -	} -	return &cc, nil -} - -func (o *Option) get(c *Conn, b []byte) (int, error) { -	var operr error -	var n int -	fn := func(s uintptr) { -		n, operr = getsockopt(s, o.Level, o.Name, b) -	} -	if err := c.c.Control(fn); err != nil { -		return 0, err -	} -	return n, os.NewSyscallError("getsockopt", operr) -} - -func (o *Option) set(c *Conn, b []byte) error { -	var operr error -	fn := func(s uintptr) { -		operr = setsockopt(s, o.Level, o.Name, b) -	} -	if err := c.c.Control(fn); err != nil { -		return err -	} -	return os.NewSyscallError("setsockopt", operr) -} diff --git a/vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go b/vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go deleted file mode 100644 index 043139078..000000000 --- a/vendor/golang.org/x/net/internal/socket/rawconn_mmsg.go +++ /dev/null @@ -1,53 +0,0 @@ -// Copyright 2017 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 linux - -package socket - -import ( -	"net" -) - -func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) { -	for i := range ms { -		ms[i].raceWrite() -	} -	tmps := defaultMmsgTmpsPool.Get() -	defer defaultMmsgTmpsPool.Put(tmps) -	var parseFn func([]byte, string) (net.Addr, error) -	if c.network != "tcp" { -		parseFn = parseInetAddr -	} -	hs := tmps.packer.pack(ms, parseFn, nil) -	n, err := tmps.syscaller.recvmmsg(c.c, hs, flags) -	if err != nil { -		return n, err -	} -	if err := hs[:n].unpack(ms[:n], parseFn, c.network); err != nil { -		return n, err -	} -	return n, nil -} - -func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) { -	for i := range ms { -		ms[i].raceRead() -	} -	tmps := defaultMmsgTmpsPool.Get() -	defer defaultMmsgTmpsPool.Put(tmps) -	var marshalFn func(net.Addr, []byte) int -	if c.network != "tcp" { -		marshalFn = marshalInetAddr -	} -	hs := tmps.packer.pack(ms, nil, marshalFn) -	n, err := tmps.syscaller.sendmmsg(c.c, hs, flags) -	if err != nil { -		return n, err -	} -	if err := hs[:n].unpack(ms[:n], nil, ""); err != nil { -		return n, err -	} -	return n, nil -} diff --git a/vendor/golang.org/x/net/internal/socket/rawconn_msg.go b/vendor/golang.org/x/net/internal/socket/rawconn_msg.go deleted file mode 100644 index 7c0d7410b..000000000 --- a/vendor/golang.org/x/net/internal/socket/rawconn_msg.go +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows || zos - -package socket - -import ( -	"net" -	"os" -) - -func (c *Conn) recvMsg(m *Message, flags int) error { -	m.raceWrite() -	var ( -		operr     error -		n         int -		oobn      int -		recvflags int -		from      net.Addr -	) -	fn := func(s uintptr) bool { -		n, oobn, recvflags, from, operr = recvmsg(s, m.Buffers, m.OOB, flags, c.network) -		return ioComplete(flags, operr) -	} -	if err := c.c.Read(fn); err != nil { -		return err -	} -	if operr != nil { -		return os.NewSyscallError("recvmsg", operr) -	} -	m.Addr = from -	m.N = n -	m.NN = oobn -	m.Flags = recvflags -	return nil -} - -func (c *Conn) sendMsg(m *Message, flags int) error { -	m.raceRead() -	var ( -		operr error -		n     int -	) -	fn := func(s uintptr) bool { -		n, operr = sendmsg(s, m.Buffers, m.OOB, m.Addr, flags) -		return ioComplete(flags, operr) -	} -	if err := c.c.Write(fn); err != nil { -		return err -	} -	if operr != nil { -		return os.NewSyscallError("sendmsg", operr) -	} -	m.N = n -	m.NN = len(m.OOB) -	return nil -} diff --git a/vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go b/vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go deleted file mode 100644 index e363fb5a8..000000000 --- a/vendor/golang.org/x/net/internal/socket/rawconn_nommsg.go +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2017 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 !linux - -package socket - -func (c *Conn) recvMsgs(ms []Message, flags int) (int, error) { -	return 0, errNotImplemented -} - -func (c *Conn) sendMsgs(ms []Message, flags int) (int, error) { -	return 0, errNotImplemented -} diff --git a/vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go b/vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go deleted file mode 100644 index ff7a8baf0..000000000 --- a/vendor/golang.org/x/net/internal/socket/rawconn_nomsg.go +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package socket - -func (c *Conn) recvMsg(m *Message, flags int) error { -	return errNotImplemented -} - -func (c *Conn) sendMsg(m *Message, flags int) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/internal/socket/socket.go b/vendor/golang.org/x/net/internal/socket/socket.go deleted file mode 100644 index dba47bf12..000000000 --- a/vendor/golang.org/x/net/internal/socket/socket.go +++ /dev/null @@ -1,280 +0,0 @@ -// Copyright 2017 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. - -// Package socket provides a portable interface for socket system -// calls. -package socket // import "golang.org/x/net/internal/socket" - -import ( -	"errors" -	"net" -	"runtime" -	"unsafe" -) - -var errNotImplemented = errors.New("not implemented on " + runtime.GOOS + "/" + runtime.GOARCH) - -// An Option represents a sticky socket option. -type Option struct { -	Level int // level -	Name  int // name; must be equal or greater than 1 -	Len   int // length of value in bytes; must be equal or greater than 1 -} - -// Get reads a value for the option from the kernel. -// It returns the number of bytes written into b. -func (o *Option) Get(c *Conn, b []byte) (int, error) { -	if o.Name < 1 || o.Len < 1 { -		return 0, errors.New("invalid option") -	} -	if len(b) < o.Len { -		return 0, errors.New("short buffer") -	} -	return o.get(c, b) -} - -// GetInt returns an integer value for the option. -// -// The Len field of Option must be either 1 or 4. -func (o *Option) GetInt(c *Conn) (int, error) { -	if o.Len != 1 && o.Len != 4 { -		return 0, errors.New("invalid option") -	} -	var b []byte -	var bb [4]byte -	if o.Len == 1 { -		b = bb[:1] -	} else { -		b = bb[:4] -	} -	n, err := o.get(c, b) -	if err != nil { -		return 0, err -	} -	if n != o.Len { -		return 0, errors.New("invalid option length") -	} -	if o.Len == 1 { -		return int(b[0]), nil -	} -	return int(NativeEndian.Uint32(b[:4])), nil -} - -// Set writes the option and value to the kernel. -func (o *Option) Set(c *Conn, b []byte) error { -	if o.Name < 1 || o.Len < 1 { -		return errors.New("invalid option") -	} -	if len(b) < o.Len { -		return errors.New("short buffer") -	} -	return o.set(c, b) -} - -// SetInt writes the option and value to the kernel. -// -// The Len field of Option must be either 1 or 4. -func (o *Option) SetInt(c *Conn, v int) error { -	if o.Len != 1 && o.Len != 4 { -		return errors.New("invalid option") -	} -	var b []byte -	if o.Len == 1 { -		b = []byte{byte(v)} -	} else { -		var bb [4]byte -		NativeEndian.PutUint32(bb[:o.Len], uint32(v)) -		b = bb[:4] -	} -	return o.set(c, b) -} - -// ControlMessageSpace returns the whole length of control message. -func ControlMessageSpace(dataLen int) int { -	return controlMessageSpace(dataLen) -} - -// A ControlMessage represents the head message in a stream of control -// messages. -// -// A control message comprises of a header, data and a few padding -// fields to conform to the interface to the kernel. -// -// See RFC 3542 for further information. -type ControlMessage []byte - -// Data returns the data field of the control message at the head on -// m. -func (m ControlMessage) Data(dataLen int) []byte { -	l := controlHeaderLen() -	if len(m) < l || len(m) < l+dataLen { -		return nil -	} -	return m[l : l+dataLen] -} - -// Next returns the control message at the next on m. -// -// Next works only for standard control messages. -func (m ControlMessage) Next(dataLen int) ControlMessage { -	l := ControlMessageSpace(dataLen) -	if len(m) < l { -		return nil -	} -	return m[l:] -} - -// MarshalHeader marshals the header fields of the control message at -// the head on m. -func (m ControlMessage) MarshalHeader(lvl, typ, dataLen int) error { -	if len(m) < controlHeaderLen() { -		return errors.New("short message") -	} -	h := (*cmsghdr)(unsafe.Pointer(&m[0])) -	h.set(controlMessageLen(dataLen), lvl, typ) -	return nil -} - -// ParseHeader parses and returns the header fields of the control -// message at the head on m. -func (m ControlMessage) ParseHeader() (lvl, typ, dataLen int, err error) { -	l := controlHeaderLen() -	if len(m) < l { -		return 0, 0, 0, errors.New("short message") -	} -	h := (*cmsghdr)(unsafe.Pointer(&m[0])) -	return h.lvl(), h.typ(), int(uint64(h.len()) - uint64(l)), nil -} - -// Marshal marshals the control message at the head on m, and returns -// the next control message. -func (m ControlMessage) Marshal(lvl, typ int, data []byte) (ControlMessage, error) { -	l := len(data) -	if len(m) < ControlMessageSpace(l) { -		return nil, errors.New("short message") -	} -	h := (*cmsghdr)(unsafe.Pointer(&m[0])) -	h.set(controlMessageLen(l), lvl, typ) -	if l > 0 { -		copy(m.Data(l), data) -	} -	return m.Next(l), nil -} - -// Parse parses m as a single or multiple control messages. -// -// Parse works for both standard and compatible messages. -func (m ControlMessage) Parse() ([]ControlMessage, error) { -	var ms []ControlMessage -	for len(m) >= controlHeaderLen() { -		h := (*cmsghdr)(unsafe.Pointer(&m[0])) -		l := h.len() -		if l <= 0 { -			return nil, errors.New("invalid header length") -		} -		if uint64(l) < uint64(controlHeaderLen()) { -			return nil, errors.New("invalid message length") -		} -		if uint64(l) > uint64(len(m)) { -			return nil, errors.New("short buffer") -		} -		// On message reception: -		// -		// |<- ControlMessageSpace --------------->| -		// |<- controlMessageLen ---------->|      | -		// |<- controlHeaderLen ->|         |      | -		// +---------------+------+---------+------+ -		// |    Header     | PadH |  Data   | PadD | -		// +---------------+------+---------+------+ -		// -		// On compatible message reception: -		// -		// | ... |<- controlMessageLen ----------->| -		// | ... |<- controlHeaderLen ->|          | -		// +-----+---------------+------+----------+ -		// | ... |    Header     | PadH |   Data   | -		// +-----+---------------+------+----------+ -		ms = append(ms, ControlMessage(m[:l])) -		ll := l - controlHeaderLen() -		if len(m) >= ControlMessageSpace(ll) { -			m = m[ControlMessageSpace(ll):] -		} else { -			m = m[controlMessageLen(ll):] -		} -	} -	return ms, nil -} - -// NewControlMessage returns a new stream of control messages. -func NewControlMessage(dataLen []int) ControlMessage { -	var l int -	for i := range dataLen { -		l += ControlMessageSpace(dataLen[i]) -	} -	return make([]byte, l) -} - -// A Message represents an IO message. -type Message struct { -	// When writing, the Buffers field must contain at least one -	// byte to write. -	// When reading, the Buffers field will always contain a byte -	// to read. -	Buffers [][]byte - -	// OOB contains protocol-specific control or miscellaneous -	// ancillary data known as out-of-band data. -	OOB []byte - -	// Addr specifies a destination address when writing. -	// It can be nil when the underlying protocol of the raw -	// connection uses connection-oriented communication. -	// After a successful read, it may contain the source address -	// on the received packet. -	Addr net.Addr - -	N     int // # of bytes read or written from/to Buffers -	NN    int // # of bytes read or written from/to OOB -	Flags int // protocol-specific information on the received message -} - -// RecvMsg wraps recvmsg system call. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_PEEK. -func (c *Conn) RecvMsg(m *Message, flags int) error { -	return c.recvMsg(m, flags) -} - -// SendMsg wraps sendmsg system call. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_DONTROUTE. -func (c *Conn) SendMsg(m *Message, flags int) error { -	return c.sendMsg(m, flags) -} - -// RecvMsgs wraps recvmmsg system call. -// -// It returns the number of processed messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_PEEK. -// -// Only Linux supports this. -func (c *Conn) RecvMsgs(ms []Message, flags int) (int, error) { -	return c.recvMsgs(ms, flags) -} - -// SendMsgs wraps sendmmsg system call. -// -// It returns the number of processed messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_DONTROUTE. -// -// Only Linux supports this. -func (c *Conn) SendMsgs(ms []Message, flags int) (int, error) { -	return c.sendMsgs(ms, flags) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys.go b/vendor/golang.org/x/net/internal/socket/sys.go deleted file mode 100644 index 4a26af186..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"encoding/binary" -	"unsafe" -) - -// NativeEndian is the machine native endian implementation of ByteOrder. -var NativeEndian binary.ByteOrder - -func init() { -	i := uint32(1) -	b := (*[4]byte)(unsafe.Pointer(&i)) -	if b[0] == 1 { -		NativeEndian = binary.LittleEndian -	} else { -		NativeEndian = binary.BigEndian -	} -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_bsd.go b/vendor/golang.org/x/net/internal/socket/sys_bsd.go deleted file mode 100644 index e7664d48b..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_bsd.go +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || openbsd || solaris - -package socket - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_const_unix.go b/vendor/golang.org/x/net/internal/socket/sys_const_unix.go deleted file mode 100644 index d7627f87e..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_const_unix.go +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2019 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package socket - -import "golang.org/x/sys/unix" - -const ( -	sysAF_UNSPEC = unix.AF_UNSPEC -	sysAF_INET   = unix.AF_INET -	sysAF_INET6  = unix.AF_INET6 - -	sysSOCK_RAW = unix.SOCK_RAW - -	sizeofSockaddrInet4 = unix.SizeofSockaddrInet4 -	sizeofSockaddrInet6 = unix.SizeofSockaddrInet6 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux.go b/vendor/golang.org/x/net/internal/socket/sys_linux.go deleted file mode 100644 index 08d491077..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux.go +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2017 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 linux && !s390x && !386 - -package socket - -import ( -	"syscall" -	"unsafe" -) - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, _, errno := syscall.Syscall6(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, _, errno := syscall.Syscall6(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_386.go b/vendor/golang.org/x/net/internal/socket/sys_linux_386.go deleted file mode 100644 index c877ef23a..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_386.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"syscall" -	"unsafe" -) - -const ( -	sysRECVMMSG = 0x13 -	sysSENDMMSG = 0x14 -) - -func socketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall.Errno) -func rawsocketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall.Errno) - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, errno := socketcall(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, errno := socketcall(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_386.s b/vendor/golang.org/x/net/internal/socket/sys_linux_386.s deleted file mode 100644 index 93e7d75ec..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_386.s +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2014 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. - -#include "textflag.h" - -TEXT	·socketcall(SB),NOSPLIT,$0-36 -	JMP	syscall·socketcall(SB) - -TEXT	·rawsocketcall(SB),NOSPLIT,$0-36 -	JMP	syscall·rawsocketcall(SB) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go deleted file mode 100644 index 9decee2e5..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_amd64.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x12b -	sysSENDMMSG = 0x133 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go b/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go deleted file mode 100644 index d753b436d..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_arm.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x16d -	sysSENDMMSG = 0x176 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go deleted file mode 100644 index b67089436..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_arm64.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0xf3 -	sysSENDMMSG = 0x10d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_loong64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_loong64.go deleted file mode 100644 index 1d182470d..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_loong64.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2021 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 loong64 - -package socket - -const ( -	sysRECVMMSG = 0xf3 -	sysSENDMMSG = 0x10d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go b/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go deleted file mode 100644 index 9c0d74014..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_mips.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x10ef -	sysSENDMMSG = 0x10f7 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go deleted file mode 100644 index 071a4aba8..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_mips64.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x14ae -	sysSENDMMSG = 0x14b6 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go b/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go deleted file mode 100644 index 071a4aba8..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_mips64le.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x14ae -	sysSENDMMSG = 0x14b6 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go b/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go deleted file mode 100644 index 9c0d74014..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_mipsle.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x10ef -	sysSENDMMSG = 0x10f7 -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc.go b/vendor/golang.org/x/net/internal/socket/sys_linux_ppc.go deleted file mode 100644 index 90cfaa9fe..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2021 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. - -package socket - -const ( -	sysRECVMMSG = 0x157 -	sysSENDMMSG = 0x15d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go deleted file mode 100644 index 21c1e3f00..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x157 -	sysSENDMMSG = 0x15d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go b/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go deleted file mode 100644 index 21c1e3f00..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_ppc64le.go +++ /dev/null @@ -1,10 +0,0 @@ -// Copyright 2017 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. - -package socket - -const ( -	sysRECVMMSG = 0x157 -	sysSENDMMSG = 0x15d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_riscv64.go b/vendor/golang.org/x/net/internal/socket/sys_linux_riscv64.go deleted file mode 100644 index 0e407d125..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_riscv64.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2019 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 riscv64 - -package socket - -const ( -	sysRECVMMSG = 0xf3 -	sysSENDMMSG = 0x10d -) diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go b/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go deleted file mode 100644 index c877ef23a..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"syscall" -	"unsafe" -) - -const ( -	sysRECVMMSG = 0x13 -	sysSENDMMSG = 0x14 -) - -func socketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall.Errno) -func rawsocketcall(call, a0, a1, a2, a3, a4, a5 uintptr) (uintptr, syscall.Errno) - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, errno := socketcall(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, errno := socketcall(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.s b/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.s deleted file mode 100644 index 06d75628c..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_linux_s390x.s +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2017 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. - -#include "textflag.h" - -TEXT	·socketcall(SB),NOSPLIT,$0-72 -	JMP	syscall·socketcall(SB) - -TEXT	·rawsocketcall(SB),NOSPLIT,$0-72 -	JMP	syscall·rawsocketcall(SB) diff --git a/vendor/golang.org/x/net/internal/socket/sys_netbsd.go b/vendor/golang.org/x/net/internal/socket/sys_netbsd.go deleted file mode 100644 index 431851c12..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_netbsd.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"syscall" -	"unsafe" -) - -const ( -	sysRECVMMSG = 0x1db -	sysSENDMMSG = 0x1dc -) - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, _, errno := syscall.Syscall6(sysRECVMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	n, _, errno := syscall.Syscall6(sysSENDMMSG, s, uintptr(unsafe.Pointer(&hs[0])), uintptr(len(hs)), uintptr(flags), 0, 0) -	return int(n), errnoErr(errno) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_posix.go b/vendor/golang.org/x/net/internal/socket/sys_posix.go deleted file mode 100644 index 58d865482..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_posix.go +++ /dev/null @@ -1,184 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows || zos - -package socket - -import ( -	"encoding/binary" -	"errors" -	"net" -	"runtime" -	"strconv" -	"sync" -	"time" -) - -// marshalInetAddr writes a in sockaddr format into the buffer b. -// The buffer must be sufficiently large (sizeofSockaddrInet4/6). -// Returns the number of bytes written. -func marshalInetAddr(a net.Addr, b []byte) int { -	switch a := a.(type) { -	case *net.TCPAddr: -		return marshalSockaddr(a.IP, a.Port, a.Zone, b) -	case *net.UDPAddr: -		return marshalSockaddr(a.IP, a.Port, a.Zone, b) -	case *net.IPAddr: -		return marshalSockaddr(a.IP, 0, a.Zone, b) -	default: -		return 0 -	} -} - -func marshalSockaddr(ip net.IP, port int, zone string, b []byte) int { -	if ip4 := ip.To4(); ip4 != nil { -		switch runtime.GOOS { -		case "android", "illumos", "linux", "solaris", "windows": -			NativeEndian.PutUint16(b[:2], uint16(sysAF_INET)) -		default: -			b[0] = sizeofSockaddrInet4 -			b[1] = sysAF_INET -		} -		binary.BigEndian.PutUint16(b[2:4], uint16(port)) -		copy(b[4:8], ip4) -		return sizeofSockaddrInet4 -	} -	if ip6 := ip.To16(); ip6 != nil && ip.To4() == nil { -		switch runtime.GOOS { -		case "android", "illumos", "linux", "solaris", "windows": -			NativeEndian.PutUint16(b[:2], uint16(sysAF_INET6)) -		default: -			b[0] = sizeofSockaddrInet6 -			b[1] = sysAF_INET6 -		} -		binary.BigEndian.PutUint16(b[2:4], uint16(port)) -		copy(b[8:24], ip6) -		if zone != "" { -			NativeEndian.PutUint32(b[24:28], uint32(zoneCache.index(zone))) -		} -		return sizeofSockaddrInet6 -	} -	return 0 -} - -func parseInetAddr(b []byte, network string) (net.Addr, error) { -	if len(b) < 2 { -		return nil, errors.New("invalid address") -	} -	var af int -	switch runtime.GOOS { -	case "android", "illumos", "linux", "solaris", "windows": -		af = int(NativeEndian.Uint16(b[:2])) -	default: -		af = int(b[1]) -	} -	var ip net.IP -	var zone string -	if af == sysAF_INET { -		if len(b) < sizeofSockaddrInet4 { -			return nil, errors.New("short address") -		} -		ip = make(net.IP, net.IPv4len) -		copy(ip, b[4:8]) -	} -	if af == sysAF_INET6 { -		if len(b) < sizeofSockaddrInet6 { -			return nil, errors.New("short address") -		} -		ip = make(net.IP, net.IPv6len) -		copy(ip, b[8:24]) -		if id := int(NativeEndian.Uint32(b[24:28])); id > 0 { -			zone = zoneCache.name(id) -		} -	} -	switch network { -	case "tcp", "tcp4", "tcp6": -		return &net.TCPAddr{IP: ip, Port: int(binary.BigEndian.Uint16(b[2:4])), Zone: zone}, nil -	case "udp", "udp4", "udp6": -		return &net.UDPAddr{IP: ip, Port: int(binary.BigEndian.Uint16(b[2:4])), Zone: zone}, nil -	default: -		return &net.IPAddr{IP: ip, Zone: zone}, nil -	} -} - -// An ipv6ZoneCache represents a cache holding partial network -// interface information. It is used for reducing the cost of IPv6 -// addressing scope zone resolution. -// -// Multiple names sharing the index are managed by first-come -// first-served basis for consistency. -type ipv6ZoneCache struct { -	sync.RWMutex                // guard the following -	lastFetched  time.Time      // last time routing information was fetched -	toIndex      map[string]int // interface name to its index -	toName       map[int]string // interface index to its name -} - -var zoneCache = ipv6ZoneCache{ -	toIndex: make(map[string]int), -	toName:  make(map[int]string), -} - -// update refreshes the network interface information if the cache was last -// updated more than 1 minute ago, or if force is set. It returns whether the -// cache was updated. -func (zc *ipv6ZoneCache) update(ift []net.Interface, force bool) (updated bool) { -	zc.Lock() -	defer zc.Unlock() -	now := time.Now() -	if !force && zc.lastFetched.After(now.Add(-60*time.Second)) { -		return false -	} -	zc.lastFetched = now -	if len(ift) == 0 { -		var err error -		if ift, err = net.Interfaces(); err != nil { -			return false -		} -	} -	zc.toIndex = make(map[string]int, len(ift)) -	zc.toName = make(map[int]string, len(ift)) -	for _, ifi := range ift { -		zc.toIndex[ifi.Name] = ifi.Index -		if _, ok := zc.toName[ifi.Index]; !ok { -			zc.toName[ifi.Index] = ifi.Name -		} -	} -	return true -} - -func (zc *ipv6ZoneCache) name(zone int) string { -	updated := zoneCache.update(nil, false) -	zoneCache.RLock() -	name, ok := zoneCache.toName[zone] -	zoneCache.RUnlock() -	if !ok && !updated { -		zoneCache.update(nil, true) -		zoneCache.RLock() -		name, ok = zoneCache.toName[zone] -		zoneCache.RUnlock() -	} -	if !ok { // last resort -		name = strconv.Itoa(zone) -	} -	return name -} - -func (zc *ipv6ZoneCache) index(zone string) int { -	updated := zoneCache.update(nil, false) -	zoneCache.RLock() -	index, ok := zoneCache.toIndex[zone] -	zoneCache.RUnlock() -	if !ok && !updated { -		zoneCache.update(nil, true) -		zoneCache.RLock() -		index, ok = zoneCache.toIndex[zone] -		zoneCache.RUnlock() -	} -	if !ok { // last resort -		index, _ = strconv.Atoi(zone) -	} -	return index -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_stub.go b/vendor/golang.org/x/net/internal/socket/sys_stub.go deleted file mode 100644 index 2e5b473c6..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_stub.go +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package socket - -import "net" - -const ( -	sysAF_UNSPEC = 0x0 -	sysAF_INET   = 0x2 -	sysAF_INET6  = 0xa - -	sysSOCK_RAW = 0x3 - -	sizeofSockaddrInet4 = 0x10 -	sizeofSockaddrInet6 = 0x1c -) - -func marshalInetAddr(ip net.IP, port int, zone string) []byte { -	return nil -} - -func parseInetAddr(b []byte, network string) (net.Addr, error) { -	return nil, errNotImplemented -} - -func getsockopt(s uintptr, level, name int, b []byte) (int, error) { -	return 0, errNotImplemented -} - -func setsockopt(s uintptr, level, name int, b []byte) error { -	return errNotImplemented -} - -func recvmsg(s uintptr, buffers [][]byte, oob []byte, flags int, network string) (n, oobn int, recvflags int, from net.Addr, err error) { -	return 0, 0, 0, nil, errNotImplemented -} - -func sendmsg(s uintptr, buffers [][]byte, oob []byte, to net.Addr, flags int) (int, error) { -	return 0, errNotImplemented -} - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_unix.go b/vendor/golang.org/x/net/internal/socket/sys_unix.go deleted file mode 100644 index 93058db5b..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_unix.go +++ /dev/null @@ -1,121 +0,0 @@ -// Copyright 2017 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris - -package socket - -import ( -	"net" -	"unsafe" - -	"golang.org/x/sys/unix" -) - -//go:linkname syscall_getsockopt syscall.getsockopt -func syscall_getsockopt(s, level, name int, val unsafe.Pointer, vallen *uint32) error - -//go:linkname syscall_setsockopt syscall.setsockopt -func syscall_setsockopt(s, level, name int, val unsafe.Pointer, vallen uintptr) error - -func getsockopt(s uintptr, level, name int, b []byte) (int, error) { -	l := uint32(len(b)) -	err := syscall_getsockopt(int(s), level, name, unsafe.Pointer(&b[0]), &l) -	return int(l), err -} - -func setsockopt(s uintptr, level, name int, b []byte) error { -	return syscall_setsockopt(int(s), level, name, unsafe.Pointer(&b[0]), uintptr(len(b))) -} - -func recvmsg(s uintptr, buffers [][]byte, oob []byte, flags int, network string) (n, oobn int, recvflags int, from net.Addr, err error) { -	var unixFrom unix.Sockaddr -	n, oobn, recvflags, unixFrom, err = unix.RecvmsgBuffers(int(s), buffers, oob, flags) -	if unixFrom != nil { -		from = sockaddrToAddr(unixFrom, network) -	} -	return -} - -func sendmsg(s uintptr, buffers [][]byte, oob []byte, to net.Addr, flags int) (int, error) { -	var unixTo unix.Sockaddr -	if to != nil { -		unixTo = addrToSockaddr(to) -	} -	return unix.SendmsgBuffers(int(s), buffers, oob, unixTo, flags) -} - -// addrToSockaddr converts a net.Addr to a unix.Sockaddr. -func addrToSockaddr(a net.Addr) unix.Sockaddr { -	var ( -		ip   net.IP -		port int -		zone string -	) -	switch a := a.(type) { -	case *net.TCPAddr: -		ip = a.IP -		port = a.Port -		zone = a.Zone -	case *net.UDPAddr: -		ip = a.IP -		port = a.Port -		zone = a.Zone -	case *net.IPAddr: -		ip = a.IP -		zone = a.Zone -	default: -		return nil -	} - -	if ip4 := ip.To4(); ip4 != nil { -		sa := unix.SockaddrInet4{Port: port} -		copy(sa.Addr[:], ip4) -		return &sa -	} - -	if ip6 := ip.To16(); ip6 != nil && ip.To4() == nil { -		sa := unix.SockaddrInet6{Port: port} -		copy(sa.Addr[:], ip6) -		if zone != "" { -			sa.ZoneId = uint32(zoneCache.index(zone)) -		} -		return &sa -	} - -	return nil -} - -// sockaddrToAddr converts a unix.Sockaddr to a net.Addr. -func sockaddrToAddr(sa unix.Sockaddr, network string) net.Addr { -	var ( -		ip   net.IP -		port int -		zone string -	) -	switch sa := sa.(type) { -	case *unix.SockaddrInet4: -		ip = make(net.IP, net.IPv4len) -		copy(ip, sa.Addr[:]) -		port = sa.Port -	case *unix.SockaddrInet6: -		ip = make(net.IP, net.IPv6len) -		copy(ip, sa.Addr[:]) -		port = sa.Port -		if sa.ZoneId > 0 { -			zone = zoneCache.name(int(sa.ZoneId)) -		} -	default: -		return nil -	} - -	switch network { -	case "tcp", "tcp4", "tcp6": -		return &net.TCPAddr{IP: ip, Port: port, Zone: zone} -	case "udp", "udp4", "udp6": -		return &net.UDPAddr{IP: ip, Port: port, Zone: zone} -	default: -		return &net.IPAddr{IP: ip, Zone: zone} -	} -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_windows.go b/vendor/golang.org/x/net/internal/socket/sys_windows.go deleted file mode 100644 index b738b89dd..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_windows.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2017 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. - -package socket - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/sys/windows" -) - -func probeProtocolStack() int { -	var p uintptr -	return int(unsafe.Sizeof(p)) -} - -const ( -	sysAF_UNSPEC = windows.AF_UNSPEC -	sysAF_INET   = windows.AF_INET -	sysAF_INET6  = windows.AF_INET6 - -	sysSOCK_RAW = windows.SOCK_RAW - -	sizeofSockaddrInet4 = 0x10 -	sizeofSockaddrInet6 = 0x1c -) - -func getsockopt(s uintptr, level, name int, b []byte) (int, error) { -	l := uint32(len(b)) -	err := syscall.Getsockopt(syscall.Handle(s), int32(level), int32(name), (*byte)(unsafe.Pointer(&b[0])), (*int32)(unsafe.Pointer(&l))) -	return int(l), err -} - -func setsockopt(s uintptr, level, name int, b []byte) error { -	return syscall.Setsockopt(syscall.Handle(s), int32(level), int32(name), (*byte)(unsafe.Pointer(&b[0])), int32(len(b))) -} - -func recvmsg(s uintptr, buffers [][]byte, oob []byte, flags int, network string) (n, oobn int, recvflags int, from net.Addr, err error) { -	return 0, 0, 0, nil, errNotImplemented -} - -func sendmsg(s uintptr, buffers [][]byte, oob []byte, to net.Addr, flags int) (int, error) { -	return 0, errNotImplemented -} - -func recvmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} - -func sendmmsg(s uintptr, hs []mmsghdr, flags int) (int, error) { -	return 0, errNotImplemented -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.go b/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.go deleted file mode 100644 index eaa896cb5..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.go +++ /dev/null @@ -1,66 +0,0 @@ -// Copyright 2020 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. - -package socket - -import ( -	"net" -	"syscall" -	"unsafe" -) - -func syscall_syscall(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) -func syscall_syscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno) - -func probeProtocolStack() int { -	return 4 // sizeof(int) on GOOS=zos GOARCH=s390x -} - -func getsockopt(s uintptr, level, name int, b []byte) (int, error) { -	l := uint32(len(b)) -	_, _, errno := syscall_syscall6(syscall.SYS_GETSOCKOPT, s, uintptr(level), uintptr(name), uintptr(unsafe.Pointer(&b[0])), uintptr(unsafe.Pointer(&l)), 0) -	return int(l), errnoErr(errno) -} - -func setsockopt(s uintptr, level, name int, b []byte) error { -	_, _, errno := syscall_syscall6(syscall.SYS_SETSOCKOPT, s, uintptr(level), uintptr(name), uintptr(unsafe.Pointer(&b[0])), uintptr(len(b)), 0) -	return errnoErr(errno) -} - -func recvmsg(s uintptr, buffers [][]byte, oob []byte, flags int, network string) (n, oobn int, recvflags int, from net.Addr, err error) { -	var h msghdr -	vs := make([]iovec, len(buffers)) -	var sa []byte -	if network != "tcp" { -		sa = make([]byte, sizeofSockaddrInet6) -	} -	h.pack(vs, buffers, oob, sa) -	sn, _, errno := syscall_syscall(syscall.SYS___RECVMSG_A, s, uintptr(unsafe.Pointer(&h)), uintptr(flags)) -	n = int(sn) -	oobn = h.controllen() -	recvflags = h.flags() -	err = errnoErr(errno) -	if network != "tcp" { -		var err2 error -		from, err2 = parseInetAddr(sa, network) -		if err2 != nil && err == nil { -			err = err2 -		} -	} -	return -} - -func sendmsg(s uintptr, buffers [][]byte, oob []byte, to net.Addr, flags int) (int, error) { -	var h msghdr -	vs := make([]iovec, len(buffers)) -	var sa []byte -	if to != nil { -		var a [sizeofSockaddrInet6]byte -		n := marshalInetAddr(to, a[:]) -		sa = a[:n] -	} -	h.pack(vs, buffers, oob, sa) -	n, _, errno := syscall_syscall(syscall.SYS___SENDMSG_A, s, uintptr(unsafe.Pointer(&h)), uintptr(flags)) -	return int(n), errnoErr(errno) -} diff --git a/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.s b/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.s deleted file mode 100644 index 60d5839c2..000000000 --- a/vendor/golang.org/x/net/internal/socket/sys_zos_s390x.s +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2020 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. - -#include "textflag.h" - -TEXT ·syscall_syscall(SB),NOSPLIT,$0 -        JMP     syscall·_syscall(SB) - -TEXT ·syscall_syscall6(SB),NOSPLIT,$0 -        JMP     syscall·_syscall6(SB) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_aix_ppc64.go b/vendor/golang.org/x/net/internal/socket/zsys_aix_ppc64.go deleted file mode 100644 index 45bab004c..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_aix_ppc64.go +++ /dev/null @@ -1,39 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_aix.go - -// Added for go1.11 compatibility -//go:build aix - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go deleted file mode 100644 index 98dcfe412..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_darwin_amd64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_darwin.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_darwin_arm64.go b/vendor/golang.org/x/net/internal/socket/zsys_darwin_arm64.go deleted file mode 100644 index 98dcfe412..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_darwin_arm64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_darwin.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go deleted file mode 100644 index 636d129ae..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_dragonfly_amd64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_dragonfly.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go b/vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go deleted file mode 100644 index 87707fed0..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_386.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go deleted file mode 100644 index 7db778112..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_amd64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go b/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go deleted file mode 100644 index 87707fed0..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm64.go b/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm64.go deleted file mode 100644 index 7db778112..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_arm64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_riscv64.go b/vendor/golang.org/x/net/internal/socket/zsys_freebsd_riscv64.go deleted file mode 100644 index 965c0b28b..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_freebsd_riscv64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_386.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_386.go deleted file mode 100644 index 4c19269be..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_386.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_amd64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go deleted file mode 100644 index 4c19269be..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_arm.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_arm64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_loong64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_loong64.go deleted file mode 100644 index b6fc15a1a..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_loong64.go +++ /dev/null @@ -1,39 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build loong64 - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_0  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go deleted file mode 100644 index 4c19269be..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_mips64le.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go deleted file mode 100644 index 4c19269be..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_mipsle.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc.go deleted file mode 100644 index 4c19269be..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_ppc64le.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_riscv64.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_riscv64.go deleted file mode 100644 index e67fc3cba..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_riscv64.go +++ /dev/null @@ -1,39 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build riscv64 - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_0  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go b/vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go deleted file mode 100644 index 3dcd5c8ed..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_linux_s390x.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint64 -	Control    *byte -	Controllen uint64 -	Flags      int32 -	Pad_cgo_1  [4]byte -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint64 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x38 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go b/vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go deleted file mode 100644 index f95572dc0..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_386.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go deleted file mode 100644 index a92fd60e4..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_amd64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go b/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go deleted file mode 100644 index f95572dc0..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm.go +++ /dev/null @@ -1,35 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     int32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr msghdr -	Len uint32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm64.go b/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm64.go deleted file mode 100644 index a92fd60e4..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_netbsd_arm64.go +++ /dev/null @@ -1,38 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     int32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type mmsghdr struct { -	Hdr       msghdr -	Len       uint32 -	Pad_cgo_0 [4]byte -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go deleted file mode 100644 index e792ec211..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_386.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go deleted file mode 100644 index b68ff2d57..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_amd64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go deleted file mode 100644 index e792ec211..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint32 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x8 -	sizeofMsghdr = 0x1c -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm64.go deleted file mode 100644 index b68ff2d57..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_arm64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Pad_cgo_0  [4]byte -	Iov        *iovec -	Iovlen     uint32 -	Pad_cgo_1  [4]byte -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_mips64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_mips64.go deleted file mode 100644 index 3c9576e2d..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_mips64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go deleted file mode 100644 index 3c9576e2d..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_ppc64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go b/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go deleted file mode 100644 index 3c9576e2d..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_openbsd_riscv64.go +++ /dev/null @@ -1,30 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Namelen    uint32 -	Iov        *iovec -	Iovlen     uint32 -	Control    *byte -	Controllen uint32 -	Flags      int32 -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go b/vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go deleted file mode 100644 index 359cfec40..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_solaris_amd64.go +++ /dev/null @@ -1,32 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_solaris.go - -package socket - -type iovec struct { -	Base *int8 -	Len  uint64 -} - -type msghdr struct { -	Name         *byte -	Namelen      uint32 -	Pad_cgo_0    [4]byte -	Iov          *iovec -	Iovlen       int32 -	Pad_cgo_1    [4]byte -	Accrights    *int8 -	Accrightslen int32 -	Pad_cgo_2    [4]byte -} - -type cmsghdr struct { -	Len   uint32 -	Level int32 -	Type  int32 -} - -const ( -	sizeofIovec  = 0x10 -	sizeofMsghdr = 0x30 -) diff --git a/vendor/golang.org/x/net/internal/socket/zsys_zos_s390x.go b/vendor/golang.org/x/net/internal/socket/zsys_zos_s390x.go deleted file mode 100644 index 49b62c856..000000000 --- a/vendor/golang.org/x/net/internal/socket/zsys_zos_s390x.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2020 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. - -package socket - -type iovec struct { -	Base *byte -	Len  uint64 -} - -type msghdr struct { -	Name       *byte -	Iov        *iovec -	Control    *byte -	Flags      int32 -	Namelen    uint32 -	Iovlen     int32 -	Controllen uint32 -} - -type cmsghdr struct { -	Len   int32 -	Level int32 -	Type  int32 -} - -const sizeofCmsghdr = 12 diff --git a/vendor/golang.org/x/net/internal/timeseries/timeseries.go b/vendor/golang.org/x/net/internal/timeseries/timeseries.go deleted file mode 100644 index dc5225b6d..000000000 --- a/vendor/golang.org/x/net/internal/timeseries/timeseries.go +++ /dev/null @@ -1,525 +0,0 @@ -// 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. - -// Package timeseries implements a time series structure for stats collection. -package timeseries // import "golang.org/x/net/internal/timeseries" - -import ( -	"fmt" -	"log" -	"time" -) - -const ( -	timeSeriesNumBuckets       = 64 -	minuteHourSeriesNumBuckets = 60 -) - -var timeSeriesResolutions = []time.Duration{ -	1 * time.Second, -	10 * time.Second, -	1 * time.Minute, -	10 * time.Minute, -	1 * time.Hour, -	6 * time.Hour, -	24 * time.Hour,          // 1 day -	7 * 24 * time.Hour,      // 1 week -	4 * 7 * 24 * time.Hour,  // 4 weeks -	16 * 7 * 24 * time.Hour, // 16 weeks -} - -var minuteHourSeriesResolutions = []time.Duration{ -	1 * time.Second, -	1 * time.Minute, -} - -// An Observable is a kind of data that can be aggregated in a time series. -type Observable interface { -	Multiply(ratio float64)    // Multiplies the data in self by a given ratio -	Add(other Observable)      // Adds the data from a different observation to self -	Clear()                    // Clears the observation so it can be reused. -	CopyFrom(other Observable) // Copies the contents of a given observation to self -} - -// Float attaches the methods of Observable to a float64. -type Float float64 - -// NewFloat returns a Float. -func NewFloat() Observable { -	f := Float(0) -	return &f -} - -// String returns the float as a string. -func (f *Float) String() string { return fmt.Sprintf("%g", f.Value()) } - -// Value returns the float's value. -func (f *Float) Value() float64 { return float64(*f) } - -func (f *Float) Multiply(ratio float64) { *f *= Float(ratio) } - -func (f *Float) Add(other Observable) { -	o := other.(*Float) -	*f += *o -} - -func (f *Float) Clear() { *f = 0 } - -func (f *Float) CopyFrom(other Observable) { -	o := other.(*Float) -	*f = *o -} - -// A Clock tells the current time. -type Clock interface { -	Time() time.Time -} - -type defaultClock int - -var defaultClockInstance defaultClock - -func (defaultClock) Time() time.Time { return time.Now() } - -// Information kept per level. Each level consists of a circular list of -// observations. The start of the level may be derived from end and the -// len(buckets) * sizeInMillis. -type tsLevel struct { -	oldest   int               // index to oldest bucketed Observable -	newest   int               // index to newest bucketed Observable -	end      time.Time         // end timestamp for this level -	size     time.Duration     // duration of the bucketed Observable -	buckets  []Observable      // collections of observations -	provider func() Observable // used for creating new Observable -} - -func (l *tsLevel) Clear() { -	l.oldest = 0 -	l.newest = len(l.buckets) - 1 -	l.end = time.Time{} -	for i := range l.buckets { -		if l.buckets[i] != nil { -			l.buckets[i].Clear() -			l.buckets[i] = nil -		} -	} -} - -func (l *tsLevel) InitLevel(size time.Duration, numBuckets int, f func() Observable) { -	l.size = size -	l.provider = f -	l.buckets = make([]Observable, numBuckets) -} - -// Keeps a sequence of levels. Each level is responsible for storing data at -// a given resolution. For example, the first level stores data at a one -// minute resolution while the second level stores data at a one hour -// resolution. - -// Each level is represented by a sequence of buckets. Each bucket spans an -// interval equal to the resolution of the level. New observations are added -// to the last bucket. -type timeSeries struct { -	provider    func() Observable // make more Observable -	numBuckets  int               // number of buckets in each level -	levels      []*tsLevel        // levels of bucketed Observable -	lastAdd     time.Time         // time of last Observable tracked -	total       Observable        // convenient aggregation of all Observable -	clock       Clock             // Clock for getting current time -	pending     Observable        // observations not yet bucketed -	pendingTime time.Time         // what time are we keeping in pending -	dirty       bool              // if there are pending observations -} - -// init initializes a level according to the supplied criteria. -func (ts *timeSeries) init(resolutions []time.Duration, f func() Observable, numBuckets int, clock Clock) { -	ts.provider = f -	ts.numBuckets = numBuckets -	ts.clock = clock -	ts.levels = make([]*tsLevel, len(resolutions)) - -	for i := range resolutions { -		if i > 0 && resolutions[i-1] >= resolutions[i] { -			log.Print("timeseries: resolutions must be monotonically increasing") -			break -		} -		newLevel := new(tsLevel) -		newLevel.InitLevel(resolutions[i], ts.numBuckets, ts.provider) -		ts.levels[i] = newLevel -	} - -	ts.Clear() -} - -// Clear removes all observations from the time series. -func (ts *timeSeries) Clear() { -	ts.lastAdd = time.Time{} -	ts.total = ts.resetObservation(ts.total) -	ts.pending = ts.resetObservation(ts.pending) -	ts.pendingTime = time.Time{} -	ts.dirty = false - -	for i := range ts.levels { -		ts.levels[i].Clear() -	} -} - -// Add records an observation at the current time. -func (ts *timeSeries) Add(observation Observable) { -	ts.AddWithTime(observation, ts.clock.Time()) -} - -// AddWithTime records an observation at the specified time. -func (ts *timeSeries) AddWithTime(observation Observable, t time.Time) { - -	smallBucketDuration := ts.levels[0].size - -	if t.After(ts.lastAdd) { -		ts.lastAdd = t -	} - -	if t.After(ts.pendingTime) { -		ts.advance(t) -		ts.mergePendingUpdates() -		ts.pendingTime = ts.levels[0].end -		ts.pending.CopyFrom(observation) -		ts.dirty = true -	} else if t.After(ts.pendingTime.Add(-1 * smallBucketDuration)) { -		// The observation is close enough to go into the pending bucket. -		// This compensates for clock skewing and small scheduling delays -		// by letting the update stay in the fast path. -		ts.pending.Add(observation) -		ts.dirty = true -	} else { -		ts.mergeValue(observation, t) -	} -} - -// mergeValue inserts the observation at the specified time in the past into all levels. -func (ts *timeSeries) mergeValue(observation Observable, t time.Time) { -	for _, level := range ts.levels { -		index := (ts.numBuckets - 1) - int(level.end.Sub(t)/level.size) -		if 0 <= index && index < ts.numBuckets { -			bucketNumber := (level.oldest + index) % ts.numBuckets -			if level.buckets[bucketNumber] == nil { -				level.buckets[bucketNumber] = level.provider() -			} -			level.buckets[bucketNumber].Add(observation) -		} -	} -	ts.total.Add(observation) -} - -// mergePendingUpdates applies the pending updates into all levels. -func (ts *timeSeries) mergePendingUpdates() { -	if ts.dirty { -		ts.mergeValue(ts.pending, ts.pendingTime) -		ts.pending = ts.resetObservation(ts.pending) -		ts.dirty = false -	} -} - -// advance cycles the buckets at each level until the latest bucket in -// each level can hold the time specified. -func (ts *timeSeries) advance(t time.Time) { -	if !t.After(ts.levels[0].end) { -		return -	} -	for i := 0; i < len(ts.levels); i++ { -		level := ts.levels[i] -		if !level.end.Before(t) { -			break -		} - -		// If the time is sufficiently far, just clear the level and advance -		// directly. -		if !t.Before(level.end.Add(level.size * time.Duration(ts.numBuckets))) { -			for _, b := range level.buckets { -				ts.resetObservation(b) -			} -			level.end = time.Unix(0, (t.UnixNano()/level.size.Nanoseconds())*level.size.Nanoseconds()) -		} - -		for t.After(level.end) { -			level.end = level.end.Add(level.size) -			level.newest = level.oldest -			level.oldest = (level.oldest + 1) % ts.numBuckets -			ts.resetObservation(level.buckets[level.newest]) -		} - -		t = level.end -	} -} - -// Latest returns the sum of the num latest buckets from the level. -func (ts *timeSeries) Latest(level, num int) Observable { -	now := ts.clock.Time() -	if ts.levels[0].end.Before(now) { -		ts.advance(now) -	} - -	ts.mergePendingUpdates() - -	result := ts.provider() -	l := ts.levels[level] -	index := l.newest - -	for i := 0; i < num; i++ { -		if l.buckets[index] != nil { -			result.Add(l.buckets[index]) -		} -		if index == 0 { -			index = ts.numBuckets -		} -		index-- -	} - -	return result -} - -// LatestBuckets returns a copy of the num latest buckets from level. -func (ts *timeSeries) LatestBuckets(level, num int) []Observable { -	if level < 0 || level > len(ts.levels) { -		log.Print("timeseries: bad level argument: ", level) -		return nil -	} -	if num < 0 || num >= ts.numBuckets { -		log.Print("timeseries: bad num argument: ", num) -		return nil -	} - -	results := make([]Observable, num) -	now := ts.clock.Time() -	if ts.levels[0].end.Before(now) { -		ts.advance(now) -	} - -	ts.mergePendingUpdates() - -	l := ts.levels[level] -	index := l.newest - -	for i := 0; i < num; i++ { -		result := ts.provider() -		results[i] = result -		if l.buckets[index] != nil { -			result.CopyFrom(l.buckets[index]) -		} - -		if index == 0 { -			index = ts.numBuckets -		} -		index -= 1 -	} -	return results -} - -// ScaleBy updates observations by scaling by factor. -func (ts *timeSeries) ScaleBy(factor float64) { -	for _, l := range ts.levels { -		for i := 0; i < ts.numBuckets; i++ { -			l.buckets[i].Multiply(factor) -		} -	} - -	ts.total.Multiply(factor) -	ts.pending.Multiply(factor) -} - -// Range returns the sum of observations added over the specified time range. -// If start or finish times don't fall on bucket boundaries of the same -// level, then return values are approximate answers. -func (ts *timeSeries) Range(start, finish time.Time) Observable { -	return ts.ComputeRange(start, finish, 1)[0] -} - -// Recent returns the sum of observations from the last delta. -func (ts *timeSeries) Recent(delta time.Duration) Observable { -	now := ts.clock.Time() -	return ts.Range(now.Add(-delta), now) -} - -// Total returns the total of all observations. -func (ts *timeSeries) Total() Observable { -	ts.mergePendingUpdates() -	return ts.total -} - -// ComputeRange computes a specified number of values into a slice using -// the observations recorded over the specified time period. The return -// values are approximate if the start or finish times don't fall on the -// bucket boundaries at the same level or if the number of buckets spanning -// the range is not an integral multiple of num. -func (ts *timeSeries) ComputeRange(start, finish time.Time, num int) []Observable { -	if start.After(finish) { -		log.Printf("timeseries: start > finish, %v>%v", start, finish) -		return nil -	} - -	if num < 0 { -		log.Printf("timeseries: num < 0, %v", num) -		return nil -	} - -	results := make([]Observable, num) - -	for _, l := range ts.levels { -		if !start.Before(l.end.Add(-l.size * time.Duration(ts.numBuckets))) { -			ts.extract(l, start, finish, num, results) -			return results -		} -	} - -	// Failed to find a level that covers the desired range. So just -	// extract from the last level, even if it doesn't cover the entire -	// desired range. -	ts.extract(ts.levels[len(ts.levels)-1], start, finish, num, results) - -	return results -} - -// RecentList returns the specified number of values in slice over the most -// recent time period of the specified range. -func (ts *timeSeries) RecentList(delta time.Duration, num int) []Observable { -	if delta < 0 { -		return nil -	} -	now := ts.clock.Time() -	return ts.ComputeRange(now.Add(-delta), now, num) -} - -// extract returns a slice of specified number of observations from a given -// level over a given range. -func (ts *timeSeries) extract(l *tsLevel, start, finish time.Time, num int, results []Observable) { -	ts.mergePendingUpdates() - -	srcInterval := l.size -	dstInterval := finish.Sub(start) / time.Duration(num) -	dstStart := start -	srcStart := l.end.Add(-srcInterval * time.Duration(ts.numBuckets)) - -	srcIndex := 0 - -	// Where should scanning start? -	if dstStart.After(srcStart) { -		advance := int(dstStart.Sub(srcStart) / srcInterval) -		srcIndex += advance -		srcStart = srcStart.Add(time.Duration(advance) * srcInterval) -	} - -	// The i'th value is computed as show below. -	// interval = (finish/start)/num -	// i'th value = sum of observation in range -	//   [ start + i       * interval, -	//     start + (i + 1) * interval ) -	for i := 0; i < num; i++ { -		results[i] = ts.resetObservation(results[i]) -		dstEnd := dstStart.Add(dstInterval) -		for srcIndex < ts.numBuckets && srcStart.Before(dstEnd) { -			srcEnd := srcStart.Add(srcInterval) -			if srcEnd.After(ts.lastAdd) { -				srcEnd = ts.lastAdd -			} - -			if !srcEnd.Before(dstStart) { -				srcValue := l.buckets[(srcIndex+l.oldest)%ts.numBuckets] -				if !srcStart.Before(dstStart) && !srcEnd.After(dstEnd) { -					// dst completely contains src. -					if srcValue != nil { -						results[i].Add(srcValue) -					} -				} else { -					// dst partially overlaps src. -					overlapStart := maxTime(srcStart, dstStart) -					overlapEnd := minTime(srcEnd, dstEnd) -					base := srcEnd.Sub(srcStart) -					fraction := overlapEnd.Sub(overlapStart).Seconds() / base.Seconds() - -					used := ts.provider() -					if srcValue != nil { -						used.CopyFrom(srcValue) -					} -					used.Multiply(fraction) -					results[i].Add(used) -				} - -				if srcEnd.After(dstEnd) { -					break -				} -			} -			srcIndex++ -			srcStart = srcStart.Add(srcInterval) -		} -		dstStart = dstStart.Add(dstInterval) -	} -} - -// resetObservation clears the content so the struct may be reused. -func (ts *timeSeries) resetObservation(observation Observable) Observable { -	if observation == nil { -		observation = ts.provider() -	} else { -		observation.Clear() -	} -	return observation -} - -// TimeSeries tracks data at granularities from 1 second to 16 weeks. -type TimeSeries struct { -	timeSeries -} - -// NewTimeSeries creates a new TimeSeries using the function provided for creating new Observable. -func NewTimeSeries(f func() Observable) *TimeSeries { -	return NewTimeSeriesWithClock(f, defaultClockInstance) -} - -// NewTimeSeriesWithClock creates a new TimeSeries using the function provided for creating new Observable and the clock for -// assigning timestamps. -func NewTimeSeriesWithClock(f func() Observable, clock Clock) *TimeSeries { -	ts := new(TimeSeries) -	ts.timeSeries.init(timeSeriesResolutions, f, timeSeriesNumBuckets, clock) -	return ts -} - -// MinuteHourSeries tracks data at granularities of 1 minute and 1 hour. -type MinuteHourSeries struct { -	timeSeries -} - -// NewMinuteHourSeries creates a new MinuteHourSeries using the function provided for creating new Observable. -func NewMinuteHourSeries(f func() Observable) *MinuteHourSeries { -	return NewMinuteHourSeriesWithClock(f, defaultClockInstance) -} - -// NewMinuteHourSeriesWithClock creates a new MinuteHourSeries using the function provided for creating new Observable and the clock for -// assigning timestamps. -func NewMinuteHourSeriesWithClock(f func() Observable, clock Clock) *MinuteHourSeries { -	ts := new(MinuteHourSeries) -	ts.timeSeries.init(minuteHourSeriesResolutions, f, -		minuteHourSeriesNumBuckets, clock) -	return ts -} - -func (ts *MinuteHourSeries) Minute() Observable { -	return ts.timeSeries.Latest(0, 60) -} - -func (ts *MinuteHourSeries) Hour() Observable { -	return ts.timeSeries.Latest(1, 60) -} - -func minTime(a, b time.Time) time.Time { -	if a.Before(b) { -		return a -	} -	return b -} - -func maxTime(a, b time.Time) time.Time { -	if a.After(b) { -		return a -	} -	return b -} diff --git a/vendor/golang.org/x/net/ipv4/batch.go b/vendor/golang.org/x/net/ipv4/batch.go deleted file mode 100644 index 1a3a4fc0c..000000000 --- a/vendor/golang.org/x/net/ipv4/batch.go +++ /dev/null @@ -1,194 +0,0 @@ -// Copyright 2017 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. - -package ipv4 - -import ( -	"net" -	"runtime" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the ReadBatch and WriteBatch methods of -// PacketConn are not implemented. - -// BUG(mikio): On Windows, the ReadBatch and WriteBatch methods of -// RawConn are not implemented. - -// A Message represents an IO message. -// -//	type Message struct { -//		Buffers [][]byte -//		OOB     []byte -//		Addr    net.Addr -//		N       int -//		NN      int -//		Flags   int -//	} -// -// The Buffers fields represents a list of contiguous buffers, which -// can be used for vectored IO, for example, putting a header and a -// payload in each slice. -// When writing, the Buffers field must contain at least one byte to -// write. -// When reading, the Buffers field will always contain a byte to read. -// -// The OOB field contains protocol-specific control or miscellaneous -// ancillary data known as out-of-band data. -// It can be nil when not required. -// -// The Addr field specifies a destination address when writing. -// It can be nil when the underlying protocol of the endpoint uses -// connection-oriented communication. -// After a successful read, it may contain the source address on the -// received packet. -// -// The N field indicates the number of bytes read or written from/to -// Buffers. -// -// The NN field indicates the number of bytes read or written from/to -// OOB. -// -// The Flags field contains protocol-specific information on the -// received message. -type Message = socket.Message - -// ReadBatch reads a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_PEEK. -// -// On a successful read it returns the number of messages received, up -// to len(ms). -// -// On Linux, a batch read will be optimized. -// On other platforms, this method will read only a single message. -// -// Unlike the ReadFrom method, it doesn't strip the IPv4 header -// followed by option headers from the received IPv4 datagram when the -// underlying transport is net.IPConn. Each Buffers field of Message -// must be large enough to accommodate an IPv4 header and option -// headers. -func (c *payloadHandler) ReadBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.RecvMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.RecvMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		if compatFreeBSD32 && ms[0].NN > 0 { -			adjustFreeBSD32(&ms[0]) -		} -		return n, err -	} -} - -// WriteBatch writes a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_DONTROUTE. -// -// It returns the number of messages written on a successful write. -// -// On Linux, a batch write will be optimized. -// On other platforms, this method will write only a single message. -func (c *payloadHandler) WriteBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.SendMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.SendMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	} -} - -// ReadBatch reads a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_PEEK. -// -// On a successful read it returns the number of messages received, up -// to len(ms). -// -// On Linux, a batch read will be optimized. -// On other platforms, this method will read only a single message. -func (c *packetHandler) ReadBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.RecvMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.RecvMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -		} -		if compatFreeBSD32 && ms[0].NN > 0 { -			adjustFreeBSD32(&ms[0]) -		} -		return n, err -	} -} - -// WriteBatch writes a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_DONTROUTE. -// -// It returns the number of messages written on a successful write. -// -// On Linux, a batch write will be optimized. -// On other platforms, this method will write only a single message. -func (c *packetHandler) WriteBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.SendMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "write", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.SendMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "write", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -		} -		return n, err -	} -} diff --git a/vendor/golang.org/x/net/ipv4/control.go b/vendor/golang.org/x/net/ipv4/control.go deleted file mode 100644 index a2b02ca95..000000000 --- a/vendor/golang.org/x/net/ipv4/control.go +++ /dev/null @@ -1,144 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"fmt" -	"net" -	"sync" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" -) - -type rawOpt struct { -	sync.RWMutex -	cflags ControlFlags -} - -func (c *rawOpt) set(f ControlFlags)        { c.cflags |= f } -func (c *rawOpt) clear(f ControlFlags)      { c.cflags &^= f } -func (c *rawOpt) isset(f ControlFlags) bool { return c.cflags&f != 0 } - -type ControlFlags uint - -const ( -	FlagTTL       ControlFlags = 1 << iota // pass the TTL on the received packet -	FlagSrc                                // pass the source address on the received packet -	FlagDst                                // pass the destination address on the received packet -	FlagInterface                          // pass the interface index on the received packet -) - -// A ControlMessage represents per packet basis IP-level socket options. -type ControlMessage struct { -	// Receiving socket options: SetControlMessage allows to -	// receive the options from the protocol stack using ReadFrom -	// method of PacketConn or RawConn. -	// -	// Specifying socket options: ControlMessage for WriteTo -	// method of PacketConn or RawConn allows to send the options -	// to the protocol stack. -	// -	TTL     int    // time-to-live, receiving only -	Src     net.IP // source address, specifying only -	Dst     net.IP // destination address, receiving only -	IfIndex int    // interface index, must be 1 <= value when specifying -} - -func (cm *ControlMessage) String() string { -	if cm == nil { -		return "<nil>" -	} -	return fmt.Sprintf("ttl=%d src=%v dst=%v ifindex=%d", cm.TTL, cm.Src, cm.Dst, cm.IfIndex) -} - -// Marshal returns the binary encoding of cm. -func (cm *ControlMessage) Marshal() []byte { -	if cm == nil { -		return nil -	} -	var m socket.ControlMessage -	if ctlOpts[ctlPacketInfo].name > 0 && (cm.Src.To4() != nil || cm.IfIndex > 0) { -		m = socket.NewControlMessage([]int{ctlOpts[ctlPacketInfo].length}) -	} -	if len(m) > 0 { -		ctlOpts[ctlPacketInfo].marshal(m, cm) -	} -	return m -} - -// Parse parses b as a control message and stores the result in cm. -func (cm *ControlMessage) Parse(b []byte) error { -	ms, err := socket.ControlMessage(b).Parse() -	if err != nil { -		return err -	} -	for _, m := range ms { -		lvl, typ, l, err := m.ParseHeader() -		if err != nil { -			return err -		} -		if lvl != iana.ProtocolIP { -			continue -		} -		switch { -		case typ == ctlOpts[ctlTTL].name && l >= ctlOpts[ctlTTL].length: -			ctlOpts[ctlTTL].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlDst].name && l >= ctlOpts[ctlDst].length: -			ctlOpts[ctlDst].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlInterface].name && l >= ctlOpts[ctlInterface].length: -			ctlOpts[ctlInterface].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlPacketInfo].name && l >= ctlOpts[ctlPacketInfo].length: -			ctlOpts[ctlPacketInfo].parse(cm, m.Data(l)) -		} -	} -	return nil -} - -// NewControlMessage returns a new control message. -// -// The returned message is large enough for options specified by cf. -func NewControlMessage(cf ControlFlags) []byte { -	opt := rawOpt{cflags: cf} -	var l int -	if opt.isset(FlagTTL) && ctlOpts[ctlTTL].name > 0 { -		l += socket.ControlMessageSpace(ctlOpts[ctlTTL].length) -	} -	if ctlOpts[ctlPacketInfo].name > 0 { -		if opt.isset(FlagSrc | FlagDst | FlagInterface) { -			l += socket.ControlMessageSpace(ctlOpts[ctlPacketInfo].length) -		} -	} else { -		if opt.isset(FlagDst) && ctlOpts[ctlDst].name > 0 { -			l += socket.ControlMessageSpace(ctlOpts[ctlDst].length) -		} -		if opt.isset(FlagInterface) && ctlOpts[ctlInterface].name > 0 { -			l += socket.ControlMessageSpace(ctlOpts[ctlInterface].length) -		} -	} -	var b []byte -	if l > 0 { -		b = make([]byte, l) -	} -	return b -} - -// Ancillary data socket options -const ( -	ctlTTL        = iota // header field -	ctlSrc               // header field -	ctlDst               // header field -	ctlInterface         // inbound or outbound interface -	ctlPacketInfo        // inbound or outbound packet path -	ctlMax -) - -// A ctlOpt represents a binding for ancillary data socket option. -type ctlOpt struct { -	name    int // option name, must be equal or greater than 1 -	length  int // option length -	marshal func([]byte, *ControlMessage) []byte -	parse   func(*ControlMessage, []byte) -} diff --git a/vendor/golang.org/x/net/ipv4/control_bsd.go b/vendor/golang.org/x/net/ipv4/control_bsd.go deleted file mode 100644 index c88da8cbe..000000000 --- a/vendor/golang.org/x/net/ipv4/control_bsd.go +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2012 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 aix || darwin || dragonfly || freebsd || netbsd || openbsd - -package ipv4 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func marshalDst(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIP, unix.IP_RECVDSTADDR, net.IPv4len) -	return m.Next(net.IPv4len) -} - -func parseDst(cm *ControlMessage, b []byte) { -	if len(cm.Dst) < net.IPv4len { -		cm.Dst = make(net.IP, net.IPv4len) -	} -	copy(cm.Dst, b[:net.IPv4len]) -} - -func marshalInterface(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIP, sockoptReceiveInterface, syscall.SizeofSockaddrDatalink) -	return m.Next(syscall.SizeofSockaddrDatalink) -} - -func parseInterface(cm *ControlMessage, b []byte) { -	var sadl syscall.SockaddrDatalink -	copy((*[unsafe.Sizeof(sadl)]byte)(unsafe.Pointer(&sadl))[:], b) -	cm.IfIndex = int(sadl.Index) -} diff --git a/vendor/golang.org/x/net/ipv4/control_pktinfo.go b/vendor/golang.org/x/net/ipv4/control_pktinfo.go deleted file mode 100644 index 14ae2dae4..000000000 --- a/vendor/golang.org/x/net/ipv4/control_pktinfo.go +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2014 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 darwin || linux || solaris - -package ipv4 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func marshalPacketInfo(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIP, unix.IP_PKTINFO, sizeofInetPktinfo) -	if cm != nil { -		pi := (*inetPktinfo)(unsafe.Pointer(&m.Data(sizeofInetPktinfo)[0])) -		if ip := cm.Src.To4(); ip != nil { -			copy(pi.Spec_dst[:], ip) -		} -		if cm.IfIndex > 0 { -			pi.setIfindex(cm.IfIndex) -		} -	} -	return m.Next(sizeofInetPktinfo) -} - -func parsePacketInfo(cm *ControlMessage, b []byte) { -	pi := (*inetPktinfo)(unsafe.Pointer(&b[0])) -	cm.IfIndex = int(pi.Ifindex) -	if len(cm.Dst) < net.IPv4len { -		cm.Dst = make(net.IP, net.IPv4len) -	} -	copy(cm.Dst, pi.Addr[:]) -} diff --git a/vendor/golang.org/x/net/ipv4/control_stub.go b/vendor/golang.org/x/net/ipv4/control_stub.go deleted file mode 100644 index 3ba661160..000000000 --- a/vendor/golang.org/x/net/ipv4/control_stub.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2012 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv4 - -import "golang.org/x/net/internal/socket" - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/control_unix.go b/vendor/golang.org/x/net/ipv4/control_unix.go deleted file mode 100644 index 2e765548f..000000000 --- a/vendor/golang.org/x/net/ipv4/control_unix.go +++ /dev/null @@ -1,75 +0,0 @@ -// Copyright 2012 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris - -package ipv4 - -import ( -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	opt.Lock() -	defer opt.Unlock() -	if so, ok := sockOpts[ssoReceiveTTL]; ok && cf&FlagTTL != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(FlagTTL) -		} else { -			opt.clear(FlagTTL) -		} -	} -	if so, ok := sockOpts[ssoPacketInfo]; ok { -		if cf&(FlagSrc|FlagDst|FlagInterface) != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(cf & (FlagSrc | FlagDst | FlagInterface)) -			} else { -				opt.clear(cf & (FlagSrc | FlagDst | FlagInterface)) -			} -		} -	} else { -		if so, ok := sockOpts[ssoReceiveDst]; ok && cf&FlagDst != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(FlagDst) -			} else { -				opt.clear(FlagDst) -			} -		} -		if so, ok := sockOpts[ssoReceiveInterface]; ok && cf&FlagInterface != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(FlagInterface) -			} else { -				opt.clear(FlagInterface) -			} -		} -	} -	return nil -} - -func marshalTTL(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIP, unix.IP_RECVTTL, 1) -	return m.Next(1) -} - -func parseTTL(cm *ControlMessage, b []byte) { -	cm.TTL = int(*(*byte)(unsafe.Pointer(&b[:1][0]))) -} diff --git a/vendor/golang.org/x/net/ipv4/control_windows.go b/vendor/golang.org/x/net/ipv4/control_windows.go deleted file mode 100644 index 82c630642..000000000 --- a/vendor/golang.org/x/net/ipv4/control_windows.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import "golang.org/x/net/internal/socket" - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	// TODO(mikio): implement this -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/control_zos.go b/vendor/golang.org/x/net/ipv4/control_zos.go deleted file mode 100644 index de11c42e5..000000000 --- a/vendor/golang.org/x/net/ipv4/control_zos.go +++ /dev/null @@ -1,88 +0,0 @@ -// Copyright 2020 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. - -package ipv4 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func marshalPacketInfo(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIP, unix.IP_PKTINFO, sizeofInetPktinfo) -	if cm != nil { -		pi := (*inetPktinfo)(unsafe.Pointer(&m.Data(sizeofInetPktinfo)[0])) -		if ip := cm.Src.To4(); ip != nil { -			copy(pi.Addr[:], ip) -		} -		if cm.IfIndex > 0 { -			pi.setIfindex(cm.IfIndex) -		} -	} -	return m.Next(sizeofInetPktinfo) -} - -func parsePacketInfo(cm *ControlMessage, b []byte) { -	pi := (*inetPktinfo)(unsafe.Pointer(&b[0])) -	cm.IfIndex = int(pi.Ifindex) -	if len(cm.Dst) < net.IPv4len { -		cm.Dst = make(net.IP, net.IPv4len) -	} -	copy(cm.Dst, pi.Addr[:]) -} - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	opt.Lock() -	defer opt.Unlock() -	if so, ok := sockOpts[ssoReceiveTTL]; ok && cf&FlagTTL != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(FlagTTL) -		} else { -			opt.clear(FlagTTL) -		} -	} -	if so, ok := sockOpts[ssoPacketInfo]; ok { -		if cf&(FlagSrc|FlagDst|FlagInterface) != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(cf & (FlagSrc | FlagDst | FlagInterface)) -			} else { -				opt.clear(cf & (FlagSrc | FlagDst | FlagInterface)) -			} -		} -	} else { -		if so, ok := sockOpts[ssoReceiveDst]; ok && cf&FlagDst != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(FlagDst) -			} else { -				opt.clear(FlagDst) -			} -		} -		if so, ok := sockOpts[ssoReceiveInterface]; ok && cf&FlagInterface != 0 { -			if err := so.SetInt(c, boolint(on)); err != nil { -				return err -			} -			if on { -				opt.set(FlagInterface) -			} else { -				opt.clear(FlagInterface) -			} -		} -	} -	return nil -} diff --git a/vendor/golang.org/x/net/ipv4/dgramopt.go b/vendor/golang.org/x/net/ipv4/dgramopt.go deleted file mode 100644 index c191c22ab..000000000 --- a/vendor/golang.org/x/net/ipv4/dgramopt.go +++ /dev/null @@ -1,264 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/bpf" -) - -// MulticastTTL returns the time-to-live field value for outgoing -// multicast packets. -func (c *dgramOpt) MulticastTTL() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastTTL] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetMulticastTTL sets the time-to-live field value for future -// outgoing multicast packets. -func (c *dgramOpt) SetMulticastTTL(ttl int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastTTL] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, ttl) -} - -// MulticastInterface returns the default interface for multicast -// packet transmissions. -func (c *dgramOpt) MulticastInterface() (*net.Interface, error) { -	if !c.ok() { -		return nil, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastInterface] -	if !ok { -		return nil, errNotImplemented -	} -	return so.getMulticastInterface(c.Conn) -} - -// SetMulticastInterface sets the default interface for future -// multicast packet transmissions. -func (c *dgramOpt) SetMulticastInterface(ifi *net.Interface) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastInterface] -	if !ok { -		return errNotImplemented -	} -	return so.setMulticastInterface(c.Conn, ifi) -} - -// MulticastLoopback reports whether transmitted multicast packets -// should be copied and send back to the originator. -func (c *dgramOpt) MulticastLoopback() (bool, error) { -	if !c.ok() { -		return false, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastLoopback] -	if !ok { -		return false, errNotImplemented -	} -	on, err := so.GetInt(c.Conn) -	if err != nil { -		return false, err -	} -	return on == 1, nil -} - -// SetMulticastLoopback sets whether transmitted multicast packets -// should be copied and send back to the originator. -func (c *dgramOpt) SetMulticastLoopback(on bool) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastLoopback] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, boolint(on)) -} - -// JoinGroup joins the group address group on the interface ifi. -// By default all sources that can cast data to group are accepted. -// It's possible to mute and unmute data transmission from a specific -// source by using ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup. -// JoinGroup uses the system assigned multicast interface when ifi is -// nil, although this is not recommended because the assignment -// depends on platforms and sometimes it might require routing -// configuration. -func (c *dgramOpt) JoinGroup(ifi *net.Interface, group net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoJoinGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	return so.setGroup(c.Conn, ifi, grp) -} - -// LeaveGroup leaves the group address group on the interface ifi -// regardless of whether the group is any-source group or -// source-specific group. -func (c *dgramOpt) LeaveGroup(ifi *net.Interface, group net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoLeaveGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	return so.setGroup(c.Conn, ifi, grp) -} - -// JoinSourceSpecificGroup joins the source-specific group comprising -// group and source on the interface ifi. -// JoinSourceSpecificGroup uses the system assigned multicast -// interface when ifi is nil, although this is not recommended because -// the assignment depends on platforms and sometimes it might require -// routing configuration. -func (c *dgramOpt) JoinSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoJoinSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP4(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// LeaveSourceSpecificGroup leaves the source-specific group on the -// interface ifi. -func (c *dgramOpt) LeaveSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoLeaveSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP4(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// ExcludeSourceSpecificGroup excludes the source-specific group from -// the already joined any-source groups by JoinGroup on the interface -// ifi. -func (c *dgramOpt) ExcludeSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoBlockSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP4(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// IncludeSourceSpecificGroup includes the excluded source-specific -// group by ExcludeSourceSpecificGroup again on the interface ifi. -func (c *dgramOpt) IncludeSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoUnblockSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP4(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP4(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// ICMPFilter returns an ICMP filter. -// Currently only Linux supports this. -func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) { -	if !c.ok() { -		return nil, errInvalidConn -	} -	so, ok := sockOpts[ssoICMPFilter] -	if !ok { -		return nil, errNotImplemented -	} -	return so.getICMPFilter(c.Conn) -} - -// SetICMPFilter deploys the ICMP filter. -// Currently only Linux supports this. -func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoICMPFilter] -	if !ok { -		return errNotImplemented -	} -	return so.setICMPFilter(c.Conn, f) -} - -// SetBPF attaches a BPF program to the connection. -// -// Only supported on Linux. -func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoAttachFilter] -	if !ok { -		return errNotImplemented -	} -	return so.setBPF(c.Conn, filter) -} diff --git a/vendor/golang.org/x/net/ipv4/doc.go b/vendor/golang.org/x/net/ipv4/doc.go deleted file mode 100644 index 6fbdc52b9..000000000 --- a/vendor/golang.org/x/net/ipv4/doc.go +++ /dev/null @@ -1,240 +0,0 @@ -// Copyright 2012 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. - -// Package ipv4 implements IP-level socket options for the Internet -// Protocol version 4. -// -// The package provides IP-level socket options that allow -// manipulation of IPv4 facilities. -// -// The IPv4 protocol and basic host requirements for IPv4 are defined -// in RFC 791 and RFC 1122. -// Host extensions for multicasting and socket interface extensions -// for multicast source filters are defined in RFC 1112 and RFC 3678. -// IGMPv1, IGMPv2 and IGMPv3 are defined in RFC 1112, RFC 2236 and RFC -// 3376. -// Source-specific multicast is defined in RFC 4607. -// -// # Unicasting -// -// The options for unicasting are available for net.TCPConn, -// net.UDPConn and net.IPConn which are created as network connections -// that use the IPv4 transport. When a single TCP connection carrying -// a data flow of multiple packets needs to indicate the flow is -// important, Conn is used to set the type-of-service field on the -// IPv4 header for each packet. -// -//	ln, err := net.Listen("tcp4", "0.0.0.0:1024") -//	if err != nil { -//		// error handling -//	} -//	defer ln.Close() -//	for { -//		c, err := ln.Accept() -//		if err != nil { -//			// error handling -//		} -//		go func(c net.Conn) { -//			defer c.Close() -// -// The outgoing packets will be labeled DiffServ assured forwarding -// class 1 low drop precedence, known as AF11 packets. -// -//			if err := ipv4.NewConn(c).SetTOS(0x28); err != nil { -//				// error handling -//			} -//			if _, err := c.Write(data); err != nil { -//				// error handling -//			} -//		}(c) -//	} -// -// # Multicasting -// -// The options for multicasting are available for net.UDPConn and -// net.IPConn which are created as network connections that use the -// IPv4 transport. A few network facilities must be prepared before -// you begin multicasting, at a minimum joining network interfaces and -// multicast groups. -// -//	en0, err := net.InterfaceByName("en0") -//	if err != nil { -//		// error handling -//	} -//	en1, err := net.InterfaceByIndex(911) -//	if err != nil { -//		// error handling -//	} -//	group := net.IPv4(224, 0, 0, 250) -// -// First, an application listens to an appropriate address with an -// appropriate service port. -// -//	c, err := net.ListenPacket("udp4", "0.0.0.0:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c.Close() -// -// Second, the application joins multicast groups, starts listening to -// the groups on the specified network interfaces. Note that the -// service port for transport layer protocol does not matter with this -// operation as joining groups affects only network and link layer -// protocols, such as IPv4 and Ethernet. -// -//	p := ipv4.NewPacketConn(c) -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: group}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en1, &net.UDPAddr{IP: group}); err != nil { -//		// error handling -//	} -// -// The application might set per packet control message transmissions -// between the protocol stack within the kernel. When the application -// needs a destination address on an incoming packet, -// SetControlMessage of PacketConn is used to enable control message -// transmissions. -// -//	if err := p.SetControlMessage(ipv4.FlagDst, true); err != nil { -//		// error handling -//	} -// -// The application could identify whether the received packets are -// of interest by using the control message that contains the -// destination address of the received packet. -// -//	b := make([]byte, 1500) -//	for { -//		n, cm, src, err := p.ReadFrom(b) -//		if err != nil { -//			// error handling -//		} -//		if cm.Dst.IsMulticast() { -//			if cm.Dst.Equal(group) { -//				// joined group, do something -//			} else { -//				// unknown group, discard -//				continue -//			} -//		} -// -// The application can also send both unicast and multicast packets. -// -//		p.SetTOS(0x0) -//		p.SetTTL(16) -//		if _, err := p.WriteTo(data, nil, src); err != nil { -//			// error handling -//		} -//		dst := &net.UDPAddr{IP: group, Port: 1024} -//		for _, ifi := range []*net.Interface{en0, en1} { -//			if err := p.SetMulticastInterface(ifi); err != nil { -//				// error handling -//			} -//			p.SetMulticastTTL(2) -//			if _, err := p.WriteTo(data, nil, dst); err != nil { -//				// error handling -//			} -//		} -//	} -// -// # More multicasting -// -// An application that uses PacketConn or RawConn may join multiple -// multicast groups. For example, a UDP listener with port 1024 might -// join two different groups across over two different network -// interfaces by using: -// -//	c, err := net.ListenPacket("udp4", "0.0.0.0:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c.Close() -//	p := ipv4.NewPacketConn(c) -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 248)}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 249)}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en1, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 249)}); err != nil { -//		// error handling -//	} -// -// It is possible for multiple UDP listeners that listen on the same -// UDP port to join the same multicast group. The net package will -// provide a socket that listens to a wildcard address with reusable -// UDP port when an appropriate multicast address prefix is passed to -// the net.ListenPacket or net.ListenUDP. -// -//	c1, err := net.ListenPacket("udp4", "224.0.0.0:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c1.Close() -//	c2, err := net.ListenPacket("udp4", "224.0.0.0:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c2.Close() -//	p1 := ipv4.NewPacketConn(c1) -//	if err := p1.JoinGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 248)}); err != nil { -//		// error handling -//	} -//	p2 := ipv4.NewPacketConn(c2) -//	if err := p2.JoinGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 248)}); err != nil { -//		// error handling -//	} -// -// Also it is possible for the application to leave or rejoin a -// multicast group on the network interface. -// -//	if err := p.LeaveGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 248)}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.IPv4(224, 0, 0, 250)}); err != nil { -//		// error handling -//	} -// -// # Source-specific multicasting -// -// An application that uses PacketConn or RawConn on IGMPv3 supported -// platform is able to join source-specific multicast groups. -// The application may use JoinSourceSpecificGroup and -// LeaveSourceSpecificGroup for the operation known as "include" mode, -// -//	ssmgroup := net.UDPAddr{IP: net.IPv4(232, 7, 8, 9)} -//	ssmsource := net.UDPAddr{IP: net.IPv4(192, 168, 0, 1)} -//	if err := p.JoinSourceSpecificGroup(en0, &ssmgroup, &ssmsource); err != nil { -//		// error handling -//	} -//	if err := p.LeaveSourceSpecificGroup(en0, &ssmgroup, &ssmsource); err != nil { -//		// error handling -//	} -// -// or JoinGroup, ExcludeSourceSpecificGroup, -// IncludeSourceSpecificGroup and LeaveGroup for the operation known -// as "exclude" mode. -// -//	exclsource := net.UDPAddr{IP: net.IPv4(192, 168, 0, 254)} -//	if err := p.JoinGroup(en0, &ssmgroup); err != nil { -//		// error handling -//	} -//	if err := p.ExcludeSourceSpecificGroup(en0, &ssmgroup, &exclsource); err != nil { -//		// error handling -//	} -//	if err := p.LeaveGroup(en0, &ssmgroup); err != nil { -//		// error handling -//	} -// -// Note that it depends on each platform implementation what happens -// when an application which runs on IGMPv3 unsupported platform uses -// JoinSourceSpecificGroup and LeaveSourceSpecificGroup. -// In general the platform tries to fall back to conversations using -// IGMPv1 or IGMPv2 and starts to listen to multicast traffic. -// In the fallback case, ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup may return an error. -package ipv4 // import "golang.org/x/net/ipv4" - -// BUG(mikio): This package is not implemented on JS, NaCl and Plan 9. diff --git a/vendor/golang.org/x/net/ipv4/endpoint.go b/vendor/golang.org/x/net/ipv4/endpoint.go deleted file mode 100644 index 4a6d7a85e..000000000 --- a/vendor/golang.org/x/net/ipv4/endpoint.go +++ /dev/null @@ -1,186 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"net" -	"time" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the JoinSourceSpecificGroup, -// LeaveSourceSpecificGroup, ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup methods of PacketConn and RawConn are -// not implemented. - -// A Conn represents a network endpoint that uses the IPv4 transport. -// It is used to control basic IP-level socket options such as TOS and -// TTL. -type Conn struct { -	genericOpt -} - -type genericOpt struct { -	*socket.Conn -} - -func (c *genericOpt) ok() bool { return c != nil && c.Conn != nil } - -// NewConn returns a new Conn. -func NewConn(c net.Conn) *Conn { -	cc, _ := socket.NewConn(c) -	return &Conn{ -		genericOpt: genericOpt{Conn: cc}, -	} -} - -// A PacketConn represents a packet network endpoint that uses the -// IPv4 transport. It is used to control several IP-level socket -// options including multicasting. It also provides datagram based -// network I/O methods specific to the IPv4 and higher layer protocols -// such as UDP. -type PacketConn struct { -	genericOpt -	dgramOpt -	payloadHandler -} - -type dgramOpt struct { -	*socket.Conn -} - -func (c *dgramOpt) ok() bool { return c != nil && c.Conn != nil } - -// SetControlMessage sets the per packet IP-level socket options. -func (c *PacketConn) SetControlMessage(cf ControlFlags, on bool) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return setControlMessage(c.dgramOpt.Conn, &c.payloadHandler.rawOpt, cf, on) -} - -// SetDeadline sets the read and write deadlines associated with the -// endpoint. -func (c *PacketConn) SetDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.PacketConn.SetDeadline(t) -} - -// SetReadDeadline sets the read deadline associated with the -// endpoint. -func (c *PacketConn) SetReadDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.PacketConn.SetReadDeadline(t) -} - -// SetWriteDeadline sets the write deadline associated with the -// endpoint. -func (c *PacketConn) SetWriteDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.PacketConn.SetWriteDeadline(t) -} - -// Close closes the endpoint. -func (c *PacketConn) Close() error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.PacketConn.Close() -} - -// NewPacketConn returns a new PacketConn using c as its underlying -// transport. -func NewPacketConn(c net.PacketConn) *PacketConn { -	cc, _ := socket.NewConn(c.(net.Conn)) -	p := &PacketConn{ -		genericOpt:     genericOpt{Conn: cc}, -		dgramOpt:       dgramOpt{Conn: cc}, -		payloadHandler: payloadHandler{PacketConn: c, Conn: cc}, -	} -	return p -} - -// A RawConn represents a packet network endpoint that uses the IPv4 -// transport. It is used to control several IP-level socket options -// including IPv4 header manipulation. It also provides datagram -// based network I/O methods specific to the IPv4 and higher layer -// protocols that handle IPv4 datagram directly such as OSPF, GRE. -type RawConn struct { -	genericOpt -	dgramOpt -	packetHandler -} - -// SetControlMessage sets the per packet IP-level socket options. -func (c *RawConn) SetControlMessage(cf ControlFlags, on bool) error { -	if !c.packetHandler.ok() { -		return errInvalidConn -	} -	return setControlMessage(c.dgramOpt.Conn, &c.packetHandler.rawOpt, cf, on) -} - -// SetDeadline sets the read and write deadlines associated with the -// endpoint. -func (c *RawConn) SetDeadline(t time.Time) error { -	if !c.packetHandler.ok() { -		return errInvalidConn -	} -	return c.packetHandler.IPConn.SetDeadline(t) -} - -// SetReadDeadline sets the read deadline associated with the -// endpoint. -func (c *RawConn) SetReadDeadline(t time.Time) error { -	if !c.packetHandler.ok() { -		return errInvalidConn -	} -	return c.packetHandler.IPConn.SetReadDeadline(t) -} - -// SetWriteDeadline sets the write deadline associated with the -// endpoint. -func (c *RawConn) SetWriteDeadline(t time.Time) error { -	if !c.packetHandler.ok() { -		return errInvalidConn -	} -	return c.packetHandler.IPConn.SetWriteDeadline(t) -} - -// Close closes the endpoint. -func (c *RawConn) Close() error { -	if !c.packetHandler.ok() { -		return errInvalidConn -	} -	return c.packetHandler.IPConn.Close() -} - -// NewRawConn returns a new RawConn using c as its underlying -// transport. -func NewRawConn(c net.PacketConn) (*RawConn, error) { -	cc, err := socket.NewConn(c.(net.Conn)) -	if err != nil { -		return nil, err -	} -	r := &RawConn{ -		genericOpt:    genericOpt{Conn: cc}, -		dgramOpt:      dgramOpt{Conn: cc}, -		packetHandler: packetHandler{IPConn: c.(*net.IPConn), Conn: cc}, -	} -	so, ok := sockOpts[ssoHeaderPrepend] -	if !ok { -		return nil, errNotImplemented -	} -	if err := so.SetInt(r.dgramOpt.Conn, boolint(true)); err != nil { -		return nil, err -	} -	return r, nil -} diff --git a/vendor/golang.org/x/net/ipv4/genericopt.go b/vendor/golang.org/x/net/ipv4/genericopt.go deleted file mode 100644 index 51c12371e..000000000 --- a/vendor/golang.org/x/net/ipv4/genericopt.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -// TOS returns the type-of-service field value for outgoing packets. -func (c *genericOpt) TOS() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoTOS] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetTOS sets the type-of-service field value for future outgoing -// packets. -func (c *genericOpt) SetTOS(tos int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoTOS] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, tos) -} - -// TTL returns the time-to-live field value for outgoing packets. -func (c *genericOpt) TTL() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoTTL] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetTTL sets the time-to-live field value for future outgoing -// packets. -func (c *genericOpt) SetTTL(ttl int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoTTL] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, ttl) -} diff --git a/vendor/golang.org/x/net/ipv4/header.go b/vendor/golang.org/x/net/ipv4/header.go deleted file mode 100644 index a00a3eaff..000000000 --- a/vendor/golang.org/x/net/ipv4/header.go +++ /dev/null @@ -1,172 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"encoding/binary" -	"fmt" -	"net" -	"runtime" - -	"golang.org/x/net/internal/socket" -) - -const ( -	Version   = 4  // protocol version -	HeaderLen = 20 // header length without extension headers -) - -type HeaderFlags int - -const ( -	MoreFragments HeaderFlags = 1 << iota // more fragments flag -	DontFragment                          // don't fragment flag -) - -// A Header represents an IPv4 header. -type Header struct { -	Version  int         // protocol version -	Len      int         // header length -	TOS      int         // type-of-service -	TotalLen int         // packet total length -	ID       int         // identification -	Flags    HeaderFlags // flags -	FragOff  int         // fragment offset -	TTL      int         // time-to-live -	Protocol int         // next protocol -	Checksum int         // checksum -	Src      net.IP      // source address -	Dst      net.IP      // destination address -	Options  []byte      // options, extension headers -} - -func (h *Header) String() string { -	if h == nil { -		return "<nil>" -	} -	return fmt.Sprintf("ver=%d hdrlen=%d tos=%#x totallen=%d id=%#x flags=%#x fragoff=%#x ttl=%d proto=%d cksum=%#x src=%v dst=%v", h.Version, h.Len, h.TOS, h.TotalLen, h.ID, h.Flags, h.FragOff, h.TTL, h.Protocol, h.Checksum, h.Src, h.Dst) -} - -// Marshal returns the binary encoding of h. -// -// The returned slice is in the format used by a raw IP socket on the -// local system. -// This may differ from the wire format, depending on the system. -func (h *Header) Marshal() ([]byte, error) { -	if h == nil { -		return nil, errNilHeader -	} -	if h.Len < HeaderLen { -		return nil, errHeaderTooShort -	} -	hdrlen := HeaderLen + len(h.Options) -	b := make([]byte, hdrlen) -	b[0] = byte(Version<<4 | (hdrlen >> 2 & 0x0f)) -	b[1] = byte(h.TOS) -	flagsAndFragOff := (h.FragOff & 0x1fff) | int(h.Flags<<13) -	switch runtime.GOOS { -	case "darwin", "ios", "dragonfly", "netbsd": -		socket.NativeEndian.PutUint16(b[2:4], uint16(h.TotalLen)) -		socket.NativeEndian.PutUint16(b[6:8], uint16(flagsAndFragOff)) -	case "freebsd": -		if freebsdVersion < 1100000 { -			socket.NativeEndian.PutUint16(b[2:4], uint16(h.TotalLen)) -			socket.NativeEndian.PutUint16(b[6:8], uint16(flagsAndFragOff)) -		} else { -			binary.BigEndian.PutUint16(b[2:4], uint16(h.TotalLen)) -			binary.BigEndian.PutUint16(b[6:8], uint16(flagsAndFragOff)) -		} -	default: -		binary.BigEndian.PutUint16(b[2:4], uint16(h.TotalLen)) -		binary.BigEndian.PutUint16(b[6:8], uint16(flagsAndFragOff)) -	} -	binary.BigEndian.PutUint16(b[4:6], uint16(h.ID)) -	b[8] = byte(h.TTL) -	b[9] = byte(h.Protocol) -	binary.BigEndian.PutUint16(b[10:12], uint16(h.Checksum)) -	if ip := h.Src.To4(); ip != nil { -		copy(b[12:16], ip[:net.IPv4len]) -	} -	if ip := h.Dst.To4(); ip != nil { -		copy(b[16:20], ip[:net.IPv4len]) -	} else { -		return nil, errMissingAddress -	} -	if len(h.Options) > 0 { -		copy(b[HeaderLen:], h.Options) -	} -	return b, nil -} - -// Parse parses b as an IPv4 header and stores the result in h. -// -// The provided b must be in the format used by a raw IP socket on the -// local system. -// This may differ from the wire format, depending on the system. -func (h *Header) Parse(b []byte) error { -	if h == nil || b == nil { -		return errNilHeader -	} -	if len(b) < HeaderLen { -		return errHeaderTooShort -	} -	hdrlen := int(b[0]&0x0f) << 2 -	if len(b) < hdrlen { -		return errExtHeaderTooShort -	} -	h.Version = int(b[0] >> 4) -	h.Len = hdrlen -	h.TOS = int(b[1]) -	h.ID = int(binary.BigEndian.Uint16(b[4:6])) -	h.TTL = int(b[8]) -	h.Protocol = int(b[9]) -	h.Checksum = int(binary.BigEndian.Uint16(b[10:12])) -	h.Src = net.IPv4(b[12], b[13], b[14], b[15]) -	h.Dst = net.IPv4(b[16], b[17], b[18], b[19]) -	switch runtime.GOOS { -	case "darwin", "ios", "dragonfly", "netbsd": -		h.TotalLen = int(socket.NativeEndian.Uint16(b[2:4])) + hdrlen -		h.FragOff = int(socket.NativeEndian.Uint16(b[6:8])) -	case "freebsd": -		if freebsdVersion < 1100000 { -			h.TotalLen = int(socket.NativeEndian.Uint16(b[2:4])) -			if freebsdVersion < 1000000 { -				h.TotalLen += hdrlen -			} -			h.FragOff = int(socket.NativeEndian.Uint16(b[6:8])) -		} else { -			h.TotalLen = int(binary.BigEndian.Uint16(b[2:4])) -			h.FragOff = int(binary.BigEndian.Uint16(b[6:8])) -		} -	default: -		h.TotalLen = int(binary.BigEndian.Uint16(b[2:4])) -		h.FragOff = int(binary.BigEndian.Uint16(b[6:8])) -	} -	h.Flags = HeaderFlags(h.FragOff&0xe000) >> 13 -	h.FragOff = h.FragOff & 0x1fff -	optlen := hdrlen - HeaderLen -	if optlen > 0 && len(b) >= hdrlen { -		if cap(h.Options) < optlen { -			h.Options = make([]byte, optlen) -		} else { -			h.Options = h.Options[:optlen] -		} -		copy(h.Options, b[HeaderLen:hdrlen]) -	} -	return nil -} - -// ParseHeader parses b as an IPv4 header. -// -// The provided b must be in the format used by a raw IP socket on the -// local system. -// This may differ from the wire format, depending on the system. -func ParseHeader(b []byte) (*Header, error) { -	h := new(Header) -	if err := h.Parse(b); err != nil { -		return nil, err -	} -	return h, nil -} diff --git a/vendor/golang.org/x/net/ipv4/helper.go b/vendor/golang.org/x/net/ipv4/helper.go deleted file mode 100644 index e845a7376..000000000 --- a/vendor/golang.org/x/net/ipv4/helper.go +++ /dev/null @@ -1,77 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"errors" -	"net" -	"runtime" - -	"golang.org/x/net/internal/socket" -) - -var ( -	errInvalidConn       = errors.New("invalid connection") -	errMissingAddress    = errors.New("missing address") -	errNilHeader         = errors.New("nil header") -	errHeaderTooShort    = errors.New("header too short") -	errExtHeaderTooShort = errors.New("extension header too short") -	errInvalidConnType   = errors.New("invalid conn type") -	errNotImplemented    = errors.New("not implemented on " + runtime.GOOS + "/" + runtime.GOARCH) - -	// See https://www.freebsd.org/doc/en/books/porters-handbook/versions.html. -	freebsdVersion  uint32 -	compatFreeBSD32 bool // 386 emulation on amd64 -) - -// See golang.org/issue/30899. -func adjustFreeBSD32(m *socket.Message) { -	// FreeBSD 12.0-RELEASE is affected by https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=236737 -	if 1200086 <= freebsdVersion && freebsdVersion < 1201000 { -		l := (m.NN + 4 - 1) &^ (4 - 1) -		if m.NN < l && l <= len(m.OOB) { -			m.NN = l -		} -	} -} - -func boolint(b bool) int { -	if b { -		return 1 -	} -	return 0 -} - -func netAddrToIP4(a net.Addr) net.IP { -	switch v := a.(type) { -	case *net.UDPAddr: -		if ip := v.IP.To4(); ip != nil { -			return ip -		} -	case *net.IPAddr: -		if ip := v.IP.To4(); ip != nil { -			return ip -		} -	} -	return nil -} - -func opAddr(a net.Addr) net.Addr { -	switch a.(type) { -	case *net.TCPAddr: -		if a == nil { -			return nil -		} -	case *net.UDPAddr: -		if a == nil { -			return nil -		} -	case *net.IPAddr: -		if a == nil { -			return nil -		} -	} -	return a -} diff --git a/vendor/golang.org/x/net/ipv4/iana.go b/vendor/golang.org/x/net/ipv4/iana.go deleted file mode 100644 index 4375b4099..000000000 --- a/vendor/golang.org/x/net/ipv4/iana.go +++ /dev/null @@ -1,38 +0,0 @@ -// go generate gen.go -// Code generated by the command above; DO NOT EDIT. - -package ipv4 - -// Internet Control Message Protocol (ICMP) Parameters, Updated: 2018-02-26 -const ( -	ICMPTypeEchoReply              ICMPType = 0  // Echo Reply -	ICMPTypeDestinationUnreachable ICMPType = 3  // Destination Unreachable -	ICMPTypeRedirect               ICMPType = 5  // Redirect -	ICMPTypeEcho                   ICMPType = 8  // Echo -	ICMPTypeRouterAdvertisement    ICMPType = 9  // Router Advertisement -	ICMPTypeRouterSolicitation     ICMPType = 10 // Router Solicitation -	ICMPTypeTimeExceeded           ICMPType = 11 // Time Exceeded -	ICMPTypeParameterProblem       ICMPType = 12 // Parameter Problem -	ICMPTypeTimestamp              ICMPType = 13 // Timestamp -	ICMPTypeTimestampReply         ICMPType = 14 // Timestamp Reply -	ICMPTypePhoturis               ICMPType = 40 // Photuris -	ICMPTypeExtendedEchoRequest    ICMPType = 42 // Extended Echo Request -	ICMPTypeExtendedEchoReply      ICMPType = 43 // Extended Echo Reply -) - -// Internet Control Message Protocol (ICMP) Parameters, Updated: 2018-02-26 -var icmpTypes = map[ICMPType]string{ -	0:  "echo reply", -	3:  "destination unreachable", -	5:  "redirect", -	8:  "echo", -	9:  "router advertisement", -	10: "router solicitation", -	11: "time exceeded", -	12: "parameter problem", -	13: "timestamp", -	14: "timestamp reply", -	40: "photuris", -	42: "extended echo request", -	43: "extended echo reply", -} diff --git a/vendor/golang.org/x/net/ipv4/icmp.go b/vendor/golang.org/x/net/ipv4/icmp.go deleted file mode 100644 index 9902bb3d2..000000000 --- a/vendor/golang.org/x/net/ipv4/icmp.go +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2013 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. - -package ipv4 - -import "golang.org/x/net/internal/iana" - -// An ICMPType represents a type of ICMP message. -type ICMPType int - -func (typ ICMPType) String() string { -	s, ok := icmpTypes[typ] -	if !ok { -		return "<nil>" -	} -	return s -} - -// Protocol returns the ICMPv4 protocol number. -func (typ ICMPType) Protocol() int { -	return iana.ProtocolICMP -} - -// An ICMPFilter represents an ICMP message filter for incoming -// packets. The filter belongs to a packet delivery path on a host and -// it cannot interact with forwarding packets or tunnel-outer packets. -// -// Note: RFC 8200 defines a reasonable role model and it works not -// only for IPv6 but IPv4. A node means a device that implements IP. -// A router means a node that forwards IP packets not explicitly -// addressed to itself, and a host means a node that is not a router. -type ICMPFilter struct { -	icmpFilter -} - -// Accept accepts incoming ICMP packets including the type field value -// typ. -func (f *ICMPFilter) Accept(typ ICMPType) { -	f.accept(typ) -} - -// Block blocks incoming ICMP packets including the type field value -// typ. -func (f *ICMPFilter) Block(typ ICMPType) { -	f.block(typ) -} - -// SetAll sets the filter action to the filter. -func (f *ICMPFilter) SetAll(block bool) { -	f.setAll(block) -} - -// WillBlock reports whether the ICMP type will be blocked. -func (f *ICMPFilter) WillBlock(typ ICMPType) bool { -	return f.willBlock(typ) -} diff --git a/vendor/golang.org/x/net/ipv4/icmp_linux.go b/vendor/golang.org/x/net/ipv4/icmp_linux.go deleted file mode 100644 index 6e1c5c80a..000000000 --- a/vendor/golang.org/x/net/ipv4/icmp_linux.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -func (f *icmpFilter) accept(typ ICMPType) { -	f.Data &^= 1 << (uint32(typ) & 31) -} - -func (f *icmpFilter) block(typ ICMPType) { -	f.Data |= 1 << (uint32(typ) & 31) -} - -func (f *icmpFilter) setAll(block bool) { -	if block { -		f.Data = 1<<32 - 1 -	} else { -		f.Data = 0 -	} -} - -func (f *icmpFilter) willBlock(typ ICMPType) bool { -	return f.Data&(1<<(uint32(typ)&31)) != 0 -} diff --git a/vendor/golang.org/x/net/ipv4/icmp_stub.go b/vendor/golang.org/x/net/ipv4/icmp_stub.go deleted file mode 100644 index c2c4ce7ff..000000000 --- a/vendor/golang.org/x/net/ipv4/icmp_stub.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2014 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 !linux - -package ipv4 - -const sizeofICMPFilter = 0x0 - -type icmpFilter struct { -} - -func (f *icmpFilter) accept(typ ICMPType) { -} - -func (f *icmpFilter) block(typ ICMPType) { -} - -func (f *icmpFilter) setAll(block bool) { -} - -func (f *icmpFilter) willBlock(typ ICMPType) bool { -	return false -} diff --git a/vendor/golang.org/x/net/ipv4/packet.go b/vendor/golang.org/x/net/ipv4/packet.go deleted file mode 100644 index 7d784e06d..000000000 --- a/vendor/golang.org/x/net/ipv4/packet.go +++ /dev/null @@ -1,117 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the ReadFrom and WriteTo methods of RawConn -// are not implemented. - -// A packetHandler represents the IPv4 datagram handler. -type packetHandler struct { -	*net.IPConn -	*socket.Conn -	rawOpt -} - -func (c *packetHandler) ok() bool { return c != nil && c.IPConn != nil && c.Conn != nil } - -// ReadFrom reads an IPv4 datagram from the endpoint c, copying the -// datagram into b. It returns the received datagram as the IPv4 -// header h, the payload p and the control message cm. -func (c *packetHandler) ReadFrom(b []byte) (h *Header, p []byte, cm *ControlMessage, err error) { -	if !c.ok() { -		return nil, nil, nil, errInvalidConn -	} -	c.rawOpt.RLock() -	m := socket.Message{ -		Buffers: [][]byte{b}, -		OOB:     NewControlMessage(c.rawOpt.cflags), -	} -	c.rawOpt.RUnlock() -	if err := c.RecvMsg(&m, 0); err != nil { -		return nil, nil, nil, &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -	} -	var hs []byte -	if hs, p, err = slicePacket(b[:m.N]); err != nil { -		return nil, nil, nil, &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -	} -	if h, err = ParseHeader(hs); err != nil { -		return nil, nil, nil, &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -	} -	if m.NN > 0 { -		if compatFreeBSD32 { -			adjustFreeBSD32(&m) -		} -		cm = new(ControlMessage) -		if err := cm.Parse(m.OOB[:m.NN]); err != nil { -			return nil, nil, nil, &net.OpError{Op: "read", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Err: err} -		} -	} -	if src, ok := m.Addr.(*net.IPAddr); ok && cm != nil { -		cm.Src = src.IP -	} -	return -} - -func slicePacket(b []byte) (h, p []byte, err error) { -	if len(b) < HeaderLen { -		return nil, nil, errHeaderTooShort -	} -	hdrlen := int(b[0]&0x0f) << 2 -	return b[:hdrlen], b[hdrlen:], nil -} - -// WriteTo writes an IPv4 datagram through the endpoint c, copying the -// datagram from the IPv4 header h and the payload p. The control -// message cm allows the datagram path and the outgoing interface to be -// specified.  Currently only Darwin and Linux support this. The cm -// may be nil if control of the outgoing datagram is not required. -// -// The IPv4 header h must contain appropriate fields that include: -// -//	Version       = <must be specified> -//	Len           = <must be specified> -//	TOS           = <must be specified> -//	TotalLen      = <must be specified> -//	ID            = platform sets an appropriate value if ID is zero -//	FragOff       = <must be specified> -//	TTL           = <must be specified> -//	Protocol      = <must be specified> -//	Checksum      = platform sets an appropriate value if Checksum is zero -//	Src           = platform sets an appropriate value if Src is nil -//	Dst           = <must be specified> -//	Options       = optional -func (c *packetHandler) WriteTo(h *Header, p []byte, cm *ControlMessage) error { -	if !c.ok() { -		return errInvalidConn -	} -	m := socket.Message{ -		OOB: cm.Marshal(), -	} -	wh, err := h.Marshal() -	if err != nil { -		return err -	} -	m.Buffers = [][]byte{wh, p} -	dst := new(net.IPAddr) -	if cm != nil { -		if ip := cm.Dst.To4(); ip != nil { -			dst.IP = ip -		} -	} -	if dst.IP == nil { -		dst.IP = h.Dst -	} -	m.Addr = dst -	if err := c.SendMsg(&m, 0); err != nil { -		return &net.OpError{Op: "write", Net: c.IPConn.LocalAddr().Network(), Source: c.IPConn.LocalAddr(), Addr: opAddr(dst), Err: err} -	} -	return nil -} diff --git a/vendor/golang.org/x/net/ipv4/payload.go b/vendor/golang.org/x/net/ipv4/payload.go deleted file mode 100644 index f95f811ac..000000000 --- a/vendor/golang.org/x/net/ipv4/payload.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2012 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. - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the ControlMessage for ReadFrom and WriteTo -// methods of PacketConn is not implemented. - -// A payloadHandler represents the IPv4 datagram payload handler. -type payloadHandler struct { -	net.PacketConn -	*socket.Conn -	rawOpt -} - -func (c *payloadHandler) ok() bool { return c != nil && c.PacketConn != nil && c.Conn != nil } diff --git a/vendor/golang.org/x/net/ipv4/payload_cmsg.go b/vendor/golang.org/x/net/ipv4/payload_cmsg.go deleted file mode 100644 index 91c685e8f..000000000 --- a/vendor/golang.org/x/net/ipv4/payload_cmsg.go +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright 2012 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -// ReadFrom reads a payload of the received IPv4 datagram, from the -// endpoint c, copying the payload into b. It returns the number of -// bytes copied into b, the control message cm and the source address -// src of the received datagram. -func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) { -	if !c.ok() { -		return 0, nil, nil, errInvalidConn -	} -	c.rawOpt.RLock() -	m := socket.Message{ -		OOB: NewControlMessage(c.rawOpt.cflags), -	} -	c.rawOpt.RUnlock() -	switch c.PacketConn.(type) { -	case *net.UDPConn: -		m.Buffers = [][]byte{b} -		if err := c.RecvMsg(&m, 0); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -	case *net.IPConn: -		h := make([]byte, HeaderLen) -		m.Buffers = [][]byte{h, b} -		if err := c.RecvMsg(&m, 0); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		hdrlen := int(h[0]&0x0f) << 2 -		if hdrlen > len(h) { -			d := hdrlen - len(h) -			copy(b, b[d:]) -			m.N -= d -		} else { -			m.N -= hdrlen -		} -	default: -		return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: errInvalidConnType} -	} -	if m.NN > 0 { -		if compatFreeBSD32 { -			adjustFreeBSD32(&m) -		} -		cm = new(ControlMessage) -		if err := cm.Parse(m.OOB[:m.NN]); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		cm.Src = netAddrToIP4(m.Addr) -	} -	return m.N, cm, m.Addr, nil -} - -// WriteTo writes a payload of the IPv4 datagram, to the destination -// address dst through the endpoint c, copying the payload from b. It -// returns the number of bytes written. The control message cm allows -// the datagram path and the outgoing interface to be specified. -// Currently only Darwin and Linux support this. The cm may be nil if -// control of the outgoing datagram is not required. -func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	m := socket.Message{ -		Buffers: [][]byte{b}, -		OOB:     cm.Marshal(), -		Addr:    dst, -	} -	err = c.SendMsg(&m, 0) -	if err != nil { -		err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Addr: opAddr(dst), Err: err} -	} -	return m.N, err -} diff --git a/vendor/golang.org/x/net/ipv4/payload_nocmsg.go b/vendor/golang.org/x/net/ipv4/payload_nocmsg.go deleted file mode 100644 index 2afd4b50e..000000000 --- a/vendor/golang.org/x/net/ipv4/payload_nocmsg.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2012 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos - -package ipv4 - -import "net" - -// ReadFrom reads a payload of the received IPv4 datagram, from the -// endpoint c, copying the payload into b. It returns the number of -// bytes copied into b, the control message cm and the source address -// src of the received datagram. -func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) { -	if !c.ok() { -		return 0, nil, nil, errInvalidConn -	} -	if n, src, err = c.PacketConn.ReadFrom(b); err != nil { -		return 0, nil, nil, err -	} -	return -} - -// WriteTo writes a payload of the IPv4 datagram, to the destination -// address dst through the endpoint c, copying the payload from b. It -// returns the number of bytes written. The control message cm allows -// the datagram path and the outgoing interface to be specified. -// Currently only Darwin and Linux support this. The cm may be nil if -// control of the outgoing datagram is not required. -func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	if dst == nil { -		return 0, errMissingAddress -	} -	return c.PacketConn.WriteTo(b, dst) -} diff --git a/vendor/golang.org/x/net/ipv4/sockopt.go b/vendor/golang.org/x/net/ipv4/sockopt.go deleted file mode 100644 index 22e90c039..000000000 --- a/vendor/golang.org/x/net/ipv4/sockopt.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -import "golang.org/x/net/internal/socket" - -// Sticky socket options -const ( -	ssoTOS                = iota // header field for unicast packet -	ssoTTL                       // header field for unicast packet -	ssoMulticastTTL              // header field for multicast packet -	ssoMulticastInterface        // outbound interface for multicast packet -	ssoMulticastLoopback         // loopback for multicast packet -	ssoReceiveTTL                // header field on received packet -	ssoReceiveDst                // header field on received packet -	ssoReceiveInterface          // inbound interface on received packet -	ssoPacketInfo                // incbound or outbound packet path -	ssoHeaderPrepend             // ipv4 header prepend -	ssoStripHeader               // strip ipv4 header -	ssoICMPFilter                // icmp filter -	ssoJoinGroup                 // any-source multicast -	ssoLeaveGroup                // any-source multicast -	ssoJoinSourceGroup           // source-specific multicast -	ssoLeaveSourceGroup          // source-specific multicast -	ssoBlockSourceGroup          // any-source or source-specific multicast -	ssoUnblockSourceGroup        // any-source or source-specific multicast -	ssoAttachFilter              // attach BPF for filtering inbound traffic -) - -// Sticky socket option value types -const ( -	ssoTypeIPMreq = iota + 1 -	ssoTypeIPMreqn -	ssoTypeGroupReq -	ssoTypeGroupSourceReq -) - -// A sockOpt represents a binding for sticky socket option. -type sockOpt struct { -	socket.Option -	typ int // hint for option value type; optional -} diff --git a/vendor/golang.org/x/net/ipv4/sockopt_posix.go b/vendor/golang.org/x/net/ipv4/sockopt_posix.go deleted file mode 100644 index 82e2c3783..000000000 --- a/vendor/golang.org/x/net/ipv4/sockopt_posix.go +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright 2012 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows || zos - -package ipv4 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface, error) { -	switch so.typ { -	case ssoTypeIPMreqn: -		return so.getIPMreqn(c) -	default: -		return so.getMulticastIf(c) -	} -} - -func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interface) error { -	switch so.typ { -	case ssoTypeIPMreqn: -		return so.setIPMreqn(c, ifi, nil) -	default: -		return so.setMulticastIf(c, ifi) -	} -} - -func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) { -	b := make([]byte, so.Len) -	n, err := so.Get(c, b) -	if err != nil { -		return nil, err -	} -	if n != sizeofICMPFilter { -		return nil, errNotImplemented -	} -	return (*ICMPFilter)(unsafe.Pointer(&b[0])), nil -} - -func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error { -	b := (*[sizeofICMPFilter]byte)(unsafe.Pointer(f))[:sizeofICMPFilter] -	return so.Set(c, b) -} - -func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	switch so.typ { -	case ssoTypeIPMreq: -		return so.setIPMreq(c, ifi, grp) -	case ssoTypeIPMreqn: -		return so.setIPMreqn(c, ifi, grp) -	case ssoTypeGroupReq: -		return so.setGroupReq(c, ifi, grp) -	default: -		return errNotImplemented -	} -} - -func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return so.setGroupSourceReq(c, ifi, grp, src) -} - -func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error { -	return so.setAttachFilter(c, f) -} diff --git a/vendor/golang.org/x/net/ipv4/sockopt_stub.go b/vendor/golang.org/x/net/ipv4/sockopt_stub.go deleted file mode 100644 index 840108bf7..000000000 --- a/vendor/golang.org/x/net/ipv4/sockopt_stub.go +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright 2012 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interface) error { -	return errNotImplemented -} - -func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error { -	return errNotImplemented -} - -func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/sys_aix.go b/vendor/golang.org/x/net/ipv4/sys_aix.go deleted file mode 100644 index 9244a68a3..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_aix.go +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2019 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. - -// Added for go1.11 compatibility -//go:build aix - -package ipv4 - -import ( -	"net" -	"syscall" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -// IP_RECVIF is defined on AIX but doesn't work. IP_RECVINTERFACE must be used instead. -const sockoptReceiveInterface = unix.IP_RECVINTERFACE - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:       {unix.IP_RECVTTL, 1, marshalTTL, parseTTL}, -		ctlDst:       {unix.IP_RECVDSTADDR, net.IPv4len, marshalDst, parseDst}, -		ctlInterface: {unix.IP_RECVINTERFACE, syscall.SizeofSockaddrDatalink, marshalInterface, parseInterface}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 1}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoReceiveDst:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVDSTADDR, Len: 4}}, -		ssoReceiveInterface:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVINTERFACE, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_ADD_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_DROP_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -	} -) diff --git a/vendor/golang.org/x/net/ipv4/sys_asmreq.go b/vendor/golang.org/x/net/ipv4/sys_asmreq.go deleted file mode 100644 index 645f254c6..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_asmreq.go +++ /dev/null @@ -1,122 +0,0 @@ -// Copyright 2012 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 aix || darwin || dragonfly || freebsd || netbsd || openbsd || solaris || windows - -package ipv4 - -import ( -	"errors" -	"net" -	"unsafe" - -	"golang.org/x/net/internal/socket" -) - -var errNoSuchInterface = errors.New("no such interface") - -func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	mreq := ipMreq{Multiaddr: [4]byte{grp[0], grp[1], grp[2], grp[3]}} -	if err := setIPMreqInterface(&mreq, ifi); err != nil { -		return err -	} -	b := (*[sizeofIPMreq]byte)(unsafe.Pointer(&mreq))[:sizeofIPMreq] -	return so.Set(c, b) -} - -func (so *sockOpt) getMulticastIf(c *socket.Conn) (*net.Interface, error) { -	var b [4]byte -	if _, err := so.Get(c, b[:]); err != nil { -		return nil, err -	} -	ifi, err := netIP4ToInterface(net.IPv4(b[0], b[1], b[2], b[3])) -	if err != nil { -		return nil, err -	} -	return ifi, nil -} - -func (so *sockOpt) setMulticastIf(c *socket.Conn, ifi *net.Interface) error { -	ip, err := netInterfaceToIP4(ifi) -	if err != nil { -		return err -	} -	var b [4]byte -	copy(b[:], ip) -	return so.Set(c, b[:]) -} - -func setIPMreqInterface(mreq *ipMreq, ifi *net.Interface) error { -	if ifi == nil { -		return nil -	} -	ifat, err := ifi.Addrs() -	if err != nil { -		return err -	} -	for _, ifa := range ifat { -		switch ifa := ifa.(type) { -		case *net.IPAddr: -			if ip := ifa.IP.To4(); ip != nil { -				copy(mreq.Interface[:], ip) -				return nil -			} -		case *net.IPNet: -			if ip := ifa.IP.To4(); ip != nil { -				copy(mreq.Interface[:], ip) -				return nil -			} -		} -	} -	return errNoSuchInterface -} - -func netIP4ToInterface(ip net.IP) (*net.Interface, error) { -	ift, err := net.Interfaces() -	if err != nil { -		return nil, err -	} -	for _, ifi := range ift { -		ifat, err := ifi.Addrs() -		if err != nil { -			return nil, err -		} -		for _, ifa := range ifat { -			switch ifa := ifa.(type) { -			case *net.IPAddr: -				if ip.Equal(ifa.IP) { -					return &ifi, nil -				} -			case *net.IPNet: -				if ip.Equal(ifa.IP) { -					return &ifi, nil -				} -			} -		} -	} -	return nil, errNoSuchInterface -} - -func netInterfaceToIP4(ifi *net.Interface) (net.IP, error) { -	if ifi == nil { -		return net.IPv4zero.To4(), nil -	} -	ifat, err := ifi.Addrs() -	if err != nil { -		return nil, err -	} -	for _, ifa := range ifat { -		switch ifa := ifa.(type) { -		case *net.IPAddr: -			if ip := ifa.IP.To4(); ip != nil { -				return ip, nil -			} -		case *net.IPNet: -			if ip := ifa.IP.To4(); ip != nil { -				return ip, nil -			} -		} -	} -	return nil, errNoSuchInterface -} diff --git a/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go b/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go deleted file mode 100644 index 48cfb6db2..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_asmreq_stub.go +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright 2017 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 !aix && !darwin && !dragonfly && !freebsd && !netbsd && !openbsd && !solaris && !windows - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) getMulticastIf(c *socket.Conn) (*net.Interface, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setMulticastIf(c *socket.Conn, ifi *net.Interface) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/sys_asmreqn.go b/vendor/golang.org/x/net/ipv4/sys_asmreqn.go deleted file mode 100644 index 0b27b632f..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_asmreqn.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 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 darwin || freebsd || linux - -package ipv4 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func (so *sockOpt) getIPMreqn(c *socket.Conn) (*net.Interface, error) { -	b := make([]byte, so.Len) -	if _, err := so.Get(c, b); err != nil { -		return nil, err -	} -	mreqn := (*unix.IPMreqn)(unsafe.Pointer(&b[0])) -	if mreqn.Ifindex == 0 { -		return nil, nil -	} -	ifi, err := net.InterfaceByIndex(int(mreqn.Ifindex)) -	if err != nil { -		return nil, err -	} -	return ifi, nil -} - -func (so *sockOpt) setIPMreqn(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	var mreqn unix.IPMreqn -	if ifi != nil { -		mreqn.Ifindex = int32(ifi.Index) -	} -	if grp != nil { -		mreqn.Multiaddr = [4]byte{grp[0], grp[1], grp[2], grp[3]} -	} -	b := (*[unix.SizeofIPMreqn]byte)(unsafe.Pointer(&mreqn))[:unix.SizeofIPMreqn] -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go b/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go deleted file mode 100644 index 303a5e2e6..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_asmreqn_stub.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2014 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 !darwin && !freebsd && !linux - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) getIPMreqn(c *socket.Conn) (*net.Interface, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setIPMreqn(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/sys_bpf.go b/vendor/golang.org/x/net/ipv4/sys_bpf.go deleted file mode 100644 index 1b4780df4..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_bpf.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2017 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 linux - -package ipv4 - -import ( -	"unsafe" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -	"golang.org/x/sys/unix" -) - -func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error { -	prog := unix.SockFprog{ -		Len:    uint16(len(f)), -		Filter: (*unix.SockFilter)(unsafe.Pointer(&f[0])), -	} -	b := (*[unix.SizeofSockFprog]byte)(unsafe.Pointer(&prog))[:unix.SizeofSockFprog] -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go b/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go deleted file mode 100644 index b1f779b49..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_bpf_stub.go +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2017 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 !linux - -package ipv4 - -import ( -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/sys_bsd.go b/vendor/golang.org/x/net/ipv4/sys_bsd.go deleted file mode 100644 index b7b032d26..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_bsd.go +++ /dev/null @@ -1,41 +0,0 @@ -// Copyright 2014 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 netbsd || openbsd - -package ipv4 - -import ( -	"net" -	"syscall" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -const sockoptReceiveInterface = unix.IP_RECVIF - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:       {unix.IP_RECVTTL, 1, marshalTTL, parseTTL}, -		ctlDst:       {unix.IP_RECVDSTADDR, net.IPv4len, marshalDst, parseDst}, -		ctlInterface: {unix.IP_RECVIF, syscall.SizeofSockaddrDatalink, marshalInterface, parseInterface}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 1}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoReceiveDst:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVDSTADDR, Len: 4}}, -		ssoReceiveInterface:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVIF, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_ADD_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_DROP_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -	} -) diff --git a/vendor/golang.org/x/net/ipv4/sys_darwin.go b/vendor/golang.org/x/net/ipv4/sys_darwin.go deleted file mode 100644 index cac6f3cac..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_darwin.go +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -const sockoptReceiveInterface = unix.IP_RECVIF - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:        {unix.IP_RECVTTL, 1, marshalTTL, parseTTL}, -		ctlDst:        {unix.IP_RECVDSTADDR, net.IPv4len, marshalDst, parseDst}, -		ctlInterface:  {unix.IP_RECVIF, syscall.SizeofSockaddrDatalink, marshalInterface, parseInterface}, -		ctlPacketInfo: {unix.IP_PKTINFO, sizeofInetPktinfo, marshalPacketInfo, parsePacketInfo}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: unix.SizeofIPMreqn}, typ: ssoTypeIPMreqn}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoReceiveDst:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVDSTADDR, Len: 4}}, -		ssoReceiveInterface:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVIF, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoStripHeader:        {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_STRIPHDR, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoPacketInfo:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVPKTINFO, Len: 4}}, -	} -) - -func (pi *inetPktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gr)) + 4)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 4)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 132)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_dragonfly.go b/vendor/golang.org/x/net/ipv4/sys_dragonfly.go deleted file mode 100644 index 0620d0e1e..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_dragonfly.go +++ /dev/null @@ -1,39 +0,0 @@ -// Copyright 2017 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. - -package ipv4 - -import ( -	"net" -	"syscall" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -const sockoptReceiveInterface = unix.IP_RECVIF - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:       {unix.IP_RECVTTL, 1, marshalTTL, parseTTL}, -		ctlDst:       {unix.IP_RECVDSTADDR, net.IPv4len, marshalDst, parseDst}, -		ctlInterface: {unix.IP_RECVIF, syscall.SizeofSockaddrDatalink, marshalInterface, parseInterface}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoReceiveDst:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVDSTADDR, Len: 4}}, -		ssoReceiveInterface:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVIF, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_ADD_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_DROP_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -	} -) diff --git a/vendor/golang.org/x/net/ipv4/sys_freebsd.go b/vendor/golang.org/x/net/ipv4/sys_freebsd.go deleted file mode 100644 index 896122875..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_freebsd.go +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -import ( -	"net" -	"runtime" -	"strings" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -const sockoptReceiveInterface = unix.IP_RECVIF - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:       {unix.IP_RECVTTL, 1, marshalTTL, parseTTL}, -		ctlDst:       {unix.IP_RECVDSTADDR, net.IPv4len, marshalDst, parseDst}, -		ctlInterface: {unix.IP_RECVIF, syscall.SizeofSockaddrDatalink, marshalInterface, parseInterface}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoReceiveDst:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVDSTADDR, Len: 4}}, -		ssoReceiveInterface:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVIF, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func init() { -	freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") -	if freebsdVersion >= 1000000 { -		sockOpts[ssoMulticastInterface] = &sockOpt{Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: unix.SizeofIPMreqn}, typ: ssoTypeIPMreqn} -	} -	if runtime.GOOS == "freebsd" && runtime.GOARCH == "386" { -		archs, _ := syscall.Sysctl("kern.supported_archs") -		for _, s := range strings.Fields(archs) { -			if s == "amd64" { -				compatFreeBSD32 = true -				break -			} -		} -	} -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(&gr.Group)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(&gsr.Group)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet)(unsafe.Pointer(&gsr.Source)) -	sa.Len = sizeofSockaddrInet -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_linux.go b/vendor/golang.org/x/net/ipv4/sys_linux.go deleted file mode 100644 index 4588a5f3e..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_linux.go +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:        {unix.IP_TTL, 1, marshalTTL, parseTTL}, -		ctlPacketInfo: {unix.IP_PKTINFO, sizeofInetPktinfo, marshalPacketInfo, parsePacketInfo}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 4}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: unix.SizeofIPMreqn}, typ: ssoTypeIPMreqn}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoPacketInfo:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_PKTINFO, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoICMPFilter:         {Option: socket.Option{Level: iana.ProtocolReserved, Name: unix.ICMP_FILTER, Len: sizeofICMPFilter}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoAttachFilter:       {Option: socket.Option{Level: unix.SOL_SOCKET, Name: unix.SO_ATTACH_FILTER, Len: unix.SizeofSockFprog}}, -	} -) - -func (pi *inetPktinfo) setIfindex(i int) { -	pi.Ifindex = int32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(&gr.Group)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(&gsr.Group)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet)(unsafe.Pointer(&gsr.Source)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_solaris.go b/vendor/golang.org/x/net/ipv4/sys_solaris.go deleted file mode 100644 index 0bb9f3e36..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_solaris.go +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright 2016 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. - -package ipv4 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -const sockoptReceiveInterface = unix.IP_RECVIF - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTTL:        {unix.IP_RECVTTL, 4, marshalTTL, parseTTL}, -		ctlPacketInfo: {unix.IP_PKTINFO, sizeofInetPktinfo, marshalPacketInfo, parsePacketInfo}, -	} - -	sockOpts = map[int]sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 1}}, -		ssoReceiveTTL:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVTTL, Len: 4}}, -		ssoPacketInfo:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVPKTINFO, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func (pi *inetPktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gr)) + 4)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 4)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 260)) -	sa.Family = syscall.AF_INET -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_ssmreq.go b/vendor/golang.org/x/net/ipv4/sys_ssmreq.go deleted file mode 100644 index a295e15ea..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_ssmreq.go +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright 2014 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 darwin || freebsd || linux || solaris - -package ipv4 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	var gr groupReq -	if ifi != nil { -		gr.Interface = uint32(ifi.Index) -	} -	gr.setGroup(grp) -	var b []byte -	if compatFreeBSD32 { -		var d [sizeofGroupReq + 4]byte -		s := (*[sizeofGroupReq]byte)(unsafe.Pointer(&gr)) -		copy(d[:4], s[:4]) -		copy(d[8:], s[4:]) -		b = d[:] -	} else { -		b = (*[sizeofGroupReq]byte)(unsafe.Pointer(&gr))[:sizeofGroupReq] -	} -	return so.Set(c, b) -} - -func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	var gsr groupSourceReq -	if ifi != nil { -		gsr.Interface = uint32(ifi.Index) -	} -	gsr.setSourceGroup(grp, src) -	var b []byte -	if compatFreeBSD32 { -		var d [sizeofGroupSourceReq + 4]byte -		s := (*[sizeofGroupSourceReq]byte)(unsafe.Pointer(&gsr)) -		copy(d[:4], s[:4]) -		copy(d[8:], s[4:]) -		b = d[:] -	} else { -		b = (*[sizeofGroupSourceReq]byte)(unsafe.Pointer(&gsr))[:sizeofGroupSourceReq] -	} -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go b/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go deleted file mode 100644 index 74bd454e2..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_ssmreq_stub.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2014 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 !darwin && !freebsd && !linux && !solaris - -package ipv4 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv4/sys_stub.go b/vendor/golang.org/x/net/ipv4/sys_stub.go deleted file mode 100644 index 20af4074c..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_stub.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2014 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv4 - -var ( -	ctlOpts = [ctlMax]ctlOpt{} - -	sockOpts = map[int]*sockOpt{} -) diff --git a/vendor/golang.org/x/net/ipv4/sys_windows.go b/vendor/golang.org/x/net/ipv4/sys_windows.go deleted file mode 100644 index c5e950633..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_windows.go +++ /dev/null @@ -1,44 +0,0 @@ -// Copyright 2014 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. - -package ipv4 - -import ( -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/windows" -) - -const ( -	sizeofIPMreq       = 0x8 -	sizeofIPMreqSource = 0xc -) - -type ipMreq struct { -	Multiaddr [4]byte -	Interface [4]byte -} - -type ipMreqSource struct { -	Multiaddr  [4]byte -	Sourceaddr [4]byte -	Interface  [4]byte -} - -// See http://msdn.microsoft.com/en-us/library/windows/desktop/ms738586(v=vs.85).aspx -var ( -	ctlOpts = [ctlMax]ctlOpt{} - -	sockOpts = map[int]*sockOpt{ -		ssoTOS:                {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_TOS, Len: 4}}, -		ssoTTL:                {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_TTL, Len: 4}}, -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_MULTICAST_TTL, Len: 4}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_MULTICAST_LOOP, Len: 4}}, -		ssoHeaderPrepend:      {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_HDRINCL, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_ADD_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: windows.IP_DROP_MEMBERSHIP, Len: sizeofIPMreq}, typ: ssoTypeIPMreq}, -	} -) diff --git a/vendor/golang.org/x/net/ipv4/sys_zos.go b/vendor/golang.org/x/net/ipv4/sys_zos.go deleted file mode 100644 index be2064098..000000000 --- a/vendor/golang.org/x/net/ipv4/sys_zos.go +++ /dev/null @@ -1,57 +0,0 @@ -// Copyright 2020 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. - -package ipv4 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlPacketInfo: {unix.IP_PKTINFO, sizeofInetPktinfo, marshalPacketInfo, parsePacketInfo}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoMulticastTTL:       {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_TTL, Len: 1}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_IF, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_MULTICAST_LOOP, Len: 1}}, -		ssoPacketInfo:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.IP_RECVPKTINFO, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:   {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup: {Option: socket.Option{Level: iana.ProtocolIP, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func (pi *inetPktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet4)(unsafe.Pointer(&gr.Group)) -	sa.Family = syscall.AF_INET -	sa.Len = sizeofSockaddrInet4 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet4)(unsafe.Pointer(&gsr.Group)) -	sa.Family = syscall.AF_INET -	sa.Len = sizeofSockaddrInet4 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet4)(unsafe.Pointer(&gsr.Source)) -	sa.Family = syscall.AF_INET -	sa.Len = sizeofSockaddrInet4 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_aix_ppc64.go b/vendor/golang.org/x/net/ipv4/zsys_aix_ppc64.go deleted file mode 100644 index dd454025c..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_aix_ppc64.go +++ /dev/null @@ -1,16 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_aix.go - -// Added for go1.11 compatibility -//go:build aix - -package ipv4 - -const ( -	sizeofIPMreq = 0x8 -) - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_darwin.go b/vendor/golang.org/x/net/ipv4/zsys_darwin.go deleted file mode 100644 index 6c1b70564..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_darwin.go +++ /dev/null @@ -1,59 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_darwin.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 -	sizeofInetPktinfo     = 0xc - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]int8 -} - -type inetPktinfo struct { -	Ifindex  uint32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [128]byte -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [128]byte -	Pad_cgo_1 [128]byte -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go b/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go deleted file mode 100644 index 2155df130..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_dragonfly.go +++ /dev/null @@ -1,13 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_dragonfly.go - -package ipv4 - -const ( -	sizeofIPMreq = 0x8 -) - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go b/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go deleted file mode 100644 index ae40482a8..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_freebsd_386.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]int8 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go b/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go deleted file mode 100644 index 901818671..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_freebsd_amd64.go +++ /dev/null @@ -1,54 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]int8 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go b/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go deleted file mode 100644 index 901818671..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm.go +++ /dev/null @@ -1,54 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]int8 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm64.go b/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm64.go deleted file mode 100644 index 0feb9a753..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_freebsd_arm64.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]uint8 -	X__ss_align int64 -	X__ss_pad2  [112]uint8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]uint8 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_freebsd_riscv64.go b/vendor/golang.org/x/net/ipv4/zsys_freebsd_riscv64.go deleted file mode 100644 index 0feb9a753..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_freebsd_riscv64.go +++ /dev/null @@ -1,52 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet    = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]uint8 -	X__ss_align int64 -	X__ss_pad2  [112]uint8 -} - -type sockaddrInet struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]uint8 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_386.go b/vendor/golang.org/x/net/ipv4/zsys_linux_386.go deleted file mode 100644 index d510357ca..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_386.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_amd64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go b/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go deleted file mode 100644 index d510357ca..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_arm.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_arm64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_loong64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_loong64.go deleted file mode 100644 index 54f9e1394..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_loong64.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build loong64 - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go b/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go deleted file mode 100644 index d510357ca..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_mips.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_mips64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go b/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_mips64le.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go b/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go deleted file mode 100644 index d510357ca..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_mipsle.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go b/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go deleted file mode 100644 index 29202e401..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]uint8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go b/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_ppc64le.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_riscv64.go b/vendor/golang.org/x/net/ipv4/zsys_linux_riscv64.go deleted file mode 100644 index 78374a525..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_riscv64.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build riscv64 - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go b/vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go deleted file mode 100644 index eb10cc79b..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_linux_s390x.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv4 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet          = 0x10 -	sizeofInetPktinfo           = 0xc -	sizeofSockExtendedErr       = 0x10 - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPFilter = 0x4 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	X__pad [8]uint8 -} - -type inetPktinfo struct { -	Ifindex  int32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type sockExtendedErr struct { -	Errno  uint32 -	Origin uint8 -	Type   uint8 -	Code   uint8 -	Pad    uint8 -	Info   uint32 -	Data   uint32 -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  uint32 -	Interface  uint32 -	Sourceaddr uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpFilter struct { -	Data uint32 -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_netbsd.go b/vendor/golang.org/x/net/ipv4/zsys_netbsd.go deleted file mode 100644 index a2ef2f6d6..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_netbsd.go +++ /dev/null @@ -1,13 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package ipv4 - -const ( -	sizeofIPMreq = 0x8 -) - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_openbsd.go b/vendor/golang.org/x/net/ipv4/zsys_openbsd.go deleted file mode 100644 index b293a338f..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_openbsd.go +++ /dev/null @@ -1,13 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package ipv4 - -const ( -	sizeofIPMreq = 0x8 -) - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_solaris.go b/vendor/golang.org/x/net/ipv4/zsys_solaris.go deleted file mode 100644 index e1a961bb6..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_solaris.go +++ /dev/null @@ -1,57 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_solaris.go - -package ipv4 - -const ( -	sizeofSockaddrStorage = 0x100 -	sizeofSockaddrInet    = 0x10 -	sizeofInetPktinfo     = 0xc - -	sizeofIPMreq         = 0x8 -	sizeofIPMreqSource   = 0xc -	sizeofGroupReq       = 0x104 -	sizeofGroupSourceReq = 0x204 -) - -type sockaddrStorage struct { -	Family     uint16 -	X_ss_pad1  [6]int8 -	X_ss_align float64 -	X_ss_pad2  [240]int8 -} - -type sockaddrInet struct { -	Family uint16 -	Port   uint16 -	Addr   [4]byte /* in_addr */ -	Zero   [8]int8 -} - -type inetPktinfo struct { -	Ifindex  uint32 -	Spec_dst [4]byte /* in_addr */ -	Addr     [4]byte /* in_addr */ -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} - -type ipMreqSource struct { -	Multiaddr  [4]byte /* in_addr */ -	Sourceaddr [4]byte /* in_addr */ -	Interface  [4]byte /* in_addr */ -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [256]byte -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [256]byte -	Pad_cgo_1 [256]byte -} diff --git a/vendor/golang.org/x/net/ipv4/zsys_zos_s390x.go b/vendor/golang.org/x/net/ipv4/zsys_zos_s390x.go deleted file mode 100644 index 692abf688..000000000 --- a/vendor/golang.org/x/net/ipv4/zsys_zos_s390x.go +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2020 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. - -// Hand edited based on zerrors_zos_s390x.go -// TODO(Bill O'Farrell): auto-generate. - -package ipv4 - -const ( -	sizeofIPMreq          = 8 -	sizeofSockaddrInet4   = 16 -	sizeofSockaddrStorage = 128 -	sizeofGroupReq        = 136 -	sizeofGroupSourceReq  = 264 -	sizeofInetPktinfo     = 8 -) - -type sockaddrInet4 struct { -	Len    uint8 -	Family uint8 -	Port   uint16 -	Addr   [4]byte -	Zero   [8]uint8 -} - -type inetPktinfo struct { -	Addr    [4]byte -	Ifindex uint32 -} - -type sockaddrStorage struct { -	Len      uint8 -	Family   byte -	ss_pad1  [6]byte -	ss_align int64 -	ss_pad2  [112]byte -} - -type groupReq struct { -	Interface uint32 -	reserved  uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	reserved  uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type ipMreq struct { -	Multiaddr [4]byte /* in_addr */ -	Interface [4]byte /* in_addr */ -} diff --git a/vendor/golang.org/x/net/ipv6/batch.go b/vendor/golang.org/x/net/ipv6/batch.go deleted file mode 100644 index 2ccb9849c..000000000 --- a/vendor/golang.org/x/net/ipv6/batch.go +++ /dev/null @@ -1,116 +0,0 @@ -// Copyright 2017 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. - -package ipv6 - -import ( -	"net" -	"runtime" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the ReadBatch and WriteBatch methods of -// PacketConn are not implemented. - -// A Message represents an IO message. -// -//	type Message struct { -//		Buffers [][]byte -//		OOB     []byte -//		Addr    net.Addr -//		N       int -//		NN      int -//		Flags   int -//	} -// -// The Buffers fields represents a list of contiguous buffers, which -// can be used for vectored IO, for example, putting a header and a -// payload in each slice. -// When writing, the Buffers field must contain at least one byte to -// write. -// When reading, the Buffers field will always contain a byte to read. -// -// The OOB field contains protocol-specific control or miscellaneous -// ancillary data known as out-of-band data. -// It can be nil when not required. -// -// The Addr field specifies a destination address when writing. -// It can be nil when the underlying protocol of the endpoint uses -// connection-oriented communication. -// After a successful read, it may contain the source address on the -// received packet. -// -// The N field indicates the number of bytes read or written from/to -// Buffers. -// -// The NN field indicates the number of bytes read or written from/to -// OOB. -// -// The Flags field contains protocol-specific information on the -// received message. -type Message = socket.Message - -// ReadBatch reads a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_PEEK. -// -// On a successful read it returns the number of messages received, up -// to len(ms). -// -// On Linux, a batch read will be optimized. -// On other platforms, this method will read only a single message. -func (c *payloadHandler) ReadBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.RecvMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.RecvMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	} -} - -// WriteBatch writes a batch of messages. -// -// The provided flags is a set of platform-dependent flags, such as -// syscall.MSG_DONTROUTE. -// -// It returns the number of messages written on a successful write. -// -// On Linux, a batch write will be optimized. -// On other platforms, this method will write only a single message. -func (c *payloadHandler) WriteBatch(ms []Message, flags int) (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	switch runtime.GOOS { -	case "linux": -		n, err := c.SendMsgs([]socket.Message(ms), flags) -		if err != nil { -			err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	default: -		n := 1 -		err := c.SendMsg(&ms[0], flags) -		if err != nil { -			n = 0 -			err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		return n, err -	} -} diff --git a/vendor/golang.org/x/net/ipv6/control.go b/vendor/golang.org/x/net/ipv6/control.go deleted file mode 100644 index 2da644413..000000000 --- a/vendor/golang.org/x/net/ipv6/control.go +++ /dev/null @@ -1,187 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"fmt" -	"net" -	"sync" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" -) - -// Note that RFC 3542 obsoletes RFC 2292 but OS X Snow Leopard and the -// former still support RFC 2292 only. Please be aware that almost -// all protocol implementations prohibit using a combination of RFC -// 2292 and RFC 3542 for some practical reasons. - -type rawOpt struct { -	sync.RWMutex -	cflags ControlFlags -} - -func (c *rawOpt) set(f ControlFlags)        { c.cflags |= f } -func (c *rawOpt) clear(f ControlFlags)      { c.cflags &^= f } -func (c *rawOpt) isset(f ControlFlags) bool { return c.cflags&f != 0 } - -// A ControlFlags represents per packet basis IP-level socket option -// control flags. -type ControlFlags uint - -const ( -	FlagTrafficClass ControlFlags = 1 << iota // pass the traffic class on the received packet -	FlagHopLimit                              // pass the hop limit on the received packet -	FlagSrc                                   // pass the source address on the received packet -	FlagDst                                   // pass the destination address on the received packet -	FlagInterface                             // pass the interface index on the received packet -	FlagPathMTU                               // pass the path MTU on the received packet path -) - -const flagPacketInfo = FlagDst | FlagInterface - -// A ControlMessage represents per packet basis IP-level socket -// options. -type ControlMessage struct { -	// Receiving socket options: SetControlMessage allows to -	// receive the options from the protocol stack using ReadFrom -	// method of PacketConn. -	// -	// Specifying socket options: ControlMessage for WriteTo -	// method of PacketConn allows to send the options to the -	// protocol stack. -	// -	TrafficClass int    // traffic class, must be 1 <= value <= 255 when specifying -	HopLimit     int    // hop limit, must be 1 <= value <= 255 when specifying -	Src          net.IP // source address, specifying only -	Dst          net.IP // destination address, receiving only -	IfIndex      int    // interface index, must be 1 <= value when specifying -	NextHop      net.IP // next hop address, specifying only -	MTU          int    // path MTU, receiving only -} - -func (cm *ControlMessage) String() string { -	if cm == nil { -		return "<nil>" -	} -	return fmt.Sprintf("tclass=%#x hoplim=%d src=%v dst=%v ifindex=%d nexthop=%v mtu=%d", cm.TrafficClass, cm.HopLimit, cm.Src, cm.Dst, cm.IfIndex, cm.NextHop, cm.MTU) -} - -// Marshal returns the binary encoding of cm. -func (cm *ControlMessage) Marshal() []byte { -	if cm == nil { -		return nil -	} -	var l int -	tclass := false -	if ctlOpts[ctlTrafficClass].name > 0 && cm.TrafficClass > 0 { -		tclass = true -		l += socket.ControlMessageSpace(ctlOpts[ctlTrafficClass].length) -	} -	hoplimit := false -	if ctlOpts[ctlHopLimit].name > 0 && cm.HopLimit > 0 { -		hoplimit = true -		l += socket.ControlMessageSpace(ctlOpts[ctlHopLimit].length) -	} -	pktinfo := false -	if ctlOpts[ctlPacketInfo].name > 0 && (cm.Src.To16() != nil && cm.Src.To4() == nil || cm.IfIndex > 0) { -		pktinfo = true -		l += socket.ControlMessageSpace(ctlOpts[ctlPacketInfo].length) -	} -	nexthop := false -	if ctlOpts[ctlNextHop].name > 0 && cm.NextHop.To16() != nil && cm.NextHop.To4() == nil { -		nexthop = true -		l += socket.ControlMessageSpace(ctlOpts[ctlNextHop].length) -	} -	var b []byte -	if l > 0 { -		b = make([]byte, l) -		bb := b -		if tclass { -			bb = ctlOpts[ctlTrafficClass].marshal(bb, cm) -		} -		if hoplimit { -			bb = ctlOpts[ctlHopLimit].marshal(bb, cm) -		} -		if pktinfo { -			bb = ctlOpts[ctlPacketInfo].marshal(bb, cm) -		} -		if nexthop { -			bb = ctlOpts[ctlNextHop].marshal(bb, cm) -		} -	} -	return b -} - -// Parse parses b as a control message and stores the result in cm. -func (cm *ControlMessage) Parse(b []byte) error { -	ms, err := socket.ControlMessage(b).Parse() -	if err != nil { -		return err -	} -	for _, m := range ms { -		lvl, typ, l, err := m.ParseHeader() -		if err != nil { -			return err -		} -		if lvl != iana.ProtocolIPv6 { -			continue -		} -		switch { -		case typ == ctlOpts[ctlTrafficClass].name && l >= ctlOpts[ctlTrafficClass].length: -			ctlOpts[ctlTrafficClass].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlHopLimit].name && l >= ctlOpts[ctlHopLimit].length: -			ctlOpts[ctlHopLimit].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlPacketInfo].name && l >= ctlOpts[ctlPacketInfo].length: -			ctlOpts[ctlPacketInfo].parse(cm, m.Data(l)) -		case typ == ctlOpts[ctlPathMTU].name && l >= ctlOpts[ctlPathMTU].length: -			ctlOpts[ctlPathMTU].parse(cm, m.Data(l)) -		} -	} -	return nil -} - -// NewControlMessage returns a new control message. -// -// The returned message is large enough for options specified by cf. -func NewControlMessage(cf ControlFlags) []byte { -	opt := rawOpt{cflags: cf} -	var l int -	if opt.isset(FlagTrafficClass) && ctlOpts[ctlTrafficClass].name > 0 { -		l += socket.ControlMessageSpace(ctlOpts[ctlTrafficClass].length) -	} -	if opt.isset(FlagHopLimit) && ctlOpts[ctlHopLimit].name > 0 { -		l += socket.ControlMessageSpace(ctlOpts[ctlHopLimit].length) -	} -	if opt.isset(flagPacketInfo) && ctlOpts[ctlPacketInfo].name > 0 { -		l += socket.ControlMessageSpace(ctlOpts[ctlPacketInfo].length) -	} -	if opt.isset(FlagPathMTU) && ctlOpts[ctlPathMTU].name > 0 { -		l += socket.ControlMessageSpace(ctlOpts[ctlPathMTU].length) -	} -	var b []byte -	if l > 0 { -		b = make([]byte, l) -	} -	return b -} - -// Ancillary data socket options -const ( -	ctlTrafficClass = iota // header field -	ctlHopLimit            // header field -	ctlPacketInfo          // inbound or outbound packet path -	ctlNextHop             // nexthop -	ctlPathMTU             // path mtu -	ctlMax -) - -// A ctlOpt represents a binding for ancillary data socket option. -type ctlOpt struct { -	name    int // option name, must be equal or greater than 1 -	length  int // option length -	marshal func([]byte, *ControlMessage) []byte -	parse   func(*ControlMessage, []byte) -} diff --git a/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go b/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go deleted file mode 100644 index a8f04e7b3..000000000 --- a/vendor/golang.org/x/net/ipv6/control_rfc2292_unix.go +++ /dev/null @@ -1,50 +0,0 @@ -// Copyright 2013 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 darwin - -package ipv6 - -import ( -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func marshal2292HopLimit(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_2292HOPLIMIT, 4) -	if cm != nil { -		socket.NativeEndian.PutUint32(m.Data(4), uint32(cm.HopLimit)) -	} -	return m.Next(4) -} - -func marshal2292PacketInfo(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_2292PKTINFO, sizeofInet6Pktinfo) -	if cm != nil { -		pi := (*inet6Pktinfo)(unsafe.Pointer(&m.Data(sizeofInet6Pktinfo)[0])) -		if ip := cm.Src.To16(); ip != nil && ip.To4() == nil { -			copy(pi.Addr[:], ip) -		} -		if cm.IfIndex > 0 { -			pi.setIfindex(cm.IfIndex) -		} -	} -	return m.Next(sizeofInet6Pktinfo) -} - -func marshal2292NextHop(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_2292NEXTHOP, sizeofSockaddrInet6) -	if cm != nil { -		sa := (*sockaddrInet6)(unsafe.Pointer(&m.Data(sizeofSockaddrInet6)[0])) -		sa.setSockaddr(cm.NextHop, cm.IfIndex) -	} -	return m.Next(sizeofSockaddrInet6) -} diff --git a/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go b/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go deleted file mode 100644 index 51fbbb1f1..000000000 --- a/vendor/golang.org/x/net/ipv6/control_rfc3542_unix.go +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package ipv6 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -func marshalTrafficClass(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_TCLASS, 4) -	if cm != nil { -		socket.NativeEndian.PutUint32(m.Data(4), uint32(cm.TrafficClass)) -	} -	return m.Next(4) -} - -func parseTrafficClass(cm *ControlMessage, b []byte) { -	cm.TrafficClass = int(socket.NativeEndian.Uint32(b[:4])) -} - -func marshalHopLimit(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_HOPLIMIT, 4) -	if cm != nil { -		socket.NativeEndian.PutUint32(m.Data(4), uint32(cm.HopLimit)) -	} -	return m.Next(4) -} - -func parseHopLimit(cm *ControlMessage, b []byte) { -	cm.HopLimit = int(socket.NativeEndian.Uint32(b[:4])) -} - -func marshalPacketInfo(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_PKTINFO, sizeofInet6Pktinfo) -	if cm != nil { -		pi := (*inet6Pktinfo)(unsafe.Pointer(&m.Data(sizeofInet6Pktinfo)[0])) -		if ip := cm.Src.To16(); ip != nil && ip.To4() == nil { -			copy(pi.Addr[:], ip) -		} -		if cm.IfIndex > 0 { -			pi.setIfindex(cm.IfIndex) -		} -	} -	return m.Next(sizeofInet6Pktinfo) -} - -func parsePacketInfo(cm *ControlMessage, b []byte) { -	pi := (*inet6Pktinfo)(unsafe.Pointer(&b[0])) -	if len(cm.Dst) < net.IPv6len { -		cm.Dst = make(net.IP, net.IPv6len) -	} -	copy(cm.Dst, pi.Addr[:]) -	cm.IfIndex = int(pi.Ifindex) -} - -func marshalNextHop(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_NEXTHOP, sizeofSockaddrInet6) -	if cm != nil { -		sa := (*sockaddrInet6)(unsafe.Pointer(&m.Data(sizeofSockaddrInet6)[0])) -		sa.setSockaddr(cm.NextHop, cm.IfIndex) -	} -	return m.Next(sizeofSockaddrInet6) -} - -func parseNextHop(cm *ControlMessage, b []byte) { -} - -func marshalPathMTU(b []byte, cm *ControlMessage) []byte { -	m := socket.ControlMessage(b) -	m.MarshalHeader(iana.ProtocolIPv6, unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo) -	return m.Next(sizeofIPv6Mtuinfo) -} - -func parsePathMTU(cm *ControlMessage, b []byte) { -	mi := (*ipv6Mtuinfo)(unsafe.Pointer(&b[0])) -	if len(cm.Dst) < net.IPv6len { -		cm.Dst = make(net.IP, net.IPv6len) -	} -	copy(cm.Dst, mi.Addr.Addr[:]) -	cm.IfIndex = int(mi.Addr.Scope_id) -	cm.MTU = int(mi.Mtu) -} diff --git a/vendor/golang.org/x/net/ipv6/control_stub.go b/vendor/golang.org/x/net/ipv6/control_stub.go deleted file mode 100644 index eb28ce753..000000000 --- a/vendor/golang.org/x/net/ipv6/control_stub.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2013 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv6 - -import "golang.org/x/net/internal/socket" - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/control_unix.go b/vendor/golang.org/x/net/ipv6/control_unix.go deleted file mode 100644 index 9c73b8647..000000000 --- a/vendor/golang.org/x/net/ipv6/control_unix.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package ipv6 - -import "golang.org/x/net/internal/socket" - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	opt.Lock() -	defer opt.Unlock() -	if so, ok := sockOpts[ssoReceiveTrafficClass]; ok && cf&FlagTrafficClass != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(FlagTrafficClass) -		} else { -			opt.clear(FlagTrafficClass) -		} -	} -	if so, ok := sockOpts[ssoReceiveHopLimit]; ok && cf&FlagHopLimit != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(FlagHopLimit) -		} else { -			opt.clear(FlagHopLimit) -		} -	} -	if so, ok := sockOpts[ssoReceivePacketInfo]; ok && cf&flagPacketInfo != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(cf & flagPacketInfo) -		} else { -			opt.clear(cf & flagPacketInfo) -		} -	} -	if so, ok := sockOpts[ssoReceivePathMTU]; ok && cf&FlagPathMTU != 0 { -		if err := so.SetInt(c, boolint(on)); err != nil { -			return err -		} -		if on { -			opt.set(FlagPathMTU) -		} else { -			opt.clear(FlagPathMTU) -		} -	} -	return nil -} diff --git a/vendor/golang.org/x/net/ipv6/control_windows.go b/vendor/golang.org/x/net/ipv6/control_windows.go deleted file mode 100644 index 8882d8193..000000000 --- a/vendor/golang.org/x/net/ipv6/control_windows.go +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import "golang.org/x/net/internal/socket" - -func setControlMessage(c *socket.Conn, opt *rawOpt, cf ControlFlags, on bool) error { -	// TODO(mikio): implement this -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/dgramopt.go b/vendor/golang.org/x/net/ipv6/dgramopt.go deleted file mode 100644 index 846f0e1f9..000000000 --- a/vendor/golang.org/x/net/ipv6/dgramopt.go +++ /dev/null @@ -1,301 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/bpf" -) - -// MulticastHopLimit returns the hop limit field value for outgoing -// multicast packets. -func (c *dgramOpt) MulticastHopLimit() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastHopLimit] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetMulticastHopLimit sets the hop limit field value for future -// outgoing multicast packets. -func (c *dgramOpt) SetMulticastHopLimit(hoplim int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastHopLimit] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, hoplim) -} - -// MulticastInterface returns the default interface for multicast -// packet transmissions. -func (c *dgramOpt) MulticastInterface() (*net.Interface, error) { -	if !c.ok() { -		return nil, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastInterface] -	if !ok { -		return nil, errNotImplemented -	} -	return so.getMulticastInterface(c.Conn) -} - -// SetMulticastInterface sets the default interface for future -// multicast packet transmissions. -func (c *dgramOpt) SetMulticastInterface(ifi *net.Interface) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastInterface] -	if !ok { -		return errNotImplemented -	} -	return so.setMulticastInterface(c.Conn, ifi) -} - -// MulticastLoopback reports whether transmitted multicast packets -// should be copied and send back to the originator. -func (c *dgramOpt) MulticastLoopback() (bool, error) { -	if !c.ok() { -		return false, errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastLoopback] -	if !ok { -		return false, errNotImplemented -	} -	on, err := so.GetInt(c.Conn) -	if err != nil { -		return false, err -	} -	return on == 1, nil -} - -// SetMulticastLoopback sets whether transmitted multicast packets -// should be copied and send back to the originator. -func (c *dgramOpt) SetMulticastLoopback(on bool) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoMulticastLoopback] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, boolint(on)) -} - -// JoinGroup joins the group address group on the interface ifi. -// By default all sources that can cast data to group are accepted. -// It's possible to mute and unmute data transmission from a specific -// source by using ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup. -// JoinGroup uses the system assigned multicast interface when ifi is -// nil, although this is not recommended because the assignment -// depends on platforms and sometimes it might require routing -// configuration. -func (c *dgramOpt) JoinGroup(ifi *net.Interface, group net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoJoinGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	return so.setGroup(c.Conn, ifi, grp) -} - -// LeaveGroup leaves the group address group on the interface ifi -// regardless of whether the group is any-source group or -// source-specific group. -func (c *dgramOpt) LeaveGroup(ifi *net.Interface, group net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoLeaveGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	return so.setGroup(c.Conn, ifi, grp) -} - -// JoinSourceSpecificGroup joins the source-specific group comprising -// group and source on the interface ifi. -// JoinSourceSpecificGroup uses the system assigned multicast -// interface when ifi is nil, although this is not recommended because -// the assignment depends on platforms and sometimes it might require -// routing configuration. -func (c *dgramOpt) JoinSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoJoinSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP16(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// LeaveSourceSpecificGroup leaves the source-specific group on the -// interface ifi. -func (c *dgramOpt) LeaveSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoLeaveSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP16(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// ExcludeSourceSpecificGroup excludes the source-specific group from -// the already joined any-source groups by JoinGroup on the interface -// ifi. -func (c *dgramOpt) ExcludeSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoBlockSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP16(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// IncludeSourceSpecificGroup includes the excluded source-specific -// group by ExcludeSourceSpecificGroup again on the interface ifi. -func (c *dgramOpt) IncludeSourceSpecificGroup(ifi *net.Interface, group, source net.Addr) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoUnblockSourceGroup] -	if !ok { -		return errNotImplemented -	} -	grp := netAddrToIP16(group) -	if grp == nil { -		return errMissingAddress -	} -	src := netAddrToIP16(source) -	if src == nil { -		return errMissingAddress -	} -	return so.setSourceGroup(c.Conn, ifi, grp, src) -} - -// Checksum reports whether the kernel will compute, store or verify a -// checksum for both incoming and outgoing packets. If on is true, it -// returns an offset in bytes into the data of where the checksum -// field is located. -func (c *dgramOpt) Checksum() (on bool, offset int, err error) { -	if !c.ok() { -		return false, 0, errInvalidConn -	} -	so, ok := sockOpts[ssoChecksum] -	if !ok { -		return false, 0, errNotImplemented -	} -	offset, err = so.GetInt(c.Conn) -	if err != nil { -		return false, 0, err -	} -	if offset < 0 { -		return false, 0, nil -	} -	return true, offset, nil -} - -// SetChecksum enables the kernel checksum processing. If on is true, -// the offset should be an offset in bytes into the data of where the -// checksum field is located. -func (c *dgramOpt) SetChecksum(on bool, offset int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoChecksum] -	if !ok { -		return errNotImplemented -	} -	if !on { -		offset = -1 -	} -	return so.SetInt(c.Conn, offset) -} - -// ICMPFilter returns an ICMP filter. -func (c *dgramOpt) ICMPFilter() (*ICMPFilter, error) { -	if !c.ok() { -		return nil, errInvalidConn -	} -	so, ok := sockOpts[ssoICMPFilter] -	if !ok { -		return nil, errNotImplemented -	} -	return so.getICMPFilter(c.Conn) -} - -// SetICMPFilter deploys the ICMP filter. -func (c *dgramOpt) SetICMPFilter(f *ICMPFilter) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoICMPFilter] -	if !ok { -		return errNotImplemented -	} -	return so.setICMPFilter(c.Conn, f) -} - -// SetBPF attaches a BPF program to the connection. -// -// Only supported on Linux. -func (c *dgramOpt) SetBPF(filter []bpf.RawInstruction) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoAttachFilter] -	if !ok { -		return errNotImplemented -	} -	return so.setBPF(c.Conn, filter) -} diff --git a/vendor/golang.org/x/net/ipv6/doc.go b/vendor/golang.org/x/net/ipv6/doc.go deleted file mode 100644 index 2148b814f..000000000 --- a/vendor/golang.org/x/net/ipv6/doc.go +++ /dev/null @@ -1,239 +0,0 @@ -// Copyright 2013 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. - -// Package ipv6 implements IP-level socket options for the Internet -// Protocol version 6. -// -// The package provides IP-level socket options that allow -// manipulation of IPv6 facilities. -// -// The IPv6 protocol is defined in RFC 8200. -// Socket interface extensions are defined in RFC 3493, RFC 3542 and -// RFC 3678. -// MLDv1 and MLDv2 are defined in RFC 2710 and RFC 3810. -// Source-specific multicast is defined in RFC 4607. -// -// On Darwin, this package requires OS X Mavericks version 10.9 or -// above, or equivalent. -// -// # Unicasting -// -// The options for unicasting are available for net.TCPConn, -// net.UDPConn and net.IPConn which are created as network connections -// that use the IPv6 transport. When a single TCP connection carrying -// a data flow of multiple packets needs to indicate the flow is -// important, Conn is used to set the traffic class field on the IPv6 -// header for each packet. -// -//	ln, err := net.Listen("tcp6", "[::]:1024") -//	if err != nil { -//		// error handling -//	} -//	defer ln.Close() -//	for { -//		c, err := ln.Accept() -//		if err != nil { -//			// error handling -//		} -//		go func(c net.Conn) { -//			defer c.Close() -// -// The outgoing packets will be labeled DiffServ assured forwarding -// class 1 low drop precedence, known as AF11 packets. -// -//			if err := ipv6.NewConn(c).SetTrafficClass(0x28); err != nil { -//				// error handling -//			} -//			if _, err := c.Write(data); err != nil { -//				// error handling -//			} -//		}(c) -//	} -// -// # Multicasting -// -// The options for multicasting are available for net.UDPConn and -// net.IPConn which are created as network connections that use the -// IPv6 transport. A few network facilities must be prepared before -// you begin multicasting, at a minimum joining network interfaces and -// multicast groups. -// -//	en0, err := net.InterfaceByName("en0") -//	if err != nil { -//		// error handling -//	} -//	en1, err := net.InterfaceByIndex(911) -//	if err != nil { -//		// error handling -//	} -//	group := net.ParseIP("ff02::114") -// -// First, an application listens to an appropriate address with an -// appropriate service port. -// -//	c, err := net.ListenPacket("udp6", "[::]:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c.Close() -// -// Second, the application joins multicast groups, starts listening to -// the groups on the specified network interfaces. Note that the -// service port for transport layer protocol does not matter with this -// operation as joining groups affects only network and link layer -// protocols, such as IPv6 and Ethernet. -// -//	p := ipv6.NewPacketConn(c) -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: group}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en1, &net.UDPAddr{IP: group}); err != nil { -//		// error handling -//	} -// -// The application might set per packet control message transmissions -// between the protocol stack within the kernel. When the application -// needs a destination address on an incoming packet, -// SetControlMessage of PacketConn is used to enable control message -// transmissions. -// -//	if err := p.SetControlMessage(ipv6.FlagDst, true); err != nil { -//		// error handling -//	} -// -// The application could identify whether the received packets are -// of interest by using the control message that contains the -// destination address of the received packet. -// -//	b := make([]byte, 1500) -//	for { -//		n, rcm, src, err := p.ReadFrom(b) -//		if err != nil { -//			// error handling -//		} -//		if rcm.Dst.IsMulticast() { -//			if rcm.Dst.Equal(group) { -//				// joined group, do something -//			} else { -//				// unknown group, discard -//				continue -//			} -//		} -// -// The application can also send both unicast and multicast packets. -// -//		p.SetTrafficClass(0x0) -//		p.SetHopLimit(16) -//		if _, err := p.WriteTo(data[:n], nil, src); err != nil { -//			// error handling -//		} -//		dst := &net.UDPAddr{IP: group, Port: 1024} -//		wcm := ipv6.ControlMessage{TrafficClass: 0xe0, HopLimit: 1} -//		for _, ifi := range []*net.Interface{en0, en1} { -//			wcm.IfIndex = ifi.Index -//			if _, err := p.WriteTo(data[:n], &wcm, dst); err != nil { -//				// error handling -//			} -//		} -//	} -// -// # More multicasting -// -// An application that uses PacketConn may join multiple multicast -// groups. For example, a UDP listener with port 1024 might join two -// different groups across over two different network interfaces by -// using: -// -//	c, err := net.ListenPacket("udp6", "[::]:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c.Close() -//	p := ipv6.NewPacketConn(c) -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff02::1:114")}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff02::2:114")}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en1, &net.UDPAddr{IP: net.ParseIP("ff02::2:114")}); err != nil { -//		// error handling -//	} -// -// It is possible for multiple UDP listeners that listen on the same -// UDP port to join the same multicast group. The net package will -// provide a socket that listens to a wildcard address with reusable -// UDP port when an appropriate multicast address prefix is passed to -// the net.ListenPacket or net.ListenUDP. -// -//	c1, err := net.ListenPacket("udp6", "[ff02::]:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c1.Close() -//	c2, err := net.ListenPacket("udp6", "[ff02::]:1024") -//	if err != nil { -//		// error handling -//	} -//	defer c2.Close() -//	p1 := ipv6.NewPacketConn(c1) -//	if err := p1.JoinGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff02::114")}); err != nil { -//		// error handling -//	} -//	p2 := ipv6.NewPacketConn(c2) -//	if err := p2.JoinGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff02::114")}); err != nil { -//		// error handling -//	} -// -// Also it is possible for the application to leave or rejoin a -// multicast group on the network interface. -// -//	if err := p.LeaveGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff02::114")}); err != nil { -//		// error handling -//	} -//	if err := p.JoinGroup(en0, &net.UDPAddr{IP: net.ParseIP("ff01::114")}); err != nil { -//		// error handling -//	} -// -// # Source-specific multicasting -// -// An application that uses PacketConn on MLDv2 supported platform is -// able to join source-specific multicast groups. -// The application may use JoinSourceSpecificGroup and -// LeaveSourceSpecificGroup for the operation known as "include" mode, -// -//	ssmgroup := net.UDPAddr{IP: net.ParseIP("ff32::8000:9")} -//	ssmsource := net.UDPAddr{IP: net.ParseIP("fe80::cafe")} -//	if err := p.JoinSourceSpecificGroup(en0, &ssmgroup, &ssmsource); err != nil { -//		// error handling -//	} -//	if err := p.LeaveSourceSpecificGroup(en0, &ssmgroup, &ssmsource); err != nil { -//		// error handling -//	} -// -// or JoinGroup, ExcludeSourceSpecificGroup, -// IncludeSourceSpecificGroup and LeaveGroup for the operation known -// as "exclude" mode. -// -//	exclsource := net.UDPAddr{IP: net.ParseIP("fe80::dead")} -//	if err := p.JoinGroup(en0, &ssmgroup); err != nil { -//		// error handling -//	} -//	if err := p.ExcludeSourceSpecificGroup(en0, &ssmgroup, &exclsource); err != nil { -//		// error handling -//	} -//	if err := p.LeaveGroup(en0, &ssmgroup); err != nil { -//		// error handling -//	} -// -// Note that it depends on each platform implementation what happens -// when an application which runs on MLDv2 unsupported platform uses -// JoinSourceSpecificGroup and LeaveSourceSpecificGroup. -// In general the platform tries to fall back to conversations using -// MLDv1 and starts to listen to multicast traffic. -// In the fallback case, ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup may return an error. -package ipv6 // import "golang.org/x/net/ipv6" - -// BUG(mikio): This package is not implemented on JS, NaCl and Plan 9. diff --git a/vendor/golang.org/x/net/ipv6/endpoint.go b/vendor/golang.org/x/net/ipv6/endpoint.go deleted file mode 100644 index f534a0bf3..000000000 --- a/vendor/golang.org/x/net/ipv6/endpoint.go +++ /dev/null @@ -1,127 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" -	"time" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the JoinSourceSpecificGroup, -// LeaveSourceSpecificGroup, ExcludeSourceSpecificGroup and -// IncludeSourceSpecificGroup methods of PacketConn are not -// implemented. - -// A Conn represents a network endpoint that uses IPv6 transport. -// It allows to set basic IP-level socket options such as traffic -// class and hop limit. -type Conn struct { -	genericOpt -} - -type genericOpt struct { -	*socket.Conn -} - -func (c *genericOpt) ok() bool { return c != nil && c.Conn != nil } - -// PathMTU returns a path MTU value for the destination associated -// with the endpoint. -func (c *Conn) PathMTU() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoPathMTU] -	if !ok { -		return 0, errNotImplemented -	} -	_, mtu, err := so.getMTUInfo(c.Conn) -	if err != nil { -		return 0, err -	} -	return mtu, nil -} - -// NewConn returns a new Conn. -func NewConn(c net.Conn) *Conn { -	cc, _ := socket.NewConn(c) -	return &Conn{ -		genericOpt: genericOpt{Conn: cc}, -	} -} - -// A PacketConn represents a packet network endpoint that uses IPv6 -// transport. It is used to control several IP-level socket options -// including IPv6 header manipulation. It also provides datagram -// based network I/O methods specific to the IPv6 and higher layer -// protocols such as OSPF, GRE, and UDP. -type PacketConn struct { -	genericOpt -	dgramOpt -	payloadHandler -} - -type dgramOpt struct { -	*socket.Conn -} - -func (c *dgramOpt) ok() bool { return c != nil && c.Conn != nil } - -// SetControlMessage allows to receive the per packet basis IP-level -// socket options. -func (c *PacketConn) SetControlMessage(cf ControlFlags, on bool) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return setControlMessage(c.dgramOpt.Conn, &c.payloadHandler.rawOpt, cf, on) -} - -// SetDeadline sets the read and write deadlines associated with the -// endpoint. -func (c *PacketConn) SetDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.SetDeadline(t) -} - -// SetReadDeadline sets the read deadline associated with the -// endpoint. -func (c *PacketConn) SetReadDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.SetReadDeadline(t) -} - -// SetWriteDeadline sets the write deadline associated with the -// endpoint. -func (c *PacketConn) SetWriteDeadline(t time.Time) error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.SetWriteDeadline(t) -} - -// Close closes the endpoint. -func (c *PacketConn) Close() error { -	if !c.payloadHandler.ok() { -		return errInvalidConn -	} -	return c.payloadHandler.Close() -} - -// NewPacketConn returns a new PacketConn using c as its underlying -// transport. -func NewPacketConn(c net.PacketConn) *PacketConn { -	cc, _ := socket.NewConn(c.(net.Conn)) -	return &PacketConn{ -		genericOpt:     genericOpt{Conn: cc}, -		dgramOpt:       dgramOpt{Conn: cc}, -		payloadHandler: payloadHandler{PacketConn: c, Conn: cc}, -	} -} diff --git a/vendor/golang.org/x/net/ipv6/genericopt.go b/vendor/golang.org/x/net/ipv6/genericopt.go deleted file mode 100644 index 0326aed6d..000000000 --- a/vendor/golang.org/x/net/ipv6/genericopt.go +++ /dev/null @@ -1,56 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -// TrafficClass returns the traffic class field value for outgoing -// packets. -func (c *genericOpt) TrafficClass() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoTrafficClass] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetTrafficClass sets the traffic class field value for future -// outgoing packets. -func (c *genericOpt) SetTrafficClass(tclass int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoTrafficClass] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, tclass) -} - -// HopLimit returns the hop limit field value for outgoing packets. -func (c *genericOpt) HopLimit() (int, error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	so, ok := sockOpts[ssoHopLimit] -	if !ok { -		return 0, errNotImplemented -	} -	return so.GetInt(c.Conn) -} - -// SetHopLimit sets the hop limit field value for future outgoing -// packets. -func (c *genericOpt) SetHopLimit(hoplim int) error { -	if !c.ok() { -		return errInvalidConn -	} -	so, ok := sockOpts[ssoHopLimit] -	if !ok { -		return errNotImplemented -	} -	return so.SetInt(c.Conn, hoplim) -} diff --git a/vendor/golang.org/x/net/ipv6/header.go b/vendor/golang.org/x/net/ipv6/header.go deleted file mode 100644 index e05cb08b2..000000000 --- a/vendor/golang.org/x/net/ipv6/header.go +++ /dev/null @@ -1,55 +0,0 @@ -// Copyright 2014 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. - -package ipv6 - -import ( -	"encoding/binary" -	"fmt" -	"net" -) - -const ( -	Version   = 6  // protocol version -	HeaderLen = 40 // header length -) - -// A Header represents an IPv6 base header. -type Header struct { -	Version      int    // protocol version -	TrafficClass int    // traffic class -	FlowLabel    int    // flow label -	PayloadLen   int    // payload length -	NextHeader   int    // next header -	HopLimit     int    // hop limit -	Src          net.IP // source address -	Dst          net.IP // destination address -} - -func (h *Header) String() string { -	if h == nil { -		return "<nil>" -	} -	return fmt.Sprintf("ver=%d tclass=%#x flowlbl=%#x payloadlen=%d nxthdr=%d hoplim=%d src=%v dst=%v", h.Version, h.TrafficClass, h.FlowLabel, h.PayloadLen, h.NextHeader, h.HopLimit, h.Src, h.Dst) -} - -// ParseHeader parses b as an IPv6 base header. -func ParseHeader(b []byte) (*Header, error) { -	if len(b) < HeaderLen { -		return nil, errHeaderTooShort -	} -	h := &Header{ -		Version:      int(b[0]) >> 4, -		TrafficClass: int(b[0]&0x0f)<<4 | int(b[1])>>4, -		FlowLabel:    int(b[1]&0x0f)<<16 | int(b[2])<<8 | int(b[3]), -		PayloadLen:   int(binary.BigEndian.Uint16(b[4:6])), -		NextHeader:   int(b[6]), -		HopLimit:     int(b[7]), -	} -	h.Src = make(net.IP, net.IPv6len) -	copy(h.Src, b[8:24]) -	h.Dst = make(net.IP, net.IPv6len) -	copy(h.Dst, b[24:40]) -	return h, nil -} diff --git a/vendor/golang.org/x/net/ipv6/helper.go b/vendor/golang.org/x/net/ipv6/helper.go deleted file mode 100644 index c2d508f9c..000000000 --- a/vendor/golang.org/x/net/ipv6/helper.go +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"errors" -	"net" -	"runtime" -) - -var ( -	errInvalidConn     = errors.New("invalid connection") -	errMissingAddress  = errors.New("missing address") -	errHeaderTooShort  = errors.New("header too short") -	errInvalidConnType = errors.New("invalid conn type") -	errNotImplemented  = errors.New("not implemented on " + runtime.GOOS + "/" + runtime.GOARCH) -) - -func boolint(b bool) int { -	if b { -		return 1 -	} -	return 0 -} - -func netAddrToIP16(a net.Addr) net.IP { -	switch v := a.(type) { -	case *net.UDPAddr: -		if ip := v.IP.To16(); ip != nil && ip.To4() == nil { -			return ip -		} -	case *net.IPAddr: -		if ip := v.IP.To16(); ip != nil && ip.To4() == nil { -			return ip -		} -	} -	return nil -} - -func opAddr(a net.Addr) net.Addr { -	switch a.(type) { -	case *net.TCPAddr: -		if a == nil { -			return nil -		} -	case *net.UDPAddr: -		if a == nil { -			return nil -		} -	case *net.IPAddr: -		if a == nil { -			return nil -		} -	} -	return a -} diff --git a/vendor/golang.org/x/net/ipv6/iana.go b/vendor/golang.org/x/net/ipv6/iana.go deleted file mode 100644 index 32db1aa94..000000000 --- a/vendor/golang.org/x/net/ipv6/iana.go +++ /dev/null @@ -1,86 +0,0 @@ -// go generate gen.go -// Code generated by the command above; DO NOT EDIT. - -package ipv6 - -// Internet Control Message Protocol version 6 (ICMPv6) Parameters, Updated: 2018-03-09 -const ( -	ICMPTypeDestinationUnreachable                ICMPType = 1   // Destination Unreachable -	ICMPTypePacketTooBig                          ICMPType = 2   // Packet Too Big -	ICMPTypeTimeExceeded                          ICMPType = 3   // Time Exceeded -	ICMPTypeParameterProblem                      ICMPType = 4   // Parameter Problem -	ICMPTypeEchoRequest                           ICMPType = 128 // Echo Request -	ICMPTypeEchoReply                             ICMPType = 129 // Echo Reply -	ICMPTypeMulticastListenerQuery                ICMPType = 130 // Multicast Listener Query -	ICMPTypeMulticastListenerReport               ICMPType = 131 // Multicast Listener Report -	ICMPTypeMulticastListenerDone                 ICMPType = 132 // Multicast Listener Done -	ICMPTypeRouterSolicitation                    ICMPType = 133 // Router Solicitation -	ICMPTypeRouterAdvertisement                   ICMPType = 134 // Router Advertisement -	ICMPTypeNeighborSolicitation                  ICMPType = 135 // Neighbor Solicitation -	ICMPTypeNeighborAdvertisement                 ICMPType = 136 // Neighbor Advertisement -	ICMPTypeRedirect                              ICMPType = 137 // Redirect Message -	ICMPTypeRouterRenumbering                     ICMPType = 138 // Router Renumbering -	ICMPTypeNodeInformationQuery                  ICMPType = 139 // ICMP Node Information Query -	ICMPTypeNodeInformationResponse               ICMPType = 140 // ICMP Node Information Response -	ICMPTypeInverseNeighborDiscoverySolicitation  ICMPType = 141 // Inverse Neighbor Discovery Solicitation Message -	ICMPTypeInverseNeighborDiscoveryAdvertisement ICMPType = 142 // Inverse Neighbor Discovery Advertisement Message -	ICMPTypeVersion2MulticastListenerReport       ICMPType = 143 // Version 2 Multicast Listener Report -	ICMPTypeHomeAgentAddressDiscoveryRequest      ICMPType = 144 // Home Agent Address Discovery Request Message -	ICMPTypeHomeAgentAddressDiscoveryReply        ICMPType = 145 // Home Agent Address Discovery Reply Message -	ICMPTypeMobilePrefixSolicitation              ICMPType = 146 // Mobile Prefix Solicitation -	ICMPTypeMobilePrefixAdvertisement             ICMPType = 147 // Mobile Prefix Advertisement -	ICMPTypeCertificationPathSolicitation         ICMPType = 148 // Certification Path Solicitation Message -	ICMPTypeCertificationPathAdvertisement        ICMPType = 149 // Certification Path Advertisement Message -	ICMPTypeMulticastRouterAdvertisement          ICMPType = 151 // Multicast Router Advertisement -	ICMPTypeMulticastRouterSolicitation           ICMPType = 152 // Multicast Router Solicitation -	ICMPTypeMulticastRouterTermination            ICMPType = 153 // Multicast Router Termination -	ICMPTypeFMIPv6                                ICMPType = 154 // FMIPv6 Messages -	ICMPTypeRPLControl                            ICMPType = 155 // RPL Control Message -	ICMPTypeILNPv6LocatorUpdate                   ICMPType = 156 // ILNPv6 Locator Update Message -	ICMPTypeDuplicateAddressRequest               ICMPType = 157 // Duplicate Address Request -	ICMPTypeDuplicateAddressConfirmation          ICMPType = 158 // Duplicate Address Confirmation -	ICMPTypeMPLControl                            ICMPType = 159 // MPL Control Message -	ICMPTypeExtendedEchoRequest                   ICMPType = 160 // Extended Echo Request -	ICMPTypeExtendedEchoReply                     ICMPType = 161 // Extended Echo Reply -) - -// Internet Control Message Protocol version 6 (ICMPv6) Parameters, Updated: 2018-03-09 -var icmpTypes = map[ICMPType]string{ -	1:   "destination unreachable", -	2:   "packet too big", -	3:   "time exceeded", -	4:   "parameter problem", -	128: "echo request", -	129: "echo reply", -	130: "multicast listener query", -	131: "multicast listener report", -	132: "multicast listener done", -	133: "router solicitation", -	134: "router advertisement", -	135: "neighbor solicitation", -	136: "neighbor advertisement", -	137: "redirect message", -	138: "router renumbering", -	139: "icmp node information query", -	140: "icmp node information response", -	141: "inverse neighbor discovery solicitation message", -	142: "inverse neighbor discovery advertisement message", -	143: "version 2 multicast listener report", -	144: "home agent address discovery request message", -	145: "home agent address discovery reply message", -	146: "mobile prefix solicitation", -	147: "mobile prefix advertisement", -	148: "certification path solicitation message", -	149: "certification path advertisement message", -	151: "multicast router advertisement", -	152: "multicast router solicitation", -	153: "multicast router termination", -	154: "fmipv6 messages", -	155: "rpl control message", -	156: "ilnpv6 locator update message", -	157: "duplicate address request", -	158: "duplicate address confirmation", -	159: "mpl control message", -	160: "extended echo request", -	161: "extended echo reply", -} diff --git a/vendor/golang.org/x/net/ipv6/icmp.go b/vendor/golang.org/x/net/ipv6/icmp.go deleted file mode 100644 index b7f48e27b..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp.go +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import "golang.org/x/net/internal/iana" - -// BUG(mikio): On Windows, methods related to ICMPFilter are not -// implemented. - -// An ICMPType represents a type of ICMP message. -type ICMPType int - -func (typ ICMPType) String() string { -	s, ok := icmpTypes[typ] -	if !ok { -		return "<nil>" -	} -	return s -} - -// Protocol returns the ICMPv6 protocol number. -func (typ ICMPType) Protocol() int { -	return iana.ProtocolIPv6ICMP -} - -// An ICMPFilter represents an ICMP message filter for incoming -// packets. The filter belongs to a packet delivery path on a host and -// it cannot interact with forwarding packets or tunnel-outer packets. -// -// Note: RFC 8200 defines a reasonable role model. A node means a -// device that implements IP. A router means a node that forwards IP -// packets not explicitly addressed to itself, and a host means a node -// that is not a router. -type ICMPFilter struct { -	icmpv6Filter -} - -// Accept accepts incoming ICMP packets including the type field value -// typ. -func (f *ICMPFilter) Accept(typ ICMPType) { -	f.accept(typ) -} - -// Block blocks incoming ICMP packets including the type field value -// typ. -func (f *ICMPFilter) Block(typ ICMPType) { -	f.block(typ) -} - -// SetAll sets the filter action to the filter. -func (f *ICMPFilter) SetAll(block bool) { -	f.setAll(block) -} - -// WillBlock reports whether the ICMP type will be blocked. -func (f *ICMPFilter) WillBlock(typ ICMPType) bool { -	return f.willBlock(typ) -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_bsd.go b/vendor/golang.org/x/net/ipv6/icmp_bsd.go deleted file mode 100644 index 2814534a0..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_bsd.go +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || netbsd || openbsd - -package ipv6 - -func (f *icmpv6Filter) accept(typ ICMPType) { -	f.Filt[typ>>5] |= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) block(typ ICMPType) { -	f.Filt[typ>>5] &^= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) setAll(block bool) { -	for i := range f.Filt { -		if block { -			f.Filt[i] = 0 -		} else { -			f.Filt[i] = 1<<32 - 1 -		} -	} -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	return f.Filt[typ>>5]&(1<<(uint32(typ)&31)) == 0 -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_linux.go b/vendor/golang.org/x/net/ipv6/icmp_linux.go deleted file mode 100644 index 647f6b44f..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_linux.go +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -func (f *icmpv6Filter) accept(typ ICMPType) { -	f.Data[typ>>5] &^= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) block(typ ICMPType) { -	f.Data[typ>>5] |= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) setAll(block bool) { -	for i := range f.Data { -		if block { -			f.Data[i] = 1<<32 - 1 -		} else { -			f.Data[i] = 0 -		} -	} -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	return f.Data[typ>>5]&(1<<(uint32(typ)&31)) != 0 -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_solaris.go b/vendor/golang.org/x/net/ipv6/icmp_solaris.go deleted file mode 100644 index 7c23bb1cf..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_solaris.go +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -func (f *icmpv6Filter) accept(typ ICMPType) { -	f.X__icmp6_filt[typ>>5] |= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) block(typ ICMPType) { -	f.X__icmp6_filt[typ>>5] &^= 1 << (uint32(typ) & 31) -} - -func (f *icmpv6Filter) setAll(block bool) { -	for i := range f.X__icmp6_filt { -		if block { -			f.X__icmp6_filt[i] = 0 -		} else { -			f.X__icmp6_filt[i] = 1<<32 - 1 -		} -	} -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	return f.X__icmp6_filt[typ>>5]&(1<<(uint32(typ)&31)) == 0 -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_stub.go b/vendor/golang.org/x/net/ipv6/icmp_stub.go deleted file mode 100644 index c92c9b51e..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_stub.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2013 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv6 - -type icmpv6Filter struct { -} - -func (f *icmpv6Filter) accept(typ ICMPType) { -} - -func (f *icmpv6Filter) block(typ ICMPType) { -} - -func (f *icmpv6Filter) setAll(block bool) { -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	return false -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_windows.go b/vendor/golang.org/x/net/ipv6/icmp_windows.go deleted file mode 100644 index 443cd0736..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_windows.go +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -func (f *icmpv6Filter) accept(typ ICMPType) { -	// TODO(mikio): implement this -} - -func (f *icmpv6Filter) block(typ ICMPType) { -	// TODO(mikio): implement this -} - -func (f *icmpv6Filter) setAll(block bool) { -	// TODO(mikio): implement this -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	// TODO(mikio): implement this -	return false -} diff --git a/vendor/golang.org/x/net/ipv6/icmp_zos.go b/vendor/golang.org/x/net/ipv6/icmp_zos.go deleted file mode 100644 index ddf8f093f..000000000 --- a/vendor/golang.org/x/net/ipv6/icmp_zos.go +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright 2020 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. - -package ipv6 - -func (f *icmpv6Filter) accept(typ ICMPType) { -	f.Filt[typ>>5] |= 1 << (uint32(typ) & 31) - -} - -func (f *icmpv6Filter) block(typ ICMPType) { -	f.Filt[typ>>5] &^= 1 << (uint32(typ) & 31) - -} - -func (f *icmpv6Filter) setAll(block bool) { -	for i := range f.Filt { -		if block { -			f.Filt[i] = 0 -		} else { -			f.Filt[i] = 1<<32 - 1 -		} -	} -} - -func (f *icmpv6Filter) willBlock(typ ICMPType) bool { -	return f.Filt[typ>>5]&(1<<(uint32(typ)&31)) == 0 -} diff --git a/vendor/golang.org/x/net/ipv6/payload.go b/vendor/golang.org/x/net/ipv6/payload.go deleted file mode 100644 index a8197f169..000000000 --- a/vendor/golang.org/x/net/ipv6/payload.go +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -// BUG(mikio): On Windows, the ControlMessage for ReadFrom and WriteTo -// methods of PacketConn is not implemented. - -// A payloadHandler represents the IPv6 datagram payload handler. -type payloadHandler struct { -	net.PacketConn -	*socket.Conn -	rawOpt -} - -func (c *payloadHandler) ok() bool { return c != nil && c.PacketConn != nil && c.Conn != nil } diff --git a/vendor/golang.org/x/net/ipv6/payload_cmsg.go b/vendor/golang.org/x/net/ipv6/payload_cmsg.go deleted file mode 100644 index be04e4d6a..000000000 --- a/vendor/golang.org/x/net/ipv6/payload_cmsg.go +++ /dev/null @@ -1,70 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || zos - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -// ReadFrom reads a payload of the received IPv6 datagram, from the -// endpoint c, copying the payload into b. It returns the number of -// bytes copied into b, the control message cm and the source address -// src of the received datagram. -func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) { -	if !c.ok() { -		return 0, nil, nil, errInvalidConn -	} -	c.rawOpt.RLock() -	m := socket.Message{ -		Buffers: [][]byte{b}, -		OOB:     NewControlMessage(c.rawOpt.cflags), -	} -	c.rawOpt.RUnlock() -	switch c.PacketConn.(type) { -	case *net.UDPConn: -		if err := c.RecvMsg(&m, 0); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -	case *net.IPConn: -		if err := c.RecvMsg(&m, 0); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -	default: -		return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: errInvalidConnType} -	} -	if m.NN > 0 { -		cm = new(ControlMessage) -		if err := cm.Parse(m.OOB[:m.NN]); err != nil { -			return 0, nil, nil, &net.OpError{Op: "read", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Err: err} -		} -		cm.Src = netAddrToIP16(m.Addr) -	} -	return m.N, cm, m.Addr, nil -} - -// WriteTo writes a payload of the IPv6 datagram, to the destination -// address dst through the endpoint c, copying the payload from b. It -// returns the number of bytes written. The control message cm allows -// the IPv6 header fields and the datagram path to be specified. The -// cm may be nil if control of the outgoing datagram is not required. -func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	m := socket.Message{ -		Buffers: [][]byte{b}, -		OOB:     cm.Marshal(), -		Addr:    dst, -	} -	err = c.SendMsg(&m, 0) -	if err != nil { -		err = &net.OpError{Op: "write", Net: c.PacketConn.LocalAddr().Network(), Source: c.PacketConn.LocalAddr(), Addr: opAddr(dst), Err: err} -	} -	return m.N, err -} diff --git a/vendor/golang.org/x/net/ipv6/payload_nocmsg.go b/vendor/golang.org/x/net/ipv6/payload_nocmsg.go deleted file mode 100644 index 29b9ccf69..000000000 --- a/vendor/golang.org/x/net/ipv6/payload_nocmsg.go +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright 2013 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !zos - -package ipv6 - -import "net" - -// ReadFrom reads a payload of the received IPv6 datagram, from the -// endpoint c, copying the payload into b. It returns the number of -// bytes copied into b, the control message cm and the source address -// src of the received datagram. -func (c *payloadHandler) ReadFrom(b []byte) (n int, cm *ControlMessage, src net.Addr, err error) { -	if !c.ok() { -		return 0, nil, nil, errInvalidConn -	} -	if n, src, err = c.PacketConn.ReadFrom(b); err != nil { -		return 0, nil, nil, err -	} -	return -} - -// WriteTo writes a payload of the IPv6 datagram, to the destination -// address dst through the endpoint c, copying the payload from b. It -// returns the number of bytes written. The control message cm allows -// the IPv6 header fields and the datagram path to be specified. The -// cm may be nil if control of the outgoing datagram is not required. -func (c *payloadHandler) WriteTo(b []byte, cm *ControlMessage, dst net.Addr) (n int, err error) { -	if !c.ok() { -		return 0, errInvalidConn -	} -	if dst == nil { -		return 0, errMissingAddress -	} -	return c.PacketConn.WriteTo(b, dst) -} diff --git a/vendor/golang.org/x/net/ipv6/sockopt.go b/vendor/golang.org/x/net/ipv6/sockopt.go deleted file mode 100644 index cc3907df3..000000000 --- a/vendor/golang.org/x/net/ipv6/sockopt.go +++ /dev/null @@ -1,43 +0,0 @@ -// Copyright 2014 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. - -package ipv6 - -import "golang.org/x/net/internal/socket" - -// Sticky socket options -const ( -	ssoTrafficClass        = iota // header field for unicast packet, RFC 3542 -	ssoHopLimit                   // header field for unicast packet, RFC 3493 -	ssoMulticastInterface         // outbound interface for multicast packet, RFC 3493 -	ssoMulticastHopLimit          // header field for multicast packet, RFC 3493 -	ssoMulticastLoopback          // loopback for multicast packet, RFC 3493 -	ssoReceiveTrafficClass        // header field on received packet, RFC 3542 -	ssoReceiveHopLimit            // header field on received packet, RFC 2292 or 3542 -	ssoReceivePacketInfo          // incbound or outbound packet path, RFC 2292 or 3542 -	ssoReceivePathMTU             // path mtu, RFC 3542 -	ssoPathMTU                    // path mtu, RFC 3542 -	ssoChecksum                   // packet checksum, RFC 2292 or 3542 -	ssoICMPFilter                 // icmp filter, RFC 2292 or 3542 -	ssoJoinGroup                  // any-source multicast, RFC 3493 -	ssoLeaveGroup                 // any-source multicast, RFC 3493 -	ssoJoinSourceGroup            // source-specific multicast -	ssoLeaveSourceGroup           // source-specific multicast -	ssoBlockSourceGroup           // any-source or source-specific multicast -	ssoUnblockSourceGroup         // any-source or source-specific multicast -	ssoAttachFilter               // attach BPF for filtering inbound traffic -) - -// Sticky socket option value types -const ( -	ssoTypeIPMreq = iota + 1 -	ssoTypeGroupReq -	ssoTypeGroupSourceReq -) - -// A sockOpt represents a binding for sticky socket option. -type sockOpt struct { -	socket.Option -	typ int // hint for option value type; optional -} diff --git a/vendor/golang.org/x/net/ipv6/sockopt_posix.go b/vendor/golang.org/x/net/ipv6/sockopt_posix.go deleted file mode 100644 index 34dfed588..000000000 --- a/vendor/golang.org/x/net/ipv6/sockopt_posix.go +++ /dev/null @@ -1,89 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows || zos - -package ipv6 - -import ( -	"net" -	"runtime" -	"unsafe" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface, error) { -	n, err := so.GetInt(c) -	if err != nil { -		return nil, err -	} -	return net.InterfaceByIndex(n) -} - -func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interface) error { -	var n int -	if ifi != nil { -		n = ifi.Index -	} -	return so.SetInt(c, n) -} - -func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) { -	b := make([]byte, so.Len) -	n, err := so.Get(c, b) -	if err != nil { -		return nil, err -	} -	if n != sizeofICMPv6Filter { -		return nil, errNotImplemented -	} -	return (*ICMPFilter)(unsafe.Pointer(&b[0])), nil -} - -func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error { -	b := (*[sizeofICMPv6Filter]byte)(unsafe.Pointer(f))[:sizeofICMPv6Filter] -	return so.Set(c, b) -} - -func (so *sockOpt) getMTUInfo(c *socket.Conn) (*net.Interface, int, error) { -	b := make([]byte, so.Len) -	n, err := so.Get(c, b) -	if err != nil { -		return nil, 0, err -	} -	if n != sizeofIPv6Mtuinfo { -		return nil, 0, errNotImplemented -	} -	mi := (*ipv6Mtuinfo)(unsafe.Pointer(&b[0])) -	if mi.Addr.Scope_id == 0 || runtime.GOOS == "aix" { -		// AIX kernel might return a wrong address. -		return nil, int(mi.Mtu), nil -	} -	ifi, err := net.InterfaceByIndex(int(mi.Addr.Scope_id)) -	if err != nil { -		return nil, 0, err -	} -	return ifi, int(mi.Mtu), nil -} - -func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	switch so.typ { -	case ssoTypeIPMreq: -		return so.setIPMreq(c, ifi, grp) -	case ssoTypeGroupReq: -		return so.setGroupReq(c, ifi, grp) -	default: -		return errNotImplemented -	} -} - -func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return so.setGroupSourceReq(c, ifi, grp, src) -} - -func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error { -	return so.setAttachFilter(c, f) -} diff --git a/vendor/golang.org/x/net/ipv6/sockopt_stub.go b/vendor/golang.org/x/net/ipv6/sockopt_stub.go deleted file mode 100644 index a09c3aaf2..000000000 --- a/vendor/golang.org/x/net/ipv6/sockopt_stub.go +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright 2013 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) getMulticastInterface(c *socket.Conn) (*net.Interface, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setMulticastInterface(c *socket.Conn, ifi *net.Interface) error { -	return errNotImplemented -} - -func (so *sockOpt) getICMPFilter(c *socket.Conn) (*ICMPFilter, error) { -	return nil, errNotImplemented -} - -func (so *sockOpt) setICMPFilter(c *socket.Conn, f *ICMPFilter) error { -	return errNotImplemented -} - -func (so *sockOpt) getMTUInfo(c *socket.Conn) (*net.Interface, int, error) { -	return nil, 0, errNotImplemented -} - -func (so *sockOpt) setGroup(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setSourceGroup(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setBPF(c *socket.Conn, f []bpf.RawInstruction) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/sys_aix.go b/vendor/golang.org/x/net/ipv6/sys_aix.go deleted file mode 100644 index 93c8efc46..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_aix.go +++ /dev/null @@ -1,79 +0,0 @@ -// Copyright 2019 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. - -// Added for go1.11 compatibility -//go:build aix - -package ipv6 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlNextHop:      {unix.IPV6_NEXTHOP, sizeofSockaddrInet6, marshalNextHop, parseNextHop}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_JOIN_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_LEAVE_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = int32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gr)) + 4)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 4)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 132)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_asmreq.go b/vendor/golang.org/x/net/ipv6/sys_asmreq.go deleted file mode 100644 index 5c9cb4447..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_asmreq.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2013 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 aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris || windows - -package ipv6 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	var mreq ipv6Mreq -	copy(mreq.Multiaddr[:], grp) -	if ifi != nil { -		mreq.setIfindex(ifi.Index) -	} -	b := (*[sizeofIPv6Mreq]byte)(unsafe.Pointer(&mreq))[:sizeofIPv6Mreq] -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go b/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go deleted file mode 100644 index dc7049468..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_asmreq_stub.go +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2013 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setIPMreq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/sys_bpf.go b/vendor/golang.org/x/net/ipv6/sys_bpf.go deleted file mode 100644 index e39f75f49..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_bpf.go +++ /dev/null @@ -1,24 +0,0 @@ -// Copyright 2017 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 linux - -package ipv6 - -import ( -	"unsafe" - -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -	"golang.org/x/sys/unix" -) - -func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error { -	prog := unix.SockFprog{ -		Len:    uint16(len(f)), -		Filter: (*unix.SockFilter)(unsafe.Pointer(&f[0])), -	} -	b := (*[unix.SizeofSockFprog]byte)(unsafe.Pointer(&prog))[:unix.SizeofSockFprog] -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go b/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go deleted file mode 100644 index 8532a8f5d..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_bpf_stub.go +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2017 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 !linux - -package ipv6 - -import ( -	"golang.org/x/net/bpf" -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setAttachFilter(c *socket.Conn, f []bpf.RawInstruction) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/sys_bsd.go b/vendor/golang.org/x/net/ipv6/sys_bsd.go deleted file mode 100644 index 9f3bc2afd..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_bsd.go +++ /dev/null @@ -1,59 +0,0 @@ -// Copyright 2013 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 dragonfly || netbsd || openbsd - -package ipv6 - -import ( -	"net" -	"syscall" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlNextHop:      {unix.IPV6_NEXTHOP, sizeofSockaddrInet6, marshalNextHop, parseNextHop}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_JOIN_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_LEAVE_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_darwin.go b/vendor/golang.org/x/net/ipv6/sys_darwin.go deleted file mode 100644 index b80ec8064..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_darwin.go +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlNextHop:      {unix.IPV6_NEXTHOP, sizeofSockaddrInet6, marshalNextHop, parseNextHop}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gr)) + 4)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 4)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 132)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_freebsd.go b/vendor/golang.org/x/net/ipv6/sys_freebsd.go deleted file mode 100644 index 6282cf977..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_freebsd.go +++ /dev/null @@ -1,94 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" -	"runtime" -	"strings" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlNextHop:      {unix.IPV6_NEXTHOP, sizeofSockaddrInet6, marshalNextHop, parseNextHop}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func init() { -	if runtime.GOOS == "freebsd" && runtime.GOARCH == "386" { -		archs, _ := syscall.Sysctl("kern.supported_archs") -		for _, s := range strings.Fields(archs) { -			if s == "amd64" { -				compatFreeBSD32 = true -				break -			} -		} -	} -} - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gr.Group)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gsr.Group)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(&gsr.Source)) -	sa.Len = sizeofSockaddrInet6 -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_linux.go b/vendor/golang.org/x/net/ipv6/sys_linux.go deleted file mode 100644 index 82e212100..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_linux.go +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolReserved, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMPV6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoAttachFilter:        {Option: socket.Option{Level: unix.SOL_SOCKET, Name: unix.SO_ATTACH_FILTER, Len: unix.SizeofSockFprog}}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = int32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Ifindex = int32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gr.Group)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gsr.Group)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(&gsr.Source)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_solaris.go b/vendor/golang.org/x/net/ipv6/sys_solaris.go deleted file mode 100644 index 1fc30add4..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_solaris.go +++ /dev/null @@ -1,76 +0,0 @@ -// Copyright 2016 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. - -package ipv6 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlTrafficClass: {unix.IPV6_TCLASS, 4, marshalTrafficClass, parseTrafficClass}, -		ctlHopLimit:     {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo:   {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlNextHop:      {unix.IPV6_NEXTHOP, sizeofSockaddrInet6, marshalNextHop, parseNextHop}, -		ctlPathMTU:      {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoPathMTU:             {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_PATHMTU, Len: sizeofIPv6Mtuinfo}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gr)) + 4)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 4)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(uintptr(unsafe.Pointer(gsr)) + 260)) -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_ssmreq.go b/vendor/golang.org/x/net/ipv6/sys_ssmreq.go deleted file mode 100644 index b40f5c685..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_ssmreq.go +++ /dev/null @@ -1,54 +0,0 @@ -// Copyright 2014 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 aix || darwin || freebsd || linux || solaris || zos - -package ipv6 - -import ( -	"net" -	"unsafe" - -	"golang.org/x/net/internal/socket" -) - -var compatFreeBSD32 bool // 386 emulation on amd64 - -func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	var gr groupReq -	if ifi != nil { -		gr.Interface = uint32(ifi.Index) -	} -	gr.setGroup(grp) -	var b []byte -	if compatFreeBSD32 { -		var d [sizeofGroupReq + 4]byte -		s := (*[sizeofGroupReq]byte)(unsafe.Pointer(&gr)) -		copy(d[:4], s[:4]) -		copy(d[8:], s[4:]) -		b = d[:] -	} else { -		b = (*[sizeofGroupReq]byte)(unsafe.Pointer(&gr))[:sizeofGroupReq] -	} -	return so.Set(c, b) -} - -func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	var gsr groupSourceReq -	if ifi != nil { -		gsr.Interface = uint32(ifi.Index) -	} -	gsr.setSourceGroup(grp, src) -	var b []byte -	if compatFreeBSD32 { -		var d [sizeofGroupSourceReq + 4]byte -		s := (*[sizeofGroupSourceReq]byte)(unsafe.Pointer(&gsr)) -		copy(d[:4], s[:4]) -		copy(d[8:], s[4:]) -		b = d[:] -	} else { -		b = (*[sizeofGroupSourceReq]byte)(unsafe.Pointer(&gsr))[:sizeofGroupSourceReq] -	} -	return so.Set(c, b) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go b/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go deleted file mode 100644 index 6526aad58..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_ssmreq_stub.go +++ /dev/null @@ -1,21 +0,0 @@ -// Copyright 2014 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 !aix && !darwin && !freebsd && !linux && !solaris && !zos - -package ipv6 - -import ( -	"net" - -	"golang.org/x/net/internal/socket" -) - -func (so *sockOpt) setGroupReq(c *socket.Conn, ifi *net.Interface, grp net.IP) error { -	return errNotImplemented -} - -func (so *sockOpt) setGroupSourceReq(c *socket.Conn, ifi *net.Interface, grp, src net.IP) error { -	return errNotImplemented -} diff --git a/vendor/golang.org/x/net/ipv6/sys_stub.go b/vendor/golang.org/x/net/ipv6/sys_stub.go deleted file mode 100644 index 76602c34e..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_stub.go +++ /dev/null @@ -1,13 +0,0 @@ -// Copyright 2014 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 !aix && !darwin && !dragonfly && !freebsd && !linux && !netbsd && !openbsd && !solaris && !windows && !zos - -package ipv6 - -var ( -	ctlOpts = [ctlMax]ctlOpt{} - -	sockOpts = map[int]*sockOpt{} -) diff --git a/vendor/golang.org/x/net/ipv6/sys_windows.go b/vendor/golang.org/x/net/ipv6/sys_windows.go deleted file mode 100644 index fda8a2994..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_windows.go +++ /dev/null @@ -1,68 +0,0 @@ -// Copyright 2013 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. - -package ipv6 - -import ( -	"net" -	"syscall" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/windows" -) - -const ( -	sizeofSockaddrInet6 = 0x1c - -	sizeofIPv6Mreq     = 0x14 -	sizeofIPv6Mtuinfo  = 0x20 -	sizeofICMPv6Filter = 0 -) - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type icmpv6Filter struct { -	// TODO(mikio): implement this -} - -var ( -	ctlOpts = [ctlMax]ctlOpt{} - -	sockOpts = map[int]*sockOpt{ -		ssoHopLimit:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoJoinGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_JOIN_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -		ssoLeaveGroup:         {Option: socket.Option{Level: iana.ProtocolIPv6, Name: windows.IPV6_LEAVE_GROUP, Len: sizeofIPv6Mreq}, typ: ssoTypeIPMreq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (mreq *ipv6Mreq) setIfindex(i int) { -	mreq.Interface = uint32(i) -} diff --git a/vendor/golang.org/x/net/ipv6/sys_zos.go b/vendor/golang.org/x/net/ipv6/sys_zos.go deleted file mode 100644 index 31adc8665..000000000 --- a/vendor/golang.org/x/net/ipv6/sys_zos.go +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright 2020 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. - -package ipv6 - -import ( -	"net" -	"syscall" -	"unsafe" - -	"golang.org/x/net/internal/iana" -	"golang.org/x/net/internal/socket" - -	"golang.org/x/sys/unix" -) - -var ( -	ctlOpts = [ctlMax]ctlOpt{ -		ctlHopLimit:   {unix.IPV6_HOPLIMIT, 4, marshalHopLimit, parseHopLimit}, -		ctlPacketInfo: {unix.IPV6_PKTINFO, sizeofInet6Pktinfo, marshalPacketInfo, parsePacketInfo}, -		ctlPathMTU:    {unix.IPV6_PATHMTU, sizeofIPv6Mtuinfo, marshalPathMTU, parsePathMTU}, -	} - -	sockOpts = map[int]*sockOpt{ -		ssoTrafficClass:        {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_TCLASS, Len: 4}}, -		ssoHopLimit:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_UNICAST_HOPS, Len: 4}}, -		ssoMulticastInterface:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_IF, Len: 4}}, -		ssoMulticastHopLimit:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_HOPS, Len: 4}}, -		ssoMulticastLoopback:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_MULTICAST_LOOP, Len: 4}}, -		ssoReceiveTrafficClass: {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVTCLASS, Len: 4}}, -		ssoReceiveHopLimit:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVHOPLIMIT, Len: 4}}, -		ssoReceivePacketInfo:   {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPKTINFO, Len: 4}}, -		ssoReceivePathMTU:      {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_RECVPATHMTU, Len: 4}}, -		ssoChecksum:            {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.IPV6_CHECKSUM, Len: 4}}, -		ssoICMPFilter:          {Option: socket.Option{Level: iana.ProtocolIPv6ICMP, Name: unix.ICMP6_FILTER, Len: sizeofICMPv6Filter}}, -		ssoJoinGroup:           {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoLeaveGroup:          {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_GROUP, Len: sizeofGroupReq}, typ: ssoTypeGroupReq}, -		ssoJoinSourceGroup:     {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_JOIN_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoLeaveSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_LEAVE_SOURCE_GROUP, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoBlockSourceGroup:    {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_BLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -		ssoUnblockSourceGroup:  {Option: socket.Option{Level: iana.ProtocolIPv6, Name: unix.MCAST_UNBLOCK_SOURCE, Len: sizeofGroupSourceReq}, typ: ssoTypeGroupSourceReq}, -	} -) - -func (sa *sockaddrInet6) setSockaddr(ip net.IP, i int) { -	sa.Family = syscall.AF_INET6 -	copy(sa.Addr[:], ip) -	sa.Scope_id = uint32(i) -} - -func (pi *inet6Pktinfo) setIfindex(i int) { -	pi.Ifindex = uint32(i) -} - -func (gr *groupReq) setGroup(grp net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gr.Group)) -	sa.Family = syscall.AF_INET6 -	sa.Len = sizeofSockaddrInet6 -	copy(sa.Addr[:], grp) -} - -func (gsr *groupSourceReq) setSourceGroup(grp, src net.IP) { -	sa := (*sockaddrInet6)(unsafe.Pointer(&gsr.Group)) -	sa.Family = syscall.AF_INET6 -	sa.Len = sizeofSockaddrInet6 -	copy(sa.Addr[:], grp) -	sa = (*sockaddrInet6)(unsafe.Pointer(&gsr.Source)) -	sa.Family = syscall.AF_INET6 -	sa.Len = sizeofSockaddrInet6 -	copy(sa.Addr[:], src) -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_aix_ppc64.go b/vendor/golang.org/x/net/ipv6/zsys_aix_ppc64.go deleted file mode 100644 index 668716df4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_aix_ppc64.go +++ /dev/null @@ -1,68 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_aix.go - -// Added for go1.11 compatibility -//go:build aix - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x508 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x510 -	sizeofGroupSourceReq = 0xa18 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	X__ss_len   uint8 -	Family      uint8 -	X__ss_pad1  [6]uint8 -	X__ss_align int64 -	X__ss_pad2  [1265]uint8 -	Pad_cgo_0   [7]byte -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_darwin.go b/vendor/golang.org/x/net/ipv6/zsys_darwin.go deleted file mode 100644 index dd6f7b28e..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_darwin.go +++ /dev/null @@ -1,64 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_darwin.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [128]byte -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [128]byte -	Pad_cgo_1 [128]byte -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go b/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go deleted file mode 100644 index 6b45a94fe..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_dragonfly.go +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_dragonfly.go - -package ipv6 - -const ( -	sizeofSockaddrInet6 = 0x1c -	sizeofInet6Pktinfo  = 0x14 -	sizeofIPv6Mtuinfo   = 0x20 - -	sizeofIPv6Mreq = 0x14 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go b/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go deleted file mode 100644 index 8da55925f..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_freebsd_386.go +++ /dev/null @@ -1,64 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go b/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go deleted file mode 100644 index 72a1a65a2..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_freebsd_amd64.go +++ /dev/null @@ -1,66 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go b/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go deleted file mode 100644 index 72a1a65a2..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm.go +++ /dev/null @@ -1,66 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]int8 -	X__ss_align int64 -	X__ss_pad2  [112]int8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm64.go b/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm64.go deleted file mode 100644 index 5b39eb8df..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_freebsd_arm64.go +++ /dev/null @@ -1,64 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]uint8 -	X__ss_align int64 -	X__ss_pad2  [112]uint8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_freebsd_riscv64.go b/vendor/golang.org/x/net/ipv6/zsys_freebsd_riscv64.go deleted file mode 100644 index 5b39eb8df..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_freebsd_riscv64.go +++ /dev/null @@ -1,64 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_freebsd.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x80 -	sizeofSockaddrInet6   = 0x1c -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Len         uint8 -	Family      uint8 -	X__ss_pad1  [6]uint8 -	X__ss_align int64 -	X__ss_pad2  [112]uint8 -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_386.go b/vendor/golang.org/x/net/ipv6/zsys_linux_386.go deleted file mode 100644 index ad71871b7..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_386.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_amd64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go b/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go deleted file mode 100644 index ad71871b7..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_arm.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_arm64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_loong64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_loong64.go deleted file mode 100644 index 6a53284db..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_loong64.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build loong64 - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go b/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go deleted file mode 100644 index ad71871b7..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_mips.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_mips64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go b/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_mips64le.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go b/vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go deleted file mode 100644 index ad71871b7..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_mipsle.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go b/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go deleted file mode 100644 index d06c2adec..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc.go +++ /dev/null @@ -1,72 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x84 -	sizeofGroupSourceReq = 0x104 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]uint8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go b/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_ppc64le.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_riscv64.go b/vendor/golang.org/x/net/ipv6/zsys_linux_riscv64.go deleted file mode 100644 index 13b347205..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_riscv64.go +++ /dev/null @@ -1,76 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -//go:build riscv64 - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go b/vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go deleted file mode 100644 index 2514ab9a4..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_linux_s390x.go +++ /dev/null @@ -1,74 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_linux.go - -package ipv6 - -const ( -	sizeofKernelSockaddrStorage = 0x80 -	sizeofSockaddrInet6         = 0x1c -	sizeofInet6Pktinfo          = 0x14 -	sizeofIPv6Mtuinfo           = 0x20 -	sizeofIPv6FlowlabelReq      = 0x20 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x88 -	sizeofGroupSourceReq = 0x108 - -	sizeofICMPv6Filter = 0x20 -) - -type kernelSockaddrStorage struct { -	Family  uint16 -	X__data [126]int8 -} - -type sockaddrInet6 struct { -	Family   uint16 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex int32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6FlowlabelReq struct { -	Dst        [16]byte /* in6_addr */ -	Label      uint32 -	Action     uint8 -	Share      uint8 -	Flags      uint16 -	Expires    uint16 -	Linger     uint16 -	X__flr_pad uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Ifindex   int32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [4]byte -	Group     kernelSockaddrStorage -	Source    kernelSockaddrStorage -} - -type icmpv6Filter struct { -	Data [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_netbsd.go b/vendor/golang.org/x/net/ipv6/zsys_netbsd.go deleted file mode 100644 index f7335d5ae..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_netbsd.go +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_netbsd.go - -package ipv6 - -const ( -	sizeofSockaddrInet6 = 0x1c -	sizeofInet6Pktinfo  = 0x14 -	sizeofIPv6Mtuinfo   = 0x20 - -	sizeofIPv6Mreq = 0x14 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_openbsd.go b/vendor/golang.org/x/net/ipv6/zsys_openbsd.go deleted file mode 100644 index 6d1592812..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_openbsd.go +++ /dev/null @@ -1,42 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_openbsd.go - -package ipv6 - -const ( -	sizeofSockaddrInet6 = 0x1c -	sizeofInet6Pktinfo  = 0x14 -	sizeofIPv6Mtuinfo   = 0x20 - -	sizeofIPv6Mreq = 0x14 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte /* in6_addr */ -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_solaris.go b/vendor/golang.org/x/net/ipv6/zsys_solaris.go deleted file mode 100644 index 171619747..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_solaris.go +++ /dev/null @@ -1,63 +0,0 @@ -// Code generated by cmd/cgo -godefs; DO NOT EDIT. -// cgo -godefs defs_solaris.go - -package ipv6 - -const ( -	sizeofSockaddrStorage = 0x100 -	sizeofSockaddrInet6   = 0x20 -	sizeofInet6Pktinfo    = 0x14 -	sizeofIPv6Mtuinfo     = 0x24 - -	sizeofIPv6Mreq       = 0x14 -	sizeofGroupReq       = 0x104 -	sizeofGroupSourceReq = 0x204 - -	sizeofICMPv6Filter = 0x20 -) - -type sockaddrStorage struct { -	Family     uint16 -	X_ss_pad1  [6]int8 -	X_ss_align float64 -	X_ss_pad2  [240]int8 -} - -type sockaddrInet6 struct { -	Family         uint16 -	Port           uint16 -	Flowinfo       uint32 -	Addr           [16]byte /* in6_addr */ -	Scope_id       uint32 -	X__sin6_src_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte /* in6_addr */ -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type ipv6Mreq struct { -	Multiaddr [16]byte /* in6_addr */ -	Interface uint32 -} - -type groupReq struct { -	Interface uint32 -	Pad_cgo_0 [256]byte -} - -type groupSourceReq struct { -	Interface uint32 -	Pad_cgo_0 [256]byte -	Pad_cgo_1 [256]byte -} - -type icmpv6Filter struct { -	X__icmp6_filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/ipv6/zsys_zos_s390x.go b/vendor/golang.org/x/net/ipv6/zsys_zos_s390x.go deleted file mode 100644 index 7c7564596..000000000 --- a/vendor/golang.org/x/net/ipv6/zsys_zos_s390x.go +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright 2020 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. - -// Hand edited based on zerrors_zos_s390x.go -// TODO(Bill O'Farrell): auto-generate. - -package ipv6 - -const ( -	sizeofSockaddrStorage = 128 -	sizeofICMPv6Filter    = 32 -	sizeofInet6Pktinfo    = 20 -	sizeofIPv6Mtuinfo     = 32 -	sizeofSockaddrInet6   = 28 -	sizeofGroupReq        = 136 -	sizeofGroupSourceReq  = 264 -) - -type sockaddrStorage struct { -	Len      uint8 -	Family   byte -	ss_pad1  [6]byte -	ss_align int64 -	ss_pad2  [112]byte -} - -type sockaddrInet6 struct { -	Len      uint8 -	Family   uint8 -	Port     uint16 -	Flowinfo uint32 -	Addr     [16]byte -	Scope_id uint32 -} - -type inet6Pktinfo struct { -	Addr    [16]byte -	Ifindex uint32 -} - -type ipv6Mtuinfo struct { -	Addr sockaddrInet6 -	Mtu  uint32 -} - -type groupReq struct { -	Interface uint32 -	reserved  uint32 -	Group     sockaddrStorage -} - -type groupSourceReq struct { -	Interface uint32 -	reserved  uint32 -	Group     sockaddrStorage -	Source    sockaddrStorage -} - -type icmpv6Filter struct { -	Filt [8]uint32 -} diff --git a/vendor/golang.org/x/net/publicsuffix/data/children b/vendor/golang.org/x/net/publicsuffix/data/children Binary files differdeleted file mode 100644 index 08261bffd..000000000 --- a/vendor/golang.org/x/net/publicsuffix/data/children +++ /dev/null diff --git a/vendor/golang.org/x/net/publicsuffix/data/nodes b/vendor/golang.org/x/net/publicsuffix/data/nodes Binary files differdeleted file mode 100644 index 1dae6ede8..000000000 --- a/vendor/golang.org/x/net/publicsuffix/data/nodes +++ /dev/null diff --git a/vendor/golang.org/x/net/publicsuffix/data/text b/vendor/golang.org/x/net/publicsuffix/data/text deleted file mode 100644 index 7e516413f..000000000 --- a/vendor/golang.org/x/net/publicsuffix/data/text +++ /dev/null @@ -1 +0,0 @@ -birkenesoddtangentinglogoweirbitbucketrzynishikatakayamatta-varjjatjomembersaltdalovepopartysfjordiskussionsbereichatinhlfanishikatsuragitappassenger-associationishikawazukamiokameokamakurazakitaurayasudabitternidisrechtrainingloomy-routerbjarkoybjerkreimdbalsan-suedtirololitapunkapsienamsskoganeibmdeveloperauniteroirmemorialombardiadempresashibetsukumiyamagasakinderoyonagunicloudevelopmentaxiijimarriottayninhaccanthobby-siteval-d-aosta-valleyoriikaracolognebinatsukigataiwanumatajimidsundgcahcesuolocustomer-ocimperiautoscanalytics-gatewayonagoyaveroykenflfanpachihayaakasakawaiishopitsitemasekd1kappenginedre-eikerimo-siemenscaledekaascolipicenoboribetsucks3-eu-west-3utilities-16-balestrandabergentappsseekloges3-eu-west-123paginawebcamauction-acornfshostrodawaraktyubinskaunicommbank123kotisivultrobjectselinogradimo-i-rana4u2-localhostrolekanieruchomoscientistordal-o-g-i-nikolaevents3-ap-northeast-2-ddnsking123homepagefrontappchizip61123saitamakawababia-goracleaningheannakadomarineat-urlimanowarudakuneustarostwodzislawdev-myqnapcloudcontrolledgesuite-stagingdyniamusementdllclstagehirnikonantomobelementorayokosukanoyakumoliserniaurland-4-salernord-aurdalipaywhirlimiteddnslivelanddnss3-ap-south-123siteweberlevagangaviikanonji234lima-cityeats3-ap-southeast-123webseiteambulancechireadmyblogspotaribeiraogakicks-assurfakefurniturealmpmninoheguribigawaurskog-holandinggfarsundds3-ap-southeast-20001wwwedeployokote123hjemmesidealerdalaheadjuegoshikibichuobiraustevollimombetsupplyokoze164-balena-devices3-ca-central-123websiteleaf-south-12hparliamentatsunobninsk8s3-eu-central-1337bjugnishimerablackfridaynightjxn--11b4c3ditchyouripatriabloombergretaijindustriesteinkjerbloxcmsaludivtasvuodnakaiwanairlinekobayashimodatecnologiablushakotanishinomiyashironomniwebview-assetsalvadorbmoattachmentsamegawabmsamnangerbmwellbeingzonebnrweatherchannelsdvrdnsamparalleluxenishinoomotegotsukishiwadavvenjargamvikarpaczest-a-la-maisondre-landivttasvuotnakamai-stagingloppennebomlocalzonebonavstackartuzybondigitaloceanspacesamsclubartowest1-usamsunglugsmall-webspacebookonlineboomlaakesvuemielecceboschristmasakilatiron-riopretoeidsvollovesickaruizawabostik-serverrankoshigayachtsandvikcoromantovalle-d-aostakinouebostonakijinsekikogentlentapisa-geekarumaifmemsetkmaxxn--12c1fe0bradescotksatmpaviancapitalonebouncemerckmsdscloudiybounty-fullensakerrypropertiesangovtoyosatoyokawaboutiquebecologialaichaugiangmbhartiengiangminakamichiharaboutireservdrangedalpusercontentoyotapfizerboyfriendoftheinternetflixn--12cfi8ixb8lublindesnesanjosoyrovnoticiasannanishinoshimattelemarkasaokamikitayamatsurinfinitigopocznore-og-uvdalucaniabozen-sudtiroluccanva-appstmnishiokoppegardray-dnsupdaterbozen-suedtirolukowesteuropencraftoyotomiyazakinsurealtypeformesswithdnsannohekinanporovigonohejinternationaluroybplacedogawarabikomaezakirunordkappgfoggiabrandrayddns5ybrasiliadboxoslockerbresciaogashimadachicappadovaapstemp-dnswatchest-mon-blogueurodirumagazinebrindisiciliabroadwaybroke-itvedestrandraydnsanokashibatakashimashikiyosatokigawabrokerbrothermesserlifestylebtimnetzpisdnpharmaciensantamariakebrowsersafetymarketingmodumetacentrumeteorappharmacymruovatlassian-dev-builderschaefflerbrumunddalutskashiharabrusselsantoandreclaimsanukintlon-2bryanskiptveterinaireadthedocsaobernardovre-eikerbrynebwestus2bzhitomirbzzwhitesnowflakecommunity-prochowicecomodalenissandoycompanyaarphdfcbankasumigaurawa-mazowszexn--1ck2e1bambinagisobetsuldalpha-myqnapcloudaccess3-us-east-2ixboxeroxfinityolasiteastus2comparemarkerryhotelsaves-the-whalessandria-trani-barletta-andriatranibarlettaandriacomsecaasnesoddeno-stagingrondarcondoshifteditorxn--1ctwolominamatarnobrzegrongrossetouchijiwadedyn-berlincolnissayokoshibahikariyaltakazakinzais-a-bookkeepermarshallstatebankasuyalibabahccavuotnagaraholtaleniwaizumiotsurugashimaintenanceomutazasavonarviikaminoyamaxunispaceconferenceconstructionflashdrivefsncf-ipfsaxoconsuladobeio-static-accesscamdvrcampaniaconsultantranoyconsultingroundhandlingroznysaitohnoshookuwanakayamangyshlakdnepropetrovskanlandyndns-freeboxostrowwlkpmgrphilipsyno-dschokokekscholarshipschoolbusinessebycontactivetrailcontagematsubaravendbambleborkdalvdalcest-le-patron-rancherkasydneyukuhashimokawavoues3-sa-east-1contractorskenissedalcookingruecoolblogdnsfor-better-thanhhoarairforcentralus-1cooperativano-frankivskodjeephonefosschoolsztynsetransiphotographysiocoproductionschulplattforminamiechizenisshingucciprianiigatairaumalatvuopmicrolightinguidefinimaringatlancastercorsicafjschulservercosenzakopanecosidnshome-webservercellikescandypopensocialcouchpotatofrieschwarzgwangjuh-ohtawaramotoineppueblockbusternopilawacouncilcouponscrapper-sitecozoravennaharimalborkaszubytemarketscrappinguitarscrysecretrosnubananarepublic-inquiryurihonjoyenthickaragandaxarnetbankanzakiwielunnerepairbusanagochigasakishimabarakawaharaolbia-tempio-olbiatempioolbialowiezachpomorskiengiangjesdalolipopmcdirepbodyn53cqcxn--1lqs03niyodogawacrankyotobetsumidaknongujaratmallcrdyndns-homednscwhminamifuranocreditcardyndns-iphutholdingservehttpbincheonl-ams-1creditunionionjukujitawaravpagecremonashorokanaiecrewhoswholidaycricketnedalcrimeast-kazakhstanangercrotonecrowniphuyencrsvp4cruiseservehumourcuisinellair-traffic-controllagdenesnaaseinet-freakserveircasertainaircraftingvolloansnasaarlanduponthewifidelitypedreamhostersaotomeldaluxurycuneocupcakecuritibacgiangiangryggeecurvalled-aostargets-itranslatedyndns-mailcutegirlfriendyndns-office-on-the-webhoptogurafedoraprojectransurlfeirafembetsukuis-a-bruinsfanfermodenakasatsunairportrapaniizaferraraferraris-a-bulls-fanferrerotikagoshimalopolskanittedalfetsundyndns-wikimobetsumitakagildeskaliszkolamericanfamilydservemp3fgunmaniwamannorth-kazakhstanfhvalerfilegear-augustowiiheyakagefilegear-deatnuniversitysvardofilegear-gbizfilegear-iefilegear-jpmorgangwonporterfilegear-sg-1filminamiizukamiminefinalchikugokasellfyis-a-candidatefinancefinnoyfirebaseappiemontefirenetlifylkesbiblackbaudcdn-edgestackhero-networkinggroupowiathletajimabaria-vungtaudiopsysharpigboatshawilliamhillfirenzefirestonefireweblikes-piedmontravelersinsurancefirmdalegalleryfishingoldpoint2thisamitsukefitjarfitnessettsurugiminamimakis-a-catererfjalerfkatsushikabeebyteappilottonsberguovdageaidnunjargausdalflekkefjordyndns-workservep2phxn--1lqs71dyndns-remotewdyndns-picserveminecraftransporteflesbergushikamifuranorthflankatsuyamashikokuchuoflickragerokunohealthcareershellflierneflirfloginlinefloppythonanywherealtorfloraflorencefloripalmasfjordenfloristanohatajiris-a-celticsfanfloromskogxn--2m4a15eflowershimokitayamafltravinhlonganflynnhosting-clusterfncashgabadaddjabbottoyourafndyndns1fnwkzfolldalfoolfor-ourfor-somegurownproviderfor-theaterfordebianforexrotheworkpccwinbar0emmafann-arborlandd-dnsiskinkyowariasahikawarszawashtenawsmppl-wawsglobalacceleratorahimeshimakanegasakievennodebalancern4t3l3p0rtatarantours3-ap-northeast-123minsidaarborteaches-yogano-ipifony-123miwebaccelastx4432-b-datacenterprisesakijobservableusercontentateshinanomachintaifun-dnsdojournalistoloseyouriparisor-fronavuotnarashinoharaetnabudejjunipereggio-emilia-romagnaroyboltateyamajureggiocalabriakrehamnayoro0o0forgotdnshimonitayanagithubpreviewsaikisarazure-mobileirfjordynnservepicservequakeforli-cesena-forlicesenaforlillehammerfeste-ipimientaketomisatoolshimonosekikawaforsalegoismailillesandefjordynservebbservesarcasmileforsandasuolodingenfortalfortefosneshimosuwalkis-a-chefashionstorebaseljordyndns-serverisignfotrdynulvikatowicefoxn--2scrj9casinordlandurbanamexnetgamersapporomurafozfr-1fr-par-1fr-par-2franamizuhoboleslawiecommerce-shoppingyeongnamdinhachijohanamakisofukushimaoris-a-conservativegarsheiheijis-a-cparachutingfredrikstadynv6freedesktopazimuthaibinhphuocelotenkawakayamagnetcieszynh-servebeero-stageiseiroumugifuchungbukharag-cloud-championshiphoplixn--30rr7yfreemyiphosteurovisionredumbrellangevagrigentobishimadridvagsoygardenebakkeshibechambagricoharugbydgoszczecin-berlindasdaburfreesitefreetlshimotsukefreisennankokubunjis-a-cubicle-slavellinodeobjectshimotsumafrenchkisshikindleikangerfreseniushinichinanfriuli-v-giuliafriuli-ve-giuliafriuli-vegiuliafriuli-venezia-giuliafriuli-veneziagiuliafriuli-vgiuliafriuliv-giuliafriulive-giuliafriulivegiuliafriulivenezia-giuliafriuliveneziagiuliafriulivgiuliafrlfroganshinjotelulubin-vpncateringebunkyonanaoshimamateramockashiwarafrognfrolandynvpnpluservicesevastopolitiendafrom-akamaized-stagingfrom-alfrom-arfrom-azurewebsiteshikagamiishibuyabukihokuizumobaragusabaerobaticketshinjukuleuvenicefrom-campobassociatest-iserveblogsytenrissadistdlibestadultrentin-sudtirolfrom-coachaseljeducationcillahppiacenzaganfrom-ctrentin-sued-tirolfrom-dcatfooddagestangefrom-decagliarikuzentakataikillfrom-flapymntrentin-suedtirolfrom-gap-east-1from-higashiagatsumagoianiafrom-iafrom-idyroyrvikingulenfrom-ilfrom-in-the-bandairtelebitbridgestonemurorangecloudplatform0from-kshinkamigototalfrom-kyfrom-langsonyantakahamalselveruminamiminowafrom-malvikaufentigerfrom-mdfrom-mein-vigorlicefrom-mifunefrom-mnfrom-modshinshinotsurgeryfrom-mshinshirofrom-mtnfrom-ncatholicurus-4from-ndfrom-nefrom-nhs-heilbronnoysundfrom-njshintokushimafrom-nminamioguni5from-nvalledaostargithubusercontentrentino-a-adigefrom-nycaxiaskvollpagesardegnarutolgaulardalvivanovoldafrom-ohdancefrom-okegawassamukawataris-a-democratrentino-aadigefrom-orfrom-panasonichernovtsykkylvenneslaskerrylogisticsardiniafrom-pratohmamurogawatsonrenderfrom-ris-a-designerimarugame-hostyhostingfrom-schmidtre-gauldalfrom-sdfrom-tnfrom-txn--32vp30hachinoheavyfrom-utsiracusagaeroclubmedecin-addrammenuorodoyerfrom-val-daostavalleyfrom-vtrentino-alto-adigefrom-wafrom-wiardwebthingsjcbnpparibashkiriafrom-wvallee-aosteroyfrom-wyfrosinonefrostabackplaneapplebesbyengerdalp1froyal-commissionfruskydivingfujiiderafujikawaguchikonefujiminokamoenairtrafficplexus-2fujinomiyadapliefujiokazakinkobearalvahkikonaibetsubame-south-1fujisatoshoeshintomikasaharafujisawafujishiroishidakabiratoridediboxn--3bst00minamisanrikubetsupportrentino-altoadigefujitsuruokakamigaharafujiyoshidappnodearthainguyenfukayabeardubaikawagoefukuchiyamadatsunanjoburgfukudomigawafukuis-a-doctorfukumitsubishigakirkeneshinyoshitomiokamisatokamachippubetsuikitchenfukuokakegawafukuroishikariwakunigamigrationfukusakirovogradoyfukuyamagatakaharunusualpersonfunabashiriuchinadattorelayfunagatakahashimamakiryuohkurafunahashikamiamakusatsumasendaisenergyeongginowaniihamatamakinoharafundfunkfeuerfuoiskujukuriyamandalfuosskoczowindowskrakowinefurubirafurudonordreisa-hockeynutwentertainmentrentino-s-tirolfurukawajimangolffanshiojirishirifujiedafusoctrangfussagamiharafutabayamaguchinomihachimanagementrentino-stirolfutboldlygoingnowhere-for-more-og-romsdalfuttsurutashinais-a-financialadvisor-aurdalfuturecmshioyamelhushirahamatonbetsurnadalfuturehostingfuturemailingfvghakuis-a-gurunzenhakusandnessjoenhaldenhalfmoonscalebookinghostedpictetrentino-sud-tirolhalsakakinokiaham-radio-opinbar1hamburghammarfeastasiahamurakamigoris-a-hard-workershiraokamisunagawahanamigawahanawahandavvesiidanangodaddyn-o-saurealestatefarmerseinehandcrafteducatorprojectrentino-sudtirolhangglidinghangoutrentino-sued-tirolhannannestadhannosegawahanoipinkazohanyuzenhappouzshiratakahagianghasamap-northeast-3hasaminami-alpshishikuis-a-hunterhashbanghasudazaifudaigodogadobeioruntimedio-campidano-mediocampidanomediohasura-appinokokamikoaniikappudopaashisogndalhasvikazteleportrentino-suedtirolhatogayahoooshikamagayaitakamoriokakudamatsuehatoyamazakitahiroshimarcheapartmentshisuifuettertdasnetzhatsukaichikaiseiyoichipshitaramahattfjelldalhayashimamotobusells-for-lesshizukuishimoichilloutsystemscloudsitehazuminobushibukawahelplfinancialhelsinkitakamiizumisanofidonnakamurataitogliattinnhemneshizuokamitondabayashiogamagoriziahemsedalhepforgeblockshoujis-a-knightpointtokaizukamaishikshacknetrentinoa-adigehetemlbfanhigashichichibuzentsujiiehigashihiroshimanehigashiizumozakitakatakanabeautychyattorneyagawakkanaioirasebastopoleangaviikadenagahamaroyhigashikagawahigashikagurasoedahigashikawakitaaikitakyushunantankazunovecorebungoonow-dnshowahigashikurumeinforumzhigashimatsushimarnardalhigashimatsuyamakitaakitadaitoigawahigashimurayamamotorcycleshowtimeloyhigashinarusells-for-uhigashinehigashiomitamanoshiroomghigashiosakasayamanakakogawahigashishirakawamatakanezawahigashisumiyoshikawaminamiaikitamihamadahigashitsunospamproxyhigashiurausukitamotosunnydayhigashiyamatokoriyamanashiibaclieu-1higashiyodogawahigashiyoshinogaris-a-landscaperspectakasakitanakagusukumoldeliveryhippyhiraizumisatohokkaidontexistmein-iservschulecznakaniikawatanagurahirakatashinagawahiranais-a-lawyerhirarahiratsukaeruhirayaizuwakamatsubushikusakadogawahitachiomiyaginozawaonsensiositehitachiotaketakaokalmykiahitraeumtgeradegreehjartdalhjelmelandholyhomegoodshwinnersiiitesilkddiamondsimple-urlhomeipioneerhomelinkyard-cloudjiffyresdalhomelinuxn--3ds443ghomeofficehomesecuritymacaparecidahomesecuritypchiryukyuragiizehomesenseeringhomeskleppippugliahomeunixn--3e0b707ehondahonjyoitakarazukaluganskfh-muensterhornindalhorsells-itrentinoaadigehortendofinternet-dnsimplesitehospitalhotelwithflightsirdalhotmailhoyangerhoylandetakasagooglecodespotrentinoalto-adigehungyenhurdalhurumajis-a-liberalhyllestadhyogoris-a-libertarianhyugawarahyundaiwafuneis-very-evillasalleitungsenis-very-goodyearis-very-niceis-very-sweetpepperugiais-with-thebandoomdnstraceisk01isk02jenv-arubacninhbinhdinhktistoryjeonnamegawajetztrentinostiroljevnakerjewelryjgorajlljls-sto1jls-sto2jls-sto3jmpixolinodeusercontentrentinosud-tiroljnjcloud-ver-jpchitosetogitsuliguriajoyokaichibahcavuotnagaivuotnagaokakyotambabymilk3jozis-a-musicianjpnjprsolarvikhersonlanxessolundbeckhmelnitskiyamasoykosaigawakosakaerodromegalloabatobamaceratachikawafaicloudineencoreapigeekoseis-a-painterhostsolutionslupskhakassiakosheroykoshimizumakis-a-patsfankoshughesomakosugekotohiradomainstitutekotourakouhokumakogenkounosupersalevangerkouyamasudakouzushimatrixn--3pxu8khplaystation-cloudyclusterkozagawakozakis-a-personaltrainerkozowiosomnarviklabudhabikinokawachinaganoharamcocottekpnkppspbarcelonagawakepnord-odalwaysdatabaseballangenkainanaejrietisalatinabenogiehtavuoatnaamesjevuemielnombrendlyngen-rootaruibxos3-us-gov-west-1krasnikahokutokonamegatakatoris-a-photographerokussldkrasnodarkredstonekrelliankristiansandcatsoowitdkmpspawnextdirectrentinosudtirolkristiansundkrodsheradkrokstadelvaldaostavangerkropyvnytskyis-a-playershiftcryptonomichinomiyakekryminamiyamashirokawanabelaudnedalnkumamotoyamatsumaebashimofusakatakatsukis-a-republicanonoichinosekigaharakumanowtvaokumatorinokumejimatsumotofukekumenanyokkaichirurgiens-dentistes-en-francekundenkunisakis-a-rockstarachowicekunitachiaraisaijolsterkunitomigusukukis-a-socialistgstagekunneppubtlsopotrentinosued-tirolkuokgroupizzakurgankurobegetmyipirangalluplidlugolekagaminorddalkurogimimozaokinawashirosatochiokinoshimagentositempurlkuroisodegaurakuromatsunais-a-soxfankuronkurotakikawasakis-a-studentalkushirogawakustanais-a-teacherkassyncloudkusuppliesor-odalkutchanelkutnokuzumakis-a-techietipslzkvafjordkvalsundkvamsterdamnserverbaniakvanangenkvinesdalkvinnheradkviteseidatingkvitsoykwpspdnsor-varangermishimatsusakahogirlymisugitokorozawamitakeharamitourismartlabelingmitoyoakemiuramiyazurecontainerdpoliticaobangmiyotamatsukuris-an-actormjondalenmonzabrianzaramonzaebrianzamonzaedellabrianzamordoviamorenapolicemoriyamatsuuramoriyoshiminamiashigaramormonstermoroyamatsuzakis-an-actressmushcdn77-sslingmortgagemoscowithgoogleapiszmoseushimogosenmosjoenmoskenesorreisahayakawakamiichikawamisatottoris-an-anarchistjordalshalsenmossortlandmosviknx-serversusakiyosupabaseminemotegit-reposoruminanomoviemovimientokyotangotembaixadattowebhareidsbergmozilla-iotrentinosuedtirolmtranbytomaridagawalmartrentinsud-tirolmuikaminokawanishiaizubangemukoelnmunakatanemuosattemupkomatsushimassa-carrara-massacarraramassabuzzmurmanskomforbar2murotorcraftranakatombetsumy-gatewaymusashinodesakegawamuseumincomcastoripressorfoldmusicapetownnews-stagingmutsuzawamy-vigormy-wanggoupilemyactivedirectorymyamazeplaymyasustor-elvdalmycdmycloudnsoundcastorjdevcloudfunctionsokndalmydattolocalcertificationmyddnsgeekgalaxymydissentrentinsudtirolmydobissmarterthanyoumydrobofageometre-experts-comptablesowamydspectruminisitemyeffectrentinsued-tirolmyfastly-edgekey-stagingmyfirewalledreplittlestargardmyforuminterecifedextraspace-to-rentalstomakomaibaramyfritzmyftpaccesspeedpartnermyhome-servermyjinomykolaivencloud66mymailermymediapchoseikarugalsacemyokohamamatsudamypeplatformsharis-an-artistockholmestrandmypetsphinxn--41amyphotoshibajddarvodkafjordvaporcloudmypictureshinomypsxn--42c2d9amysecuritycamerakermyshopblockspjelkavikommunalforbundmyshopifymyspreadshopselectrentinsuedtirolmytabitordermythic-beastspydebergmytis-a-anarchistg-buildermytuleap-partnersquaresindevicenzamyvnchoshichikashukudoyamakeuppermywirecipescaracallypoivronpokerpokrovskommunepolkowicepoltavalle-aostavernpomorzeszowithyoutuberspacekitagawaponpesaro-urbino-pesarourbinopesaromasvuotnaritakurashikis-bykleclerchitachinakagawaltervistaipeigersundynamic-dnsarlpordenonepornporsangerporsangugeporsgrunnanpoznanpraxihuanprdprgmrprimetelprincipeprivatelinkomonowruzhgorodeoprivatizehealthinsuranceprofesionalprogressivegasrlpromonza-e-della-brianzaptokuyamatsushigepropertysnesrvarggatrevisogneprotectionprotonetroandindependent-inquest-a-la-masionprudentialpruszkowiwatsukiyonotaireserve-onlineprvcyonabarumbriaprzeworskogpunyufuelpupulawypussycatanzarowixsitepvhachirogatakahatakaishimojis-a-geekautokeinotteroypvtrogstadpwchowderpzqhadanorthwesternmutualqldqotoyohashimotoshimaqponiatowadaqslgbtroitskomorotsukagawaqualifioapplatter-applatterplcube-serverquangngais-certifiedugit-pagespeedmobilizeroticaltanissettailscaleforcequangninhthuanquangtritonoshonais-foundationquickconnectromsakuragawaquicksytestreamlitapplumbingouvaresearchitectesrhtrentoyonakagyokutoyakomakizunokunimimatakasugais-an-engineeringquipelementstrippertuscanytushungrytuvalle-daostamayukis-into-animeiwamizawatuxfamilytuyenquangbinhthuantwmailvestnesuzukis-gonevestre-slidreggio-calabriavestre-totennishiawakuravestvagoyvevelstadvibo-valentiaavibovalentiavideovinhphuchromedicinagatorogerssarufutsunomiyawakasaikaitakokonoevinnicarbonia-iglesias-carboniaiglesiascarboniavinnytsiavipsinaapplurinacionalvirginanmokurennebuvirtual-userveexchangevirtualservervirtualuserveftpodhalevisakurais-into-carsnoasakuholeckodairaviterboliviajessheimmobilienvivianvivoryvixn--45br5cylvlaanderennesoyvladikavkazimierz-dolnyvladimirvlogintoyonezawavmintsorocabalashovhachiojiyahikobierzycevologdanskoninjambylvolvolkswagencyouvolyngdalvoorlopervossevangenvotevotingvotoyonovps-hostrowiechungnamdalseidfjordynathomebuiltwithdarkhangelskypecorittogojomeetoystre-slidrettozawawmemergencyahabackdropalermochizukikirarahkkeravjuwmflabsvalbardunloppadualstackomvuxn--3hcrj9chonanbuskerudynamisches-dnsarpsborgripeeweeklylotterywoodsidellogliastradingworse-thanhphohochiminhadselbuyshouseshirakolobrzegersundongthapmircloudletshiranukamishihorowowloclawekonskowolawawpdevcloudwpenginepoweredwphostedmailwpmucdnipropetrovskygearappodlasiellaknoluoktagajobojis-an-entertainerwpmudevcdnaccessojamparaglidingwritesthisblogoipodzonewroclawmcloudwsseoullensvanguardianwtcp4wtfastlylbanzaicloudappspotagereporthruherecreationinomiyakonojorpelandigickarasjohkameyamatotakadawuozuerichardlillywzmiuwajimaxn--4it797konsulatrobeepsondriobranconagareyamaizuruhrxn--4pvxs4allxn--54b7fta0ccistrondheimpertrixcdn77-secureadymadealstahaugesunderxn--55qw42gxn--55qx5dxn--5dbhl8dxn--5js045dxn--5rtp49citadelhichisochimkentozsdell-ogliastraderxn--5rtq34kontuminamiuonumatsunoxn--5su34j936bgsgxn--5tzm5gxn--6btw5axn--6frz82gxn--6orx2rxn--6qq986b3xlxn--7t0a264citicarrdrobakamaiorigin-stagingmxn--12co0c3b4evalleaostaobaomoriguchiharaffleentrycloudflare-ipfstcgroupaaskimitsubatamibulsan-suedtirolkuszczytnoopscbgrimstadrrxn--80aaa0cvacationsvchoyodobashichinohealth-carereforminamidaitomanaustdalxn--80adxhksveioxn--80ao21axn--80aqecdr1axn--80asehdbarclaycards3-us-west-1xn--80aswgxn--80aukraanghkeliwebpaaskoyabeagleboardxn--8dbq2axn--8ltr62konyvelohmusashimurayamassivegridxn--8pvr4uxn--8y0a063axn--90a1affinitylotterybnikeisencowayxn--90a3academiamicable-modemoneyxn--90aeroportsinfolionetworkangerxn--90aishobaraxn--90amckinseyxn--90azhytomyrxn--9dbq2axn--9et52uxn--9krt00axn--andy-iraxn--aroport-byanagawaxn--asky-iraxn--aurskog-hland-jnbarclays3-us-west-2xn--avery-yuasakurastoragexn--b-5gaxn--b4w605ferdxn--balsan-sdtirol-nsbsvelvikongsbergxn--bck1b9a5dre4civilaviationfabricafederation-webredirectmediatechnologyeongbukashiwazakiyosembokutamamuraxn--bdddj-mrabdxn--bearalvhki-y4axn--berlevg-jxaxn--bhcavuotna-s4axn--bhccavuotna-k7axn--bidr-5nachikatsuuraxn--bievt-0qa2xn--bjarky-fyanaizuxn--bjddar-ptarumizusawaxn--blt-elabcienciamallamaceiobbcn-north-1xn--bmlo-graingerxn--bod-2natalxn--bozen-sdtirol-2obanazawaxn--brnny-wuacademy-firewall-gatewayxn--brnnysund-m8accident-investigation-aptibleadpagesquare7xn--brum-voagatrustkanazawaxn--btsfjord-9zaxn--bulsan-sdtirol-nsbarefootballooningjovikarasjoketokashikiyokawaraxn--c1avgxn--c2br7gxn--c3s14misakis-a-therapistoiaxn--cck2b3baremetalombardyn-vpndns3-website-ap-northeast-1xn--cckwcxetdxn--cesena-forl-mcbremangerxn--cesenaforl-i8axn--cg4bkis-into-cartoonsokamitsuexn--ciqpnxn--clchc0ea0b2g2a9gcdxn--czr694bargainstantcloudfrontdoorestauranthuathienhuebinordre-landiherokuapparochernigovernmentjeldsundiscordsays3-website-ap-southeast-1xn--czrs0trvaroyxn--czru2dxn--czrw28barrel-of-knowledgeapplinziitatebayashijonawatebizenakanojoetsumomodellinglassnillfjordiscordsezgoraxn--d1acj3barrell-of-knowledgecomputermezproxyzgorzeleccoffeedbackanagawarmiastalowa-wolayangroupars3-website-ap-southeast-2xn--d1alfaststacksevenassigdalxn--d1atrysiljanxn--d5qv7z876clanbibaiduckdnsaseboknowsitallxn--davvenjrga-y4axn--djrs72d6uyxn--djty4koobindalxn--dnna-grajewolterskluwerxn--drbak-wuaxn--dyry-iraxn--e1a4cldmail-boxaxn--eckvdtc9dxn--efvn9svn-repostuff-4-salexn--efvy88haebaruericssongdalenviknaklodzkochikushinonsenasakuchinotsuchiurakawaxn--ehqz56nxn--elqq16hagakhanhhoabinhduongxn--eveni-0qa01gaxn--f6qx53axn--fct429kooris-a-nascarfanxn--fhbeiarnxn--finny-yuaxn--fiq228c5hsbcleverappsassarinuyamashinazawaxn--fiq64barsycenterprisecloudcontrolappgafanquangnamasteigenoamishirasatochigifts3-website-eu-west-1xn--fiqs8swidnicaravanylvenetogakushimotoganexn--fiqz9swidnikitagatakkomaganexn--fjord-lraxn--fjq720axn--fl-ziaxn--flor-jraxn--flw351exn--forl-cesena-fcbsswiebodzindependent-commissionxn--forlcesena-c8axn--fpcrj9c3dxn--frde-granexn--frna-woaxn--frya-hraxn--fzc2c9e2clickrisinglesjaguarxn--fzys8d69uvgmailxn--g2xx48clinicasacampinagrandebungotakadaemongolianishitosashimizunaminamiawajikintuitoyotsukaidownloadrudtvsaogoncapooguyxn--gckr3f0fastvps-serveronakanotoddenxn--gecrj9cliniquedaklakasamatsudoesntexisteingeekasserversicherungroks-theatrentin-sud-tirolxn--ggaviika-8ya47hagebostadxn--gildeskl-g0axn--givuotna-8yandexcloudxn--gjvik-wuaxn--gk3at1exn--gls-elacaixaxn--gmq050is-into-gamessinamsosnowieconomiasadojin-dslattuminamitanexn--gmqw5axn--gnstigbestellen-zvbrplsbxn--45brj9churcharterxn--gnstigliefern-wobihirosakikamijimayfirstorfjordxn--h-2failxn--h1ahnxn--h1alizxn--h2breg3eveneswinoujsciencexn--h2brj9c8clothingdustdatadetectrani-andria-barletta-trani-andriaxn--h3cuzk1dienbienxn--hbmer-xqaxn--hcesuolo-7ya35barsyonlinehimejiiyamanouchikujoinvilleirvikarasuyamashikemrevistathellequipmentjmaxxxjavald-aostatics3-website-sa-east-1xn--hebda8basicserversejny-2xn--hery-iraxn--hgebostad-g3axn--hkkinen-5waxn--hmmrfeasta-s4accident-prevention-k3swisstufftoread-booksnestudioxn--hnefoss-q1axn--hobl-iraxn--holtlen-hxaxn--hpmir-xqaxn--hxt814exn--hyanger-q1axn--hylandet-54axn--i1b6b1a6a2exn--imr513nxn--indery-fyaotsusonoxn--io0a7is-leetrentinoaltoadigexn--j1adpohlxn--j1aefauskedsmokorsetagayaseralingenovaraxn--j1ael8basilicataniaxn--j1amhaibarakisosakitahatakamatsukawaxn--j6w193gxn--jlq480n2rgxn--jlster-byasakaiminatoyookananiimiharuxn--jrpeland-54axn--jvr189misasaguris-an-accountantsmolaquilaocais-a-linux-useranishiaritabashikaoizumizakitashiobaraxn--k7yn95exn--karmy-yuaxn--kbrq7oxn--kcrx77d1x4axn--kfjord-iuaxn--klbu-woaxn--klt787dxn--kltp7dxn--kltx9axn--klty5xn--45q11circlerkstagentsasayamaxn--koluokta-7ya57haiduongxn--kprw13dxn--kpry57dxn--kput3is-lostre-toteneis-a-llamarumorimachidaxn--krager-gyasugitlabbvieeexn--kranghke-b0axn--krdsherad-m8axn--krehamn-dxaxn--krjohka-hwab49jdfastly-terrariuminamiiseharaxn--ksnes-uuaxn--kvfjord-nxaxn--kvitsy-fyasuokanmakiwakuratexn--kvnangen-k0axn--l-1fairwindsynology-diskstationxn--l1accentureklamborghinikkofuefukihabororosynology-dsuzakadnsaliastudynaliastrynxn--laheadju-7yatominamibosoftwarendalenugxn--langevg-jxaxn--lcvr32dxn--ldingen-q1axn--leagaviika-52basketballfinanzjaworznoticeableksvikaratsuginamikatagamilanotogawaxn--lesund-huaxn--lgbbat1ad8jejuxn--lgrd-poacctulaspeziaxn--lhppi-xqaxn--linds-pramericanexpresservegame-serverxn--loabt-0qaxn--lrdal-sraxn--lrenskog-54axn--lt-liacn-northwest-1xn--lten-granvindafjordxn--lury-iraxn--m3ch0j3axn--mely-iraxn--merker-kuaxn--mgb2ddesxn--mgb9awbfbsbxn--1qqw23axn--mgba3a3ejtunesuzukamogawaxn--mgba3a4f16axn--mgba3a4fra1-deloittexn--mgba7c0bbn0axn--mgbaakc7dvfsxn--mgbaam7a8haiphongonnakatsugawaxn--mgbab2bdxn--mgbah1a3hjkrdxn--mgbai9a5eva00batsfjordiscountry-snowplowiczeladzlgleezeu-2xn--mgbai9azgqp6jelasticbeanstalkharkovalleeaostexn--mgbayh7gparasitexn--mgbbh1a71exn--mgbc0a9azcgxn--mgbca7dzdoxn--mgbcpq6gpa1axn--mgberp4a5d4a87gxn--mgberp4a5d4arxn--mgbgu82axn--mgbi4ecexposedxn--mgbpl2fhskopervikhmelnytskyivalleedaostexn--mgbqly7c0a67fbcngroks-thisayamanobeatsaudaxn--mgbqly7cvafricargoboavistanbulsan-sudtirolxn--mgbt3dhdxn--mgbtf8flatangerxn--mgbtx2bauhauspostman-echofunatoriginstances3-website-us-east-1xn--mgbx4cd0abkhaziaxn--mix082fbx-osewienxn--mix891fbxosexyxn--mjndalen-64axn--mk0axindependent-inquiryxn--mk1bu44cnpyatigorskjervoyagexn--mkru45is-not-certifiedxn--mlatvuopmi-s4axn--mli-tlavagiskexn--mlselv-iuaxn--moreke-juaxn--mori-qsakuratanxn--mosjen-eyatsukannamihokksundxn--mot-tlavangenxn--mre-og-romsdal-qqbuservecounterstrikexn--msy-ula0hair-surveillancexn--mtta-vrjjat-k7aflakstadaokayamazonaws-cloud9guacuiababybluebiteckidsmynasushiobaracingrok-freeddnsfreebox-osascoli-picenogatabuseating-organicbcgjerdrumcprequalifymelbourneasypanelblagrarq-authgear-stagingjerstadeltaishinomakilovecollegefantasyleaguenoharauthgearappspacehosted-by-previderehabmereitattoolforgerockyombolzano-altoadigeorgeorgiauthordalandroideporteatonamidorivnebetsukubankanumazuryomitanocparmautocodebergamoarekembuchikumagayagawafflecelloisirs3-external-180reggioemiliaromagnarusawaustrheimbalsan-sudtirolivingitpagexlivornobserveregruhostingivestbyglandroverhalladeskjakamaiedge-stagingivingjemnes3-eu-west-2038xn--muost-0qaxn--mxtq1misawaxn--ngbc5azdxn--ngbe9e0axn--ngbrxn--4dbgdty6ciscofreakamaihd-stagingriwataraindroppdalxn--nit225koryokamikawanehonbetsuwanouchikuhokuryugasakis-a-nursellsyourhomeftpiwatexn--nmesjevuemie-tcbalatinord-frontierxn--nnx388axn--nodessakurawebsozais-savedxn--nqv7fs00emaxn--nry-yla5gxn--ntso0iqx3axn--ntsq17gxn--nttery-byaeservehalflifeinsurancexn--nvuotna-hwaxn--nyqy26axn--o1achernivtsicilynxn--4dbrk0cexn--o3cw4hakatanortonkotsunndalxn--o3cyx2axn--od0algardxn--od0aq3beneventodayusuharaxn--ogbpf8fldrvelvetromsohuissier-justicexn--oppegrd-ixaxn--ostery-fyatsushiroxn--osyro-wuaxn--otu796dxn--p1acfedjeezxn--p1ais-slickharkivallee-d-aostexn--pgbs0dhlx3xn--porsgu-sta26fedorainfraclouderaxn--pssu33lxn--pssy2uxn--q7ce6axn--q9jyb4cnsauheradyndns-at-homedepotenzamamicrosoftbankasukabedzin-brbalsfjordietgoryoshiokanravocats3-fips-us-gov-west-1xn--qcka1pmcpenzapposxn--qqqt11misconfusedxn--qxa6axn--qxamunexus-3xn--rady-iraxn--rdal-poaxn--rde-ulazioxn--rdy-0nabaris-uberleetrentinos-tirolxn--rennesy-v1axn--rhkkervju-01afedorapeoplefrakkestadyndns-webhostingujogaszxn--rholt-mragowoltlab-democraciaxn--rhqv96gxn--rht27zxn--rht3dxn--rht61exn--risa-5naturalxn--risr-iraxn--rland-uuaxn--rlingen-mxaxn--rmskog-byawaraxn--rny31hakodatexn--rovu88bentleyusuitatamotorsitestinglitchernihivgubs3-website-us-west-1xn--rros-graphicsxn--rskog-uuaxn--rst-0naturbruksgymnxn--rsta-framercanvasxn--rvc1e0am3exn--ryken-vuaxn--ryrvik-byawatahamaxn--s-1faitheshopwarezzoxn--s9brj9cntraniandriabarlettatraniandriaxn--sandnessjen-ogbentrendhostingliwiceu-3xn--sandy-yuaxn--sdtirol-n2axn--seral-lraxn--ses554gxn--sgne-graphoxn--4gbriminiserverxn--skierv-utazurestaticappspaceusercontentunkongsvingerxn--skjervy-v1axn--skjk-soaxn--sknit-yqaxn--sknland-fxaxn--slat-5navigationxn--slt-elabogadobeaemcloud-fr1xn--smla-hraxn--smna-gratangenxn--snase-nraxn--sndre-land-0cbeppublishproxyuufcfanirasakindependent-panelomonza-brianzaporizhzhedmarkarelianceu-4xn--snes-poaxn--snsa-roaxn--sr-aurdal-l8axn--sr-fron-q1axn--sr-odal-q1axn--sr-varanger-ggbeskidyn-ip24xn--srfold-byaxn--srreisa-q1axn--srum-gratis-a-bloggerxn--stfold-9xaxn--stjrdal-s1axn--stjrdalshalsen-sqbestbuyshoparenagasakikuchikuseihicampinashikiminohostfoldnavyuzawaxn--stre-toten-zcbetainaboxfuselfipartindependent-reviewegroweibolognagasukeu-north-1xn--t60b56axn--tckweddingxn--tiq49xqyjelenia-goraxn--tjme-hraxn--tn0agrocerydxn--tnsberg-q1axn--tor131oxn--trany-yuaxn--trentin-sd-tirol-rzbhzc66xn--trentin-sdtirol-7vbialystokkeymachineu-south-1xn--trentino-sd-tirol-c3bielawakuyachimataharanzanishiazaindielddanuorrindigenamerikawauevje-og-hornnes3-website-us-west-2xn--trentino-sdtirol-szbiella-speziaxn--trentinosd-tirol-rzbieszczadygeyachiyodaeguamfamscompute-1xn--trentinosdtirol-7vbievat-band-campaignieznoorstaplesakyotanabellunordeste-idclkarlsoyxn--trentinsd-tirol-6vbifukagawalbrzycharitydalomzaporizhzhiaxn--trentinsdtirol-nsbigv-infolkebiblegnicalvinklein-butterhcloudiscoursesalangenishigotpantheonsitexn--trgstad-r1axn--trna-woaxn--troms-zuaxn--tysvr-vraxn--uc0atventuresinstagingxn--uc0ay4axn--uist22hakonexn--uisz3gxn--unjrga-rtashkenturindalxn--unup4yxn--uuwu58axn--vads-jraxn--valle-aoste-ebbturystykaneyamazoexn--valle-d-aoste-ehboehringerikexn--valleaoste-e7axn--valledaoste-ebbvadsoccertmgreaterxn--vard-jraxn--vegrshei-c0axn--vermgensberater-ctb-hostingxn--vermgensberatung-pwbiharstadotsubetsugarulezajskiervaksdalondonetskarmoyxn--vestvgy-ixa6oxn--vg-yiabruzzombieidskogasawarackmazerbaijan-mayenbaidarmeniaxn--vgan-qoaxn--vgsy-qoa0jellybeanxn--vgu402coguchikuzenishiwakinvestmentsaveincloudyndns-at-workisboringsakershusrcfdyndns-blogsitexn--vhquvestfoldxn--vler-qoaxn--vre-eiker-k8axn--vrggt-xqadxn--vry-yla5gxn--vuq861bihoronobeokagakikugawalesundiscoverdalondrinaplesknsalon-1xn--w4r85el8fhu5dnraxn--w4rs40lxn--wcvs22dxn--wgbh1communexn--wgbl6axn--xhq521bikedaejeonbuk0xn--xkc2al3hye2axn--xkc2dl3a5ee0hakubackyardshiraois-a-greenxn--y9a3aquarelleasingxn--yer-znavois-very-badxn--yfro4i67oxn--ygarden-p1axn--ygbi2ammxn--4it168dxn--ystre-slidre-ujbiofficialorenskoglobodoes-itcouldbeworldishangrilamdongnairkitapps-audibleasecuritytacticsxn--0trq7p7nnishiharaxn--zbx025dxn--zf0ao64axn--zf0avxlxn--zfr164bipartsaloonishiizunazukindustriaxnbayernxz
\ No newline at end of file diff --git a/vendor/golang.org/x/net/publicsuffix/list.go b/vendor/golang.org/x/net/publicsuffix/list.go deleted file mode 100644 index d56e9e762..000000000 --- a/vendor/golang.org/x/net/publicsuffix/list.go +++ /dev/null @@ -1,203 +0,0 @@ -// Copyright 2012 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:generate go run gen.go - -// Package publicsuffix provides a public suffix list based on data from -// https://publicsuffix.org/ -// -// A public suffix is one under which Internet users can directly register -// names. It is related to, but different from, a TLD (top level domain). -// -// "com" is a TLD (top level domain). Top level means it has no dots. -// -// "com" is also a public suffix. Amazon and Google have registered different -// siblings under that domain: "amazon.com" and "google.com". -// -// "au" is another TLD, again because it has no dots. But it's not "amazon.au". -// Instead, it's "amazon.com.au". -// -// "com.au" isn't an actual TLD, because it's not at the top level (it has -// dots). But it is an eTLD (effective TLD), because that's the branching point -// for domain name registrars. -// -// Another name for "an eTLD" is "a public suffix". Often, what's more of -// interest is the eTLD+1, or one more label than the public suffix. For -// example, browsers partition read/write access to HTTP cookies according to -// the eTLD+1. Web pages served from "amazon.com.au" can't read cookies from -// "google.com.au", but web pages served from "maps.google.com" can share -// cookies from "www.google.com", so you don't have to sign into Google Maps -// separately from signing into Google Web Search. Note that all four of those -// domains have 3 labels and 2 dots. The first two domains are each an eTLD+1, -// the last two are not (but share the same eTLD+1: "google.com"). -// -// All of these domains have the same eTLD+1: -//   - "www.books.amazon.co.uk" -//   - "books.amazon.co.uk" -//   - "amazon.co.uk" -// -// Specifically, the eTLD+1 is "amazon.co.uk", because the eTLD is "co.uk". -// -// There is no closed form algorithm to calculate the eTLD of a domain. -// Instead, the calculation is data driven. This package provides a -// pre-compiled snapshot of Mozilla's PSL (Public Suffix List) data at -// https://publicsuffix.org/ -package publicsuffix // import "golang.org/x/net/publicsuffix" - -// TODO: specify case sensitivity and leading/trailing dot behavior for -// func PublicSuffix and func EffectiveTLDPlusOne. - -import ( -	"fmt" -	"net/http/cookiejar" -	"strings" -) - -// List implements the cookiejar.PublicSuffixList interface by calling the -// PublicSuffix function. -var List cookiejar.PublicSuffixList = list{} - -type list struct{} - -func (list) PublicSuffix(domain string) string { -	ps, _ := PublicSuffix(domain) -	return ps -} - -func (list) String() string { -	return version -} - -// PublicSuffix returns the public suffix of the domain using a copy of the -// publicsuffix.org database compiled into the library. -// -// icann is whether the public suffix is managed by the Internet Corporation -// for Assigned Names and Numbers. If not, the public suffix is either a -// privately managed domain (and in practice, not a top level domain) or an -// unmanaged top level domain (and not explicitly mentioned in the -// publicsuffix.org list). For example, "foo.org" and "foo.co.uk" are ICANN -// domains, "foo.dyndns.org" and "foo.blogspot.co.uk" are private domains and -// "cromulent" is an unmanaged top level domain. -// -// Use cases for distinguishing ICANN domains like "foo.com" from private -// domains like "foo.appspot.com" can be found at -// https://wiki.mozilla.org/Public_Suffix_List/Use_Cases -func PublicSuffix(domain string) (publicSuffix string, icann bool) { -	lo, hi := uint32(0), uint32(numTLD) -	s, suffix, icannNode, wildcard := domain, len(domain), false, false -loop: -	for { -		dot := strings.LastIndex(s, ".") -		if wildcard { -			icann = icannNode -			suffix = 1 + dot -		} -		if lo == hi { -			break -		} -		f := find(s[1+dot:], lo, hi) -		if f == notFound { -			break -		} - -		u := uint32(nodes.get(f) >> (nodesBitsTextOffset + nodesBitsTextLength)) -		icannNode = u&(1<<nodesBitsICANN-1) != 0 -		u >>= nodesBitsICANN -		u = children.get(u & (1<<nodesBitsChildren - 1)) -		lo = u & (1<<childrenBitsLo - 1) -		u >>= childrenBitsLo -		hi = u & (1<<childrenBitsHi - 1) -		u >>= childrenBitsHi -		switch u & (1<<childrenBitsNodeType - 1) { -		case nodeTypeNormal: -			suffix = 1 + dot -		case nodeTypeException: -			suffix = 1 + len(s) -			break loop -		} -		u >>= childrenBitsNodeType -		wildcard = u&(1<<childrenBitsWildcard-1) != 0 -		if !wildcard { -			icann = icannNode -		} - -		if dot == -1 { -			break -		} -		s = s[:dot] -	} -	if suffix == len(domain) { -		// If no rules match, the prevailing rule is "*". -		return domain[1+strings.LastIndex(domain, "."):], icann -	} -	return domain[suffix:], icann -} - -const notFound uint32 = 1<<32 - 1 - -// find returns the index of the node in the range [lo, hi) whose label equals -// label, or notFound if there is no such node. The range is assumed to be in -// strictly increasing node label order. -func find(label string, lo, hi uint32) uint32 { -	for lo < hi { -		mid := lo + (hi-lo)/2 -		s := nodeLabel(mid) -		if s < label { -			lo = mid + 1 -		} else if s == label { -			return mid -		} else { -			hi = mid -		} -	} -	return notFound -} - -// nodeLabel returns the label for the i'th node. -func nodeLabel(i uint32) string { -	x := nodes.get(i) -	length := x & (1<<nodesBitsTextLength - 1) -	x >>= nodesBitsTextLength -	offset := x & (1<<nodesBitsTextOffset - 1) -	return text[offset : offset+length] -} - -// EffectiveTLDPlusOne returns the effective top level domain plus one more -// label. For example, the eTLD+1 for "foo.bar.golang.org" is "golang.org". -func EffectiveTLDPlusOne(domain string) (string, error) { -	if strings.HasPrefix(domain, ".") || strings.HasSuffix(domain, ".") || strings.Contains(domain, "..") { -		return "", fmt.Errorf("publicsuffix: empty label in domain %q", domain) -	} - -	suffix, _ := PublicSuffix(domain) -	if len(domain) <= len(suffix) { -		return "", fmt.Errorf("publicsuffix: cannot derive eTLD+1 for domain %q", domain) -	} -	i := len(domain) - len(suffix) - 1 -	if domain[i] != '.' { -		return "", fmt.Errorf("publicsuffix: invalid public suffix %q for domain %q", suffix, domain) -	} -	return domain[1+strings.LastIndex(domain[:i], "."):], nil -} - -type uint32String string - -func (u uint32String) get(i uint32) uint32 { -	off := i * 4 -	return (uint32(u[off])<<24 | -		uint32(u[off+1])<<16 | -		uint32(u[off+2])<<8 | -		uint32(u[off+3])) -} - -type uint40String string - -func (u uint40String) get(i uint32) uint64 { -	off := uint64(i * (nodesBits / 8)) -	return uint64(u[off])<<32 | -		uint64(u[off+1])<<24 | -		uint64(u[off+2])<<16 | -		uint64(u[off+3])<<8 | -		uint64(u[off+4]) -} diff --git a/vendor/golang.org/x/net/publicsuffix/table.go b/vendor/golang.org/x/net/publicsuffix/table.go deleted file mode 100644 index 78d400fa6..000000000 --- a/vendor/golang.org/x/net/publicsuffix/table.go +++ /dev/null @@ -1,70 +0,0 @@ -// generated by go run gen.go; DO NOT EDIT - -package publicsuffix - -import _ "embed" - -const version = "publicsuffix.org's public_suffix_list.dat, git revision 63cbc63d470d7b52c35266aa96c4c98c96ec499c (2023-08-03T10:01:25Z)" - -const ( -	nodesBits           = 40 -	nodesBitsChildren   = 10 -	nodesBitsICANN      = 1 -	nodesBitsTextOffset = 16 -	nodesBitsTextLength = 6 - -	childrenBitsWildcard = 1 -	childrenBitsNodeType = 2 -	childrenBitsHi       = 14 -	childrenBitsLo       = 14 -) - -const ( -	nodeTypeNormal     = 0 -	nodeTypeException  = 1 -	nodeTypeParentOnly = 2 -) - -// numTLD is the number of top level domains. -const numTLD = 1474 - -// text is the combined text of all labels. -// -//go:embed data/text -var text string - -// nodes is the list of nodes. Each node is represented as a 40-bit integer, -// which encodes the node's children, wildcard bit and node type (as an index -// into the children array), ICANN bit and text. -// -// The layout within the node, from MSB to LSB, is: -// -//	[ 7 bits] unused -//	[10 bits] children index -//	[ 1 bits] ICANN bit -//	[16 bits] text index -//	[ 6 bits] text length -// -//go:embed data/nodes -var nodes uint40String - -// children is the list of nodes' children, the parent's wildcard bit and the -// parent's node type. If a node has no children then their children index -// will be in the range [0, 6), depending on the wildcard bit and node type. -// -// The layout within the uint32, from MSB to LSB, is: -// -//	[ 1 bits] unused -//	[ 1 bits] wildcard bit -//	[ 2 bits] node type -//	[14 bits] high nodes index (exclusive) of children -//	[14 bits] low nodes index (inclusive) of children -// -//go:embed data/children -var children uint32String - -// max children 743 (capacity 1023) -// max text offset 30876 (capacity 65535) -// max text length 31 (capacity 63) -// max hi 9322 (capacity 16383) -// max lo 9317 (capacity 16383) diff --git a/vendor/golang.org/x/net/trace/events.go b/vendor/golang.org/x/net/trace/events.go deleted file mode 100644 index c646a6952..000000000 --- a/vendor/golang.org/x/net/trace/events.go +++ /dev/null @@ -1,532 +0,0 @@ -// 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. - -package trace - -import ( -	"bytes" -	"fmt" -	"html/template" -	"io" -	"log" -	"net/http" -	"runtime" -	"sort" -	"strconv" -	"strings" -	"sync" -	"sync/atomic" -	"text/tabwriter" -	"time" -) - -const maxEventsPerLog = 100 - -type bucket struct { -	MaxErrAge time.Duration -	String    string -} - -var buckets = []bucket{ -	{0, "total"}, -	{10 * time.Second, "errs<10s"}, -	{1 * time.Minute, "errs<1m"}, -	{10 * time.Minute, "errs<10m"}, -	{1 * time.Hour, "errs<1h"}, -	{10 * time.Hour, "errs<10h"}, -	{24000 * time.Hour, "errors"}, -} - -// RenderEvents renders the HTML page typically served at /debug/events. -// It does not do any auth checking. The request may be nil. -// -// Most users will use the Events handler. -func RenderEvents(w http.ResponseWriter, req *http.Request, sensitive bool) { -	now := time.Now() -	data := &struct { -		Families []string // family names -		Buckets  []bucket -		Counts   [][]int // eventLog count per family/bucket - -		// Set when a bucket has been selected. -		Family    string -		Bucket    int -		EventLogs eventLogs -		Expanded  bool -	}{ -		Buckets: buckets, -	} - -	data.Families = make([]string, 0, len(families)) -	famMu.RLock() -	for name := range families { -		data.Families = append(data.Families, name) -	} -	famMu.RUnlock() -	sort.Strings(data.Families) - -	// Count the number of eventLogs in each family for each error age. -	data.Counts = make([][]int, len(data.Families)) -	for i, name := range data.Families { -		// TODO(sameer): move this loop under the family lock. -		f := getEventFamily(name) -		data.Counts[i] = make([]int, len(data.Buckets)) -		for j, b := range data.Buckets { -			data.Counts[i][j] = f.Count(now, b.MaxErrAge) -		} -	} - -	if req != nil { -		var ok bool -		data.Family, data.Bucket, ok = parseEventsArgs(req) -		if !ok { -			// No-op -		} else { -			data.EventLogs = getEventFamily(data.Family).Copy(now, buckets[data.Bucket].MaxErrAge) -		} -		if data.EventLogs != nil { -			defer data.EventLogs.Free() -			sort.Sort(data.EventLogs) -		} -		if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil { -			data.Expanded = exp -		} -	} - -	famMu.RLock() -	defer famMu.RUnlock() -	if err := eventsTmpl().Execute(w, data); err != nil { -		log.Printf("net/trace: Failed executing template: %v", err) -	} -} - -func parseEventsArgs(req *http.Request) (fam string, b int, ok bool) { -	fam, bStr := req.FormValue("fam"), req.FormValue("b") -	if fam == "" || bStr == "" { -		return "", 0, false -	} -	b, err := strconv.Atoi(bStr) -	if err != nil || b < 0 || b >= len(buckets) { -		return "", 0, false -	} -	return fam, b, true -} - -// An EventLog provides a log of events associated with a specific object. -type EventLog interface { -	// Printf formats its arguments with fmt.Sprintf and adds the -	// result to the event log. -	Printf(format string, a ...interface{}) - -	// Errorf is like Printf, but it marks this event as an error. -	Errorf(format string, a ...interface{}) - -	// Finish declares that this event log is complete. -	// The event log should not be used after calling this method. -	Finish() -} - -// NewEventLog returns a new EventLog with the specified family name -// and title. -func NewEventLog(family, title string) EventLog { -	el := newEventLog() -	el.ref() -	el.Family, el.Title = family, title -	el.Start = time.Now() -	el.events = make([]logEntry, 0, maxEventsPerLog) -	el.stack = make([]uintptr, 32) -	n := runtime.Callers(2, el.stack) -	el.stack = el.stack[:n] - -	getEventFamily(family).add(el) -	return el -} - -func (el *eventLog) Finish() { -	getEventFamily(el.Family).remove(el) -	el.unref() // matches ref in New -} - -var ( -	famMu    sync.RWMutex -	families = make(map[string]*eventFamily) // family name => family -) - -func getEventFamily(fam string) *eventFamily { -	famMu.Lock() -	defer famMu.Unlock() -	f := families[fam] -	if f == nil { -		f = &eventFamily{} -		families[fam] = f -	} -	return f -} - -type eventFamily struct { -	mu        sync.RWMutex -	eventLogs eventLogs -} - -func (f *eventFamily) add(el *eventLog) { -	f.mu.Lock() -	f.eventLogs = append(f.eventLogs, el) -	f.mu.Unlock() -} - -func (f *eventFamily) remove(el *eventLog) { -	f.mu.Lock() -	defer f.mu.Unlock() -	for i, el0 := range f.eventLogs { -		if el == el0 { -			copy(f.eventLogs[i:], f.eventLogs[i+1:]) -			f.eventLogs = f.eventLogs[:len(f.eventLogs)-1] -			return -		} -	} -} - -func (f *eventFamily) Count(now time.Time, maxErrAge time.Duration) (n int) { -	f.mu.RLock() -	defer f.mu.RUnlock() -	for _, el := range f.eventLogs { -		if el.hasRecentError(now, maxErrAge) { -			n++ -		} -	} -	return -} - -func (f *eventFamily) Copy(now time.Time, maxErrAge time.Duration) (els eventLogs) { -	f.mu.RLock() -	defer f.mu.RUnlock() -	els = make(eventLogs, 0, len(f.eventLogs)) -	for _, el := range f.eventLogs { -		if el.hasRecentError(now, maxErrAge) { -			el.ref() -			els = append(els, el) -		} -	} -	return -} - -type eventLogs []*eventLog - -// Free calls unref on each element of the list. -func (els eventLogs) Free() { -	for _, el := range els { -		el.unref() -	} -} - -// eventLogs may be sorted in reverse chronological order. -func (els eventLogs) Len() int           { return len(els) } -func (els eventLogs) Less(i, j int) bool { return els[i].Start.After(els[j].Start) } -func (els eventLogs) Swap(i, j int)      { els[i], els[j] = els[j], els[i] } - -// A logEntry is a timestamped log entry in an event log. -type logEntry struct { -	When    time.Time -	Elapsed time.Duration // since previous event in log -	NewDay  bool          // whether this event is on a different day to the previous event -	What    string -	IsErr   bool -} - -// WhenString returns a string representation of the elapsed time of the event. -// It will include the date if midnight was crossed. -func (e logEntry) WhenString() string { -	if e.NewDay { -		return e.When.Format("2006/01/02 15:04:05.000000") -	} -	return e.When.Format("15:04:05.000000") -} - -// An eventLog represents an active event log. -type eventLog struct { -	// Family is the top-level grouping of event logs to which this belongs. -	Family string - -	// Title is the title of this event log. -	Title string - -	// Timing information. -	Start time.Time - -	// Call stack where this event log was created. -	stack []uintptr - -	// Append-only sequence of events. -	// -	// TODO(sameer): change this to a ring buffer to avoid the array copy -	// when we hit maxEventsPerLog. -	mu            sync.RWMutex -	events        []logEntry -	LastErrorTime time.Time -	discarded     int - -	refs int32 // how many buckets this is in -} - -func (el *eventLog) reset() { -	// Clear all but the mutex. Mutexes may not be copied, even when unlocked. -	el.Family = "" -	el.Title = "" -	el.Start = time.Time{} -	el.stack = nil -	el.events = nil -	el.LastErrorTime = time.Time{} -	el.discarded = 0 -	el.refs = 0 -} - -func (el *eventLog) hasRecentError(now time.Time, maxErrAge time.Duration) bool { -	if maxErrAge == 0 { -		return true -	} -	el.mu.RLock() -	defer el.mu.RUnlock() -	return now.Sub(el.LastErrorTime) < maxErrAge -} - -// delta returns the elapsed time since the last event or the log start, -// and whether it spans midnight. -// L >= el.mu -func (el *eventLog) delta(t time.Time) (time.Duration, bool) { -	if len(el.events) == 0 { -		return t.Sub(el.Start), false -	} -	prev := el.events[len(el.events)-1].When -	return t.Sub(prev), prev.Day() != t.Day() - -} - -func (el *eventLog) Printf(format string, a ...interface{}) { -	el.printf(false, format, a...) -} - -func (el *eventLog) Errorf(format string, a ...interface{}) { -	el.printf(true, format, a...) -} - -func (el *eventLog) printf(isErr bool, format string, a ...interface{}) { -	e := logEntry{When: time.Now(), IsErr: isErr, What: fmt.Sprintf(format, a...)} -	el.mu.Lock() -	e.Elapsed, e.NewDay = el.delta(e.When) -	if len(el.events) < maxEventsPerLog { -		el.events = append(el.events, e) -	} else { -		// Discard the oldest event. -		if el.discarded == 0 { -			// el.discarded starts at two to count for the event it -			// is replacing, plus the next one that we are about to -			// drop. -			el.discarded = 2 -		} else { -			el.discarded++ -		} -		// TODO(sameer): if this causes allocations on a critical path, -		// change eventLog.What to be a fmt.Stringer, as in trace.go. -		el.events[0].What = fmt.Sprintf("(%d events discarded)", el.discarded) -		// The timestamp of the discarded meta-event should be -		// the time of the last event it is representing. -		el.events[0].When = el.events[1].When -		copy(el.events[1:], el.events[2:]) -		el.events[maxEventsPerLog-1] = e -	} -	if e.IsErr { -		el.LastErrorTime = e.When -	} -	el.mu.Unlock() -} - -func (el *eventLog) ref() { -	atomic.AddInt32(&el.refs, 1) -} - -func (el *eventLog) unref() { -	if atomic.AddInt32(&el.refs, -1) == 0 { -		freeEventLog(el) -	} -} - -func (el *eventLog) When() string { -	return el.Start.Format("2006/01/02 15:04:05.000000") -} - -func (el *eventLog) ElapsedTime() string { -	elapsed := time.Since(el.Start) -	return fmt.Sprintf("%.6f", elapsed.Seconds()) -} - -func (el *eventLog) Stack() string { -	buf := new(bytes.Buffer) -	tw := tabwriter.NewWriter(buf, 1, 8, 1, '\t', 0) -	printStackRecord(tw, el.stack) -	tw.Flush() -	return buf.String() -} - -// printStackRecord prints the function + source line information -// for a single stack trace. -// Adapted from runtime/pprof/pprof.go. -func printStackRecord(w io.Writer, stk []uintptr) { -	for _, pc := range stk { -		f := runtime.FuncForPC(pc) -		if f == nil { -			continue -		} -		file, line := f.FileLine(pc) -		name := f.Name() -		// Hide runtime.goexit and any runtime functions at the beginning. -		if strings.HasPrefix(name, "runtime.") { -			continue -		} -		fmt.Fprintf(w, "#   %s\t%s:%d\n", name, file, line) -	} -} - -func (el *eventLog) Events() []logEntry { -	el.mu.RLock() -	defer el.mu.RUnlock() -	return el.events -} - -// freeEventLogs is a freelist of *eventLog -var freeEventLogs = make(chan *eventLog, 1000) - -// newEventLog returns a event log ready to use. -func newEventLog() *eventLog { -	select { -	case el := <-freeEventLogs: -		return el -	default: -		return new(eventLog) -	} -} - -// freeEventLog adds el to freeEventLogs if there's room. -// This is non-blocking. -func freeEventLog(el *eventLog) { -	el.reset() -	select { -	case freeEventLogs <- el: -	default: -	} -} - -var eventsTmplCache *template.Template -var eventsTmplOnce sync.Once - -func eventsTmpl() *template.Template { -	eventsTmplOnce.Do(func() { -		eventsTmplCache = template.Must(template.New("events").Funcs(template.FuncMap{ -			"elapsed":   elapsed, -			"trimSpace": strings.TrimSpace, -		}).Parse(eventsHTML)) -	}) -	return eventsTmplCache -} - -const eventsHTML = ` -<html> -	<head> -		<title>events</title> -	</head> -	<style type="text/css"> -		body { -			font-family: sans-serif; -		} -		table#req-status td.family { -			padding-right: 2em; -		} -		table#req-status td.active { -			padding-right: 1em; -		} -		table#req-status td.empty { -			color: #aaa; -		} -		table#reqs { -			margin-top: 1em; -		} -		table#reqs tr.first { -			{{if $.Expanded}}font-weight: bold;{{end}} -		} -		table#reqs td { -			font-family: monospace; -		} -		table#reqs td.when { -			text-align: right; -			white-space: nowrap; -		} -		table#reqs td.elapsed { -			padding: 0 0.5em; -			text-align: right; -			white-space: pre; -			width: 10em; -		} -		address { -			font-size: smaller; -			margin-top: 5em; -		} -	</style> -	<body> - -<h1>/debug/events</h1> - -<table id="req-status"> -	{{range $i, $fam := .Families}} -	<tr> -		<td class="family">{{$fam}}</td> - -	        {{range $j, $bucket := $.Buckets}} -	        {{$n := index $.Counts $i $j}} -		<td class="{{if not $bucket.MaxErrAge}}active{{end}}{{if not $n}}empty{{end}}"> -	                {{if $n}}<a href="?fam={{$fam}}&b={{$j}}{{if $.Expanded}}&exp=1{{end}}">{{end}} -		        [{{$n}} {{$bucket.String}}] -			{{if $n}}</a>{{end}} -		</td> -                {{end}} - -	</tr>{{end}} -</table> - -{{if $.EventLogs}} -<hr /> -<h3>Family: {{$.Family}}</h3> - -{{if $.Expanded}}<a href="?fam={{$.Family}}&b={{$.Bucket}}">{{end}} -[Summary]{{if $.Expanded}}</a>{{end}} - -{{if not $.Expanded}}<a href="?fam={{$.Family}}&b={{$.Bucket}}&exp=1">{{end}} -[Expanded]{{if not $.Expanded}}</a>{{end}} - -<table id="reqs"> -	<tr><th>When</th><th>Elapsed</th></tr> -	{{range $el := $.EventLogs}} -	<tr class="first"> -		<td class="when">{{$el.When}}</td> -		<td class="elapsed">{{$el.ElapsedTime}}</td> -		<td>{{$el.Title}} -	</tr> -	{{if $.Expanded}} -	<tr> -		<td class="when"></td> -		<td class="elapsed"></td> -		<td><pre>{{$el.Stack|trimSpace}}</pre></td> -	</tr> -	{{range $el.Events}} -	<tr> -		<td class="when">{{.WhenString}}</td> -		<td class="elapsed">{{elapsed .Elapsed}}</td> -		<td>.{{if .IsErr}}E{{else}}.{{end}}. {{.What}}</td> -	</tr> -	{{end}} -	{{end}} -	{{end}} -</table> -{{end}} -	</body> -</html> -` diff --git a/vendor/golang.org/x/net/trace/histogram.go b/vendor/golang.org/x/net/trace/histogram.go deleted file mode 100644 index d6c71101e..000000000 --- a/vendor/golang.org/x/net/trace/histogram.go +++ /dev/null @@ -1,365 +0,0 @@ -// 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. - -package trace - -// This file implements histogramming for RPC statistics collection. - -import ( -	"bytes" -	"fmt" -	"html/template" -	"log" -	"math" -	"sync" - -	"golang.org/x/net/internal/timeseries" -) - -const ( -	bucketCount = 38 -) - -// histogram keeps counts of values in buckets that are spaced -// out in powers of 2: 0-1, 2-3, 4-7... -// histogram implements timeseries.Observable -type histogram struct { -	sum          int64   // running total of measurements -	sumOfSquares float64 // square of running total -	buckets      []int64 // bucketed values for histogram -	value        int     // holds a single value as an optimization -	valueCount   int64   // number of values recorded for single value -} - -// addMeasurement records a value measurement observation to the histogram. -func (h *histogram) addMeasurement(value int64) { -	// TODO: assert invariant -	h.sum += value -	h.sumOfSquares += float64(value) * float64(value) - -	bucketIndex := getBucket(value) - -	if h.valueCount == 0 || (h.valueCount > 0 && h.value == bucketIndex) { -		h.value = bucketIndex -		h.valueCount++ -	} else { -		h.allocateBuckets() -		h.buckets[bucketIndex]++ -	} -} - -func (h *histogram) allocateBuckets() { -	if h.buckets == nil { -		h.buckets = make([]int64, bucketCount) -		h.buckets[h.value] = h.valueCount -		h.value = 0 -		h.valueCount = -1 -	} -} - -func log2(i int64) int { -	n := 0 -	for ; i >= 0x100; i >>= 8 { -		n += 8 -	} -	for ; i > 0; i >>= 1 { -		n += 1 -	} -	return n -} - -func getBucket(i int64) (index int) { -	index = log2(i) - 1 -	if index < 0 { -		index = 0 -	} -	if index >= bucketCount { -		index = bucketCount - 1 -	} -	return -} - -// Total returns the number of recorded observations. -func (h *histogram) total() (total int64) { -	if h.valueCount >= 0 { -		total = h.valueCount -	} -	for _, val := range h.buckets { -		total += int64(val) -	} -	return -} - -// Average returns the average value of recorded observations. -func (h *histogram) average() float64 { -	t := h.total() -	if t == 0 { -		return 0 -	} -	return float64(h.sum) / float64(t) -} - -// Variance returns the variance of recorded observations. -func (h *histogram) variance() float64 { -	t := float64(h.total()) -	if t == 0 { -		return 0 -	} -	s := float64(h.sum) / t -	return h.sumOfSquares/t - s*s -} - -// StandardDeviation returns the standard deviation of recorded observations. -func (h *histogram) standardDeviation() float64 { -	return math.Sqrt(h.variance()) -} - -// PercentileBoundary estimates the value that the given fraction of recorded -// observations are less than. -func (h *histogram) percentileBoundary(percentile float64) int64 { -	total := h.total() - -	// Corner cases (make sure result is strictly less than Total()) -	if total == 0 { -		return 0 -	} else if total == 1 { -		return int64(h.average()) -	} - -	percentOfTotal := round(float64(total) * percentile) -	var runningTotal int64 - -	for i := range h.buckets { -		value := h.buckets[i] -		runningTotal += value -		if runningTotal == percentOfTotal { -			// We hit an exact bucket boundary. If the next bucket has data, it is a -			// good estimate of the value. If the bucket is empty, we interpolate the -			// midpoint between the next bucket's boundary and the next non-zero -			// bucket. If the remaining buckets are all empty, then we use the -			// boundary for the next bucket as the estimate. -			j := uint8(i + 1) -			min := bucketBoundary(j) -			if runningTotal < total { -				for h.buckets[j] == 0 { -					j++ -				} -			} -			max := bucketBoundary(j) -			return min + round(float64(max-min)/2) -		} else if runningTotal > percentOfTotal { -			// The value is in this bucket. Interpolate the value. -			delta := runningTotal - percentOfTotal -			percentBucket := float64(value-delta) / float64(value) -			bucketMin := bucketBoundary(uint8(i)) -			nextBucketMin := bucketBoundary(uint8(i + 1)) -			bucketSize := nextBucketMin - bucketMin -			return bucketMin + round(percentBucket*float64(bucketSize)) -		} -	} -	return bucketBoundary(bucketCount - 1) -} - -// Median returns the estimated median of the observed values. -func (h *histogram) median() int64 { -	return h.percentileBoundary(0.5) -} - -// Add adds other to h. -func (h *histogram) Add(other timeseries.Observable) { -	o := other.(*histogram) -	if o.valueCount == 0 { -		// Other histogram is empty -	} else if h.valueCount >= 0 && o.valueCount > 0 && h.value == o.value { -		// Both have a single bucketed value, aggregate them -		h.valueCount += o.valueCount -	} else { -		// Two different values necessitate buckets in this histogram -		h.allocateBuckets() -		if o.valueCount >= 0 { -			h.buckets[o.value] += o.valueCount -		} else { -			for i := range h.buckets { -				h.buckets[i] += o.buckets[i] -			} -		} -	} -	h.sumOfSquares += o.sumOfSquares -	h.sum += o.sum -} - -// Clear resets the histogram to an empty state, removing all observed values. -func (h *histogram) Clear() { -	h.buckets = nil -	h.value = 0 -	h.valueCount = 0 -	h.sum = 0 -	h.sumOfSquares = 0 -} - -// CopyFrom copies from other, which must be a *histogram, into h. -func (h *histogram) CopyFrom(other timeseries.Observable) { -	o := other.(*histogram) -	if o.valueCount == -1 { -		h.allocateBuckets() -		copy(h.buckets, o.buckets) -	} -	h.sum = o.sum -	h.sumOfSquares = o.sumOfSquares -	h.value = o.value -	h.valueCount = o.valueCount -} - -// Multiply scales the histogram by the specified ratio. -func (h *histogram) Multiply(ratio float64) { -	if h.valueCount == -1 { -		for i := range h.buckets { -			h.buckets[i] = int64(float64(h.buckets[i]) * ratio) -		} -	} else { -		h.valueCount = int64(float64(h.valueCount) * ratio) -	} -	h.sum = int64(float64(h.sum) * ratio) -	h.sumOfSquares = h.sumOfSquares * ratio -} - -// New creates a new histogram. -func (h *histogram) New() timeseries.Observable { -	r := new(histogram) -	r.Clear() -	return r -} - -func (h *histogram) String() string { -	return fmt.Sprintf("%d, %f, %d, %d, %v", -		h.sum, h.sumOfSquares, h.value, h.valueCount, h.buckets) -} - -// round returns the closest int64 to the argument -func round(in float64) int64 { -	return int64(math.Floor(in + 0.5)) -} - -// bucketBoundary returns the first value in the bucket. -func bucketBoundary(bucket uint8) int64 { -	if bucket == 0 { -		return 0 -	} -	return 1 << bucket -} - -// bucketData holds data about a specific bucket for use in distTmpl. -type bucketData struct { -	Lower, Upper       int64 -	N                  int64 -	Pct, CumulativePct float64 -	GraphWidth         int -} - -// data holds data about a Distribution for use in distTmpl. -type data struct { -	Buckets                 []*bucketData -	Count, Median           int64 -	Mean, StandardDeviation float64 -} - -// maxHTMLBarWidth is the maximum width of the HTML bar for visualizing buckets. -const maxHTMLBarWidth = 350.0 - -// newData returns data representing h for use in distTmpl. -func (h *histogram) newData() *data { -	// Force the allocation of buckets to simplify the rendering implementation -	h.allocateBuckets() -	// We scale the bars on the right so that the largest bar is -	// maxHTMLBarWidth pixels in width. -	maxBucket := int64(0) -	for _, n := range h.buckets { -		if n > maxBucket { -			maxBucket = n -		} -	} -	total := h.total() -	barsizeMult := maxHTMLBarWidth / float64(maxBucket) -	var pctMult float64 -	if total == 0 { -		pctMult = 1.0 -	} else { -		pctMult = 100.0 / float64(total) -	} - -	buckets := make([]*bucketData, len(h.buckets)) -	runningTotal := int64(0) -	for i, n := range h.buckets { -		if n == 0 { -			continue -		} -		runningTotal += n -		var upperBound int64 -		if i < bucketCount-1 { -			upperBound = bucketBoundary(uint8(i + 1)) -		} else { -			upperBound = math.MaxInt64 -		} -		buckets[i] = &bucketData{ -			Lower:         bucketBoundary(uint8(i)), -			Upper:         upperBound, -			N:             n, -			Pct:           float64(n) * pctMult, -			CumulativePct: float64(runningTotal) * pctMult, -			GraphWidth:    int(float64(n) * barsizeMult), -		} -	} -	return &data{ -		Buckets:           buckets, -		Count:             total, -		Median:            h.median(), -		Mean:              h.average(), -		StandardDeviation: h.standardDeviation(), -	} -} - -func (h *histogram) html() template.HTML { -	buf := new(bytes.Buffer) -	if err := distTmpl().Execute(buf, h.newData()); err != nil { -		buf.Reset() -		log.Printf("net/trace: couldn't execute template: %v", err) -	} -	return template.HTML(buf.String()) -} - -var distTmplCache *template.Template -var distTmplOnce sync.Once - -func distTmpl() *template.Template { -	distTmplOnce.Do(func() { -		// Input: data -		distTmplCache = template.Must(template.New("distTmpl").Parse(` -<table> -<tr> -    <td style="padding:0.25em">Count: {{.Count}}</td> -    <td style="padding:0.25em">Mean: {{printf "%.0f" .Mean}}</td> -    <td style="padding:0.25em">StdDev: {{printf "%.0f" .StandardDeviation}}</td> -    <td style="padding:0.25em">Median: {{.Median}}</td> -</tr> -</table> -<hr> -<table> -{{range $b := .Buckets}} -{{if $b}} -  <tr> -    <td style="padding:0 0 0 0.25em">[</td> -    <td style="text-align:right;padding:0 0.25em">{{.Lower}},</td> -    <td style="text-align:right;padding:0 0.25em">{{.Upper}})</td> -    <td style="text-align:right;padding:0 0.25em">{{.N}}</td> -    <td style="text-align:right;padding:0 0.25em">{{printf "%#.3f" .Pct}}%</td> -    <td style="text-align:right;padding:0 0.25em">{{printf "%#.3f" .CumulativePct}}%</td> -    <td><div style="background-color: blue; height: 1em; width: {{.GraphWidth}};"></div></td> -  </tr> -{{end}} -{{end}} -</table> -`)) -	}) -	return distTmplCache -} diff --git a/vendor/golang.org/x/net/trace/trace.go b/vendor/golang.org/x/net/trace/trace.go deleted file mode 100644 index eae2a99f5..000000000 --- a/vendor/golang.org/x/net/trace/trace.go +++ /dev/null @@ -1,1130 +0,0 @@ -// 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. - -/* -Package trace implements tracing of requests and long-lived objects. -It exports HTTP interfaces on /debug/requests and /debug/events. - -A trace.Trace provides tracing for short-lived objects, usually requests. -A request handler might be implemented like this: - -	func fooHandler(w http.ResponseWriter, req *http.Request) { -		tr := trace.New("mypkg.Foo", req.URL.Path) -		defer tr.Finish() -		... -		tr.LazyPrintf("some event %q happened", str) -		... -		if err := somethingImportant(); err != nil { -			tr.LazyPrintf("somethingImportant failed: %v", err) -			tr.SetError() -		} -	} - -The /debug/requests HTTP endpoint organizes the traces by family, -errors, and duration.  It also provides histogram of request duration -for each family. - -A trace.EventLog provides tracing for long-lived objects, such as RPC -connections. - -	// A Fetcher fetches URL paths for a single domain. -	type Fetcher struct { -		domain string -		events trace.EventLog -	} - -	func NewFetcher(domain string) *Fetcher { -		return &Fetcher{ -			domain, -			trace.NewEventLog("mypkg.Fetcher", domain), -		} -	} - -	func (f *Fetcher) Fetch(path string) (string, error) { -		resp, err := http.Get("http://" + f.domain + "/" + path) -		if err != nil { -			f.events.Errorf("Get(%q) = %v", path, err) -			return "", err -		} -		f.events.Printf("Get(%q) = %s", path, resp.Status) -		... -	} - -	func (f *Fetcher) Close() error { -		f.events.Finish() -		return nil -	} - -The /debug/events HTTP endpoint organizes the event logs by family and -by time since the last error.  The expanded view displays recent log -entries and the log's call stack. -*/ -package trace // import "golang.org/x/net/trace" - -import ( -	"bytes" -	"context" -	"fmt" -	"html/template" -	"io" -	"log" -	"net" -	"net/http" -	"net/url" -	"runtime" -	"sort" -	"strconv" -	"sync" -	"sync/atomic" -	"time" - -	"golang.org/x/net/internal/timeseries" -) - -// DebugUseAfterFinish controls whether to debug uses of Trace values after finishing. -// FOR DEBUGGING ONLY. This will slow down the program. -var DebugUseAfterFinish = false - -// HTTP ServeMux paths. -const ( -	debugRequestsPath = "/debug/requests" -	debugEventsPath   = "/debug/events" -) - -// AuthRequest determines whether a specific request is permitted to load the -// /debug/requests or /debug/events pages. -// -// It returns two bools; the first indicates whether the page may be viewed at all, -// and the second indicates whether sensitive events will be shown. -// -// AuthRequest may be replaced by a program to customize its authorization requirements. -// -// The default AuthRequest function returns (true, true) if and only if the request -// comes from localhost/127.0.0.1/[::1]. -var AuthRequest = func(req *http.Request) (any, sensitive bool) { -	// RemoteAddr is commonly in the form "IP" or "IP:port". -	// If it is in the form "IP:port", split off the port. -	host, _, err := net.SplitHostPort(req.RemoteAddr) -	if err != nil { -		host = req.RemoteAddr -	} -	switch host { -	case "localhost", "127.0.0.1", "::1": -		return true, true -	default: -		return false, false -	} -} - -func init() { -	_, pat := http.DefaultServeMux.Handler(&http.Request{URL: &url.URL{Path: debugRequestsPath}}) -	if pat == debugRequestsPath { -		panic("/debug/requests is already registered. You may have two independent copies of " + -			"golang.org/x/net/trace in your binary, trying to maintain separate state. This may " + -			"involve a vendored copy of golang.org/x/net/trace.") -	} - -	// TODO(jbd): Serve Traces from /debug/traces in the future? -	// There is no requirement for a request to be present to have traces. -	http.HandleFunc(debugRequestsPath, Traces) -	http.HandleFunc(debugEventsPath, Events) -} - -// NewContext returns a copy of the parent context -// and associates it with a Trace. -func NewContext(ctx context.Context, tr Trace) context.Context { -	return context.WithValue(ctx, contextKey, tr) -} - -// FromContext returns the Trace bound to the context, if any. -func FromContext(ctx context.Context) (tr Trace, ok bool) { -	tr, ok = ctx.Value(contextKey).(Trace) -	return -} - -// Traces responds with traces from the program. -// The package initialization registers it in http.DefaultServeMux -// at /debug/requests. -// -// It performs authorization by running AuthRequest. -func Traces(w http.ResponseWriter, req *http.Request) { -	any, sensitive := AuthRequest(req) -	if !any { -		http.Error(w, "not allowed", http.StatusUnauthorized) -		return -	} -	w.Header().Set("Content-Type", "text/html; charset=utf-8") -	Render(w, req, sensitive) -} - -// Events responds with a page of events collected by EventLogs. -// The package initialization registers it in http.DefaultServeMux -// at /debug/events. -// -// It performs authorization by running AuthRequest. -func Events(w http.ResponseWriter, req *http.Request) { -	any, sensitive := AuthRequest(req) -	if !any { -		http.Error(w, "not allowed", http.StatusUnauthorized) -		return -	} -	w.Header().Set("Content-Type", "text/html; charset=utf-8") -	RenderEvents(w, req, sensitive) -} - -// Render renders the HTML page typically served at /debug/requests. -// It does not do any auth checking. The request may be nil. -// -// Most users will use the Traces handler. -func Render(w io.Writer, req *http.Request, sensitive bool) { -	data := &struct { -		Families         []string -		ActiveTraceCount map[string]int -		CompletedTraces  map[string]*family - -		// Set when a bucket has been selected. -		Traces        traceList -		Family        string -		Bucket        int -		Expanded      bool -		Traced        bool -		Active        bool -		ShowSensitive bool // whether to show sensitive events - -		Histogram       template.HTML -		HistogramWindow string // e.g. "last minute", "last hour", "all time" - -		// If non-zero, the set of traces is a partial set, -		// and this is the total number. -		Total int -	}{ -		CompletedTraces: completedTraces, -	} - -	data.ShowSensitive = sensitive -	if req != nil { -		// Allow show_sensitive=0 to force hiding of sensitive data for testing. -		// This only goes one way; you can't use show_sensitive=1 to see things. -		if req.FormValue("show_sensitive") == "0" { -			data.ShowSensitive = false -		} - -		if exp, err := strconv.ParseBool(req.FormValue("exp")); err == nil { -			data.Expanded = exp -		} -		if exp, err := strconv.ParseBool(req.FormValue("rtraced")); err == nil { -			data.Traced = exp -		} -	} - -	completedMu.RLock() -	data.Families = make([]string, 0, len(completedTraces)) -	for fam := range completedTraces { -		data.Families = append(data.Families, fam) -	} -	completedMu.RUnlock() -	sort.Strings(data.Families) - -	// We are careful here to minimize the time spent locking activeMu, -	// since that lock is required every time an RPC starts and finishes. -	data.ActiveTraceCount = make(map[string]int, len(data.Families)) -	activeMu.RLock() -	for fam, s := range activeTraces { -		data.ActiveTraceCount[fam] = s.Len() -	} -	activeMu.RUnlock() - -	var ok bool -	data.Family, data.Bucket, ok = parseArgs(req) -	switch { -	case !ok: -		// No-op -	case data.Bucket == -1: -		data.Active = true -		n := data.ActiveTraceCount[data.Family] -		data.Traces = getActiveTraces(data.Family) -		if len(data.Traces) < n { -			data.Total = n -		} -	case data.Bucket < bucketsPerFamily: -		if b := lookupBucket(data.Family, data.Bucket); b != nil { -			data.Traces = b.Copy(data.Traced) -		} -	default: -		if f := getFamily(data.Family, false); f != nil { -			var obs timeseries.Observable -			f.LatencyMu.RLock() -			switch o := data.Bucket - bucketsPerFamily; o { -			case 0: -				obs = f.Latency.Minute() -				data.HistogramWindow = "last minute" -			case 1: -				obs = f.Latency.Hour() -				data.HistogramWindow = "last hour" -			case 2: -				obs = f.Latency.Total() -				data.HistogramWindow = "all time" -			} -			f.LatencyMu.RUnlock() -			if obs != nil { -				data.Histogram = obs.(*histogram).html() -			} -		} -	} - -	if data.Traces != nil { -		defer data.Traces.Free() -		sort.Sort(data.Traces) -	} - -	completedMu.RLock() -	defer completedMu.RUnlock() -	if err := pageTmpl().ExecuteTemplate(w, "Page", data); err != nil { -		log.Printf("net/trace: Failed executing template: %v", err) -	} -} - -func parseArgs(req *http.Request) (fam string, b int, ok bool) { -	if req == nil { -		return "", 0, false -	} -	fam, bStr := req.FormValue("fam"), req.FormValue("b") -	if fam == "" || bStr == "" { -		return "", 0, false -	} -	b, err := strconv.Atoi(bStr) -	if err != nil || b < -1 { -		return "", 0, false -	} - -	return fam, b, true -} - -func lookupBucket(fam string, b int) *traceBucket { -	f := getFamily(fam, false) -	if f == nil || b < 0 || b >= len(f.Buckets) { -		return nil -	} -	return f.Buckets[b] -} - -type contextKeyT string - -var contextKey = contextKeyT("golang.org/x/net/trace.Trace") - -// Trace represents an active request. -type Trace interface { -	// LazyLog adds x to the event log. It will be evaluated each time the -	// /debug/requests page is rendered. Any memory referenced by x will be -	// pinned until the trace is finished and later discarded. -	LazyLog(x fmt.Stringer, sensitive bool) - -	// LazyPrintf evaluates its arguments with fmt.Sprintf each time the -	// /debug/requests page is rendered. Any memory referenced by a will be -	// pinned until the trace is finished and later discarded. -	LazyPrintf(format string, a ...interface{}) - -	// SetError declares that this trace resulted in an error. -	SetError() - -	// SetRecycler sets a recycler for the trace. -	// f will be called for each event passed to LazyLog at a time when -	// it is no longer required, whether while the trace is still active -	// and the event is discarded, or when a completed trace is discarded. -	SetRecycler(f func(interface{})) - -	// SetTraceInfo sets the trace info for the trace. -	// This is currently unused. -	SetTraceInfo(traceID, spanID uint64) - -	// SetMaxEvents sets the maximum number of events that will be stored -	// in the trace. This has no effect if any events have already been -	// added to the trace. -	SetMaxEvents(m int) - -	// Finish declares that this trace is complete. -	// The trace should not be used after calling this method. -	Finish() -} - -type lazySprintf struct { -	format string -	a      []interface{} -} - -func (l *lazySprintf) String() string { -	return fmt.Sprintf(l.format, l.a...) -} - -// New returns a new Trace with the specified family and title. -func New(family, title string) Trace { -	tr := newTrace() -	tr.ref() -	tr.Family, tr.Title = family, title -	tr.Start = time.Now() -	tr.maxEvents = maxEventsPerTrace -	tr.events = tr.eventsBuf[:0] - -	activeMu.RLock() -	s := activeTraces[tr.Family] -	activeMu.RUnlock() -	if s == nil { -		activeMu.Lock() -		s = activeTraces[tr.Family] // check again -		if s == nil { -			s = new(traceSet) -			activeTraces[tr.Family] = s -		} -		activeMu.Unlock() -	} -	s.Add(tr) - -	// Trigger allocation of the completed trace structure for this family. -	// This will cause the family to be present in the request page during -	// the first trace of this family. We don't care about the return value, -	// nor is there any need for this to run inline, so we execute it in its -	// own goroutine, but only if the family isn't allocated yet. -	completedMu.RLock() -	if _, ok := completedTraces[tr.Family]; !ok { -		go allocFamily(tr.Family) -	} -	completedMu.RUnlock() - -	return tr -} - -func (tr *trace) Finish() { -	elapsed := time.Since(tr.Start) -	tr.mu.Lock() -	tr.Elapsed = elapsed -	tr.mu.Unlock() - -	if DebugUseAfterFinish { -		buf := make([]byte, 4<<10) // 4 KB should be enough -		n := runtime.Stack(buf, false) -		tr.finishStack = buf[:n] -	} - -	activeMu.RLock() -	m := activeTraces[tr.Family] -	activeMu.RUnlock() -	m.Remove(tr) - -	f := getFamily(tr.Family, true) -	tr.mu.RLock() // protects tr fields in Cond.match calls -	for _, b := range f.Buckets { -		if b.Cond.match(tr) { -			b.Add(tr) -		} -	} -	tr.mu.RUnlock() - -	// Add a sample of elapsed time as microseconds to the family's timeseries -	h := new(histogram) -	h.addMeasurement(elapsed.Nanoseconds() / 1e3) -	f.LatencyMu.Lock() -	f.Latency.Add(h) -	f.LatencyMu.Unlock() - -	tr.unref() // matches ref in New -} - -const ( -	bucketsPerFamily    = 9 -	tracesPerBucket     = 10 -	maxActiveTraces     = 20 // Maximum number of active traces to show. -	maxEventsPerTrace   = 10 -	numHistogramBuckets = 38 -) - -var ( -	// The active traces. -	activeMu     sync.RWMutex -	activeTraces = make(map[string]*traceSet) // family -> traces - -	// Families of completed traces. -	completedMu     sync.RWMutex -	completedTraces = make(map[string]*family) // family -> traces -) - -type traceSet struct { -	mu sync.RWMutex -	m  map[*trace]bool - -	// We could avoid the entire map scan in FirstN by having a slice of all the traces -	// ordered by start time, and an index into that from the trace struct, with a periodic -	// repack of the slice after enough traces finish; we could also use a skip list or similar. -	// However, that would shift some of the expense from /debug/requests time to RPC time, -	// which is probably the wrong trade-off. -} - -func (ts *traceSet) Len() int { -	ts.mu.RLock() -	defer ts.mu.RUnlock() -	return len(ts.m) -} - -func (ts *traceSet) Add(tr *trace) { -	ts.mu.Lock() -	if ts.m == nil { -		ts.m = make(map[*trace]bool) -	} -	ts.m[tr] = true -	ts.mu.Unlock() -} - -func (ts *traceSet) Remove(tr *trace) { -	ts.mu.Lock() -	delete(ts.m, tr) -	ts.mu.Unlock() -} - -// FirstN returns the first n traces ordered by time. -func (ts *traceSet) FirstN(n int) traceList { -	ts.mu.RLock() -	defer ts.mu.RUnlock() - -	if n > len(ts.m) { -		n = len(ts.m) -	} -	trl := make(traceList, 0, n) - -	// Fast path for when no selectivity is needed. -	if n == len(ts.m) { -		for tr := range ts.m { -			tr.ref() -			trl = append(trl, tr) -		} -		sort.Sort(trl) -		return trl -	} - -	// Pick the oldest n traces. -	// This is inefficient. See the comment in the traceSet struct. -	for tr := range ts.m { -		// Put the first n traces into trl in the order they occur. -		// When we have n, sort trl, and thereafter maintain its order. -		if len(trl) < n { -			tr.ref() -			trl = append(trl, tr) -			if len(trl) == n { -				// This is guaranteed to happen exactly once during this loop. -				sort.Sort(trl) -			} -			continue -		} -		if tr.Start.After(trl[n-1].Start) { -			continue -		} - -		// Find where to insert this one. -		tr.ref() -		i := sort.Search(n, func(i int) bool { return trl[i].Start.After(tr.Start) }) -		trl[n-1].unref() -		copy(trl[i+1:], trl[i:]) -		trl[i] = tr -	} - -	return trl -} - -func getActiveTraces(fam string) traceList { -	activeMu.RLock() -	s := activeTraces[fam] -	activeMu.RUnlock() -	if s == nil { -		return nil -	} -	return s.FirstN(maxActiveTraces) -} - -func getFamily(fam string, allocNew bool) *family { -	completedMu.RLock() -	f := completedTraces[fam] -	completedMu.RUnlock() -	if f == nil && allocNew { -		f = allocFamily(fam) -	} -	return f -} - -func allocFamily(fam string) *family { -	completedMu.Lock() -	defer completedMu.Unlock() -	f := completedTraces[fam] -	if f == nil { -		f = newFamily() -		completedTraces[fam] = f -	} -	return f -} - -// family represents a set of trace buckets and associated latency information. -type family struct { -	// traces may occur in multiple buckets. -	Buckets [bucketsPerFamily]*traceBucket - -	// latency time series -	LatencyMu sync.RWMutex -	Latency   *timeseries.MinuteHourSeries -} - -func newFamily() *family { -	return &family{ -		Buckets: [bucketsPerFamily]*traceBucket{ -			{Cond: minCond(0)}, -			{Cond: minCond(50 * time.Millisecond)}, -			{Cond: minCond(100 * time.Millisecond)}, -			{Cond: minCond(200 * time.Millisecond)}, -			{Cond: minCond(500 * time.Millisecond)}, -			{Cond: minCond(1 * time.Second)}, -			{Cond: minCond(10 * time.Second)}, -			{Cond: minCond(100 * time.Second)}, -			{Cond: errorCond{}}, -		}, -		Latency: timeseries.NewMinuteHourSeries(func() timeseries.Observable { return new(histogram) }), -	} -} - -// traceBucket represents a size-capped bucket of historic traces, -// along with a condition for a trace to belong to the bucket. -type traceBucket struct { -	Cond cond - -	// Ring buffer implementation of a fixed-size FIFO queue. -	mu     sync.RWMutex -	buf    [tracesPerBucket]*trace -	start  int // < tracesPerBucket -	length int // <= tracesPerBucket -} - -func (b *traceBucket) Add(tr *trace) { -	b.mu.Lock() -	defer b.mu.Unlock() - -	i := b.start + b.length -	if i >= tracesPerBucket { -		i -= tracesPerBucket -	} -	if b.length == tracesPerBucket { -		// "Remove" an element from the bucket. -		b.buf[i].unref() -		b.start++ -		if b.start == tracesPerBucket { -			b.start = 0 -		} -	} -	b.buf[i] = tr -	if b.length < tracesPerBucket { -		b.length++ -	} -	tr.ref() -} - -// Copy returns a copy of the traces in the bucket. -// If tracedOnly is true, only the traces with trace information will be returned. -// The logs will be ref'd before returning; the caller should call -// the Free method when it is done with them. -// TODO(dsymonds): keep track of traced requests in separate buckets. -func (b *traceBucket) Copy(tracedOnly bool) traceList { -	b.mu.RLock() -	defer b.mu.RUnlock() - -	trl := make(traceList, 0, b.length) -	for i, x := 0, b.start; i < b.length; i++ { -		tr := b.buf[x] -		if !tracedOnly || tr.spanID != 0 { -			tr.ref() -			trl = append(trl, tr) -		} -		x++ -		if x == b.length { -			x = 0 -		} -	} -	return trl -} - -func (b *traceBucket) Empty() bool { -	b.mu.RLock() -	defer b.mu.RUnlock() -	return b.length == 0 -} - -// cond represents a condition on a trace. -type cond interface { -	match(t *trace) bool -	String() string -} - -type minCond time.Duration - -func (m minCond) match(t *trace) bool { return t.Elapsed >= time.Duration(m) } -func (m minCond) String() string      { return fmt.Sprintf("≥%gs", time.Duration(m).Seconds()) } - -type errorCond struct{} - -func (e errorCond) match(t *trace) bool { return t.IsError } -func (e errorCond) String() string      { return "errors" } - -type traceList []*trace - -// Free calls unref on each element of the list. -func (trl traceList) Free() { -	for _, t := range trl { -		t.unref() -	} -} - -// traceList may be sorted in reverse chronological order. -func (trl traceList) Len() int           { return len(trl) } -func (trl traceList) Less(i, j int) bool { return trl[i].Start.After(trl[j].Start) } -func (trl traceList) Swap(i, j int)      { trl[i], trl[j] = trl[j], trl[i] } - -// An event is a timestamped log entry in a trace. -type event struct { -	When       time.Time -	Elapsed    time.Duration // since previous event in trace -	NewDay     bool          // whether this event is on a different day to the previous event -	Recyclable bool          // whether this event was passed via LazyLog -	Sensitive  bool          // whether this event contains sensitive information -	What       interface{}   // string or fmt.Stringer -} - -// WhenString returns a string representation of the elapsed time of the event. -// It will include the date if midnight was crossed. -func (e event) WhenString() string { -	if e.NewDay { -		return e.When.Format("2006/01/02 15:04:05.000000") -	} -	return e.When.Format("15:04:05.000000") -} - -// discarded represents a number of discarded events. -// It is stored as *discarded to make it easier to update in-place. -type discarded int - -func (d *discarded) String() string { -	return fmt.Sprintf("(%d events discarded)", int(*d)) -} - -// trace represents an active or complete request, -// either sent or received by this program. -type trace struct { -	// Family is the top-level grouping of traces to which this belongs. -	Family string - -	// Title is the title of this trace. -	Title string - -	// Start time of the this trace. -	Start time.Time - -	mu        sync.RWMutex -	events    []event // Append-only sequence of events (modulo discards). -	maxEvents int -	recycler  func(interface{}) -	IsError   bool          // Whether this trace resulted in an error. -	Elapsed   time.Duration // Elapsed time for this trace, zero while active. -	traceID   uint64        // Trace information if non-zero. -	spanID    uint64 - -	refs int32     // how many buckets this is in -	disc discarded // scratch space to avoid allocation - -	finishStack []byte // where finish was called, if DebugUseAfterFinish is set - -	eventsBuf [4]event // preallocated buffer in case we only log a few events -} - -func (tr *trace) reset() { -	// Clear all but the mutex. Mutexes may not be copied, even when unlocked. -	tr.Family = "" -	tr.Title = "" -	tr.Start = time.Time{} - -	tr.mu.Lock() -	tr.Elapsed = 0 -	tr.traceID = 0 -	tr.spanID = 0 -	tr.IsError = false -	tr.maxEvents = 0 -	tr.events = nil -	tr.recycler = nil -	tr.mu.Unlock() - -	tr.refs = 0 -	tr.disc = 0 -	tr.finishStack = nil -	for i := range tr.eventsBuf { -		tr.eventsBuf[i] = event{} -	} -} - -// delta returns the elapsed time since the last event or the trace start, -// and whether it spans midnight. -// L >= tr.mu -func (tr *trace) delta(t time.Time) (time.Duration, bool) { -	if len(tr.events) == 0 { -		return t.Sub(tr.Start), false -	} -	prev := tr.events[len(tr.events)-1].When -	return t.Sub(prev), prev.Day() != t.Day() -} - -func (tr *trace) addEvent(x interface{}, recyclable, sensitive bool) { -	if DebugUseAfterFinish && tr.finishStack != nil { -		buf := make([]byte, 4<<10) // 4 KB should be enough -		n := runtime.Stack(buf, false) -		log.Printf("net/trace: trace used after finish:\nFinished at:\n%s\nUsed at:\n%s", tr.finishStack, buf[:n]) -	} - -	/* -		NOTE TO DEBUGGERS - -		If you are here because your program panicked in this code, -		it is almost definitely the fault of code using this package, -		and very unlikely to be the fault of this code. - -		The most likely scenario is that some code elsewhere is using -		a trace.Trace after its Finish method is called. -		You can temporarily set the DebugUseAfterFinish var -		to help discover where that is; do not leave that var set, -		since it makes this package much less efficient. -	*/ - -	e := event{When: time.Now(), What: x, Recyclable: recyclable, Sensitive: sensitive} -	tr.mu.Lock() -	e.Elapsed, e.NewDay = tr.delta(e.When) -	if len(tr.events) < tr.maxEvents { -		tr.events = append(tr.events, e) -	} else { -		// Discard the middle events. -		di := int((tr.maxEvents - 1) / 2) -		if d, ok := tr.events[di].What.(*discarded); ok { -			(*d)++ -		} else { -			// disc starts at two to count for the event it is replacing, -			// plus the next one that we are about to drop. -			tr.disc = 2 -			if tr.recycler != nil && tr.events[di].Recyclable { -				go tr.recycler(tr.events[di].What) -			} -			tr.events[di].What = &tr.disc -		} -		// The timestamp of the discarded meta-event should be -		// the time of the last event it is representing. -		tr.events[di].When = tr.events[di+1].When - -		if tr.recycler != nil && tr.events[di+1].Recyclable { -			go tr.recycler(tr.events[di+1].What) -		} -		copy(tr.events[di+1:], tr.events[di+2:]) -		tr.events[tr.maxEvents-1] = e -	} -	tr.mu.Unlock() -} - -func (tr *trace) LazyLog(x fmt.Stringer, sensitive bool) { -	tr.addEvent(x, true, sensitive) -} - -func (tr *trace) LazyPrintf(format string, a ...interface{}) { -	tr.addEvent(&lazySprintf{format, a}, false, false) -} - -func (tr *trace) SetError() { -	tr.mu.Lock() -	tr.IsError = true -	tr.mu.Unlock() -} - -func (tr *trace) SetRecycler(f func(interface{})) { -	tr.mu.Lock() -	tr.recycler = f -	tr.mu.Unlock() -} - -func (tr *trace) SetTraceInfo(traceID, spanID uint64) { -	tr.mu.Lock() -	tr.traceID, tr.spanID = traceID, spanID -	tr.mu.Unlock() -} - -func (tr *trace) SetMaxEvents(m int) { -	tr.mu.Lock() -	// Always keep at least three events: first, discarded count, last. -	if len(tr.events) == 0 && m > 3 { -		tr.maxEvents = m -	} -	tr.mu.Unlock() -} - -func (tr *trace) ref() { -	atomic.AddInt32(&tr.refs, 1) -} - -func (tr *trace) unref() { -	if atomic.AddInt32(&tr.refs, -1) == 0 { -		tr.mu.RLock() -		if tr.recycler != nil { -			// freeTrace clears tr, so we hold tr.recycler and tr.events here. -			go func(f func(interface{}), es []event) { -				for _, e := range es { -					if e.Recyclable { -						f(e.What) -					} -				} -			}(tr.recycler, tr.events) -		} -		tr.mu.RUnlock() - -		freeTrace(tr) -	} -} - -func (tr *trace) When() string { -	return tr.Start.Format("2006/01/02 15:04:05.000000") -} - -func (tr *trace) ElapsedTime() string { -	tr.mu.RLock() -	t := tr.Elapsed -	tr.mu.RUnlock() - -	if t == 0 { -		// Active trace. -		t = time.Since(tr.Start) -	} -	return fmt.Sprintf("%.6f", t.Seconds()) -} - -func (tr *trace) Events() []event { -	tr.mu.RLock() -	defer tr.mu.RUnlock() -	return tr.events -} - -var traceFreeList = make(chan *trace, 1000) // TODO(dsymonds): Use sync.Pool? - -// newTrace returns a trace ready to use. -func newTrace() *trace { -	select { -	case tr := <-traceFreeList: -		return tr -	default: -		return new(trace) -	} -} - -// freeTrace adds tr to traceFreeList if there's room. -// This is non-blocking. -func freeTrace(tr *trace) { -	if DebugUseAfterFinish { -		return // never reuse -	} -	tr.reset() -	select { -	case traceFreeList <- tr: -	default: -	} -} - -func elapsed(d time.Duration) string { -	b := []byte(fmt.Sprintf("%.6f", d.Seconds())) - -	// For subsecond durations, blank all zeros before decimal point, -	// and all zeros between the decimal point and the first non-zero digit. -	if d < time.Second { -		dot := bytes.IndexByte(b, '.') -		for i := 0; i < dot; i++ { -			b[i] = ' ' -		} -		for i := dot + 1; i < len(b); i++ { -			if b[i] == '0' { -				b[i] = ' ' -			} else { -				break -			} -		} -	} - -	return string(b) -} - -var pageTmplCache *template.Template -var pageTmplOnce sync.Once - -func pageTmpl() *template.Template { -	pageTmplOnce.Do(func() { -		pageTmplCache = template.Must(template.New("Page").Funcs(template.FuncMap{ -			"elapsed": elapsed, -			"add":     func(a, b int) int { return a + b }, -		}).Parse(pageHTML)) -	}) -	return pageTmplCache -} - -const pageHTML = ` -{{template "Prolog" .}} -{{template "StatusTable" .}} -{{template "Epilog" .}} - -{{define "Prolog"}} -<html> -	<head> -	<title>/debug/requests</title> -	<style type="text/css"> -		body { -			font-family: sans-serif; -		} -		table#tr-status td.family { -			padding-right: 2em; -		} -		table#tr-status td.active { -			padding-right: 1em; -		} -		table#tr-status td.latency-first { -			padding-left: 1em; -		} -		table#tr-status td.empty { -			color: #aaa; -		} -		table#reqs { -			margin-top: 1em; -		} -		table#reqs tr.first { -			{{if $.Expanded}}font-weight: bold;{{end}} -		} -		table#reqs td { -			font-family: monospace; -		} -		table#reqs td.when { -			text-align: right; -			white-space: nowrap; -		} -		table#reqs td.elapsed { -			padding: 0 0.5em; -			text-align: right; -			white-space: pre; -			width: 10em; -		} -		address { -			font-size: smaller; -			margin-top: 5em; -		} -	</style> -	</head> -	<body> - -<h1>/debug/requests</h1> -{{end}} {{/* end of Prolog */}} - -{{define "StatusTable"}} -<table id="tr-status"> -	{{range $fam := .Families}} -	<tr> -		<td class="family">{{$fam}}</td> - -		{{$n := index $.ActiveTraceCount $fam}} -		<td class="active {{if not $n}}empty{{end}}"> -			{{if $n}}<a href="?fam={{$fam}}&b=-1{{if $.Expanded}}&exp=1{{end}}">{{end}} -			[{{$n}} active] -			{{if $n}}</a>{{end}} -		</td> - -		{{$f := index $.CompletedTraces $fam}} -		{{range $i, $b := $f.Buckets}} -		{{$empty := $b.Empty}} -		<td {{if $empty}}class="empty"{{end}}> -		{{if not $empty}}<a href="?fam={{$fam}}&b={{$i}}{{if $.Expanded}}&exp=1{{end}}">{{end}} -		[{{.Cond}}] -		{{if not $empty}}</a>{{end}} -		</td> -		{{end}} - -		{{$nb := len $f.Buckets}} -		<td class="latency-first"> -		<a href="?fam={{$fam}}&b={{$nb}}">[minute]</a> -		</td> -		<td> -		<a href="?fam={{$fam}}&b={{add $nb 1}}">[hour]</a> -		</td> -		<td> -		<a href="?fam={{$fam}}&b={{add $nb 2}}">[total]</a> -		</td> - -	</tr> -	{{end}} -</table> -{{end}} {{/* end of StatusTable */}} - -{{define "Epilog"}} -{{if $.Traces}} -<hr /> -<h3>Family: {{$.Family}}</h3> - -{{if or $.Expanded $.Traced}} -  <a href="?fam={{$.Family}}&b={{$.Bucket}}">[Normal/Summary]</a> -{{else}} -  [Normal/Summary] -{{end}} - -{{if or (not $.Expanded) $.Traced}} -  <a href="?fam={{$.Family}}&b={{$.Bucket}}&exp=1">[Normal/Expanded]</a> -{{else}} -  [Normal/Expanded] -{{end}} - -{{if not $.Active}} -	{{if or $.Expanded (not $.Traced)}} -	<a href="?fam={{$.Family}}&b={{$.Bucket}}&rtraced=1">[Traced/Summary]</a> -	{{else}} -	[Traced/Summary] -	{{end}} -	{{if or (not $.Expanded) (not $.Traced)}} -	<a href="?fam={{$.Family}}&b={{$.Bucket}}&exp=1&rtraced=1">[Traced/Expanded]</a> -        {{else}} -	[Traced/Expanded] -	{{end}} -{{end}} - -{{if $.Total}} -<p><em>Showing <b>{{len $.Traces}}</b> of <b>{{$.Total}}</b> traces.</em></p> -{{end}} - -<table id="reqs"> -	<caption> -		{{if $.Active}}Active{{else}}Completed{{end}} Requests -	</caption> -	<tr><th>When</th><th>Elapsed (s)</th></tr> -	{{range $tr := $.Traces}} -	<tr class="first"> -		<td class="when">{{$tr.When}}</td> -		<td class="elapsed">{{$tr.ElapsedTime}}</td> -		<td>{{$tr.Title}}</td> -		{{/* TODO: include traceID/spanID */}} -	</tr> -	{{if $.Expanded}} -	{{range $tr.Events}} -	<tr> -		<td class="when">{{.WhenString}}</td> -		<td class="elapsed">{{elapsed .Elapsed}}</td> -		<td>{{if or $.ShowSensitive (not .Sensitive)}}... {{.What}}{{else}}<em>[redacted]</em>{{end}}</td> -	</tr> -	{{end}} -	{{end}} -	{{end}} -</table> -{{end}} {{/* if $.Traces */}} - -{{if $.Histogram}} -<h4>Latency (µs) of {{$.Family}} over {{$.HistogramWindow}}</h4> -{{$.Histogram}} -{{end}} {{/* if $.Histogram */}} - -	</body> -</html> -{{end}} {{/* end of Epilog */}} -`  | 
