ERC-20
Overview
Max Total Supply
1,000 404WHEELS
Holders
142
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10 404WHEELSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DN404ByBakery
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** This DN-404 was deployed with 404 Bakery, learn more here: https://bakeyour404.com/ V3 */ //LibString.sol pragma solidity ^0.8.4; /// @notice Library for converting numbers into strings and other string operations. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibString.sol) /// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/LibString.sol) /// /// @dev Note: /// For performance and bytecode compactness, most of the string operations are restricted to /// byte strings (7-bit ASCII), except where otherwise specified. /// Usage of byte string operations on charsets with runes spanning two or more bytes /// can lead to undefined behavior. library LibString { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The length of the output is too small to contain all the hex digits. error HexLengthInsufficient(); /// @dev The length of the string is more than 32 bytes. error TooBigForSmallString(); /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CONSTANTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The constant returned when the `search` is not found in the string. uint256 internal constant NOT_FOUND = type(uint256).max; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* DECIMAL OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the base 10 decimal representation of `value`. function toString(uint256 value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, add(str, 0x20)) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str let w := not(0) // Tsk. // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let temp := value } 1 {} { str := add(str, w) // `sub(str, 1)`. // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } /// @dev Returns the base 10 decimal representation of `value`. function toString(int256 value) internal pure returns (string memory str) { if (value >= 0) { return toString(uint256(value)); } unchecked { str = toString(~uint256(value) + 1); } /// @solidity memory-safe-assembly assembly { // We still have some spare memory space on the left, // as we have allocated 3 words (96 bytes) for up to 78 digits. let length := mload(str) // Load the string length. mstore(str, 0x2d) // Store the '-' character. str := sub(str, 1) // Move back the string pointer by a byte. mstore(str, add(length, 1)) // Update the string length. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* HEXADECIMAL OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the hexadecimal representation of `value`, /// left-padded to an input length of `length` bytes. /// The output is prefixed with "0x" encoded using 2 hexadecimal digits per byte, /// giving a total length of `length * 2 + 2` bytes. /// Reverts if `length` is too small for the output to contain all the digits. function toHexString(uint256 value, uint256 length) internal pure returns (string memory str) { str = toHexStringNoPrefix(value, length); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`, /// left-padded to an input length of `length` bytes. /// The output is prefixed with "0x" encoded using 2 hexadecimal digits per byte, /// giving a total length of `length * 2` bytes. /// Reverts if `length` is too small for the output to contain all the digits. function toHexStringNoPrefix(uint256 value, uint256 length) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { // We need 0x20 bytes for the trailing zeros padding, `length * 2` bytes // for the digits, 0x02 bytes for the prefix, and 0x20 bytes for the length. // We add 0x20 to the total and round down to a multiple of 0x20. // (0x20 + 0x20 + 0x02 + 0x20) = 0x62. str := add(mload(0x40), and(add(shl(1, length), 0x42), not(0x1f))) // Allocate the memory. mstore(0x40, add(str, 0x20)) // Zeroize the slot after the string. mstore(str, 0) // Cache the end to calculate the length later. let end := str // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let start := sub(str, add(length, length)) let w := not(1) // Tsk. let temp := value // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for {} 1 {} { str := add(str, w) // `sub(str, 2)`. mstore8(add(str, 1), mload(and(temp, 15))) mstore8(str, mload(and(shr(4, temp), 15))) temp := shr(8, temp) if iszero(xor(str, start)) { break } } if temp { mstore(0x00, 0x2194895a) // `HexLengthInsufficient()`. revert(0x1c, 0x04) } // Compute the string's length. let strLength := sub(end, str) // Move the pointer and write the length. str := sub(str, 0x20) mstore(str, strLength) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x" and encoded using 2 hexadecimal digits per byte. /// As address are 20 bytes long, the output will left-padded to have /// a length of `20 * 2 + 2` bytes. function toHexString(uint256 value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x". /// The output excludes leading "0" from the `toHexString` output. /// `0x00: "0x0", 0x01: "0x1", 0x12: "0x12", 0x123: "0x123"`. function toMinimalHexString(uint256 value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let o := eq(byte(0, mload(add(str, 0x20))), 0x30) // Whether leading zero is present. let strLength := add(mload(str), 2) // Compute the length. mstore(add(str, o), 0x3078) // Write the "0x" prefix, accounting for leading zero. str := sub(add(str, o), 2) // Move the pointer, accounting for leading zero. mstore(str, sub(strLength, o)) // Write the length, accounting for leading zero. } } /// @dev Returns the hexadecimal representation of `value`. /// The output excludes leading "0" from the `toHexStringNoPrefix` output. /// `0x00: "0", 0x01: "1", 0x12: "12", 0x123: "123"`. function toMinimalHexStringNoPrefix(uint256 value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let o := eq(byte(0, mload(add(str, 0x20))), 0x30) // Whether leading zero is present. let strLength := mload(str) // Get the length. str := add(str, o) // Move the pointer, accounting for leading zero. mstore(str, sub(strLength, o)) // Write the length, accounting for leading zero. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is encoded using 2 hexadecimal digits per byte. /// As address are 20 bytes long, the output will left-padded to have /// a length of `20 * 2` bytes. function toHexStringNoPrefix(uint256 value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { // We need 0x20 bytes for the trailing zeros padding, 0x20 bytes for the length, // 0x02 bytes for the prefix, and 0x40 bytes for the digits. // The next multiple of 0x20 above (0x20 + 0x20 + 0x02 + 0x40) is 0xa0. str := add(mload(0x40), 0x80) // Allocate the memory. mstore(0x40, add(str, 0x20)) // Zeroize the slot after the string. mstore(str, 0) // Cache the end to calculate the length later. let end := str // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let w := not(1) // Tsk. // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let temp := value } 1 {} { str := add(str, w) // `sub(str, 2)`. mstore8(add(str, 1), mload(and(temp, 15))) mstore8(str, mload(and(shr(4, temp), 15))) temp := shr(8, temp) if iszero(temp) { break } } // Compute the string's length. let strLength := sub(end, str) // Move the pointer and write the length. str := sub(str, 0x20) mstore(str, strLength) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x", encoded using 2 hexadecimal digits per byte, /// and the alphabets are capitalized conditionally according to /// https://eips.ethereum.org/EIPS/eip-55 function toHexStringChecksummed(address value) internal pure returns (string memory str) { str = toHexString(value); /// @solidity memory-safe-assembly assembly { let mask := shl(6, div(not(0), 255)) // `0b010000000100000000 ...` let o := add(str, 0x22) let hashed := and(keccak256(o, 40), mul(34, mask)) // `0b10001000 ... ` let t := shl(240, 136) // `0b10001000 << 240` for { let i := 0 } 1 {} { mstore(add(i, i), mul(t, byte(i, hashed))) i := add(i, 1) if eq(i, 20) { break } } mstore(o, xor(mload(o), shr(1, and(mload(0x00), and(mload(o), mask))))) o := add(o, 0x20) mstore(o, xor(mload(o), shr(1, and(mload(0x20), and(mload(o), mask))))) } } /// @dev Returns the hexadecimal representation of `value`. /// The output is prefixed with "0x" and encoded using 2 hexadecimal digits per byte. function toHexString(address value) internal pure returns (string memory str) { str = toHexStringNoPrefix(value); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hexadecimal representation of `value`. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(address value) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { str := mload(0x40) // Allocate the memory. // We need 0x20 bytes for the trailing zeros padding, 0x20 bytes for the length, // 0x02 bytes for the prefix, and 0x28 bytes for the digits. // The next multiple of 0x20 above (0x20 + 0x20 + 0x02 + 0x28) is 0x80. mstore(0x40, add(str, 0x80)) // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) str := add(str, 2) mstore(str, 40) let o := add(str, 0x20) mstore(add(o, 40), 0) value := shl(96, value) // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. for { let i := 0 } 1 {} { let p := add(o, add(i, i)) let temp := byte(i, value) mstore8(add(p, 1), mload(and(temp, 15))) mstore8(p, mload(shr(4, temp))) i := add(i, 1) if eq(i, 20) { break } } } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexString(bytes memory raw) internal pure returns (string memory str) { str = toHexStringNoPrefix(raw); /// @solidity memory-safe-assembly assembly { let strLength := add(mload(str), 2) // Compute the length. mstore(str, 0x3078) // Write the "0x" prefix. str := sub(str, 2) // Move the pointer. mstore(str, strLength) // Write the length. } } /// @dev Returns the hex encoded string from the raw bytes. /// The output is encoded using 2 hexadecimal digits per byte. function toHexStringNoPrefix(bytes memory raw) internal pure returns (string memory str) { /// @solidity memory-safe-assembly assembly { let length := mload(raw) str := add(mload(0x40), 2) // Skip 2 bytes for the optional prefix. mstore(str, add(length, length)) // Store the length of the output. // Store "0123456789abcdef" in scratch space. mstore(0x0f, 0x30313233343536373839616263646566) let o := add(str, 0x20) let end := add(raw, length) for {} iszero(eq(raw, end)) {} { raw := add(raw, 1) mstore8(add(o, 1), mload(and(mload(raw), 15))) mstore8(o, mload(and(shr(4, mload(raw)), 15))) o := add(o, 2) } mstore(o, 0) // Zeroize the slot after the string. mstore(0x40, add(o, 0x20)) // Allocate the memory. } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* RUNE STRING OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the number of UTF characters in the string. function runeCount(string memory s) internal pure returns (uint256 result) { /// @solidity memory-safe-assembly assembly { if mload(s) { mstore(0x00, div(not(0), 255)) mstore(0x20, 0x0202020202020202020202020202020202020202020202020303030304040506) let o := add(s, 0x20) let end := add(o, mload(s)) for { result := 1 } 1 { result := add(result, 1) } { o := add(o, byte(0, mload(shr(250, mload(o))))) if iszero(lt(o, end)) { break } } } } } /// @dev Returns if this string is a 7-bit ASCII string. /// (i.e. all characters codes are in [0..127]) function is7BitASCII(string memory s) internal pure returns (bool result) { /// @solidity memory-safe-assembly assembly { let mask := shl(7, div(not(0), 255)) result := 1 let n := mload(s) if n { let o := add(s, 0x20) let end := add(o, n) let last := mload(end) mstore(end, 0) for {} 1 {} { if and(mask, mload(o)) { result := 0 break } o := add(o, 0x20) if iszero(lt(o, end)) { break } } mstore(end, last) } } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* BYTE STRING OPERATIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ // For performance and bytecode compactness, byte string operations are restricted // to 7-bit ASCII strings. All offsets are byte offsets, not UTF character offsets. // Usage of byte string operations on charsets with runes spanning two or more bytes // can lead to undefined behavior. /// @dev Returns `subject` all occurrences of `search` replaced with `replacement`. function replace(string memory subject, string memory search, string memory replacement) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let subjectLength := mload(subject) let searchLength := mload(search) let replacementLength := mload(replacement) subject := add(subject, 0x20) search := add(search, 0x20) replacement := add(replacement, 0x20) result := add(mload(0x40), 0x20) let subjectEnd := add(subject, subjectLength) if iszero(gt(searchLength, subjectLength)) { let subjectSearchEnd := add(sub(subjectEnd, searchLength), 1) let h := 0 if iszero(lt(searchLength, 0x20)) { h := keccak256(search, searchLength) } let m := shl(3, sub(0x20, and(searchLength, 0x1f))) let s := mload(search) for {} 1 {} { let t := mload(subject) // Whether the first `searchLength % 32` bytes of // `subject` and `search` matches. if iszero(shr(m, xor(t, s))) { if h { if iszero(eq(keccak256(subject, searchLength), h)) { mstore(result, t) result := add(result, 1) subject := add(subject, 1) if iszero(lt(subject, subjectSearchEnd)) { break } continue } } // Copy the `replacement` one word at a time. for { let o := 0 } 1 {} { mstore(add(result, o), mload(add(replacement, o))) o := add(o, 0x20) if iszero(lt(o, replacementLength)) { break } } result := add(result, replacementLength) subject := add(subject, searchLength) if searchLength { if iszero(lt(subject, subjectSearchEnd)) { break } continue } } mstore(result, t) result := add(result, 1) subject := add(subject, 1) if iszero(lt(subject, subjectSearchEnd)) { break } } } let resultRemainder := result result := add(mload(0x40), 0x20) let k := add(sub(resultRemainder, result), sub(subjectEnd, subject)) // Copy the rest of the string one word at a time. for {} lt(subject, subjectEnd) {} { mstore(resultRemainder, mload(subject)) resultRemainder := add(resultRemainder, 0x20) subject := add(subject, 0x20) } result := sub(result, 0x20) let last := add(add(result, 0x20), k) // Zeroize the slot after the string. mstore(last, 0) mstore(0x40, add(last, 0x20)) // Allocate the memory. mstore(result, k) // Store the length. } } /// @dev Returns the byte index of the first location of `search` in `subject`, /// searching from left to right, starting from `from`. /// Returns `NOT_FOUND` (i.e. `type(uint256).max`) if the `search` is not found. function indexOf(string memory subject, string memory search, uint256 from) internal pure returns (uint256 result) { /// @solidity memory-safe-assembly assembly { for { let subjectLength := mload(subject) } 1 {} { if iszero(mload(search)) { if iszero(gt(from, subjectLength)) { result := from break } result := subjectLength break } let searchLength := mload(search) let subjectStart := add(subject, 0x20) result := not(0) // Initialize to `NOT_FOUND`. subject := add(subjectStart, from) let end := add(sub(add(subjectStart, subjectLength), searchLength), 1) let m := shl(3, sub(0x20, and(searchLength, 0x1f))) let s := mload(add(search, 0x20)) if iszero(and(lt(subject, end), lt(from, subjectLength))) { break } if iszero(lt(searchLength, 0x20)) { for { let h := keccak256(add(search, 0x20), searchLength) } 1 {} { if iszero(shr(m, xor(mload(subject), s))) { if eq(keccak256(subject, searchLength), h) { result := sub(subject, subjectStart) break } } subject := add(subject, 1) if iszero(lt(subject, end)) { break } } break } for {} 1 {} { if iszero(shr(m, xor(mload(subject), s))) { result := sub(subject, subjectStart) break } subject := add(subject, 1) if iszero(lt(subject, end)) { break } } break } } } /// @dev Returns the byte index of the first location of `search` in `subject`, /// searching from left to right. /// Returns `NOT_FOUND` (i.e. `type(uint256).max`) if the `search` is not found. function indexOf(string memory subject, string memory search) internal pure returns (uint256 result) { result = indexOf(subject, search, 0); } /// @dev Returns the byte index of the first location of `search` in `subject`, /// searching from right to left, starting from `from`. /// Returns `NOT_FOUND` (i.e. `type(uint256).max`) if the `search` is not found. function lastIndexOf(string memory subject, string memory search, uint256 from) internal pure returns (uint256 result) { /// @solidity memory-safe-assembly assembly { for {} 1 {} { result := not(0) // Initialize to `NOT_FOUND`. let searchLength := mload(search) if gt(searchLength, mload(subject)) { break } let w := result let fromMax := sub(mload(subject), searchLength) if iszero(gt(fromMax, from)) { from := fromMax } let end := add(add(subject, 0x20), w) subject := add(add(subject, 0x20), from) if iszero(gt(subject, end)) { break } // As this function is not too often used, // we shall simply use keccak256 for smaller bytecode size. for { let h := keccak256(add(search, 0x20), searchLength) } 1 {} { if eq(keccak256(subject, searchLength), h) { result := sub(subject, add(end, 1)) break } subject := add(subject, w) // `sub(subject, 1)`. if iszero(gt(subject, end)) { break } } break } } } /// @dev Returns the byte index of the first location of `search` in `subject`, /// searching from right to left. /// Returns `NOT_FOUND` (i.e. `type(uint256).max`) if the `search` is not found. function lastIndexOf(string memory subject, string memory search) internal pure returns (uint256 result) { result = lastIndexOf(subject, search, uint256(int256(-1))); } /// @dev Returns true if `search` is found in `subject`, false otherwise. function contains(string memory subject, string memory search) internal pure returns (bool) { return indexOf(subject, search) != NOT_FOUND; } /// @dev Returns whether `subject` starts with `search`. function startsWith(string memory subject, string memory search) internal pure returns (bool result) { /// @solidity memory-safe-assembly assembly { let searchLength := mload(search) // Just using keccak256 directly is actually cheaper. // forgefmt: disable-next-item result := and( iszero(gt(searchLength, mload(subject))), eq( keccak256(add(subject, 0x20), searchLength), keccak256(add(search, 0x20), searchLength) ) ) } } /// @dev Returns whether `subject` ends with `search`. function endsWith(string memory subject, string memory search) internal pure returns (bool result) { /// @solidity memory-safe-assembly assembly { let searchLength := mload(search) let subjectLength := mload(subject) // Whether `search` is not longer than `subject`. let withinRange := iszero(gt(searchLength, subjectLength)) // Just using keccak256 directly is actually cheaper. // forgefmt: disable-next-item result := and( withinRange, eq( keccak256( // `subject + 0x20 + max(subjectLength - searchLength, 0)`. add(add(subject, 0x20), mul(withinRange, sub(subjectLength, searchLength))), searchLength ), keccak256(add(search, 0x20), searchLength) ) ) } } /// @dev Returns `subject` repeated `times`. function repeat(string memory subject, uint256 times) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let subjectLength := mload(subject) if iszero(or(iszero(times), iszero(subjectLength))) { subject := add(subject, 0x20) result := mload(0x40) let output := add(result, 0x20) for {} 1 {} { // Copy the `subject` one word at a time. for { let o := 0 } 1 {} { mstore(add(output, o), mload(add(subject, o))) o := add(o, 0x20) if iszero(lt(o, subjectLength)) { break } } output := add(output, subjectLength) times := sub(times, 1) if iszero(times) { break } } mstore(output, 0) // Zeroize the slot after the string. let resultLength := sub(output, add(result, 0x20)) mstore(result, resultLength) // Store the length. // Allocate the memory. mstore(0x40, add(result, add(resultLength, 0x20))) } } } /// @dev Returns a copy of `subject` sliced from `start` to `end` (exclusive). /// `start` and `end` are byte offsets. function slice(string memory subject, uint256 start, uint256 end) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let subjectLength := mload(subject) if iszero(gt(subjectLength, end)) { end := subjectLength } if iszero(gt(subjectLength, start)) { start := subjectLength } if lt(start, end) { result := mload(0x40) let resultLength := sub(end, start) mstore(result, resultLength) subject := add(subject, start) let w := not(0x1f) // Copy the `subject` one word at a time, backwards. for { let o := and(add(resultLength, 0x1f), w) } 1 {} { mstore(add(result, o), mload(add(subject, o))) o := add(o, w) // `sub(o, 0x20)`. if iszero(o) { break } } // Zeroize the slot after the string. mstore(add(add(result, 0x20), resultLength), 0) // Allocate memory for the length and the bytes, // rounded up to a multiple of 32. mstore(0x40, add(result, and(add(resultLength, 0x3f), w))) } } } /// @dev Returns a copy of `subject` sliced from `start` to the end of the string. /// `start` is a byte offset. function slice(string memory subject, uint256 start) internal pure returns (string memory result) { result = slice(subject, start, uint256(int256(-1))); } /// @dev Returns all the indices of `search` in `subject`. /// The indices are byte offsets. function indicesOf(string memory subject, string memory search) internal pure returns (uint256[] memory result) { /// @solidity memory-safe-assembly assembly { let subjectLength := mload(subject) let searchLength := mload(search) if iszero(gt(searchLength, subjectLength)) { subject := add(subject, 0x20) search := add(search, 0x20) result := add(mload(0x40), 0x20) let subjectStart := subject let subjectSearchEnd := add(sub(add(subject, subjectLength), searchLength), 1) let h := 0 if iszero(lt(searchLength, 0x20)) { h := keccak256(search, searchLength) } let m := shl(3, sub(0x20, and(searchLength, 0x1f))) let s := mload(search) for {} 1 {} { let t := mload(subject) // Whether the first `searchLength % 32` bytes of // `subject` and `search` matches. if iszero(shr(m, xor(t, s))) { if h { if iszero(eq(keccak256(subject, searchLength), h)) { subject := add(subject, 1) if iszero(lt(subject, subjectSearchEnd)) { break } continue } } // Append to `result`. mstore(result, sub(subject, subjectStart)) result := add(result, 0x20) // Advance `subject` by `searchLength`. subject := add(subject, searchLength) if searchLength { if iszero(lt(subject, subjectSearchEnd)) { break } continue } } subject := add(subject, 1) if iszero(lt(subject, subjectSearchEnd)) { break } } let resultEnd := result // Assign `result` to the free memory pointer. result := mload(0x40) // Store the length of `result`. mstore(result, shr(5, sub(resultEnd, add(result, 0x20)))) // Allocate memory for result. // We allocate one more word, so this array can be recycled for {split}. mstore(0x40, add(resultEnd, 0x20)) } } } /// @dev Returns a arrays of strings based on the `delimiter` inside of the `subject` string. function split(string memory subject, string memory delimiter) internal pure returns (string[] memory result) { uint256[] memory indices = indicesOf(subject, delimiter); /// @solidity memory-safe-assembly assembly { let w := not(0x1f) let indexPtr := add(indices, 0x20) let indicesEnd := add(indexPtr, shl(5, add(mload(indices), 1))) mstore(add(indicesEnd, w), mload(subject)) mstore(indices, add(mload(indices), 1)) let prevIndex := 0 for {} 1 {} { let index := mload(indexPtr) mstore(indexPtr, 0x60) if iszero(eq(index, prevIndex)) { let element := mload(0x40) let elementLength := sub(index, prevIndex) mstore(element, elementLength) // Copy the `subject` one word at a time, backwards. for { let o := and(add(elementLength, 0x1f), w) } 1 {} { mstore(add(element, o), mload(add(add(subject, prevIndex), o))) o := add(o, w) // `sub(o, 0x20)`. if iszero(o) { break } } // Zeroize the slot after the string. mstore(add(add(element, 0x20), elementLength), 0) // Allocate memory for the length and the bytes, // rounded up to a multiple of 32. mstore(0x40, add(element, and(add(elementLength, 0x3f), w))) // Store the `element` into the array. mstore(indexPtr, element) } prevIndex := add(index, mload(delimiter)) indexPtr := add(indexPtr, 0x20) if iszero(lt(indexPtr, indicesEnd)) { break } } result := indices if iszero(mload(delimiter)) { result := add(indices, 0x20) mstore(result, sub(mload(indices), 2)) } } } /// @dev Returns a concatenated string of `a` and `b`. /// Cheaper than `string.concat()` and does not de-align the free memory pointer. function concat(string memory a, string memory b) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let w := not(0x1f) result := mload(0x40) let aLength := mload(a) // Copy `a` one word at a time, backwards. for { let o := and(add(aLength, 0x20), w) } 1 {} { mstore(add(result, o), mload(add(a, o))) o := add(o, w) // `sub(o, 0x20)`. if iszero(o) { break } } let bLength := mload(b) let output := add(result, aLength) // Copy `b` one word at a time, backwards. for { let o := and(add(bLength, 0x20), w) } 1 {} { mstore(add(output, o), mload(add(b, o))) o := add(o, w) // `sub(o, 0x20)`. if iszero(o) { break } } let totalLength := add(aLength, bLength) let last := add(add(result, 0x20), totalLength) // Zeroize the slot after the string. mstore(last, 0) // Stores the length. mstore(result, totalLength) // Allocate memory for the length and the bytes, // rounded up to a multiple of 32. mstore(0x40, and(add(last, 0x1f), w)) } } /// @dev Returns a copy of the string in either lowercase or UPPERCASE. /// WARNING! This function is only compatible with 7-bit ASCII strings. function toCase(string memory subject, bool toUpper) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let length := mload(subject) if length { result := add(mload(0x40), 0x20) subject := add(subject, 1) let flags := shl(add(70, shl(5, toUpper)), 0x3ffffff) let w := not(0) for { let o := length } 1 {} { o := add(o, w) let b := and(0xff, mload(add(subject, o))) mstore8(add(result, o), xor(b, and(shr(b, flags), 0x20))) if iszero(o) { break } } result := mload(0x40) mstore(result, length) // Store the length. let last := add(add(result, 0x20), length) mstore(last, 0) // Zeroize the slot after the string. mstore(0x40, add(last, 0x20)) // Allocate the memory. } } } /// @dev Returns a string from a small bytes32 string. /// `s` must be null-terminated, or behavior will be undefined. function fromSmallString(bytes32 s) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { result := mload(0x40) let n := 0 for {} byte(n, s) { n := add(n, 1) } {} // Scan for '\0'. mstore(result, n) let o := add(result, 0x20) mstore(o, s) mstore(add(o, n), 0) mstore(0x40, add(result, 0x40)) } } /// @dev Returns the small string, with all bytes after the first null byte zeroized. function normalizeSmallString(bytes32 s) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { for {} byte(result, s) { result := add(result, 1) } {} // Scan for '\0'. mstore(0x00, s) mstore(result, 0x00) result := mload(0x00) } } /// @dev Returns the string as a normalized null-terminated small string. function toSmallString(string memory s) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { result := mload(s) if iszero(lt(result, 33)) { mstore(0x00, 0xec92f9a3) // `TooBigForSmallString()`. revert(0x1c, 0x04) } result := shl(shl(3, sub(32, result)), mload(add(s, result))) } } /// @dev Returns a lowercased copy of the string. /// WARNING! This function is only compatible with 7-bit ASCII strings. function lower(string memory subject) internal pure returns (string memory result) { result = toCase(subject, false); } /// @dev Returns an UPPERCASED copy of the string. /// WARNING! This function is only compatible with 7-bit ASCII strings. function upper(string memory subject) internal pure returns (string memory result) { result = toCase(subject, true); } /// @dev Escapes the string to be used within HTML tags. function escapeHTML(string memory s) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let end := add(s, mload(s)) result := add(mload(0x40), 0x20) // Store the bytes of the packed offsets and strides into the scratch space. // `packed = (stride << 5) | offset`. Max offset is 20. Max stride is 6. mstore(0x1f, 0x900094) mstore(0x08, 0xc0000000a6ab) // Store ""&'<>" into the scratch space. mstore(0x00, shl(64, 0x2671756f743b26616d703b262333393b266c743b2667743b)) for {} iszero(eq(s, end)) {} { s := add(s, 1) let c := and(mload(s), 0xff) // Not in `["\"","'","&","<",">"]`. if iszero(and(shl(c, 1), 0x500000c400000000)) { mstore8(result, c) result := add(result, 1) continue } let t := shr(248, mload(c)) mstore(result, mload(and(t, 0x1f))) result := add(result, shr(5, t)) } let last := result mstore(last, 0) // Zeroize the slot after the string. result := mload(0x40) mstore(result, sub(last, add(result, 0x20))) // Store the length. mstore(0x40, add(last, 0x20)) // Allocate the memory. } } /// @dev Escapes the string to be used within double-quotes in a JSON. /// If `addDoubleQuotes` is true, the result will be enclosed in double-quotes. function escapeJSON(string memory s, bool addDoubleQuotes) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { let end := add(s, mload(s)) result := add(mload(0x40), 0x20) if addDoubleQuotes { mstore8(result, 34) result := add(1, result) } // Store "\\u0000" in scratch space. // Store "0123456789abcdef" in scratch space. // Also, store `{0x08:"b", 0x09:"t", 0x0a:"n", 0x0c:"f", 0x0d:"r"}`. // into the scratch space. mstore(0x15, 0x5c75303030303031323334353637383961626364656662746e006672) // Bitmask for detecting `["\"","\\"]`. let e := or(shl(0x22, 1), shl(0x5c, 1)) for {} iszero(eq(s, end)) {} { s := add(s, 1) let c := and(mload(s), 0xff) if iszero(lt(c, 0x20)) { if iszero(and(shl(c, 1), e)) { // Not in `["\"","\\"]`. mstore8(result, c) result := add(result, 1) continue } mstore8(result, 0x5c) // "\\". mstore8(add(result, 1), c) result := add(result, 2) continue } if iszero(and(shl(c, 1), 0x3700)) { // Not in `["\b","\t","\n","\f","\d"]`. mstore8(0x1d, mload(shr(4, c))) // Hex value. mstore8(0x1e, mload(and(c, 15))) // Hex value. mstore(result, mload(0x19)) // "\\u00XX". result := add(result, 6) continue } mstore8(result, 0x5c) // "\\". mstore8(add(result, 1), mload(add(c, 8))) result := add(result, 2) } if addDoubleQuotes { mstore8(result, 34) result := add(1, result) } let last := result mstore(last, 0) // Zeroize the slot after the string. result := mload(0x40) mstore(result, sub(last, add(result, 0x20))) // Store the length. mstore(0x40, add(last, 0x20)) // Allocate the memory. } } /// @dev Escapes the string to be used within double-quotes in a JSON. function escapeJSON(string memory s) internal pure returns (string memory result) { result = escapeJSON(s, false); } /// @dev Returns whether `a` equals `b`. function eq(string memory a, string memory b) internal pure returns (bool result) { /// @solidity memory-safe-assembly assembly { result := eq(keccak256(add(a, 0x20), mload(a)), keccak256(add(b, 0x20), mload(b))) } } /// @dev Returns whether `a` equals `b`, where `b` is a null-terminated small string. function eqs(string memory a, bytes32 b) internal pure returns (bool result) { /// @solidity memory-safe-assembly assembly { // These should be evaluated on compile time, as far as possible. let m := not(shl(7, div(not(iszero(b)), 255))) // `0x7f7f ...`. let x := not(or(m, or(b, add(m, and(b, m))))) let r := shl(7, iszero(iszero(shr(128, x)))) r := or(r, shl(6, iszero(iszero(shr(64, shr(r, x)))))) r := or(r, shl(5, lt(0xffffffff, shr(r, x)))) r := or(r, shl(4, lt(0xffff, shr(r, x)))) r := or(r, shl(3, lt(0xff, shr(r, x)))) // forgefmt: disable-next-item result := gt(eq(mload(a), add(iszero(x), xor(31, shr(3, r)))), xor(shr(add(8, r), b), shr(add(8, r), mload(add(a, 0x20))))) } } /// @dev Packs a single string with its length into a single word. /// Returns `bytes32(0)` if the length is zero or greater than 31. function packOne(string memory a) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { // We don't need to zero right pad the string, // since this is our own custom non-standard packing scheme. result := mul( // Load the length and the bytes. mload(add(a, 0x1f)), // `length != 0 && length < 32`. Abuses underflow. // Assumes that the length is valid and within the block gas limit. lt(sub(mload(a), 1), 0x1f) ) } } /// @dev Unpacks a string packed using {packOne}. /// Returns the empty string if `packed` is `bytes32(0)`. /// If `packed` is not an output of {packOne}, the output behavior is undefined. function unpackOne(bytes32 packed) internal pure returns (string memory result) { /// @solidity memory-safe-assembly assembly { // Grab the free memory pointer. result := mload(0x40) // Allocate 2 words (1 for the length, 1 for the bytes). mstore(0x40, add(result, 0x40)) // Zeroize the length slot. mstore(result, 0) // Store the length and bytes. mstore(add(result, 0x1f), packed) // Right pad with zeroes. mstore(add(add(result, 0x20), mload(result)), 0) } } /// @dev Packs two strings with their lengths into a single word. /// Returns `bytes32(0)` if combined length is zero or greater than 30. function packTwo(string memory a, string memory b) internal pure returns (bytes32 result) { /// @solidity memory-safe-assembly assembly { let aLength := mload(a) // We don't need to zero right pad the strings, // since this is our own custom non-standard packing scheme. result := mul( // Load the length and the bytes of `a` and `b`. or( shl(shl(3, sub(0x1f, aLength)), mload(add(a, aLength))), mload(sub(add(b, 0x1e), aLength)) ), // `totalLength != 0 && totalLength < 31`. Abuses underflow. // Assumes that the lengths are valid and within the block gas limit. lt(sub(add(aLength, mload(b)), 1), 0x1e) ) } } /// @dev Unpacks strings packed using {packTwo}. /// Returns the empty strings if `packed` is `bytes32(0)`. /// If `packed` is not an output of {packTwo}, the output behavior is undefined. function unpackTwo(bytes32 packed) internal pure returns (string memory resultA, string memory resultB) { /// @solidity memory-safe-assembly assembly { // Grab the free memory pointer. resultA := mload(0x40) resultB := add(resultA, 0x40) // Allocate 2 words for each string (1 for the length, 1 for the byte). Total 4 words. mstore(0x40, add(resultB, 0x40)) // Zeroize the length slots. mstore(resultA, 0) mstore(resultB, 0) // Store the lengths and bytes. mstore(add(resultA, 0x1f), packed) mstore(add(resultB, 0x1f), mload(add(add(resultA, 0x20), mload(resultA)))) // Right pad with zeroes. mstore(add(add(resultA, 0x20), mload(resultA)), 0) mstore(add(add(resultB, 0x20), mload(resultB)), 0) } } /// @dev Directly returns `a` without copying. function directReturn(string memory a) internal pure { assembly { // Assumes that the string does not start from the scratch space. let retStart := sub(a, 0x20) let retSize := add(mload(a), 0x40) // Right pad with zeroes. Just in case the string is produced // by a method that doesn't zero right pad. mstore(add(retStart, retSize), 0) // Store the return offset. mstore(retStart, 0x20) // End the transaction, returning the string. return(retStart, retSize) } } } pragma solidity ^0.8.4; /// @notice Simple single owner authorization mixin. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/Ownable.sol) /// /// @dev Note: /// This implementation does NOT auto-initialize the owner to `msg.sender`. /// You MUST call the `_initializeOwner` in the constructor / initializer. /// /// While the ownable portion follows /// [EIP-173](https://eips.ethereum.org/EIPS/eip-173) for compatibility, /// the nomenclature for the 2-step ownership handover may be unique to this codebase. abstract contract Ownable { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The caller is not authorized to call the function. error Unauthorized(); /// @dev The `newOwner` cannot be the zero address. error NewOwnerIsZeroAddress(); /// @dev The `pendingOwner` does not have a valid handover request. error NoHandoverRequest(); /// @dev Cannot double-initialize. error AlreadyInitialized(); /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* EVENTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The ownership is transferred from `oldOwner` to `newOwner`. /// This event is intentionally kept the same as OpenZeppelin's Ownable to be /// compatible with indexers and [EIP-173](https://eips.ethereum.org/EIPS/eip-173), /// despite it not being as lightweight as a single argument event. event OwnershipTransferred(address indexed oldOwner, address indexed newOwner); /// @dev An ownership handover to `pendingOwner` has been requested. event OwnershipHandoverRequested(address indexed pendingOwner); /// @dev The ownership handover to `pendingOwner` has been canceled. event OwnershipHandoverCanceled(address indexed pendingOwner); /// @dev `keccak256(bytes("OwnershipTransferred(address,address)"))`. uint256 private constant _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE = 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0; /// @dev `keccak256(bytes("OwnershipHandoverRequested(address)"))`. uint256 private constant _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE = 0xdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d; /// @dev `keccak256(bytes("OwnershipHandoverCanceled(address)"))`. uint256 private constant _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE = 0xfa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* STORAGE */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The owner slot is given by: /// `bytes32(~uint256(uint32(bytes4(keccak256("_OWNER_SLOT_NOT")))))`. /// It is intentionally chosen to be a high value /// to avoid collision with lower slots. /// The choice of manual storage layout is to enable compatibility /// with both regular and upgradeable contracts. bytes32 internal constant _OWNER_SLOT = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff74873927; /// The ownership handover slot of `newOwner` is given by: /// ``` /// mstore(0x00, or(shl(96, user), _HANDOVER_SLOT_SEED)) /// let handoverSlot := keccak256(0x00, 0x20) /// ``` /// It stores the expiry timestamp of the two-step ownership handover. uint256 private constant _HANDOVER_SLOT_SEED = 0x389a75e1; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* INTERNAL FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Override to return true to make `_initializeOwner` prevent double-initialization. function _guardInitializeOwner() internal pure virtual returns (bool guard) {} /// @dev Initializes the owner directly without authorization guard. /// This function must be called upon initialization, /// regardless of whether the contract is upgradeable or not. /// This is to enable generalization to both regular and upgradeable contracts, /// and to save gas in case the initial owner is not the caller. /// For performance reasons, this function will not check if there /// is an existing owner. function _initializeOwner(address newOwner) internal virtual { if (_guardInitializeOwner()) { /// @solidity memory-safe-assembly assembly { let ownerSlot := _OWNER_SLOT if sload(ownerSlot) { mstore(0x00, 0x0dc149f0) // `AlreadyInitialized()`. revert(0x1c, 0x04) } // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Store the new value. sstore(ownerSlot, or(newOwner, shl(255, iszero(newOwner)))) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner) } } else { /// @solidity memory-safe-assembly assembly { // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Store the new value. sstore(_OWNER_SLOT, newOwner) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner) } } } /// @dev Sets the owner directly without authorization guard. function _setOwner(address newOwner) internal virtual { if (_guardInitializeOwner()) { /// @solidity memory-safe-assembly assembly { let ownerSlot := _OWNER_SLOT // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner) // Store the new value. sstore(ownerSlot, or(newOwner, shl(255, iszero(newOwner)))) } } else { /// @solidity memory-safe-assembly assembly { let ownerSlot := _OWNER_SLOT // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner) // Store the new value. sstore(ownerSlot, newOwner) } } } /// @dev Throws if the sender is not the owner. function _checkOwner() internal view virtual { /// @solidity memory-safe-assembly assembly { // If the caller is not the stored owner, revert. if iszero(eq(caller(), sload(_OWNER_SLOT))) { mstore(0x00, 0x82b42900) // `Unauthorized()`. revert(0x1c, 0x04) } } } /// @dev Returns how long a two-step ownership handover is valid for in seconds. /// Override to return a different value if needed. /// Made internal to conserve bytecode. Wrap it in a public function if needed. function _ownershipHandoverValidFor() internal view virtual returns (uint64) { return 48 * 3600; } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* PUBLIC UPDATE FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Allows the owner to transfer the ownership to `newOwner`. function transferOwnership(address newOwner) public payable virtual onlyOwner { /// @solidity memory-safe-assembly assembly { if iszero(shl(96, newOwner)) { mstore(0x00, 0x7448fbae) // `NewOwnerIsZeroAddress()`. revert(0x1c, 0x04) } } _setOwner(newOwner); } /// @dev Allows the owner to renounce their ownership. function renounceOwnership() public payable virtual onlyOwner { _setOwner(address(0)); } /// @dev Request a two-step ownership handover to the caller. /// The request will automatically expire in 48 hours (172800 seconds) by default. function requestOwnershipHandover() public payable virtual { unchecked { uint256 expires = block.timestamp + _ownershipHandoverValidFor(); /// @solidity memory-safe-assembly assembly { // Compute and set the handover slot to `expires`. mstore(0x0c, _HANDOVER_SLOT_SEED) mstore(0x00, caller()) sstore(keccak256(0x0c, 0x20), expires) // Emit the {OwnershipHandoverRequested} event. log2(0, 0, _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE, caller()) } } } /// @dev Cancels the two-step ownership handover to the caller, if any. function cancelOwnershipHandover() public payable virtual { /// @solidity memory-safe-assembly assembly { // Compute and set the handover slot to 0. mstore(0x0c, _HANDOVER_SLOT_SEED) mstore(0x00, caller()) sstore(keccak256(0x0c, 0x20), 0) // Emit the {OwnershipHandoverCanceled} event. log2(0, 0, _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE, caller()) } } /// @dev Allows the owner to complete the two-step ownership handover to `pendingOwner`. /// Reverts if there is no existing ownership handover requested by `pendingOwner`. function completeOwnershipHandover(address pendingOwner) public payable virtual onlyOwner { /// @solidity memory-safe-assembly assembly { // Compute and set the handover slot to 0. mstore(0x0c, _HANDOVER_SLOT_SEED) mstore(0x00, pendingOwner) let handoverSlot := keccak256(0x0c, 0x20) // If the handover does not exist, or has expired. if gt(timestamp(), sload(handoverSlot)) { mstore(0x00, 0x6f5e8818) // `NoHandoverRequest()`. revert(0x1c, 0x04) } // Set the handover slot to 0. sstore(handoverSlot, 0) } _setOwner(pendingOwner); } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* PUBLIC READ FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the owner of the contract. function owner() public view virtual returns (address result) { /// @solidity memory-safe-assembly assembly { result := sload(_OWNER_SLOT) } } /// @dev Returns the expiry timestamp for the two-step ownership handover to `pendingOwner`. function ownershipHandoverExpiresAt(address pendingOwner) public view virtual returns (uint256 result) { /// @solidity memory-safe-assembly assembly { // Compute the handover slot. mstore(0x0c, _HANDOVER_SLOT_SEED) mstore(0x00, pendingOwner) // Load the handover slot. result := sload(keccak256(0x0c, 0x20)) } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* MODIFIERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Marks a function as only callable by the owner. modifier onlyOwner() virtual { _checkOwner(); _; } } pragma solidity ^0.8.0; /// @title DN404Mirror /// @notice DN404Mirror provides an interface for interacting with the /// NFT tokens in a DN404 implementation. /// /// @author vectorized.eth (@optimizoor) /// @author Quit (@0xQuit) /// @author Michael Amadi (@AmadiMichaels) /// @author cygaar (@0xCygaar) /// @author Thomas (@0xjustadev) /// @author Harrison (@PopPunkOnChain) /// /// @dev Note: /// - The ERC721 data is stored in the base DN404 contract. contract DN404Mirror { /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* EVENTS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ event Approval(address indexed owner, address indexed spender, uint256 indexed id); event Transfer(address indexed from, address indexed to, uint256 indexed id); event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /// @dev `keccak256(bytes("Transfer(address,address,uint256)"))`. uint256 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CUSTOM ERRORS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Thrown when a call for an NFT function did not originate /// from the base DN404 contract. error Unauthorized(); /// @dev Thrown when transferring an NFT to a contract address that /// does not implement ERC721Receiver. error TransferToNonERC721ReceiverImplementer(); /// @dev Thrown when linking to the DN404 base contract and the /// DN404 supportsInterface check fails or the call reverts. error CannotLink(); /// @dev Thrown when a linkMirrorContract call is received and the /// NFT mirror contract has already been linked to a DN404 base contract. error AlreadyLinked(); /// @dev Thrown when retrieving the rootERC20 address when a link has not /// been established. error NotLinked(); /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* STORAGE */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Struct contain the NFT mirror contract storage. struct DN404NFTStorage { address rootERC20; address deployer; } /// @dev Returns a storage pointer for DN404NFTStorage. function _getDN404NFTStorage() internal pure returns (DN404NFTStorage storage $) { /// @solidity memory-safe-assembly assembly { // keccak256(abi.encode(uint256(keccak256("dn404.nft")) - 1)) & ~bytes32(uint256(0xff)) $.slot := 0xe8cb618a1de8ad2a6a7b358523c369cb09f40cc15da64205134c7e55c6a86700 } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CONSTRUCTOR */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ constructor(address deployer) { // For non-proxies, we will store the deployer so that only the deployer can // link the root contract. _getDN404NFTStorage().deployer = deployer; } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* ERC721 OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the token collection name from the base DN404 contract. function name() public view virtual returns (string memory result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { result := mload(0x40) mstore(result, 0x06fdde03) // `name()`. if iszero(staticcall(gas(), root, add(result, 0x1c), 0x04, 0x00, 0x00)) { returndatacopy(result, 0x00, returndatasize()) revert(result, returndatasize()) } returndatacopy(0x00, 0x00, 0x20) returndatacopy(result, mload(0x00), 0x20) returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result)) mstore(0x40, add(add(result, 0x20), mload(result))) } } /// @dev Returns the token collection symbol from the base DN404 contract. function symbol() public view virtual returns (string memory result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { result := mload(0x40) mstore(result, 0x95d89b41) // `symbol()`. if iszero(staticcall(gas(), root, add(result, 0x1c), 0x04, 0x00, 0x00)) { returndatacopy(result, 0x00, returndatasize()) revert(result, returndatasize()) } returndatacopy(0x00, 0x00, 0x20) returndatacopy(result, mload(0x00), 0x20) returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result)) mstore(0x40, add(add(result, 0x20), mload(result))) } } /// @dev Returns the Uniform Resource Identifier (URI) for token `id` from the base DN404 contract. function tokenURI(uint256 id) public view virtual returns (string memory result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { result := mload(0x40) mstore(result, 0xc87b56dd) // `tokenURI()`. mstore(add(result, 0x20), id) if iszero(staticcall(gas(), root, add(result, 0x1c), 0x24, 0x00, 0x00)) { returndatacopy(result, 0x00, returndatasize()) revert(result, returndatasize()) } returndatacopy(0x00, 0x00, 0x20) returndatacopy(result, mload(0x00), 0x20) returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result)) mstore(0x40, add(add(result, 0x20), mload(result))) } } /// @dev Returns the total NFT supply from the base DN404 contract. function totalSupply() public view returns (uint256 result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0xe2c79281) // `totalNFTSupply()`. if iszero( and(gt(returndatasize(), 0x1f), staticcall(gas(), root, 0x1c, 0x04, 0x00, 0x20)) ) { returndatacopy(mload(0x40), 0x00, returndatasize()) revert(mload(0x40), returndatasize()) } result := mload(0x00) } } /// @dev Returns the number of NFT tokens owned by `owner` from the base DN404 contract. /// /// Requirements: /// - `owner` must not be the zero address. function balanceOf(address owner) public view virtual returns (uint256 result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0xf5b100ea) // `balanceOfNFT(address)`. mstore(0x20, shr(96, shl(96, owner))) if iszero( and(gt(returndatasize(), 0x1f), staticcall(gas(), root, 0x1c, 0x24, 0x00, 0x20)) ) { returndatacopy(mload(0x40), 0x00, returndatasize()) revert(mload(0x40), returndatasize()) } result := mload(0x00) } } /// @dev Returns the owner of token `id` from the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. function ownerOf(uint256 id) public view virtual returns (address result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x6352211e) // `ownerOf(uint256)`. mstore(0x20, id) if iszero( and(gt(returndatasize(), 0x1f), staticcall(gas(), root, 0x1c, 0x24, 0x00, 0x20)) ) { returndatacopy(mload(0x40), 0x00, returndatasize()) revert(mload(0x40), returndatasize()) } result := shr(96, shl(96, mload(0x00))) } } /// @dev Sets `spender` as the approved account to manage token `id` in the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. /// - The caller must be the owner of the token, /// or an approved operator for the token owner. /// /// Emits an {Approval} event. function approve(address spender, uint256 id) public virtual { address root = rootERC20(); address owner; /// @solidity memory-safe-assembly assembly { let m := mload(0x40) mstore(0x00, 0xd10b6e0c) // `approveNFT(address,uint256,address)`. mstore(0x20, shr(96, shl(96, spender))) mstore(0x40, id) mstore(0x60, caller()) if iszero( and( gt(returndatasize(), 0x1f), call(gas(), root, callvalue(), 0x1c, 0x64, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } mstore(0x40, m) // Restore the free memory pointer. mstore(0x60, 0) // Restore the zero pointer. owner := shr(96, shl(96, mload(0x00))) } emit Approval(owner, spender, id); } /// @dev Returns the account approved to manage token `id` from the base DN404 contract. /// /// Requirements: /// - Token `id` must exist. function getApproved(uint256 id) public view virtual returns (address result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x081812fc) // `getApproved(uint256)`. mstore(0x20, id) if iszero( and(gt(returndatasize(), 0x1f), staticcall(gas(), root, 0x1c, 0x24, 0x00, 0x20)) ) { returndatacopy(mload(0x40), 0x00, returndatasize()) revert(mload(0x40), returndatasize()) } result := shr(96, shl(96, mload(0x00))) } } /// @dev Sets whether `operator` is approved to manage the tokens of the caller in the base DN404 contract. /// /// Emits an {ApprovalForAll} event. function setApprovalForAll(address operator, bool approved) public virtual { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { let m := mload(0x40) mstore(0x00, 0x813500fc) // `setApprovalForAll(address,bool,address)`. mstore(0x20, shr(96, shl(96, operator))) mstore(0x40, iszero(iszero(approved))) mstore(0x60, caller()) if iszero( and( and(eq(mload(0x00), 1), gt(returndatasize(), 0x1f)), call(gas(), root, callvalue(), 0x1c, 0x64, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } mstore(0x40, m) // Restore the free memory pointer. mstore(0x60, 0) // Restore the zero pointer. } emit ApprovalForAll(msg.sender, operator, approved); } /// @dev Returns whether `operator` is approved to manage the tokens of `owner` from the base DN404 contract. function isApprovedForAll(address owner, address operator) public view virtual returns (bool result) { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { let m := mload(0x40) mstore(0x00, 0xe985e9c5) // `isApprovedForAll(address,address)`. mstore(0x20, shr(96, shl(96, owner))) mstore(0x40, shr(96, shl(96, operator))) if iszero( and(gt(returndatasize(), 0x1f), staticcall(gas(), root, 0x1c, 0x44, 0x00, 0x20)) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } mstore(0x40, m) // Restore the free memory pointer. result := iszero(iszero(mload(0x00))) } } /// @dev Transfers token `id` from `from` to `to`. /// /// Requirements: /// /// - Token `id` must exist. /// - `from` must be the owner of the token. /// - `to` cannot be the zero address. /// - The caller must be the owner of the token, or be approved to manage the token. /// /// Emits a {Transfer} event. function transferFrom(address from, address to, uint256 id) public virtual { address root = rootERC20(); /// @solidity memory-safe-assembly assembly { let m := mload(0x40) mstore(m, 0xe5eb36c8) // `transferFromNFT(address,address,uint256,address)`. mstore(add(m, 0x20), shr(96, shl(96, from))) mstore(add(m, 0x40), shr(96, shl(96, to))) mstore(add(m, 0x60), id) mstore(add(m, 0x80), caller()) if iszero( and( and(eq(mload(0x00), 1), gt(returndatasize(), 0x1f)), call(gas(), root, callvalue(), add(m, 0x1c), 0x84, 0x00, 0x20) ) ) { returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } } emit Transfer(from, to, id); } /// @dev Equivalent to `safeTransferFrom(from, to, id, "")`. function safeTransferFrom(address from, address to, uint256 id) public payable virtual { transferFrom(from, to, id); if (_hasCode(to)) _checkOnERC721Received(from, to, id, ""); } /// @dev Transfers token `id` from `from` to `to`. /// /// Requirements: /// /// - Token `id` must exist. /// - `from` must be the owner of the token. /// - `to` cannot be the zero address. /// - The caller must be the owner of the token, or be approved to manage the token. /// - If `to` refers to a smart contract, it must implement /// {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. /// /// Emits a {Transfer} event. function safeTransferFrom(address from, address to, uint256 id, bytes calldata data) public virtual { transferFrom(from, to, id); if (_hasCode(to)) _checkOnERC721Received(from, to, id, data); } /// @dev Returns true if this contract implements the interface defined by `interfaceId`. /// See: https://eips.ethereum.org/EIPS/eip-165 /// This function call must use less than 30000 gas. function supportsInterface(bytes4 interfaceId) public view virtual returns (bool result) { /// @solidity memory-safe-assembly assembly { let s := shr(224, interfaceId) // ERC165: 0x01ffc9a7, ERC721: 0x80ac58cd, ERC721Metadata: 0x5b5e139f. result := or(or(eq(s, 0x01ffc9a7), eq(s, 0x80ac58cd)), eq(s, 0x5b5e139f)) } } /// @dev Returns if `a` has bytecode of non-zero length. function _hasCode(address a) private view returns (bool result) { /// @solidity memory-safe-assembly assembly { result := extcodesize(a) // Can handle dirty upper bits. } } /// @dev Perform a call to invoke {IERC721Receiver-onERC721Received} on `to`. /// Reverts if the target does not support the function correctly. function _checkOnERC721Received(address from, address to, uint256 id, bytes memory data) private { /// @solidity memory-safe-assembly assembly { // Prepare the calldata. let m := mload(0x40) let onERC721ReceivedSelector := 0x150b7a02 mstore(m, onERC721ReceivedSelector) mstore(add(m, 0x20), caller()) // The `operator`, which is always `msg.sender`. mstore(add(m, 0x40), shr(96, shl(96, from))) mstore(add(m, 0x60), id) mstore(add(m, 0x80), 0x80) let n := mload(data) mstore(add(m, 0xa0), n) if n { pop(staticcall(gas(), 4, add(data, 0x20), n, add(m, 0xc0), n)) } // Revert if the call reverts. if iszero(call(gas(), to, 0, add(m, 0x1c), add(n, 0xa4), m, 0x20)) { if returndatasize() { // Bubble up the revert if the call reverts. returndatacopy(m, 0x00, returndatasize()) revert(m, returndatasize()) } } // Load the returndata and compare it. if iszero(eq(mload(m), shl(224, onERC721ReceivedSelector))) { mstore(0x00, 0xd1a57ed6) // `TransferToNonERC721ReceiverImplementer()`. revert(0x1c, 0x04) } } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* MIRROR OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the address of the base DN404 contract. function rootERC20() public view returns (address root) { root = _getDN404NFTStorage().rootERC20; if (root == address(0)) revert NotLinked(); } /// @dev Fallback modifier to execute calls from the base DN404 contract. modifier dn404NFTFallback() virtual { DN404NFTStorage storage $ = _getDN404NFTStorage(); uint256 fnSelector = _calldataload(0x00) >> 224; // `logTransfer(uint256[])`. if (fnSelector == 0x263c69d6) { if (msg.sender != $.rootERC20) revert Unauthorized(); /// @solidity memory-safe-assembly assembly { // When returndatacopy copies 1 or more out-of-bounds bytes, it reverts. returndatacopy(0x00, returndatasize(), lt(calldatasize(), 0x20)) let o := add(0x24, calldataload(0x04)) // Packed logs offset. returndatacopy(0x00, returndatasize(), lt(calldatasize(), o)) let end := add(o, shl(5, calldataload(sub(o, 0x20)))) returndatacopy(0x00, returndatasize(), lt(calldatasize(), end)) for {} iszero(eq(o, end)) { o := add(0x20, o) } { let d := calldataload(o) // Entry in the packed logs. let a := shr(96, d) // The address. let b := and(1, d) // Whether it is a burn. log4( codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, mul(a, b), mul(a, iszero(b)), shr(168, shl(160, d)) ) } mstore(0x00, 0x01) return(0x00, 0x20) } } // `linkMirrorContract(address)`. if (fnSelector == 0x0f4599e5) { if ($.deployer != address(0)) { if (address(uint160(_calldataload(0x04))) != $.deployer) { revert Unauthorized(); } } if ($.rootERC20 != address(0)) revert AlreadyLinked(); $.rootERC20 = msg.sender; /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x01) return(0x00, 0x20) } } _; } /// @dev Fallback function for calls from base DN404 contract. fallback() external payable virtual dn404NFTFallback {} receive() external payable virtual {} /// @dev Returns the calldata value at `offset`. function _calldataload(uint256 offset) private pure returns (uint256 value) { /// @solidity memory-safe-assembly assembly { value := calldataload(offset) } } } pragma solidity ^0.8.4; /// @notice Library for storage of packed unsigned integers. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibMap.sol) library LibMap { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* STRUCTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev A uint8 map in storage. struct Uint8Map { mapping(uint256 => uint256) map; } /// @dev A uint16 map in storage. struct Uint16Map { mapping(uint256 => uint256) map; } /// @dev A uint32 map in storage. struct Uint32Map { mapping(uint256 => uint256) map; } /// @dev A uint40 map in storage. Useful for storing timestamps up to 34841 A.D. struct Uint40Map { mapping(uint256 => uint256) map; } /// @dev A uint64 map in storage. struct Uint64Map { mapping(uint256 => uint256) map; } /// @dev A uint128 map in storage. struct Uint128Map { mapping(uint256 => uint256) map; } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* GETTERS / SETTERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the uint8 value at `index` in `map`. function get(Uint8Map storage map, uint256 index) internal view returns (uint8 result) { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(5, index)) result := byte(and(31, not(index)), sload(keccak256(0x00, 0x40))) } } /// @dev Updates the uint8 value at `index` in `map`. function set(Uint8Map storage map, uint256 index, uint8 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(5, index)) let s := keccak256(0x00, 0x40) // Storage slot. mstore(0x00, sload(s)) mstore8(and(31, not(index)), value) sstore(s, mload(0x00)) } } /// @dev Returns the uint16 value at `index` in `map`. function get(Uint16Map storage map, uint256 index) internal view returns (uint16 result) { result = uint16(map.map[index >> 4] >> ((index & 15) << 4)); } /// @dev Updates the uint16 value at `index` in `map`. function set(Uint16Map storage map, uint256 index, uint16 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(4, index)) let s := keccak256(0x00, 0x40) // Storage slot. let o := shl(4, and(index, 15)) // Storage slot offset (bits). let v := sload(s) // Storage slot value. let m := 0xffff // Value mask. sstore(s, xor(v, shl(o, and(m, xor(shr(o, v), value))))) } } /// @dev Returns the uint32 value at `index` in `map`. function get(Uint32Map storage map, uint256 index) internal view returns (uint32 result) { result = uint32(map.map[index >> 3] >> ((index & 7) << 5)); } /// @dev Updates the uint32 value at `index` in `map`. function set(Uint32Map storage map, uint256 index, uint32 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(3, index)) let s := keccak256(0x00, 0x40) // Storage slot. let o := shl(5, and(index, 7)) // Storage slot offset (bits). let v := sload(s) // Storage slot value. let m := 0xffffffff // Value mask. sstore(s, xor(v, shl(o, and(m, xor(shr(o, v), value))))) } } /// @dev Returns the uint40 value at `index` in `map`. function get(Uint40Map storage map, uint256 index) internal view returns (uint40 result) { unchecked { result = uint40(map.map[index / 6] >> ((index % 6) * 40)); } } /// @dev Updates the uint40 value at `index` in `map`. function set(Uint40Map storage map, uint256 index, uint40 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, div(index, 6)) let s := keccak256(0x00, 0x40) // Storage slot. let o := mul(40, mod(index, 6)) // Storage slot offset (bits). let v := sload(s) // Storage slot value. let m := 0xffffffffff // Value mask. sstore(s, xor(v, shl(o, and(m, xor(shr(o, v), value))))) } } /// @dev Returns the uint64 value at `index` in `map`. function get(Uint64Map storage map, uint256 index) internal view returns (uint64 result) { result = uint64(map.map[index >> 2] >> ((index & 3) << 6)); } /// @dev Updates the uint64 value at `index` in `map`. function set(Uint64Map storage map, uint256 index, uint64 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(2, index)) let s := keccak256(0x00, 0x40) // Storage slot. let o := shl(6, and(index, 3)) // Storage slot offset (bits). let v := sload(s) // Storage slot value. let m := 0xffffffffffffffff // Value mask. sstore(s, xor(v, shl(o, and(m, xor(shr(o, v), value))))) } } /// @dev Returns the uint128 value at `index` in `map`. function get(Uint128Map storage map, uint256 index) internal view returns (uint128 result) { result = uint128(map.map[index >> 1] >> ((index & 1) << 7)); } /// @dev Updates the uint128 value at `index` in `map`. function set(Uint128Map storage map, uint256 index, uint128 value) internal { /// @solidity memory-safe-assembly assembly { mstore(0x20, map.slot) mstore(0x00, shr(1, index)) let s := keccak256(0x00, 0x40) // Storage slot. let o := shl(7, and(index, 1)) // Storage slot offset (bits). let v := sload(s) // Storage slot value. let m := 0xffffffffffffffffffffffffffffffff // Value mask. sstore(s, xor(v, shl(o, and(m, xor(shr(o, v), value))))) } } /// @dev Returns the value at `index` in `map`. function get(mapping(uint256 => uint256) storage map, uint256 index, uint256 bitWidth) internal view returns (uint256 result) { unchecked { uint256 d = _rawDiv(256, bitWidth); // Bucket size. uint256 m = (1 << bitWidth) - 1; // Value mask. result = (map[_rawDiv(index, d)] >> (_rawMod(index, d) * bitWidth)) & m; } } /// @dev Updates the value at `index` in `map`. function set( mapping(uint256 => uint256) storage map, uint256 index, uint256 value, uint256 bitWidth ) internal { unchecked { uint256 d = _rawDiv(256, bitWidth); // Bucket size. uint256 m = (1 << bitWidth) - 1; // Value mask. uint256 o = _rawMod(index, d) * bitWidth; // Storage slot offset (bits). map[_rawDiv(index, d)] ^= (((map[_rawDiv(index, d)] >> o) ^ value) & m) << o; } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* BINARY SEARCH */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ // The following functions search in the range of [`start`, `end`) // (i.e. `start <= index < end`). // The range must be sorted in ascending order. // `index` precedence: equal to > nearest before > nearest after. // An invalid search range will simply return `(found = false, index = start)`. /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint8Map storage map, uint8 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 8); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint16Map storage map, uint16 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 16); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint32Map storage map, uint32 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 32); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint40Map storage map, uint40 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 40); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint64Map storage map, uint64 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 64); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted(Uint128Map storage map, uint128 needle, uint256 start, uint256 end) internal view returns (bool found, uint256 index) { return searchSorted(map.map, needle, start, end, 128); } /// @dev Returns whether `map` contains `needle`, and the index of `needle`. function searchSorted( mapping(uint256 => uint256) storage map, uint256 needle, uint256 start, uint256 end, uint256 bitWidth ) internal view returns (bool found, uint256 index) { unchecked { if (start >= end) end = start; uint256 t; uint256 o = start - 1; // Offset to derive the actual index. uint256 l = 1; // Low. uint256 d = _rawDiv(256, bitWidth); // Bucket size. uint256 m = (1 << bitWidth) - 1; // Value mask. uint256 h = end - start; // High. while (true) { index = (l & h) + ((l ^ h) >> 1); if (l > h) break; t = (map[_rawDiv(index + o, d)] >> (_rawMod(index + o, d) * bitWidth)) & m; if (t == needle) break; if (needle <= t) h = index - 1; else l = index + 1; } /// @solidity memory-safe-assembly assembly { m := or(iszero(index), iszero(bitWidth)) found := iszero(or(xor(t, needle), m)) index := add(o, xor(index, mul(xor(index, 1), m))) } } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* PRIVATE HELPERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns `x / y`, returning 0 if `y` is zero. function _rawDiv(uint256 x, uint256 y) private pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { z := div(x, y) } } /// @dev Returns `x % y`, returning 0 if `y` is zero. function _rawMod(uint256 x, uint256 y) private pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { z := mod(x, y) } } } pragma solidity ^0.8.4; /// @title DN404 /// @notice DN404 is a hybrid ERC20 and ERC721 implementation that mints /// and burns NFTs based on an account's ERC20 token balance. /// /// @author vectorized.eth (@optimizoor) /// @author Quit (@0xQuit) /// @author Michael Amadi (@AmadiMichaels) /// @author cygaar (@0xCygaar) /// @author Thomas (@0xjustadev) /// @author Harrison (@PopPunkOnChain) /// /// @dev Note: /// - The ERC721 data is stored in this base DN404 contract, however a /// DN404Mirror contract ***MUST*** be deployed and linked during /// initialization. abstract contract DN404 { using LibMap for *; /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* EVENTS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Emitted when `amount` tokens is transferred from `from` to `to`. event Transfer(address indexed from, address indexed to, uint256 amount); /// @dev Emitted when `amount` tokens is approved by `owner` to be used by `spender`. event Approval(address indexed owner, address indexed spender, uint256 amount); /// @dev Emitted when `target` sets their skipNFT flag to `status`. event SkipNFTSet(address indexed target, bool status); /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CUSTOM ERRORS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Thrown when attempt to initialize the contract when it has already been initialized. error DNAlreadyInitialized(); /// @dev Thrown when attempting to transfer or burn more tokens than sender's balance. error InsufficientBalance(); /// @dev Thrown when a spender attempts to transfer tokens with an insufficient allowance. error InsufficientAllowance(); /// @dev Thrown when minting an amount of tokens that would overflow the max tokens. error InvalidTotalNFTSupply(); /// @dev Thrown when a call for an NFT function did not originate from the mirror contract. error UnauthorizedSender(); /// @dev Thrown when attempting to transfer tokens to the zero address. error TransferToZeroAddress(); /// @dev Thrown when initializing the contract and mirror address is provided as the zero address. error MirrorAddressIsZero(); /// @dev Thrown when the link call to the mirror contract reverts. error LinkMirrorContractFailed(); /// @dev Thrown when setting an NFT token approval and the caller is not the owner or an approved operator. error ApprovalCallerNotOwnerNorApproved(); /// @dev Thrown when transferring an NFT and the caller is not the owner or an approved operator. error TransferCallerNotOwnerNorApproved(); /// @dev Thrown when transferring an NFT and the from address is not the current owner. error TransferFromIncorrectOwner(); /// @dev Thrown when checking the owner or approved address for an NFT that does not exist. error TokenDoesNotExist(); /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CONSTANTS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Amount of token balance that is equal to one NFT. uint256 private constant _WAD = 1000000000000000000; /// @dev The maximum tokenId allowed for an NFT. uint256 private constant _MAX_TOKEN_ID = 0xffffffff; /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* STORAGE */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Struct containing an address's token data and settings. struct AddressData { // Set true when address data storage has been initialized. bool initialized; // If the account should skip NFT minting. bool skipNFT; // The alias for the address. Zero means absence of an alias. uint32 addressAlias; // The number of NFT tokens. uint32 ownedLength; // The token balance in wei. uint96 balance; } /// @dev Struct containing the base token contract storage. struct DN404Storage { // Current number of address aliases assigned. uint32 numAliases; // Next tokenId to assign for an NFT mint. uint32 nextTokenId; // Total supply of minted NFTs. uint32 totalNFTSupply; // Total supply of tokens. uint96 totalTokenSupply; // Address of the NFT mirror contract. address mirrorERC721; // Mapping of a user alias number to their address. mapping(uint32 => address) aliasToAddress; // Mapping of user operator approvals for NFTs. mapping(address => mapping(address => bool)) operatorApprovals; // Mapping of NFT token approvals to approved operators. mapping(uint256 => address) tokenApprovals; // Mapping of user allowances for token spenders. mapping(address => mapping(address => uint256)) allowance; // Mapping of NFT tokenIds owned by an address. mapping(address => LibMap.Uint32Map) owned; // Even indices: owner aliases. Odd indices: owned indices. LibMap.Uint32Map oo; // Mapping of user account AddressData mapping(address => AddressData) addressData; } /// @dev Returns a storage pointer for DN404Storage. function _getDN404Storage() internal pure returns (DN404Storage storage $) { /// @solidity memory-safe-assembly assembly { // keccak256(abi.encode(uint256(keccak256("dn404")) - 1)) & ~bytes32(uint256(0xff)) $.slot := 0x61dd0d320a11019af7688ced18637b1235059a4e8141ed71cfccbe9f2da16600 } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* INITIALIZER */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Initializes the DN404 contract with an `initialTokenSupply`, `initialTokenOwner` and `mirror` NFT contract address. function _initializeDN404(uint96 initialTokenSupply, address initialSupplyOwner, address mirror) internal virtual { DN404Storage storage $ = _getDN404Storage(); if ($.nextTokenId != 0) revert DNAlreadyInitialized(); if (mirror == address(0)) revert MirrorAddressIsZero(); _linkMirrorContract(mirror); $.nextTokenId = 1; $.mirrorERC721 = mirror; if (initialTokenSupply > 0) { if (initialSupplyOwner == address(0)) revert TransferToZeroAddress(); if (initialTokenSupply / _WAD > _MAX_TOKEN_ID - 1) revert InvalidTotalNFTSupply(); $.totalTokenSupply = initialTokenSupply; AddressData storage initialOwnerAddressData = _addressData(initialSupplyOwner); initialOwnerAddressData.balance = initialTokenSupply; emit Transfer(address(0), initialSupplyOwner, initialTokenSupply); _setSkipNFT(initialSupplyOwner, true); } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* METADATA FUNCTIONS TO OVERRIDE */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the name of the token. function name() public view virtual returns (string memory); /// @dev Returns the symbol of the token. function symbol() public view virtual returns (string memory); /// @dev Returns the Uniform Resource Identifier (URI) for token `id`. function tokenURI(uint256 id) public view virtual returns (string memory); /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* ERC20 OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the decimals places of the token. function decimals() public pure returns (uint8) { return 18; } /// @dev Returns the amount of tokens in existence. function totalSupply() public view virtual returns (uint256) { return uint256(_getDN404Storage().totalTokenSupply); } /// @dev Returns the amount of tokens owned by `owner`. function balanceOf(address owner) public view virtual returns (uint256) { return _getDN404Storage().addressData[owner].balance; } /// @dev Returns the amount of tokens that `spender` can spend on behalf of `owner`. function allowance(address owner, address spender) public view returns (uint256) { return _getDN404Storage().allowance[owner][spender]; } /// @dev Sets `amount` as the allowance of `spender` over the caller's tokens. /// /// Emits a {Approval} event. function approve(address spender, uint256 amount) public virtual returns (bool) { DN404Storage storage $ = _getDN404Storage(); $.allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } /// @dev Transfer `amount` tokens from the caller to `to`. /// /// Will burn sender NFTs if balance after transfer is less than /// the amount required to support the current NFT balance. /// /// Will mint NFTs to `to` if the recipient's new balance supports /// additional NFTs ***AND*** the `to` address's skipNFT flag is /// set to false. /// /// Requirements: /// - `from` must at least have `amount`. /// /// Emits a {Transfer} event. function transfer(address to, uint256 amount) public virtual returns (bool) { _transfer(msg.sender, to, amount); return true; } /// @dev Transfers `amount` tokens from `from` to `to`. /// /// Note: Does not update the allowance if it is the maximum uint256 value. /// /// Will burn sender NFTs if balance after transfer is less than /// the amount required to support the current NFT balance. /// /// Will mint NFTs to `to` if the recipient's new balance supports /// additional NFTs ***AND*** the `to` address's skipNFT flag is /// set to false. /// /// Requirements: /// - `from` must at least have `amount`. /// - The caller must have at least `amount` of allowance to transfer the tokens of `from`. /// /// Emits a {Transfer} event. function transferFrom(address from, address to, uint256 amount) public virtual returns (bool) { DN404Storage storage $ = _getDN404Storage(); uint256 allowed = $.allowance[from][msg.sender]; if (allowed != type(uint256).max) { if (amount > allowed) revert InsufficientAllowance(); unchecked { $.allowance[from][msg.sender] = allowed - amount; } } _transfer(from, to, amount); return true; } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* SHARED TRANSFER OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Struct containing packed log data for Transfer events to be emitted by the mirror NFT contract. struct _PackedLogs { uint256[] logs; uint256 offset; } /// @dev Initiates memory allocation for packed logs with `n` log items. function _packedLogsMalloc(uint256 n) private pure returns (_PackedLogs memory p) { /// @solidity memory-safe-assembly assembly { let logs := add(mload(0x40), 0x40) // Offset by 2 words for `_packedLogsSend`. mstore(logs, n) let offset := add(0x20, logs) mstore(0x40, add(offset, shl(5, n))) mstore(p, logs) mstore(add(0x20, p), offset) } } /// @dev Adds a packed log item to `p` with address `a`, tokenId `id` and burn flag `burnBit` function _packedLogsAppend(_PackedLogs memory p, address a, uint256 id, uint256 burnBit) private pure { /// @solidity memory-safe-assembly assembly { let offset := mload(add(0x20, p)) mstore(offset, or(or(shl(96, a), shl(8, id)), burnBit)) mstore(add(0x20, p), add(offset, 0x20)) } } /// @dev Calls the `mirror` NFT contract to emit Transfer events for packed logs `p` function _packedLogsSend(_PackedLogs memory p, address mirror) private { /// @solidity memory-safe-assembly assembly { let logs := mload(p) let o := sub(logs, 0x40) // Start of calldata to send. mstore(o, 0x263c69d6) // `logTransfer(uint256[])`. mstore(add(o, 0x20), 0x20) // Offset of `logs` in the calldata to send. let n := add(0x44, shl(5, mload(logs))) // Length of calldata to send. if iszero( and( and(eq(mload(0x00), 1), gt(returndatasize(), 0x1f)), call(gas(), mirror, 0, add(o, 0x1c), n, 0x00, 0x20) ) ) { revert(0x00, 0x00) } } } /// @dev Struct of temporary variables for transfers. struct _TransferTemps { uint256 nftAmountToBurn; uint256 nftAmountToMint; uint256 fromBalance; uint256 toBalance; uint256 fromOwnedLength; uint256 toOwnedLength; } /// @dev You can override to return a pseudorandom value to skip /// taking token IDs from the burned stack probabilistically. function _skipBurnedStack(uint256) internal pure virtual returns (bool) { return false; } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* INTERNAL MINT FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Mints `amount` tokens to `to`, increasing the total supply. /// /// Will mint NFTs to `to` if the recipient's new balance supports /// additional NFTs ***AND*** the `to` address's skipNFT flag is /// set to false. /// /// Emits a {Transfer} event. function _mint(address to, uint256 amount) internal { if (to == address(0)) revert TransferToZeroAddress(); DN404Storage storage $ = _getDN404Storage(); AddressData storage toAddressData = _addressData(to); unchecked { uint256 currentTokenSupply = uint256($.totalTokenSupply) + amount; if (currentTokenSupply / _WAD > _MAX_TOKEN_ID - 1) revert InvalidTotalNFTSupply(); $.totalTokenSupply = uint96(currentTokenSupply); uint256 toBalance = toAddressData.balance + amount; toAddressData.balance = uint96(toBalance); if (!toAddressData.skipNFT) { LibMap.Uint32Map storage toOwned = $.owned[to]; uint256 toIndex = toAddressData.ownedLength; uint256 toEnd = toBalance / _WAD; _PackedLogs memory packedLogs = _packedLogsMalloc(_zeroFloorSub(toEnd, toIndex)); if (packedLogs.logs.length != 0) { uint256 maxNFTId = $.totalTokenSupply / _WAD; uint32 toAlias = _registerAndResolveAlias(toAddressData, to); uint256 id = $.nextTokenId; $.totalNFTSupply += uint32(packedLogs.logs.length); toAddressData.ownedLength = uint32(toEnd); // Mint loop. do { while ($.oo.get(_ownershipIndex(id)) != 0) { if (++id > maxNFTId) id = 1; } toOwned.set(toIndex, uint32(id)); $.oo.set(_ownershipIndex(id), toAlias); $.oo.set(_ownedIndex(id), uint32(toIndex++)); _packedLogsAppend(packedLogs, to, id, 0); if (++id > maxNFTId) id = 1; } while (toIndex != toEnd); $.nextTokenId = uint32(id); _packedLogsSend(packedLogs, $.mirrorERC721); } } } emit Transfer(address(0), to, amount); } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* INTERNAL BURN FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Burns `amount` tokens from `from`, reducing the total supply. /// /// Will burn sender NFTs if balance after transfer is less than /// the amount required to support the current NFT balance. /// /// Emits a {Transfer} event. function _burn(address from, uint256 amount) internal { DN404Storage storage $ = _getDN404Storage(); AddressData storage fromAddressData = _addressData(from); uint256 fromBalance = fromAddressData.balance; if (amount > fromBalance) revert InsufficientBalance(); uint256 currentTokenSupply = $.totalTokenSupply; unchecked { fromBalance -= amount; fromAddressData.balance = uint96(fromBalance); currentTokenSupply -= amount; $.totalTokenSupply = uint96(currentTokenSupply); LibMap.Uint32Map storage fromOwned = $.owned[from]; uint256 fromIndex = fromAddressData.ownedLength; uint256 nftAmountToBurn = _zeroFloorSub(fromIndex, fromBalance / _WAD); if (nftAmountToBurn != 0) { $.totalNFTSupply -= uint32(nftAmountToBurn); _PackedLogs memory packedLogs = _packedLogsMalloc(nftAmountToBurn); uint256 fromEnd = fromIndex - nftAmountToBurn; // Burn loop. do { uint256 id = fromOwned.get(--fromIndex); $.oo.set(_ownedIndex(id), 0); $.oo.set(_ownershipIndex(id), 0); delete $.tokenApprovals[id]; _packedLogsAppend(packedLogs, from, id, 1); } while (fromIndex != fromEnd); fromAddressData.ownedLength = uint32(fromIndex); _packedLogsSend(packedLogs, $.mirrorERC721); } } emit Transfer(from, address(0), amount); } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* INTERNAL TRANSFER FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Moves `amount` of tokens from `from` to `to`. /// /// Will burn sender NFTs if balance after transfer is less than /// the amount required to support the current NFT balance. /// /// Will mint NFTs to `to` if the recipient's new balance supports /// additional NFTs ***AND*** the `to` address's skipNFT flag is /// set to false. /// /// Emits a {Transfer} event. function _transfer(address from, address to, uint256 amount) internal { if (to == address(0)) revert TransferToZeroAddress(); DN404Storage storage $ = _getDN404Storage(); AddressData storage fromAddressData = _addressData(from); AddressData storage toAddressData = _addressData(to); _TransferTemps memory t; t.fromOwnedLength = fromAddressData.ownedLength; t.toOwnedLength = toAddressData.ownedLength; t.fromBalance = fromAddressData.balance; if (amount > t.fromBalance) revert InsufficientBalance(); unchecked { t.fromBalance -= amount; fromAddressData.balance = uint96(t.fromBalance); toAddressData.balance = uint96(t.toBalance = toAddressData.balance + amount); t.nftAmountToBurn = _zeroFloorSub(t.fromOwnedLength, t.fromBalance / _WAD); if (!toAddressData.skipNFT) { t.nftAmountToMint = _zeroFloorSub(t.toBalance / _WAD, t.toOwnedLength); } _PackedLogs memory packedLogs = _packedLogsMalloc(t.nftAmountToBurn + t.nftAmountToMint); if (t.nftAmountToBurn != 0) { LibMap.Uint32Map storage fromOwned = $.owned[from]; uint256 fromIndex = t.fromOwnedLength; uint256 fromEnd = fromIndex - t.nftAmountToBurn; $.totalNFTSupply -= uint32(t.nftAmountToBurn); // Burn loop. do { uint256 id = fromOwned.get(--fromIndex); $.oo.set(_ownedIndex(id), 0); $.oo.set(_ownershipIndex(id), 0); delete $.tokenApprovals[id]; _packedLogsAppend(packedLogs, from, id, 1); } while (fromIndex != fromEnd); fromAddressData.ownedLength = uint32(fromIndex); } if (t.nftAmountToMint != 0) { LibMap.Uint32Map storage toOwned = $.owned[to]; uint256 toIndex = t.toOwnedLength; uint256 toEnd = toIndex + t.nftAmountToMint; uint32 toAlias = _registerAndResolveAlias(toAddressData, to); uint256 maxNFTId = $.totalTokenSupply / _WAD; uint256 id = $.nextTokenId; $.totalNFTSupply += uint32(t.nftAmountToMint); toAddressData.ownedLength = uint32(toEnd); // Mint loop. do { while ($.oo.get(_ownershipIndex(id)) != 0) { if (++id > maxNFTId) id = 1; } toOwned.set(toIndex, uint32(id)); $.oo.set(_ownershipIndex(id), toAlias); $.oo.set(_ownedIndex(id), uint32(toIndex++)); _packedLogsAppend(packedLogs, to, id, 0); if (++id > maxNFTId) id = 1; } while (toIndex != toEnd); $.nextTokenId = uint32(id); } if (packedLogs.logs.length != 0) { _packedLogsSend(packedLogs, $.mirrorERC721); } } emit Transfer(from, to, amount); } /// @dev Transfers token `id` from `from` to `to`. /// /// Requirements: /// /// - Call must originate from the mirror contract. /// - Token `id` must exist. /// - `from` must be the owner of the token. /// - `to` cannot be the zero address. /// `msgSender` must be the owner of the token, or be approved to manage the token. /// /// Emits a {Transfer} event. function _transferFromNFT(address from, address to, uint256 id, address msgSender) internal virtual { DN404Storage storage $ = _getDN404Storage(); if (to == address(0)) revert TransferToZeroAddress(); address owner = $.aliasToAddress[$.oo.get(_ownershipIndex(id))]; if (from != owner) revert TransferFromIncorrectOwner(); if (msgSender != from) { if (!$.operatorApprovals[from][msgSender]) { if (msgSender != $.tokenApprovals[id]) { revert TransferCallerNotOwnerNorApproved(); } } } AddressData storage fromAddressData = _addressData(from); AddressData storage toAddressData = _addressData(to); fromAddressData.balance -= uint96(_WAD); unchecked { toAddressData.balance += uint96(_WAD); $.oo.set(_ownershipIndex(id), _registerAndResolveAlias(toAddressData, to)); delete $.tokenApprovals[id]; uint256 updatedId = $.owned[from].get(--fromAddressData.ownedLength); $.owned[from].set($.oo.get(_ownedIndex(id)), uint32(updatedId)); uint256 n = toAddressData.ownedLength++; $.oo.set(_ownedIndex(updatedId), $.oo.get(_ownedIndex(id))); $.owned[to].set(n, uint32(id)); $.oo.set(_ownedIndex(id), uint32(n)); } emit Transfer(from, to, _WAD); } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* SKIP NFT FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns true if account `a` will skip NFT minting on token mints and transfers. /// Returns false if account `a` will mint NFTs on token mints and transfers. function getSkipNFT(address a) public view virtual returns (bool) { AddressData storage d = _getDN404Storage().addressData[a]; return d.initialized ? d.skipNFT : _hasCode(a); } /// @dev Sets the caller's skipNFT flag to `skipNFT` /// /// Emits a {SkipNFTSet} event. function setSkipNFT(bool skipNFT) public { _setSkipNFT(msg.sender, skipNFT); } /// @dev Internal function to set account `a` skipNFT flag to `state` /// /// Initializes account `a` AddressData if it is not currently initialized. /// /// Emits a {SkipNFTSet} event. function _setSkipNFT(address a, bool state) internal { _addressData(a).skipNFT = state; emit SkipNFTSet(a, state); } /// @dev Returns a storage data pointer for account `a` AddressData /// /// Initializes account `a` AddressData if it is not currently initialized. function _addressData(address a) internal returns (AddressData storage d) { DN404Storage storage $ = _getDN404Storage(); d = $.addressData[a]; if (!d.initialized) { d.initialized = true; if (_hasCode(a)) d.skipNFT = true; } } /// @dev Returns if `a` has bytecode of non-zero length. function _hasCode(address a) private view returns (bool result) { /// @solidity memory-safe-assembly assembly { result := extcodesize(a) // Can handle dirty upper bits. } } /// @dev Returns the `addressAlias` of account `to`. /// /// Assigns and registers the next alias if `to` alias was not previously registered. function _registerAndResolveAlias(AddressData storage toAddressData, address to) internal returns (uint32 addressAlias) { DN404Storage storage $ = _getDN404Storage(); addressAlias = toAddressData.addressAlias; if (addressAlias == 0) { addressAlias = ++$.numAliases; toAddressData.addressAlias = addressAlias; $.aliasToAddress[addressAlias] = to; } } /// @dev Returns `max(0, x - y)`. function _zeroFloorSub(uint256 x, uint256 y) private pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { z := mul(gt(x, y), sub(x, y)) } } /// @dev Returns `i << 1`. function _ownershipIndex(uint256 i) private pure returns (uint256) { return i << 1; } /// @dev Returns `(i << 1) + 1`. function _ownedIndex(uint256 i) private pure returns (uint256) { unchecked { return (i << 1) + 1; } } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* MIRROR OPERATIONS */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ /// @dev Returns the address of the mirror NFT contract. function mirrorERC721() public view returns (address) { return _getDN404Storage().mirrorERC721; } /// @dev Returns the total NFT supply. function _totalNFTSupply() internal view virtual returns (uint256) { return _getDN404Storage().totalNFTSupply; } /// @dev Returns `owner` NFT balance. function _balanceOfNFT(address owner) internal view virtual returns (uint256) { return _getDN404Storage().addressData[owner].ownedLength; } /// @dev Returns the owner of token `id`. /// Returns the zero address instead of reverting if the token does not exist. function _ownerAt(uint256 id) internal view virtual returns (address) { DN404Storage storage $ = _getDN404Storage(); return $.aliasToAddress[$.oo.get(_ownershipIndex(id))]; } /// @dev Returns the owner of token `id`. /// /// Requirements: /// - Token `id` must exist. function _ownerOf(uint256 id) internal view virtual returns (address) { if (!_exists(id)) revert TokenDoesNotExist(); return _ownerAt(id); } /// @dev Returns if token `id` exists. function _exists(uint256 id) internal view virtual returns (bool) { return _ownerAt(id) != address(0); } /// @dev Returns the account approved to manage token `id`. /// /// Requirements: /// - Token `id` must exist. function _getApproved(uint256 id) internal view returns (address) { if (!_exists(id)) revert TokenDoesNotExist(); return _getDN404Storage().tokenApprovals[id]; } /// @dev Sets `spender` as the approved account to manage token `id`, using `msgSender`. /// /// Requirements: /// - `msgSender` must be the owner or an approved operator for the token owner. function _approveNFT(address spender, uint256 id, address msgSender) internal returns (address) { DN404Storage storage $ = _getDN404Storage(); address owner = $.aliasToAddress[$.oo.get(_ownershipIndex(id))]; if (msgSender != owner) { if (!$.operatorApprovals[owner][msgSender]) { revert ApprovalCallerNotOwnerNorApproved(); } } $.tokenApprovals[id] = spender; return owner; } /// @dev Approve or remove the `operator` as an operator for `msgSender`, /// without authorization checks. function _setApprovalForAll(address operator, bool approved, address msgSender) internal virtual { _getDN404Storage().operatorApprovals[msgSender][operator] = approved; } /// @dev Calls the mirror contract to link it to this contract. /// /// Reverts if the call to the mirror contract reverts. function _linkMirrorContract(address mirror) internal { /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x0f4599e5) // `linkMirrorContract(address)`. mstore(0x20, caller()) if iszero( and( and(eq(mload(0x00), 1), eq(returndatasize(), 0x20)), call(gas(), mirror, 0, 0x1c, 0x24, 0x00, 0x20) ) ) { mstore(0x00, 0xd125259c) // `LinkMirrorContractFailed()`. revert(0x1c, 0x04) } } } /// @dev Fallback modifier to dispatch calls from the mirror NFT contract /// to internal functions in this contract. modifier dn404Fallback() virtual { DN404Storage storage $ = _getDN404Storage(); uint256 fnSelector = _calldataload(0x00) >> 224; // `isApprovedForAll(address,address)`. if (fnSelector == 0xe985e9c5) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x44) revert(); address owner = address(uint160(_calldataload(0x04))); address operator = address(uint160(_calldataload(0x24))); _return($.operatorApprovals[owner][operator] ? 1 : 0); } // `ownerOf(uint256)`. if (fnSelector == 0x6352211e) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x24) revert(); uint256 id = _calldataload(0x04); _return(uint160(_ownerOf(id))); } // `transferFromNFT(address,address,uint256,address)`. if (fnSelector == 0xe5eb36c8) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x84) revert(); address from = address(uint160(_calldataload(0x04))); address to = address(uint160(_calldataload(0x24))); uint256 id = _calldataload(0x44); address msgSender = address(uint160(_calldataload(0x64))); _transferFromNFT(from, to, id, msgSender); _return(1); } // `setApprovalForAll(address,bool,address)`. if (fnSelector == 0x813500fc) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x64) revert(); address spender = address(uint160(_calldataload(0x04))); bool status = _calldataload(0x24) != 0; address msgSender = address(uint160(_calldataload(0x44))); _setApprovalForAll(spender, status, msgSender); _return(1); } // `approveNFT(address,uint256,address)`. if (fnSelector == 0xd10b6e0c) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x64) revert(); address spender = address(uint160(_calldataload(0x04))); uint256 id = _calldataload(0x24); address msgSender = address(uint160(_calldataload(0x44))); _return(uint160(_approveNFT(spender, id, msgSender))); } // `getApproved(uint256)`. if (fnSelector == 0x081812fc) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x24) revert(); uint256 id = _calldataload(0x04); _return(uint160(_getApproved(id))); } // `balanceOfNFT(address)`. if (fnSelector == 0xf5b100ea) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x24) revert(); address owner = address(uint160(_calldataload(0x04))); _return(_balanceOfNFT(owner)); } // `totalNFTSupply()`. if (fnSelector == 0xe2c79281) { if (msg.sender != $.mirrorERC721) revert UnauthorizedSender(); if (msg.data.length < 0x04) revert(); _return(_totalNFTSupply()); } // `implementsDN404()`. if (fnSelector == 0xb7a94eb8) { _return(1); } _; } /// @dev Fallback function for calls from mirror NFT contract. fallback() external payable virtual dn404Fallback {} receive() external payable virtual {} /// @dev Returns the calldata value at `offset`. function _calldataload(uint256 offset) private pure returns (uint256 value) { /// @solidity memory-safe-assembly assembly { value := calldataload(offset) } } /// @dev Executes a return opcode to return `x` and end the current call frame. function _return(uint256 x) private pure { /// @solidity memory-safe-assembly assembly { mstore(0x00, x) return(0x00, 0x20) } } } interface IUniswapV3Router { function factory() external view returns (address); } interface IUniswapV3Factory { function createPool( address tokenA, address tokenB, uint24 fee ) external returns (address pool); } pragma solidity ^0.8.0; contract DN404ByBakery is DN404, Ownable { string private _name; string private _symbol; string private _baseURI; string public _dataURI = "ipfs://bafybeif5ykwnt4jsdyuodousnmfs5ojokdpqvbladdep625mjnda7w4xxi"; DN404Mirror private _mirror; IUniswapV3Router public immutable v3Router; address public pool; error TransferFailed(); constructor( string memory name_, string memory symbol_, uint96 initialTokenSupply, address initialSupplyOwner ) { _initializeOwner(msg.sender); _name = name_; _symbol = symbol_; address mirrorAddress = address(new DN404Mirror(msg.sender)); _initializeDN404(initialTokenSupply, initialSupplyOwner, address(mirrorAddress)); address wethContract; address _v3Router; // @dev assumes WETH pair if(block.chainid == 1){ wethContract = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; _v3Router = 0xE592427A0AEce92De3Edee1F18E0157C05861564; } else if(block.chainid == 5){ wethContract = 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6; _v3Router = 0xE592427A0AEce92De3Edee1F18E0157C05861564; } else if(block.chainid == 168587773){ //Blast Testnet wethContract = 0x4200000000000000000000000000000000000023; _v3Router = 0x0Be67694EBE38f185DA22342B45E1A4262B0751D; } else if(block.chainid == 8453){ wethContract = 0x4200000000000000000000000000000000000006; _v3Router = 0x2626664c2603336E57B271c5C0b26F421741e481; //_v3Router = 0x198EF79F1F515F02dFE9e3115eD9fC07183f02fC; } else if(block.chainid == 42161){ wethContract = 0x82aF49447D8a07e3bd95BD0d56f35241523fBab1; _v3Router = 0xE592427A0AEce92De3Edee1F18E0157C05861564; } else { revert("Chain not configured"); } v3Router = IUniswapV3Router(_v3Router); pool = IUniswapV3Factory(v3Router.factory()).createPool(address(this), wethContract, 10000); } function name() public view override returns (string memory) { return _name; } function symbol() public view override returns (string memory) { return _symbol; } function setBaseURI(string calldata baseURI_) public onlyOwner { _baseURI = baseURI_; } function tokenURI(uint256 tokenId) public view override returns (string memory) { if (bytes(_baseURI).length > 0) { return string.concat(_baseURI, LibString.toString(tokenId)); } else { uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(tokenId)))); string memory image; if (seed <= 85) { image = "1.gif"; } else if (seed <= 150) { image = "2.gif"; } else if (seed <= 195) { image = "3.gif"; } else if (seed <= 225) { image = "4.gif"; } else if (seed <= 245) { image = "5.gif"; } else if (seed <= 255) { image = "6.gif"; } string memory jsonPreImage = string.concat( string.concat( string.concat('{"name": "', _name, ' #', LibString.toString(tokenId)), '","description":"The first ERC-404 with real-life toy CAR RACES and token prizes for NFT holders","external_url":"https://404wheels.xyz/","image":"' ), string.concat(_dataURI, image) ); string memory jsonPostImage = '","attributes":[]}'; return string.concat( "data:application/json;utf8,", string.concat(jsonPreImage, jsonPostImage) ); } } function deploymentType() public view returns (string memory) { return "404Bakery"; } function setSkipNFTByOwner(address a, bool state) public onlyOwner { _setSkipNFT(a, state); } function withdraw() external onlyOwner { (bool success,) = msg.sender.call{value: address(this).balance}(""); if (!success) revert TransferFailed(); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint96","name":"initialTokenSupply","type":"uint96"},{"internalType":"address","name":"initialSupplyOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"DNAlreadyInitialized","type":"error"},{"inputs":[],"name":"InsufficientAllowance","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidTotalNFTSupply","type":"error"},{"inputs":[],"name":"LinkMirrorContractFailed","type":"error"},{"inputs":[],"name":"MirrorAddressIsZero","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnauthorizedSender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":false,"internalType":"bool","name":"status","type":"bool"}],"name":"SkipNFTSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"_dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"deploymentType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getSkipNFT","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mirrorERC721","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"skipNFT","type":"bool"}],"name":"setSkipNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setSkipNFTByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"v3Router","outputs":[{"internalType":"contract IUniswapV3Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526040518060800160405280604281526020016200625f60429139600390816200002e919062000bf5565b503480156200003b575f80fd5b50604051620062a1380380620062a1833981810160405281019062000061919062000ed8565b6200007233620003cf60201b60201c565b835f908162000082919062000bf5565b50826001908162000094919062000bf5565b505f33604051620000a59062000983565b620000b1919062000f96565b604051809103905ff080158015620000cb573d5f803e3d5ffd5b509050620000e1838383620004b060201b60201c565b5f8060014603620001205773c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2915073e592427a0aece92de3edee1f18e0157c0586156490506200025a565b600546036200015d5773b4fbf271143f4fbf7b91a5ded31805e42b2208d6915073e592427a0aece92de3edee1f18e0157c05861564905062000259565b630a0c71fd46036200019d577342000000000000000000000000000000000000239150730be67694ebe38f185da22342b45e1a4262b0751d905062000258565b6121054603620001db577342000000000000000000000000000000000000069150732626664c2603336e57b271c5c0b26f421741e481905062000257565b61a4b1460362000219577382af49447d8a07e3bd95bd0d56f35241523fbab1915073e592427a0aece92de3edee1f18e0157c05861564905062000256565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d906200100f565b60405180910390fd5b5b5b5b5b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002da573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200030091906200102f565b73ffffffffffffffffffffffffffffffffffffffff1663a167129530846127106040518463ffffffff1660e01b81526004016200034093929190620010ae565b6020604051808303815f875af11580156200035d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200038391906200102f565b60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505050506200123e565b620003df620007d960201b60201c565b156200045a577fffffffffffffffffffffffffffffffffffffffffffffffffffffffff748739278054156200041b57630dc149f05f526004601cfd5b8160601b60601c9150811560ff1b82178155815f7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a350620004ad565b8060601b60601c9050807fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7487392755805f7f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a35b50565b5f620004c1620007dd60201b60201c565b90505f815f0160049054906101000a900463ffffffff1663ffffffff161462000516576040517fead4d2e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200057c576040517f39a84a7b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200058d826200080460201b60201c565b6001815f0160046101000a81548163ffffffff021916908363ffffffff16021790555081816001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f846bffffffffffffffffffffffff161115620007d3575f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200066f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600163ffffffff62000682919062001116565b670de0b6b3a7640000856bffffffffffffffffffffffff16620006a691906200117d565b1115620006df576040517f59f73a6600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83815f01600c6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055505f62000723846200083a60201b60201c565b905084815f01600a6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051620007b69190620011ec565b60405180910390a3620007d1846001620008fa60201b60201c565b505b50505050565b5f90565b5f7f61dd0d320a11019af7688ced18637b1235059a4e8141ed71cfccbe9f2da16600905090565b630f4599e55f523360205260205f6024601c5f855af160203d1460015f51141616620008375763d125259c5f526004601cfd5b50565b5f806200084c620007dd60201b60201c565b9050806008015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209150815f015f9054906101000a900460ff16620008f4576001825f015f6101000a81548160ff021916908315150217905550620008d0836200097960201b60201c565b15620008f3576001825f0160016101000a81548160ff0219169083151502179055505b5b50919050565b806200090c836200083a60201b60201c565b5f0160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb5a1de456fff688115a4f75380060c23c8532d14ff85f687cc871456d6420393826040516200096d919062001223565b60405180910390a25050565b5f813b9050919050565b6113b48062004eab83390190565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a0d57607f821691505b60208210810362000a235762000a22620009c8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a4a565b62000a93868362000a4a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000add62000ad762000ad18462000aab565b62000ab4565b62000aab565b9050919050565b5f819050919050565b62000af88362000abd565b62000b1062000b078262000ae4565b84845462000a56565b825550505050565b5f90565b62000b2662000b18565b62000b3381848462000aed565b505050565b5b8181101562000b5a5762000b4e5f8262000b1c565b60018101905062000b39565b5050565b601f82111562000ba95762000b738162000a29565b62000b7e8462000a3b565b8101602085101562000b8e578190505b62000ba662000b9d8562000a3b565b83018262000b38565b50505b505050565b5f82821c905092915050565b5f62000bcb5f198460080262000bae565b1980831691505092915050565b5f62000be5838362000bba565b9150826002028217905092915050565b62000c008262000991565b67ffffffffffffffff81111562000c1c5762000c1b6200099b565b5b62000c288254620009f5565b62000c3582828562000b5e565b5f60209050601f83116001811462000c6b575f841562000c56578287015190505b62000c62858262000bd8565b86555062000cd1565b601f19841662000c7b8662000a29565b5f5b8281101562000ca45784890151825560018201915060208501945060208101905062000c7d565b8683101562000cc4578489015162000cc0601f89168262000bba565b8355505b6001600288020188555050505b505050505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b62000d0d8262000cf2565b810181811067ffffffffffffffff8211171562000d2f5762000d2e6200099b565b5b80604052505050565b5f62000d4362000cd9565b905062000d51828262000d02565b919050565b5f67ffffffffffffffff82111562000d735762000d726200099b565b5b62000d7e8262000cf2565b9050602081019050919050565b5f5b8381101562000daa57808201518184015260208101905062000d8d565b5f8484015250505050565b5f62000dcb62000dc58462000d56565b62000d38565b90508281526020810184848401111562000dea5762000de962000cee565b5b62000df784828562000d8b565b509392505050565b5f82601f83011262000e165762000e1562000cea565b5b815162000e2884826020860162000db5565b91505092915050565b5f6bffffffffffffffffffffffff82169050919050565b62000e538162000e31565b811462000e5e575f80fd5b50565b5f8151905062000e718162000e48565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ea28262000e77565b9050919050565b62000eb48162000e96565b811462000ebf575f80fd5b50565b5f8151905062000ed28162000ea9565b92915050565b5f805f806080858703121562000ef35762000ef262000ce2565b5b5f85015167ffffffffffffffff81111562000f135762000f1262000ce6565b5b62000f218782880162000dff565b945050602085015167ffffffffffffffff81111562000f455762000f4462000ce6565b5b62000f538782880162000dff565b935050604062000f668782880162000e61565b925050606062000f798782880162000ec2565b91505092959194509250565b62000f908162000e96565b82525050565b5f60208201905062000fab5f83018462000f85565b92915050565b5f82825260208201905092915050565b7f436861696e206e6f7420636f6e666967757265640000000000000000000000005f82015250565b5f62000ff760148362000fb1565b9150620010048262000fc1565b602082019050919050565b5f6020820190508181035f830152620010288162000fe9565b9050919050565b5f6020828403121562001047576200104662000ce2565b5b5f620010568482850162000ec2565b91505092915050565b5f819050919050565b5f62ffffff82169050919050565b5f62001096620010906200108a846200105f565b62000ab4565b62001068565b9050919050565b620010a88162001076565b82525050565b5f606082019050620010c35f83018662000f85565b620010d2602083018562000f85565b620010e160408301846200109d565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620011228262000aab565b91506200112f8362000aab565b92508282039050818111156200114a5762001149620010e9565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620011898262000aab565b9150620011968362000aab565b925082620011a957620011a862001150565b5b828204905092915050565b5f620011d4620011ce620011c88462000e31565b62000ab4565b62000aab565b9050919050565b620011e681620011b4565b82525050565b5f602082019050620012015f830184620011db565b92915050565b5f8115159050919050565b6200121d8162001207565b82525050565b5f602082019050620012385f83018462001212565b92915050565b608051613c54620012575f395f6119430152613c545ff3fe60806040526004361061019f575f3560e01c806355f804b3116100eb578063c87b56dd11610089578063f04e283e11610063578063f04e283e14610cfa578063f2fde38b14610d16578063fbc968d714610d32578063fee81cf414610d5c576101a6565b8063c87b56dd14610c58578063c9cbb9bf14610c94578063dd62ed3e14610cbe576101a6565b80638a834744116100c55780638a83474414610ba05780638da5cb5b14610bc857806395d89b4114610bf2578063a9059cbb14610c1c576101a6565b806355f804b314610b3257806370a0823114610b5a578063715018a614610b96576101a6565b80632569296211610158578063313ce56711610132578063313ce56714610abe5780633ccfd60b14610ae85780634ef41efc14610afe57806354d1f13d14610b28576101a6565b80632569296214610a50578063274e430b14610a5a5780632a6a935d14610a96576101a6565b806306fdde0314610930578063095ea7b31461095a5780630dc913061461099657806316f0115b146109c057806318160ddd146109ea57806323b872dd14610a14576101a6565b366101a657005b5f6101af610d98565b90505f60e06101bd5f610dbf565b901c905063e985e9c5810361032057816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610254576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60445f3690501015610264575f80fd5b5f61026f6004610dbf565b90505f61027c6024610dbf565b905061031d846003015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610312575f610315565b60015b60ff16610dc9565b50505b636352211e81036103f957816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103b3576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f36905010156103c3575f80fd5b5f6103ce6004610dbf565b90506103f76103dc82610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b505b63e5eb36c881036104eb57816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048c576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60845f369050101561049c575f80fd5b5f6104a76004610dbf565b90505f6104b46024610dbf565b90505f6104c16044610dbf565b90505f6104ce6064610dbf565b90506104dc84848484610e21565b6104e66001610dc9565b505050505b63813500fc81036105d157816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461057e576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60645f369050101561058e575f80fd5b5f6105996004610dbf565b90505f806105a76024610dbf565b141590505f6105b66044610dbf565b90506105c3838383611452565b6105cd6001610dc9565b5050505b63d10b6e0c81036106c857816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610664576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60645f3690501015610674575f80fd5b5f61067f6004610dbf565b90505f61068c6024610dbf565b90505f6106996044610dbf565b90506106c46106a98484846114ef565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b5050505b63081812fc81036107a157816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461075b576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f369050101561076b575f80fd5b5f6107766004610dbf565b905061079f610784826116a8565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b505b63f5b100ea810361086457816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610834576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f3690501015610844575f80fd5b5f61084f6004610dbf565b905061086261085d82611729565b610dc9565b505b63e2c79281810361091857816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f3690501015610907575f80fd5b610917610912611790565b610dc9565b5b63b7a94eb8810361092e5761092d6001610dc9565b5b005b34801561093b575f80fd5b506109446117b7565b60405161095191906130a8565b60405180910390f35b348015610965575f80fd5b50610980600480360381019061097b919061315d565b611846565b60405161098d91906131b5565b60405180910390f35b3480156109a1575f80fd5b506109aa611941565b6040516109b79190613229565b60405180910390f35b3480156109cb575f80fd5b506109d4611965565b6040516109e19190613251565b60405180910390f35b3480156109f5575f80fd5b506109fe61198a565b604051610a0b9190613279565b60405180910390f35b348015610a1f575f80fd5b50610a3a6004803603810190610a359190613292565b6119c1565b604051610a4791906131b5565b60405180910390f35b610a58611b46565b005b348015610a65575f80fd5b50610a806004803603810190610a7b91906132e2565b611b97565b604051610a8d91906131b5565b60405180910390f35b348015610aa1575f80fd5b50610abc6004803603810190610ab79190613337565b611c1d565b005b348015610ac9575f80fd5b50610ad2611c2a565b604051610adf919061337d565b60405180910390f35b348015610af3575f80fd5b50610afc611c32565b005b348015610b09575f80fd5b50610b12611cdc565b604051610b1f9190613251565b60405180910390f35b610b30611d0d565b005b348015610b3d575f80fd5b50610b586004803603810190610b5391906133f7565b611d46565b005b348015610b65575f80fd5b50610b806004803603810190610b7b91906132e2565b611d64565b604051610b8d9190613279565b60405180910390f35b610b9e611ddb565b005b348015610bab575f80fd5b50610bc66004803603810190610bc19190613442565b611dee565b005b348015610bd3575f80fd5b50610bdc611e04565b604051610be99190613251565b60405180910390f35b348015610bfd575f80fd5b50610c06611e2c565b604051610c1391906130a8565b60405180910390f35b348015610c27575f80fd5b50610c426004803603810190610c3d919061315d565b611ebc565b604051610c4f91906131b5565b60405180910390f35b348015610c63575f80fd5b50610c7e6004803603810190610c799190613480565b611ed2565b604051610c8b91906130a8565b60405180910390f35b348015610c9f575f80fd5b50610ca8612211565b604051610cb591906130a8565b60405180910390f35b348015610cc9575f80fd5b50610ce46004803603810190610cdf91906134ab565b61229d565b604051610cf19190613279565b60405180910390f35b610d146004803603810190610d0f91906132e2565b612328565b005b610d306004803603810190610d2b91906132e2565b612366565b005b348015610d3d575f80fd5b50610d4661238f565b604051610d5391906130a8565b60405180910390f35b348015610d67575f80fd5b50610d826004803603810190610d7d91906132e2565b6123cc565b604051610d8f9190613279565b60405180910390f35b5f7f61dd0d320a11019af7688ced18637b1235059a4e8141ed71cfccbe9f2da16600905090565b5f81359050919050565b805f5260205ff35b5f610ddb826123e5565b610e11576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e1a82612425565b9050919050565b5f610e2a610d98565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e91576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f816002015f610eb5610ea387612495565b856007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610f55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110ac57816003015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166110ab57816004015f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5f6110b6876124cc565b90505f6110c2876124cc565b9050670de0b6b3a7640000825f01600a8282829054906101000a90046bffffffffffffffffffffffff166110f6919061352d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550670de0b6b3a7640000815f01600a8282829054906101000a90046bffffffffffffffffffffffff160192506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506111a461118787612495565b611191838a61257a565b8660070161266d9092919063ffffffff16565b836004015f8781526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f611267835f01600681819054906101000a900463ffffffff166001900391906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff16866006015f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206124a290919063ffffffff16565b63ffffffff1690506112e561129061127e8961269f565b876007016124a290919063ffffffff16565b63ffffffff1682876006015f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061266d9092919063ffffffff16565b5f825f01600681819054906101000a900463ffffffff168092919060010191906101000a81548163ffffffff021916908363ffffffff16021790555063ffffffff1690506113666113358361269f565b6113536113418b61269f565b896007016124a290919063ffffffff16565b8860070161266d9092919063ffffffff16565b6113b98189886006015f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061266d9092919063ffffffff16565b6113d96113c58961269f565b828860070161266d9092919063ffffffff16565b50508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a76400006040516114409190613279565b60405180910390a35050505050505050565b8161145b610d98565b6003015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050565b5f806114f9610d98565b90505f816002015f61151f61150d88612495565b856007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461164b57816003015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661164a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b85826004015f8781526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080925050509392505050565b5f6116b2826123e5565b6116e8576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f0610d98565b6004015f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f611732610d98565b6008015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160069054906101000a900463ffffffff1663ffffffff169050919050565b5f611799610d98565b5f0160089054906101000a900463ffffffff1663ffffffff16905090565b60605f80546117c590613599565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190613599565b801561183c5780601f106118135761010080835404028352916020019161183c565b820191905f5260205f20905b81548152906001019060200180831161181f57829003601f168201915b5050505050905090565b5f80611850610d98565b905082816005015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161192e9190613279565b60405180910390a3600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611993610d98565b5f01600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905090565b5f806119cb610d98565b90505f816005015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b2e5780841115611aac576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838103826005015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b611b398686866126ae565b6001925050509392505050565b5f611b4f612d5c565b67ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b5f80611ba1610d98565b6008015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050805f015f9054906101000a900460ff16611c0357611bfe83612d66565b611c15565b805f0160019054906101000a900460ff165b915050919050565b611c273382612d70565b50565b5f6012905090565b611c3a612de5565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051611c5f906135f6565b5f6040518083038185875af1925050503d805f8114611c99576040519150601f19603f3d011682016040523d82523d5f602084013e611c9e565b606091505b5050905080611cd9576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b5f611ce5610d98565b6001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b611d4e612de5565b818160029182611d5f9291906137d5565b505050565b5f611d6d610d98565b6008015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff169050919050565b611de3612de5565b611dec5f612e1c565b565b611df6612de5565b611e008282612d70565b5050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7487392754905090565b606060018054611e3b90613599565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6790613599565b8015611eb25780601f10611e8957610100808354040283529160200191611eb2565b820191905f5260205f20905b815481529060010190602001808311611e9557829003601f168201915b5050505050905090565b5f611ec83384846126ae565b6001905092915050565b60605f60028054611ee290613599565b90501115611f1c576002611ef583612ee2565b604051602001611f0692919061395c565b604051602081830303815290604052905061220c565b5f82604051602001611f2e919061399f565b6040516020818303038152906040528051906020012060f81c9050606060558260ff1611611f93576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525090506120fc565b60968260ff1611611fdb576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525090506120fb565b60c38260ff1611612023576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525090506120fa565b60e18260ff161161206b576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525090506120f9565b60f58260ff16116120b3576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525090506120f8565b60ff8260ff16116120f7576040518060400160405280600581526020017f362e67696600000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5b5f8061210786612ee2565b604051602001612118929190613a05565b6040516020818303038152906040526040516020016121379190613b28565b60405160208183030381529060405260038360405160200161215a92919061395c565b60405160208183030381529060405260405160200161217a929190613b49565b60405160208183030381529060405290505f6040518060400160405280601281526020017f222c2261747472696275746573223a5b5d7d0000000000000000000000000000815250905081816040516020016121d7929190613b49565b6040516020818303038152906040526040516020016121f69190613b92565b6040516020818303038152906040529450505050505b919050565b6003805461221e90613599565b80601f016020809104026020016040519081016040528092919081815260200182805461224a90613599565b80156122955780601f1061226c57610100808354040283529160200191612295565b820191905f5260205f20905b81548152906001019060200180831161227857829003601f168201915b505050505081565b5f6122a6610d98565b6005015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612330612de5565b63389a75e1600c52805f526020600c20805442111561235657636f5e88185f526004601cfd5b5f81555061236381612e1c565b50565b61236e612de5565b8060601b61238357637448fbae5f526004601cfd5b61238c81612e1c565b50565b60606040518060400160405280600981526020017f34303442616b6572790000000000000000000000000000000000000000000000815250905090565b5f63389a75e1600c52815f526020600c20549050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661240683612425565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b5f8061242f610d98565b9050806002015f61245461244286612495565b846007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b5f600182901b9050919050565b5f600560078316901b835f015f600385901c81526020019081526020015f2054901c905092915050565b5f806124d6610d98565b9050806008015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209150815f015f9054906101000a900460ff16612574576001825f015f6101000a81548160ff02191690831515021790555061255183612d66565b15612573576001825f0160016101000a81548160ff0219169083151502179055505b5b50919050565b5f80612584610d98565b9050835f0160029054906101000a900463ffffffff1691505f8263ffffffff160361266657805f015f81819054906101000a900463ffffffff166125c790613bc6565b91906101000a81548163ffffffff021916908363ffffffff1602179055915081845f0160026101000a81548163ffffffff021916908363ffffffff16021790555082816002015f8463ffffffff1663ffffffff1681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5092915050565b826020528160031c5f5260405f206007831660051b815463ffffffff8482841c188116831b8218845550505050505050565b5f60018083901b019050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612713576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61271c610d98565b90505f612728856124cc565b90505f612734856124cc565b905061273e612fd5565b825f0160069054906101000a900463ffffffff1663ffffffff16816080018181525050815f0160069054906101000a900463ffffffff1663ffffffff168160a0018181525050825f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1681604001818152505080604001518511156127f5576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b848160400181815103915081815250508060400151835f01600a6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555084825f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16018160600181815250825f01600a6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506128ca8160800151670de0b6b3a76400008360400151816128c4576128c3613bf1565b5b04612f31565b815f018181525050815f0160019054906101000a900460ff1661291b57612911670de0b6b3a764000082606001518161290657612905613bf1565b5b048260a00151612f31565b8160200181815250505b5f61292e8260200151835f015101612f41565b90505f825f015114612a9b575f856006015f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f836080015190505f845f015182039050845f0151885f0160088282829054906101000a900463ffffffff160392506101000a81548163ffffffff021916908363ffffffff1602179055505b5f6129e38360019003935083856124a290919063ffffffff16565b63ffffffff169050612a0b6129f78261269f565b5f8b60070161266d9092919063ffffffff16565b612a2b612a1782612495565b5f8b60070161266d9092919063ffffffff16565b886004015f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055612a6d858d836001612f6e565b508082036129c85781875f0160066101000a81548163ffffffff021916908363ffffffff1602179055505050505b5f826020015114612cb4575f856006015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f8360a0015190505f8460200151820190505f612b05878c61257a565b90505f670de0b6b3a76400008a5f01600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1681612b4957612b48613bf1565b5b0490505f8a5f0160049054906101000a900463ffffffff1663ffffffff16905087602001518b5f0160088282829054906101000a900463ffffffff160192506101000a81548163ffffffff021916908363ffffffff16021790555083895f0160066101000a81548163ffffffff021916908363ffffffff1602179055505b5b5f612be7612bd583612495565b8d6007016124a290919063ffffffff16565b63ffffffff1614612c0a5781816001019150811115612c0557600190505b612bc8565b612c1f85828861266d9092919063ffffffff16565b612c3f612c2b82612495565b848d60070161266d9092919063ffffffff16565b612c65612c4b8261269f565b868060010197508d60070161266d9092919063ffffffff16565b612c71878e835f612f6e565b81816001019150811115612c8457600190505b838503612bc757808b5f0160046101000a81548163ffffffff021916908363ffffffff1602179055505050505050505b5f815f01515114612ced57612cec81866001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612f90565b5b508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051612d4b9190613279565b60405180910390a350505050505050565b5f6202a300905090565b5f813b9050919050565b80612d7a836124cc565b5f0160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb5a1de456fff688115a4f75380060c23c8532d14ff85f687cc871456d642039382604051612dd991906131b5565b60405180910390a25050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff74873927543314612e1a576382b429005f526004601cfd5b565b612e24612fd1565b15612e89577fffffffffffffffffffffffffffffffffffffffffffffffffffffffff748739278160601b60601c91508181547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3811560ff1b8217815550612edf565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff748739278160601b60601c91508181547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3818155505b50565b60606080604051019050602081016040525f8152805f19835b600115612f1c578184019350600a81066030018453600a8104905080612efb575b50828203602084039350808452505050919050565b5f81830382841102905092915050565b612f49613005565b6040805101828152806020018360051b81016040528183528083602001525050919050565b8360200151818360081b8560601b171781526020810185602001525050505050565b81516040810363263c69d68152602080820152815160051b60440160205f82601c85015f885af1601f3d1160015f51141616612fca575f80fd5b5050505050565b5f90565b6040518060c001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6040518060400160405280606081526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561305557808201518184015260208101905061303a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61307a8261301e565b6130848185613028565b9350613094818560208601613038565b61309d81613060565b840191505092915050565b5f6020820190508181035f8301526130c08184613070565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130f9826130d0565b9050919050565b613109816130ef565b8114613113575f80fd5b50565b5f8135905061312481613100565b92915050565b5f819050919050565b61313c8161312a565b8114613146575f80fd5b50565b5f8135905061315781613133565b92915050565b5f8060408385031215613173576131726130c8565b5b5f61318085828601613116565b925050602061319185828601613149565b9150509250929050565b5f8115159050919050565b6131af8161319b565b82525050565b5f6020820190506131c85f8301846131a6565b92915050565b5f819050919050565b5f6131f16131ec6131e7846130d0565b6131ce565b6130d0565b9050919050565b5f613202826131d7565b9050919050565b5f613213826131f8565b9050919050565b61322381613209565b82525050565b5f60208201905061323c5f83018461321a565b92915050565b61324b816130ef565b82525050565b5f6020820190506132645f830184613242565b92915050565b6132738161312a565b82525050565b5f60208201905061328c5f83018461326a565b92915050565b5f805f606084860312156132a9576132a86130c8565b5b5f6132b686828701613116565b93505060206132c786828701613116565b92505060406132d886828701613149565b9150509250925092565b5f602082840312156132f7576132f66130c8565b5b5f61330484828501613116565b91505092915050565b6133168161319b565b8114613320575f80fd5b50565b5f813590506133318161330d565b92915050565b5f6020828403121561334c5761334b6130c8565b5b5f61335984828501613323565b91505092915050565b5f60ff82169050919050565b61337781613362565b82525050565b5f6020820190506133905f83018461336e565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133b7576133b6613396565b5b8235905067ffffffffffffffff8111156133d4576133d361339a565b5b6020830191508360018202830111156133f0576133ef61339e565b5b9250929050565b5f806020838503121561340d5761340c6130c8565b5b5f83013567ffffffffffffffff81111561342a576134296130cc565b5b613436858286016133a2565b92509250509250929050565b5f8060408385031215613458576134576130c8565b5b5f61346585828601613116565b925050602061347685828601613323565b9150509250929050565b5f60208284031215613495576134946130c8565b5b5f6134a284828501613149565b91505092915050565b5f80604083850312156134c1576134c06130c8565b5b5f6134ce85828601613116565b92505060206134df85828601613116565b9150509250929050565b5f6bffffffffffffffffffffffff82169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613537826134e9565b9150613542836134e9565b925082820390506bffffffffffffffffffffffff81111561356657613565613500565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806135b057607f821691505b6020821081036135c3576135c261356c565b5b50919050565b5f81905092915050565b50565b5f6135e15f836135c9565b91506135ec826135d3565b5f82019050919050565b5f613600826135d6565b9150819050919050565b5f82905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261369d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613662565b6136a78683613662565b95508019841693508086168417925050509392505050565b5f6136d96136d46136cf8461312a565b6131ce565b61312a565b9050919050565b5f819050919050565b6136f2836136bf565b6137066136fe826136e0565b84845461366e565b825550505050565b5f90565b61371a61370e565b6137258184846136e9565b505050565b5b818110156137485761373d5f82613712565b60018101905061372b565b5050565b601f82111561378d5761375e81613641565b61376784613653565b81016020851015613776578190505b61378a61378285613653565b83018261372a565b50505b505050565b5f82821c905092915050565b5f6137ad5f1984600802613792565b1980831691505092915050565b5f6137c5838361379e565b9150826002028217905092915050565b6137df838361360a565b67ffffffffffffffff8111156137f8576137f7613614565b5b6138028254613599565b61380d82828561374c565b5f601f83116001811461383a575f8415613828578287013590505b61383285826137ba565b865550613899565b601f19841661384886613641565b5f5b8281101561386f5784890135825560018201915060208501945060208101905061384a565b8683101561388c5784890135613888601f89168261379e565b8355505b6001600288020188555050505b50505050505050565b5f81905092915050565b5f81546138b881613599565b6138c281866138a2565b9450600182165f81146138dc57600181146138f157613923565b60ff1983168652811515820286019350613923565b6138fa85613641565b5f5b8381101561391b578154818901526001820191506020810190506138fc565b838801955050505b50505092915050565b5f6139368261301e565b61394081856138a2565b9350613950818560208601613038565b80840191505092915050565b5f61396782856138ac565b9150613973828461392c565b91508190509392505050565b5f819050919050565b6139996139948261312a565b61397f565b82525050565b5f6139aa8284613988565b60208201915081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000815250565b7f2023000000000000000000000000000000000000000000000000000000000000815250565b5f613a0f826139b9565b600a82019150613a1f82856138ac565b9150613a2a826139df565b600282019150613a3a828461392c565b91508190509392505050565b7f222c226465736372697074696f6e223a22546865206669727374204552432d345f8201527f30342077697468207265616c2d6c69666520746f79204341522052414345532060208201527f616e6420746f6b656e207072697a657320666f72204e465420686f6c6465727360408201527f222c2265787465726e616c5f75726c223a2268747470733a2f2f34303477686560608201527f656c732e78797a2f222c22696d616765223a2200000000000000000000000000608082015250565b5f613b126093836138a2565b9150613b1d82613a46565b609382019050919050565b5f613b33828461392c565b9150613b3e82613b06565b915081905092915050565b5f613b54828561392c565b9150613b60828461392c565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613b9c82613b6c565b601b82019150613bac828461392c565b915081905092915050565b5f63ffffffff82169050919050565b5f613bd082613bb7565b915063ffffffff8203613be657613be5613500565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220f10965f59bb77d3f908628343f628f66291cae7858344eb3d012639b3ca753b464736f6c63430008180033608060405234801562000010575f80fd5b50604051620013b4380380620013b483398181016040528101906200003691906200011a565b80620000476200008e60201b60201c565b6001015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200014a565b5f7fe8cb618a1de8ad2a6a7b358523c369cb09f40cc15da64205134c7e55c6a86700905090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620000e482620000b9565b9050919050565b620000f681620000d8565b811462000101575f80fd5b50565b5f815190506200011481620000eb565b92915050565b5f60208284031215620001325762000131620000b5565b5b5f620001418482850162000104565b91505092915050565b61125c80620001585f395ff3fe6080604052600436106100eb575f3560e01c806342842e0e11610089578063a22cb46511610058578063a22cb465146105e7578063b88d4fde1461060f578063c87b56dd14610637578063e985e9c514610673576100f2565b806342842e0e146105295780636352211e1461054557806370a082311461058157806395d89b41146105bd576100f2565b8063095ea7b3116100c5578063095ea7b31461048557806318160ddd146104ad57806323b872dd146104d75780633d36e5e9146104ff576100f2565b806301ffc9a7146103e357806306fdde031461041f578063081812fc14610449576100f2565b366100f257005b5f6100fb6106af565b90505f60e06101095f6106d6565b901c905063263c69d6810361021d57815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461019f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b602036103d5f3e6004356024018036103d5f3e602081033560051b81018036103d5f3e5b8082146102145781358060601c816001168260a01b60a81c811583028284027fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f38a45050508160200191506101c3565b60015f5260205ff35b630f4599e581036103e1575f73ffffffffffffffffffffffffffffffffffffffff16826001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461031057816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166102c260046106d6565b73ffffffffffffffffffffffffffffffffffffffff161461030f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff16825f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610397576040517fbf656a4600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33825f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060015f5260205ff35b005b3480156103ee575f80fd5b5061040960048036038101906104049190610dd2565b6106e0565b6040516104169190610e17565b60405180910390f35b34801561042a575f80fd5b50610433610704565b6040516104409190610eba565b60405180910390f35b348015610454575f80fd5b5061046f600480360381019061046a9190610f0d565b610759565b60405161047c9190610f77565b60405180910390f35b348015610490575f80fd5b506104ab60048036038101906104a69190610fba565b61079f565b005b3480156104b8575f80fd5b506104c1610857565b6040516104ce9190611007565b60405180910390f35b3480156104e2575f80fd5b506104fd60048036038101906104f89190611020565b610891565b005b34801561050a575f80fd5b50610513610950565b6040516105209190610f77565b60405180910390f35b610543600480360381019061053e9190611020565b6109e5565b005b348015610550575f80fd5b5061056b60048036038101906105669190610f0d565b610a1e565b6040516105789190610f77565b60405180910390f35b34801561058c575f80fd5b506105a760048036038101906105a29190611070565b610a64565b6040516105b49190611007565b60405180910390f35b3480156105c8575f80fd5b506105d1610aaa565b6040516105de9190610eba565b60405180910390f35b3480156105f2575f80fd5b5061060d600480360381019061060891906110c5565b610aff565b005b34801561061a575f80fd5b5061063560048036038101906106309190611164565b610bbd565b005b348015610642575f80fd5b5061065d60048036038101906106589190610f0d565b610c2d565b60405161066a9190610eba565b60405180910390f35b34801561067e575f80fd5b50610699600480360381019061069491906111e8565b610c8a565b6040516106a69190610e17565b60405180910390f35b5f7fe8cb618a1de8ad2a6a7b358523c369cb09f40cc15da64205134c7e55c6a86700905090565b5f81359050919050565b5f8160e01c635b5e139f81146380ac58cd82146301ffc9a783141717915050919050565b60605f61070f610950565b905060405191506306fdde0382525f806004601c8501845afa610734573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e815160208301016040525090565b5f80610763610950565b905063081812fc5f528260205260205f6024601c845afa601f3d111661078f573d5f6040513e3d604051fd5b5f5160601b60601c915050919050565b5f6107a8610950565b90505f60405163d10b6e0c5f528460601b60601c602052836040523360605260205f6064601c34875af1601f3d11166107e3573d5f823e3d81fd5b806040525f6060525f5160601b60601c915050828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b5f80610861610950565b905063e2c792815f5260205f6004601c845afa601f3d1116610889573d5f6040513e3d604051fd5b5f5191505090565b5f61089a610950565b905060405163e5eb36c881528460601b60601c60208201528360601b60601c604082015282606082015233608082015260205f6084601c840134865af1601f3d1160015f511416166108ee573d5f823e3d81fd5b50818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a450505050565b5f6109596106af565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e2576040517f5b2a47ae00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b90565b6109f0838383610891565b6109f982610ce1565b15610a1957610a1883838360405180602001604052805f815250610ceb565b5b505050565b5f80610a28610950565b9050636352211e5f528260205260205f6024601c845afa601f3d1116610a54573d5f6040513e3d604051fd5b5f5160601b60601c915050919050565b5f80610a6e610950565b905063f5b100ea5f528260601b60601c60205260205f6024601c845afa601f3d1116610aa0573d5f6040513e3d604051fd5b5f51915050919050565b60605f610ab5610950565b905060405191506395d89b4182525f806004601c8501845afa610ada573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e815160208301016040525090565b5f610b08610950565b905060405163813500fc5f528360601b60601c6020528215156040523360605260205f6064601c34865af1601f3d1160015f51141616610b4a573d5f823e3d81fd5b806040525f606052508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3184604051610bb09190610e17565b60405180910390a3505050565b610bc8858585610891565b610bd184610ce1565b15610c2657610c2585858585858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f82011690508083019250505050505050610ceb565b5b5050505050565b60605f610c38610950565b9050604051915063c87b56dd82528260208301525f806024601c8501845afa610c63573d5f833e3d82fd5b60205f803e60205f51833e815160205f5101602084013e8151602083010160405250919050565b5f80610c94610950565b905060405163e985e9c55f528460601b60601c6020528360601b60601c60405260205f6044601c855afa601f3d1116610ccf573d5f823e3d81fd5b806040525f5115159250505092915050565b5f813b9050919050565b60405163150b7a028082523360208301528560601b60601c604083015283606083015260808083015282518060a08401528015610d32578060c08401826020870160045afa505b60208360a48301601c86015f8a5af1610d54573d15610d53573d5f843e3d83fd5b5b8160e01b835114610d6c5763d1a57ed65f526004601cfd5b50505050505050565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610db181610d7d565b8114610dbb575f80fd5b50565b5f81359050610dcc81610da8565b92915050565b5f60208284031215610de757610de6610d75565b5b5f610df484828501610dbe565b91505092915050565b5f8115159050919050565b610e1181610dfd565b82525050565b5f602082019050610e2a5f830184610e08565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610e67578082015181840152602081019050610e4c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e8c82610e30565b610e968185610e3a565b9350610ea6818560208601610e4a565b610eaf81610e72565b840191505092915050565b5f6020820190508181035f830152610ed28184610e82565b905092915050565b5f819050919050565b610eec81610eda565b8114610ef6575f80fd5b50565b5f81359050610f0781610ee3565b92915050565b5f60208284031215610f2257610f21610d75565b5b5f610f2f84828501610ef9565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f6182610f38565b9050919050565b610f7181610f57565b82525050565b5f602082019050610f8a5f830184610f68565b92915050565b610f9981610f57565b8114610fa3575f80fd5b50565b5f81359050610fb481610f90565b92915050565b5f8060408385031215610fd057610fcf610d75565b5b5f610fdd85828601610fa6565b9250506020610fee85828601610ef9565b9150509250929050565b61100181610eda565b82525050565b5f60208201905061101a5f830184610ff8565b92915050565b5f805f6060848603121561103757611036610d75565b5b5f61104486828701610fa6565b935050602061105586828701610fa6565b925050604061106686828701610ef9565b9150509250925092565b5f6020828403121561108557611084610d75565b5b5f61109284828501610fa6565b91505092915050565b6110a481610dfd565b81146110ae575f80fd5b50565b5f813590506110bf8161109b565b92915050565b5f80604083850312156110db576110da610d75565b5b5f6110e885828601610fa6565b92505060206110f9858286016110b1565b9150509250929050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f84011261112457611123611103565b5b8235905067ffffffffffffffff81111561114157611140611107565b5b60208301915083600182028301111561115d5761115c61110b565b5b9250929050565b5f805f805f6080868803121561117d5761117c610d75565b5b5f61118a88828901610fa6565b955050602061119b88828901610fa6565b94505060406111ac88828901610ef9565b935050606086013567ffffffffffffffff8111156111cd576111cc610d79565b5b6111d98882890161110f565b92509250509295509295909350565b5f80604083850312156111fe576111fd610d75565b5b5f61120b85828601610fa6565b925050602061121c85828601610fa6565b915050925092905056fea2646970667358221220feed863a1a9e67ca6ea8f4c53b0e781bc13bfc6728767106804da1524c58939f64736f6c63430008180033697066733a2f2f626166796265696635796b776e74346a736479756f646f75736e6d6673356f6a6f6b64707176626c61646465703632356d6a6e6461377734787869000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000069d0788057e408eb5985713c5b4400b970cc443a0000000000000000000000000000000000000000000000000000000000000009343034574845454c5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009343034574845454c530000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061019f575f3560e01c806355f804b3116100eb578063c87b56dd11610089578063f04e283e11610063578063f04e283e14610cfa578063f2fde38b14610d16578063fbc968d714610d32578063fee81cf414610d5c576101a6565b8063c87b56dd14610c58578063c9cbb9bf14610c94578063dd62ed3e14610cbe576101a6565b80638a834744116100c55780638a83474414610ba05780638da5cb5b14610bc857806395d89b4114610bf2578063a9059cbb14610c1c576101a6565b806355f804b314610b3257806370a0823114610b5a578063715018a614610b96576101a6565b80632569296211610158578063313ce56711610132578063313ce56714610abe5780633ccfd60b14610ae85780634ef41efc14610afe57806354d1f13d14610b28576101a6565b80632569296214610a50578063274e430b14610a5a5780632a6a935d14610a96576101a6565b806306fdde0314610930578063095ea7b31461095a5780630dc913061461099657806316f0115b146109c057806318160ddd146109ea57806323b872dd14610a14576101a6565b366101a657005b5f6101af610d98565b90505f60e06101bd5f610dbf565b901c905063e985e9c5810361032057816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610254576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60445f3690501015610264575f80fd5b5f61026f6004610dbf565b90505f61027c6024610dbf565b905061031d846003015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610312575f610315565b60015b60ff16610dc9565b50505b636352211e81036103f957816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103b3576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f36905010156103c3575f80fd5b5f6103ce6004610dbf565b90506103f76103dc82610dd1565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b505b63e5eb36c881036104eb57816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461048c576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60845f369050101561049c575f80fd5b5f6104a76004610dbf565b90505f6104b46024610dbf565b90505f6104c16044610dbf565b90505f6104ce6064610dbf565b90506104dc84848484610e21565b6104e66001610dc9565b505050505b63813500fc81036105d157816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461057e576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60645f369050101561058e575f80fd5b5f6105996004610dbf565b90505f806105a76024610dbf565b141590505f6105b66044610dbf565b90506105c3838383611452565b6105cd6001610dc9565b5050505b63d10b6e0c81036106c857816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610664576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60645f3690501015610674575f80fd5b5f61067f6004610dbf565b90505f61068c6024610dbf565b90505f6106996044610dbf565b90506106c46106a98484846114ef565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b5050505b63081812fc81036107a157816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461075b576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f369050101561076b575f80fd5b5f6107766004610dbf565b905061079f610784826116a8565b73ffffffffffffffffffffffffffffffffffffffff16610dc9565b505b63f5b100ea810361086457816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610834576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60245f3690501015610844575f80fd5b5f61084f6004610dbf565b905061086261085d82611729565b610dc9565b505b63e2c79281810361091857816001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f0809490800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60045f3690501015610907575f80fd5b610917610912611790565b610dc9565b5b63b7a94eb8810361092e5761092d6001610dc9565b5b005b34801561093b575f80fd5b506109446117b7565b60405161095191906130a8565b60405180910390f35b348015610965575f80fd5b50610980600480360381019061097b919061315d565b611846565b60405161098d91906131b5565b60405180910390f35b3480156109a1575f80fd5b506109aa611941565b6040516109b79190613229565b60405180910390f35b3480156109cb575f80fd5b506109d4611965565b6040516109e19190613251565b60405180910390f35b3480156109f5575f80fd5b506109fe61198a565b604051610a0b9190613279565b60405180910390f35b348015610a1f575f80fd5b50610a3a6004803603810190610a359190613292565b6119c1565b604051610a4791906131b5565b60405180910390f35b610a58611b46565b005b348015610a65575f80fd5b50610a806004803603810190610a7b91906132e2565b611b97565b604051610a8d91906131b5565b60405180910390f35b348015610aa1575f80fd5b50610abc6004803603810190610ab79190613337565b611c1d565b005b348015610ac9575f80fd5b50610ad2611c2a565b604051610adf919061337d565b60405180910390f35b348015610af3575f80fd5b50610afc611c32565b005b348015610b09575f80fd5b50610b12611cdc565b604051610b1f9190613251565b60405180910390f35b610b30611d0d565b005b348015610b3d575f80fd5b50610b586004803603810190610b5391906133f7565b611d46565b005b348015610b65575f80fd5b50610b806004803603810190610b7b91906132e2565b611d64565b604051610b8d9190613279565b60405180910390f35b610b9e611ddb565b005b348015610bab575f80fd5b50610bc66004803603810190610bc19190613442565b611dee565b005b348015610bd3575f80fd5b50610bdc611e04565b604051610be99190613251565b60405180910390f35b348015610bfd575f80fd5b50610c06611e2c565b604051610c1391906130a8565b60405180910390f35b348015610c27575f80fd5b50610c426004803603810190610c3d919061315d565b611ebc565b604051610c4f91906131b5565b60405180910390f35b348015610c63575f80fd5b50610c7e6004803603810190610c799190613480565b611ed2565b604051610c8b91906130a8565b60405180910390f35b348015610c9f575f80fd5b50610ca8612211565b604051610cb591906130a8565b60405180910390f35b348015610cc9575f80fd5b50610ce46004803603810190610cdf91906134ab565b61229d565b604051610cf19190613279565b60405180910390f35b610d146004803603810190610d0f91906132e2565b612328565b005b610d306004803603810190610d2b91906132e2565b612366565b005b348015610d3d575f80fd5b50610d4661238f565b604051610d5391906130a8565b60405180910390f35b348015610d67575f80fd5b50610d826004803603810190610d7d91906132e2565b6123cc565b604051610d8f9190613279565b60405180910390f35b5f7f61dd0d320a11019af7688ced18637b1235059a4e8141ed71cfccbe9f2da16600905090565b5f81359050919050565b805f5260205ff35b5f610ddb826123e5565b610e11576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e1a82612425565b9050919050565b5f610e2a610d98565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e91576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f816002015f610eb5610ea387612495565b856007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614610f55576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110ac57816003015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166110ab57816004015f8581526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110aa576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b5f6110b6876124cc565b90505f6110c2876124cc565b9050670de0b6b3a7640000825f01600a8282829054906101000a90046bffffffffffffffffffffffff166110f6919061352d565b92506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550670de0b6b3a7640000815f01600a8282829054906101000a90046bffffffffffffffffffffffff160192506101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506111a461118787612495565b611191838a61257a565b8660070161266d9092919063ffffffff16565b836004015f8781526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f611267835f01600681819054906101000a900463ffffffff166001900391906101000a81548163ffffffff021916908363ffffffff160217905563ffffffff16866006015f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206124a290919063ffffffff16565b63ffffffff1690506112e561129061127e8961269f565b876007016124a290919063ffffffff16565b63ffffffff1682876006015f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061266d9092919063ffffffff16565b5f825f01600681819054906101000a900463ffffffff168092919060010191906101000a81548163ffffffff021916908363ffffffff16021790555063ffffffff1690506113666113358361269f565b6113536113418b61269f565b896007016124a290919063ffffffff16565b8860070161266d9092919063ffffffff16565b6113b98189886006015f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2061266d9092919063ffffffff16565b6113d96113c58961269f565b828860070161266d9092919063ffffffff16565b50508673ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef670de0b6b3a76400006040516114409190613279565b60405180910390a35050505050505050565b8161145b610d98565b6003015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550505050565b5f806114f9610d98565b90505f816002015f61151f61150d88612495565b856007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461164b57816003015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661164a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b85826004015f8781526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080925050509392505050565b5f6116b2826123e5565b6116e8576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116f0610d98565b6004015f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f611732610d98565b6008015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f0160069054906101000a900463ffffffff1663ffffffff169050919050565b5f611799610d98565b5f0160089054906101000a900463ffffffff1663ffffffff16905090565b60605f80546117c590613599565b80601f01602080910402602001604051908101604052809291908181526020018280546117f190613599565b801561183c5780601f106118135761010080835404028352916020019161183c565b820191905f5260205f20905b81548152906001019060200180831161181f57829003601f168201915b5050505050905090565b5f80611850610d98565b905082816005015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258560405161192e9190613279565b60405180910390a3600191505092915050565b7f000000000000000000000000e592427a0aece92de3edee1f18e0157c0586156481565b60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f611993610d98565b5f01600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905090565b5f806119cb610d98565b90505f816005015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b2e5780841115611aac576040517f13be252b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b838103826005015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b611b398686866126ae565b6001925050509392505050565b5f611b4f612d5c565b67ffffffffffffffff164201905063389a75e1600c52335f52806020600c2055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d5f80a250565b5f80611ba1610d98565b6008015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050805f015f9054906101000a900460ff16611c0357611bfe83612d66565b611c15565b805f0160019054906101000a900460ff165b915050919050565b611c273382612d70565b50565b5f6012905090565b611c3a612de5565b5f3373ffffffffffffffffffffffffffffffffffffffff1647604051611c5f906135f6565b5f6040518083038185875af1925050503d805f8114611c99576040519150601f19603f3d011682016040523d82523d5f602084013e611c9e565b606091505b5050905080611cd9576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50565b5f611ce5610d98565b6001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b63389a75e1600c52335f525f6020600c2055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c925f80a2565b611d4e612de5565b818160029182611d5f9291906137d5565b505050565b5f611d6d610d98565b6008015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff169050919050565b611de3612de5565b611dec5f612e1c565b565b611df6612de5565b611e008282612d70565b5050565b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff7487392754905090565b606060018054611e3b90613599565b80601f0160208091040260200160405190810160405280929190818152602001828054611e6790613599565b8015611eb25780601f10611e8957610100808354040283529160200191611eb2565b820191905f5260205f20905b815481529060010190602001808311611e9557829003601f168201915b5050505050905090565b5f611ec83384846126ae565b6001905092915050565b60605f60028054611ee290613599565b90501115611f1c576002611ef583612ee2565b604051602001611f0692919061395c565b604051602081830303815290604052905061220c565b5f82604051602001611f2e919061399f565b6040516020818303038152906040528051906020012060f81c9050606060558260ff1611611f93576040518060400160405280600581526020017f312e67696600000000000000000000000000000000000000000000000000000081525090506120fc565b60968260ff1611611fdb576040518060400160405280600581526020017f322e67696600000000000000000000000000000000000000000000000000000081525090506120fb565b60c38260ff1611612023576040518060400160405280600581526020017f332e67696600000000000000000000000000000000000000000000000000000081525090506120fa565b60e18260ff161161206b576040518060400160405280600581526020017f342e67696600000000000000000000000000000000000000000000000000000081525090506120f9565b60f58260ff16116120b3576040518060400160405280600581526020017f352e67696600000000000000000000000000000000000000000000000000000081525090506120f8565b60ff8260ff16116120f7576040518060400160405280600581526020017f362e67696600000000000000000000000000000000000000000000000000000081525090505b5b5b5b5b5b5f8061210786612ee2565b604051602001612118929190613a05565b6040516020818303038152906040526040516020016121379190613b28565b60405160208183030381529060405260038360405160200161215a92919061395c565b60405160208183030381529060405260405160200161217a929190613b49565b60405160208183030381529060405290505f6040518060400160405280601281526020017f222c2261747472696275746573223a5b5d7d0000000000000000000000000000815250905081816040516020016121d7929190613b49565b6040516020818303038152906040526040516020016121f69190613b92565b6040516020818303038152906040529450505050505b919050565b6003805461221e90613599565b80601f016020809104026020016040519081016040528092919081815260200182805461224a90613599565b80156122955780601f1061226c57610100808354040283529160200191612295565b820191905f5260205f20905b81548152906001019060200180831161227857829003601f168201915b505050505081565b5f6122a6610d98565b6005015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b612330612de5565b63389a75e1600c52805f526020600c20805442111561235657636f5e88185f526004601cfd5b5f81555061236381612e1c565b50565b61236e612de5565b8060601b61238357637448fbae5f526004601cfd5b61238c81612e1c565b50565b60606040518060400160405280600981526020017f34303442616b6572790000000000000000000000000000000000000000000000815250905090565b5f63389a75e1600c52815f526020600c20549050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff1661240683612425565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b5f8061242f610d98565b9050806002015f61245461244286612495565b846007016124a290919063ffffffff16565b63ffffffff1663ffffffff1681526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16915050919050565b5f600182901b9050919050565b5f600560078316901b835f015f600385901c81526020019081526020015f2054901c905092915050565b5f806124d6610d98565b9050806008015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209150815f015f9054906101000a900460ff16612574576001825f015f6101000a81548160ff02191690831515021790555061255183612d66565b15612573576001825f0160016101000a81548160ff0219169083151502179055505b5b50919050565b5f80612584610d98565b9050835f0160029054906101000a900463ffffffff1691505f8263ffffffff160361266657805f015f81819054906101000a900463ffffffff166125c790613bc6565b91906101000a81548163ffffffff021916908363ffffffff1602179055915081845f0160026101000a81548163ffffffff021916908363ffffffff16021790555082816002015f8463ffffffff1663ffffffff1681526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b5092915050565b826020528160031c5f5260405f206007831660051b815463ffffffff8482841c188116831b8218845550505050505050565b5f60018083901b019050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612713576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f61271c610d98565b90505f612728856124cc565b90505f612734856124cc565b905061273e612fd5565b825f0160069054906101000a900463ffffffff1663ffffffff16816080018181525050815f0160069054906101000a900463ffffffff1663ffffffff168160a0018181525050825f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1681604001818152505080604001518511156127f5576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b848160400181815103915081815250508060400151835f01600a6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555084825f01600a9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16018160600181815250825f01600a6101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055506128ca8160800151670de0b6b3a76400008360400151816128c4576128c3613bf1565b5b04612f31565b815f018181525050815f0160019054906101000a900460ff1661291b57612911670de0b6b3a764000082606001518161290657612905613bf1565b5b048260a00151612f31565b8160200181815250505b5f61292e8260200151835f015101612f41565b90505f825f015114612a9b575f856006015f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f836080015190505f845f015182039050845f0151885f0160088282829054906101000a900463ffffffff160392506101000a81548163ffffffff021916908363ffffffff1602179055505b5f6129e38360019003935083856124a290919063ffffffff16565b63ffffffff169050612a0b6129f78261269f565b5f8b60070161266d9092919063ffffffff16565b612a2b612a1782612495565b5f8b60070161266d9092919063ffffffff16565b886004015f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055612a6d858d836001612f6e565b508082036129c85781875f0160066101000a81548163ffffffff021916908363ffffffff1602179055505050505b5f826020015114612cb4575f856006015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f8360a0015190505f8460200151820190505f612b05878c61257a565b90505f670de0b6b3a76400008a5f01600c9054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff1681612b4957612b48613bf1565b5b0490505f8a5f0160049054906101000a900463ffffffff1663ffffffff16905087602001518b5f0160088282829054906101000a900463ffffffff160192506101000a81548163ffffffff021916908363ffffffff16021790555083895f0160066101000a81548163ffffffff021916908363ffffffff1602179055505b5b5f612be7612bd583612495565b8d6007016124a290919063ffffffff16565b63ffffffff1614612c0a5781816001019150811115612c0557600190505b612bc8565b612c1f85828861266d9092919063ffffffff16565b612c3f612c2b82612495565b848d60070161266d9092919063ffffffff16565b612c65612c4b8261269f565b868060010197508d60070161266d9092919063ffffffff16565b612c71878e835f612f6e565b81816001019150811115612c8457600190505b838503612bc757808b5f0160046101000a81548163ffffffff021916908363ffffffff1602179055505050505050505b5f815f01515114612ced57612cec81866001015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612f90565b5b508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87604051612d4b9190613279565b60405180910390a350505050505050565b5f6202a300905090565b5f813b9050919050565b80612d7a836124cc565b5f0160016101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fb5a1de456fff688115a4f75380060c23c8532d14ff85f687cc871456d642039382604051612dd991906131b5565b60405180910390a25050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff74873927543314612e1a576382b429005f526004601cfd5b565b612e24612fd1565b15612e89577fffffffffffffffffffffffffffffffffffffffffffffffffffffffff748739278160601b60601c91508181547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3811560ff1b8217815550612edf565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffff748739278160601b60601c91508181547f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3818155505b50565b60606080604051019050602081016040525f8152805f19835b600115612f1c578184019350600a81066030018453600a8104905080612efb575b50828203602084039350808452505050919050565b5f81830382841102905092915050565b612f49613005565b6040805101828152806020018360051b81016040528183528083602001525050919050565b8360200151818360081b8560601b171781526020810185602001525050505050565b81516040810363263c69d68152602080820152815160051b60440160205f82601c85015f885af1601f3d1160015f51141616612fca575f80fd5b5050505050565b5f90565b6040518060c001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b6040518060400160405280606081526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561305557808201518184015260208101905061303a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61307a8261301e565b6130848185613028565b9350613094818560208601613038565b61309d81613060565b840191505092915050565b5f6020820190508181035f8301526130c08184613070565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130f9826130d0565b9050919050565b613109816130ef565b8114613113575f80fd5b50565b5f8135905061312481613100565b92915050565b5f819050919050565b61313c8161312a565b8114613146575f80fd5b50565b5f8135905061315781613133565b92915050565b5f8060408385031215613173576131726130c8565b5b5f61318085828601613116565b925050602061319185828601613149565b9150509250929050565b5f8115159050919050565b6131af8161319b565b82525050565b5f6020820190506131c85f8301846131a6565b92915050565b5f819050919050565b5f6131f16131ec6131e7846130d0565b6131ce565b6130d0565b9050919050565b5f613202826131d7565b9050919050565b5f613213826131f8565b9050919050565b61322381613209565b82525050565b5f60208201905061323c5f83018461321a565b92915050565b61324b816130ef565b82525050565b5f6020820190506132645f830184613242565b92915050565b6132738161312a565b82525050565b5f60208201905061328c5f83018461326a565b92915050565b5f805f606084860312156132a9576132a86130c8565b5b5f6132b686828701613116565b93505060206132c786828701613116565b92505060406132d886828701613149565b9150509250925092565b5f602082840312156132f7576132f66130c8565b5b5f61330484828501613116565b91505092915050565b6133168161319b565b8114613320575f80fd5b50565b5f813590506133318161330d565b92915050565b5f6020828403121561334c5761334b6130c8565b5b5f61335984828501613323565b91505092915050565b5f60ff82169050919050565b61337781613362565b82525050565b5f6020820190506133905f83018461336e565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126133b7576133b6613396565b5b8235905067ffffffffffffffff8111156133d4576133d361339a565b5b6020830191508360018202830111156133f0576133ef61339e565b5b9250929050565b5f806020838503121561340d5761340c6130c8565b5b5f83013567ffffffffffffffff81111561342a576134296130cc565b5b613436858286016133a2565b92509250509250929050565b5f8060408385031215613458576134576130c8565b5b5f61346585828601613116565b925050602061347685828601613323565b9150509250929050565b5f60208284031215613495576134946130c8565b5b5f6134a284828501613149565b91505092915050565b5f80604083850312156134c1576134c06130c8565b5b5f6134ce85828601613116565b92505060206134df85828601613116565b9150509250929050565b5f6bffffffffffffffffffffffff82169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f613537826134e9565b9150613542836134e9565b925082820390506bffffffffffffffffffffffff81111561356657613565613500565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806135b057607f821691505b6020821081036135c3576135c261356c565b5b50919050565b5f81905092915050565b50565b5f6135e15f836135c9565b91506135ec826135d3565b5f82019050919050565b5f613600826135d6565b9150819050919050565b5f82905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261369d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613662565b6136a78683613662565b95508019841693508086168417925050509392505050565b5f6136d96136d46136cf8461312a565b6131ce565b61312a565b9050919050565b5f819050919050565b6136f2836136bf565b6137066136fe826136e0565b84845461366e565b825550505050565b5f90565b61371a61370e565b6137258184846136e9565b505050565b5b818110156137485761373d5f82613712565b60018101905061372b565b5050565b601f82111561378d5761375e81613641565b61376784613653565b81016020851015613776578190505b61378a61378285613653565b83018261372a565b50505b505050565b5f82821c905092915050565b5f6137ad5f1984600802613792565b1980831691505092915050565b5f6137c5838361379e565b9150826002028217905092915050565b6137df838361360a565b67ffffffffffffffff8111156137f8576137f7613614565b5b6138028254613599565b61380d82828561374c565b5f601f83116001811461383a575f8415613828578287013590505b61383285826137ba565b865550613899565b601f19841661384886613641565b5f5b8281101561386f5784890135825560018201915060208501945060208101905061384a565b8683101561388c5784890135613888601f89168261379e565b8355505b6001600288020188555050505b50505050505050565b5f81905092915050565b5f81546138b881613599565b6138c281866138a2565b9450600182165f81146138dc57600181146138f157613923565b60ff1983168652811515820286019350613923565b6138fa85613641565b5f5b8381101561391b578154818901526001820191506020810190506138fc565b838801955050505b50505092915050565b5f6139368261301e565b61394081856138a2565b9350613950818560208601613038565b80840191505092915050565b5f61396782856138ac565b9150613973828461392c565b91508190509392505050565b5f819050919050565b6139996139948261312a565b61397f565b82525050565b5f6139aa8284613988565b60208201915081905092915050565b7f7b226e616d65223a202200000000000000000000000000000000000000000000815250565b7f2023000000000000000000000000000000000000000000000000000000000000815250565b5f613a0f826139b9565b600a82019150613a1f82856138ac565b9150613a2a826139df565b600282019150613a3a828461392c565b91508190509392505050565b7f222c226465736372697074696f6e223a22546865206669727374204552432d345f8201527f30342077697468207265616c2d6c69666520746f79204341522052414345532060208201527f616e6420746f6b656e207072697a657320666f72204e465420686f6c6465727360408201527f222c2265787465726e616c5f75726c223a2268747470733a2f2f34303477686560608201527f656c732e78797a2f222c22696d616765223a2200000000000000000000000000608082015250565b5f613b126093836138a2565b9150613b1d82613a46565b609382019050919050565b5f613b33828461392c565b9150613b3e82613b06565b915081905092915050565b5f613b54828561392c565b9150613b60828461392c565b91508190509392505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613b9c82613b6c565b601b82019150613bac828461392c565b915081905092915050565b5f63ffffffff82169050919050565b5f613bd082613bb7565b915063ffffffff8203613be657613be5613500565b5b600182019050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffdfea2646970667358221220f10965f59bb77d3f908628343f628f66291cae7858344eb3d012639b3ca753b464736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000069d0788057e408eb5985713c5b4400b970cc443a0000000000000000000000000000000000000000000000000000000000000009343034574845454c5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009343034574845454c530000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): 404WHEELS
Arg [1] : symbol_ (string): 404WHEELS
Arg [2] : initialTokenSupply (uint96): 1000000000000000000000
Arg [3] : initialSupplyOwner (address): 0x69D0788057E408eB5985713C5b4400b970cc443a
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [3] : 00000000000000000000000069d0788057e408eb5985713c5b4400b970cc443a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 343034574845454c530000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 343034574845454c530000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.