ETH Price: $2,908.66 (-4.01%)
Gas: 1 Gwei

Token

WIFU 404 (WIFU)
 

Overview

Max Total Supply

200,000 WIFU

Holders

0

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WIFU

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : wifu.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./ERC404a/ERC404aMetadata.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract WIFU is ERC404aMetadata {
    string public baseTokenURI;
    bytes32 public rootHash;
    mapping(address => bool) public claimed;


    constructor(
        address _owner
    ) ERC404aMetadata("WIFU 404", "WIFU", 18, 200000, _owner, 100) {
        balanceOf[_owner] = 200000 * 10 ** 18;
    }

    function isValidProof(
        bytes32[] calldata proof,
        bytes32 leaf
    ) private view returns (bool) {
        return MerkleProof.verify(proof, rootHash, leaf);
    }

    modifier isWhiteListedAddress(bytes32[] calldata proof) {
        require(
            isValidProof(proof, keccak256(abi.encodePacked(msg.sender))),
            "Not WhiteListed Address"
        );
        _;
    }

    function claim(bytes32[] calldata proof) public isWhiteListedAddress(proof) {
        require(!claimed[msg.sender], "Tokens already claimed");
        require(balanceOf[address(this)] >= 15, "Not enough tokens in contract");
        _transfer(address(this), msg.sender, 15);
        claimed[msg.sender] = true;
    }

    function updateHash(bytes32 _hash) public onlyOwner {
        rootHash = _hash;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    /**
     * @dev Overrides the parent implementation in ERC404Metadata.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
}

File 2 of 7 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 3 of 7 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 4 of 7 : ERC404aMetadata.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./ERC404a.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract ERC404aMetadata is ERC404a {
    using Strings for uint256;

    /**
     * @dev Since ERC404 dynamically burns and mints tokenIds, any one piece of 
     * metadata is not necessarily tied to one tokenId across different points 
     * in time. Static hosting services, such as IPFS, cannot dynamically update
     * to accomodate these requirements. Hence, metadataIds maps a tokenId
     * to a number between 0 and totalNativeSupply, which correlates to the metadata 
     * index of that tokenId.
     * It should be noted that due to the re-implementation of the _mint function,
     * any transfers occuring before the totalNativeSupply is reached will generate new
     * metadata for that NFT.
     */
    mapping(uint256 => uint256) public metadataIds;

    /**
     * @dev pendingIds is a linked list of tokenIds. Its implementation is 
     * essentially a LIFO queue. It accounts for transfers between a 
     * whitelisted and non-whitelisted user where NFTs are burned but 
     * not minted, or vice-versa.
     */
    mapping(uint256 => uint256) public pendingIds;

    /**
     * @dev Implemented in the _mint function.
     */
    uint256 public totalNativeSupply;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner,
         /// @dev Number of tokens required to recieve NFT
        uint256 _tokensRequiredForMint
    ) ERC404a(_name, _symbol, _decimals, _totalNativeSupply, _owner, _tokensRequiredForMint) {
        totalNativeSupply = _totalNativeSupply;
    }

    /**
     * @dev Implementation from ERC721.
     * Empty by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev Implementation from ERC721, with the only changes being 
     * 1. tokenId is instead metadataIds[tokenId], where 0 < tokenId < totalNativeSupply
     * 2. _requireOwned(tokenId); is not used, since there is no implementation
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(tokenId > 0 && tokenId <= totalSupply, "ERC404a: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        // Subtract 1 from tokenId to match the desired filename in the URI
        uint256 metadataIndex = tokenId - 1;
        return bytes(baseURI).length > 0 
            ? string(abi.encodePacked(baseURI, Strings.toString(metadataIndex), ".json")) 
            : "";
    }

    /**
     * @dev Re-implementation from ERC404.sol
     */
    function _mint(address to) internal virtual override {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        /**
         * @dev The logic is as follows:
         * 1. if minted > totalNativeSupply, the tokenId is added to the queue
         * 2. otherwise, the metadataId is the tokenId
         * (this means that mints under the totalNativeSupply generate new metadata)
         */
        if (id > totalNativeSupply) {
            uint256 firstId = pendingIds[0];
            metadataIds[id] = firstId;
            pendingIds[0] = pendingIds[firstId];
        } else {
            metadataIds[id] = id;
        }

        emit Transfer(address(0), to, id);
    }

    /**
     * @dev Re-implementation from ERC404.sol
     */
    function _burn(address from) internal virtual override {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        /**
         * @dev Tokens are prepended to the head of the linked list.
         * If the recipient of the transfer is not whitelisted,
         * these values will removed during the _mint function. 
         */
        uint256 metadataId = metadataIds[id];
        pendingIds[metadataId] = pendingIds[0];
        pendingIds[0] = metadataId;

        emit Transfer(from, address(0), id);
    }

}

File 5 of 7 : ERC404a.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404a
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404a is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Tax Amount in %
    uint256 public taxPercentage = 5; // Default tax amount set to 5%

    /// @dev Total tokens needed to attempt a mint
    uint256 public tokensRequiredForMint;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner,

        /// @dev Number of tokens required to recieve NFT
        uint256 _tokensRequiredForMint
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);

        /// @dev Number of tokens required to recieve NFT
        tokensRequiredForMint = _tokensRequiredForMint; 
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

   /// @notice Internal function for fractional transfers 
      /// @notice Internal function for fractional transfers 
    function _transfer( 
        address from, 
        address to, 
        uint256 amount 
    ) internal returns (bool) { 
        uint256 unit = _getUnit(); 
 
        uint256 tokens_before = (balanceOf[to] / unit) / 100; 
        uint256 tokens_after = ((balanceOf[to] + amount) / unit) / 100; 
        uint256 tokens_from_before = (balanceOf[from] / unit) / 100; 
        uint256 tokens_from_after = ((balanceOf[from] - amount) / unit) / 100; 

        uint256 taxAmount = 0;
        
        balanceOf[from] -= amount; 
        
        // Calculate the 2% tax if the sender is not whitelisted and the balance is decreasing
        if (!whitelist[from] && from != address(0)) {
            taxAmount = (amount * taxPercentage) / 100; // 2% tax
            amount -= taxAmount; // Adjust the amount after tax deduction
        }

 
        unchecked { 
            balanceOf[to] += amount; 
            balanceOf[owner] += taxAmount; 
        } 
 
        // Burn tokens from the sender if their balance goes below a multiple of 100 
        if (!whitelist[from]) { 
            if (tokens_from_before > tokens_from_after) { 
                uint256 tokens_to_burn = tokens_from_before - tokens_from_after; 
                for (uint256 i = 0; i < tokens_to_burn; i++) { 
                    _burn(from); 
                } 
            } 
        } 
 
        // Mint tokens to the receiver if their balance increases by a multiple of 100 
        if (!whitelist[to]) { 
            if (tokens_after > tokens_before) { 
                uint256 tokens_to_mint = tokens_after - tokens_before; 
                for (uint256 i = 0; i < tokens_to_mint; i++) { 
                    _mint(to); 
                } 
            } 
        } 
 
        emit ERC20Transfer(from, owner, taxAmount); 
        emit ERC20Transfer(from, to, amount); 
        return true; 
    }
        
    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function setTaxAmount(uint256 _taxAmount) public onlyOwner {
        require(_taxAmount <= 5, "Tax amount must be between 0 and 5");
        taxPercentage = _taxAmount;
    }

    function getCurrentTax() public view returns (uint256) {
        return taxPercentage;
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}

File 6 of 7 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 7 of 7 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","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":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"metadataIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"pendingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxAmount","type":"uint256"}],"name":"setTaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"tokensRequiredForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalNativeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"updateHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c0604052600560035534801562000015575f80fd5b5060405162004bb838038062004bb883398181016040528101906200003b9190620002e0565b6040518060400160405280600881526020017f57494655203430340000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5749465500000000000000000000000000000000000000000000000000000000815250601262030d40846064858585858585815f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200011d576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508560019081620001c8919062000574565b508460029081620001da919062000574565b508360ff1660808160ff1681525050608051600a620001fa9190620007e1565b8362000207919062000831565b60a081815250508060048190555050505050505082601081905550505050505050692a5a058fc295ed00000060065f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550506200087b565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002aa826200027f565b9050919050565b620002bc816200029e565b8114620002c7575f80fd5b50565b5f81519050620002da81620002b1565b92915050565b5f60208284031215620002f857620002f76200027b565b5b5f6200030784828501620002ca565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200038c57607f821691505b602082108103620003a257620003a162000347565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620004067fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003c9565b620004128683620003c9565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200045c6200045662000450846200042a565b62000433565b6200042a565b9050919050565b5f819050919050565b62000477836200043c565b6200048f620004868262000463565b848454620003d5565b825550505050565b5f90565b620004a562000497565b620004b28184846200046c565b505050565b5b81811015620004d957620004cd5f826200049b565b600181019050620004b8565b5050565b601f8211156200052857620004f281620003a8565b620004fd84620003ba565b810160208510156200050d578190505b620005256200051c85620003ba565b830182620004b7565b50505b505050565b5f82821c905092915050565b5f6200054a5f19846008026200052d565b1980831691505092915050565b5f62000564838362000539565b9150826002028217905092915050565b6200057f8262000310565b67ffffffffffffffff8111156200059b576200059a6200031a565b5b620005a7825462000374565b620005b4828285620004dd565b5f60209050601f831160018114620005ea575f8415620005d5578287015190505b620005e1858262000557565b86555062000650565b601f198416620005fa86620003a8565b5f5b828110156200062357848901518255600182019150602085019450602081019050620005fc565b868310156200064357848901516200063f601f89168262000539565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006e257808604811115620006ba57620006b962000658565b5b6001851615620006ca5780820291505b8081029050620006da8562000685565b94506200069a565b94509492505050565b5f82620006fc5760019050620007ce565b816200070b575f9050620007ce565b81600181146200072457600281146200072f5762000765565b6001915050620007ce565b60ff84111562000744576200074362000658565b5b8360020a9150848211156200075e576200075d62000658565b5b50620007ce565b5060208310610133831016604e8410600b84101617156200079f5782820a90508381111562000799576200079862000658565b5b620007ce565b620007ae848484600162000691565b92509050818404811115620007c857620007c762000658565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007ed826200042a565b9150620007fa83620007d5565b9250620008297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006eb565b905092915050565b5f6200083d826200042a565b91506200084a836200042a565b92508282026200085a816200042a565b9150828204841483151762000874576200087362000658565b5b5092915050565b60805160a05161430d620008ab5f395f8181610aa90152611de801525f81816113fe01526121e5015261430d5ff3fe608060405234801561000f575f80fd5b506004361061021a575f3560e01c80638da5cb5b11610123578063c87b56dd116100ab578063e0df5b6f1161007a578063e0df5b6f1461064e578063e985e9c51461066a578063f0fcce631461069a578063f2fde38b146106b8578063ff57527f146106d45761021a565b8063c87b56dd146105a0578063c884ef83146105d0578063d547cfb714610600578063dd62ed3e1461061e5761021a565b8063a9059cbb116100f2578063a9059cbb146104fe578063ae7b6d161461052e578063b391c5081461054c578063b88d4fde14610568578063c3d9c9d7146105845761021a565b80638da5cb5b1461047657806395d89b41146104945780639b19251a146104b2578063a22cb465146104e25761021a565b806342842e0e116101a657806353d6fd591161017557806353d6fd59146103be5780635bbdaed4146103da5780636352211e146103f857806370a082311461042857806381456f48146104585761021a565b806342842e0e1461034c578063438114d0146103685780634f02c42014610384578063504334c2146103a25761021a565b80631d80009a116101ed5780631d80009a146102ba57806323b872dd146102d85780632b968958146102f45780632fa55ac0146102fe578063313ce5671461032e5761021a565b806306fdde031461021e578063081812fc1461023c578063095ea7b31461026c57806318160ddd1461029c575b5f80fd5b610226610704565b6040516102339190613143565b60405180910390f35b610256600480360381019061025191906131a7565b610790565b6040516102639190613211565b60405180910390f35b61028660048036038101906102819190613254565b6107c0565b60405161029391906132ac565b60405180910390f35b6102a4610aa7565b6040516102b191906132d4565b60405180910390f35b6102c2610acb565b6040516102cf9190613305565b60405180910390f35b6102f260048036038101906102ed919061331e565b610ad1565b005b6102fc6112c8565b005b610318600480360381019061031391906131a7565b6113e7565b60405161032591906132d4565b60405180910390f35b6103366113fc565b6040516103439190613389565b60405180910390f35b6103666004803603810190610361919061331e565b611420565b005b610382600480360381019061037d91906133cc565b61154f565b005b61038c6115dd565b60405161039991906132d4565b60405180910390f35b6103bc60048036038101906103b79190613523565b6115e3565b005b6103d860048036038101906103d391906135c3565b611675565b005b6103e2611751565b6040516103ef91906132d4565b60405180910390f35b610412600480360381019061040d91906131a7565b611757565b60405161041f9190613211565b60405180910390f35b610442600480360381019061043d9190613601565b6117f5565b60405161044f91906132d4565b60405180910390f35b61046061180a565b60405161046d91906132d4565b60405180910390f35b61047e611810565b60405161048b9190613211565b60405180910390f35b61049c611833565b6040516104a99190613143565b60405180910390f35b6104cc60048036038101906104c79190613601565b6118bf565b6040516104d991906132ac565b60405180910390f35b6104fc60048036038101906104f791906135c3565b6118dc565b005b61051860048036038101906105139190613254565b6119d4565b60405161052591906132ac565b60405180910390f35b6105366119e8565b60405161054391906132d4565b60405180910390f35b61056660048036038101906105619190613689565b6119ee565b005b610582600480360381019061057d9190613729565b611bd3565b005b61059e600480360381019061059991906131a7565b611d08565b005b6105ba60048036038101906105b591906131a7565b611dda565b6040516105c79190613143565b60405180910390f35b6105ea60048036038101906105e59190613601565b611eb5565b6040516105f791906132ac565b60405180910390f35b610608611ed2565b6040516106159190613143565b60405180910390f35b610638600480360381019061063391906137ad565b611f5e565b60405161064591906132d4565b60405180910390f35b610668600480360381019061066391906137eb565b611f7e565b005b610684600480360381019061067f91906137ad565b612015565b60405161069191906132ac565b60405180910390f35b6106a261203f565b6040516106af91906132d4565b60405180910390f35b6106d260048036038101906106cd9190613601565b612048565b005b6106ee60048036038101906106e991906131a7565b6121cd565b6040516106fb91906132d4565b60405180910390f35b600180546107119061385f565b80601f016020809104026020016040519081016040528092919081815260200182805461073d9061385f565b80156107885780601f1061075f57610100808354040283529160200191610788565b820191905f5260205f20905b81548152906001019060200180831161076b57829003601f168201915b505050505081565b6008602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055482111580156107d257505f82115b156109ba575f600a5f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108c9575060095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610900576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360085f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109ac91906132d4565b60405180910390a350610a9d565b8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a9491906132d4565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60125481565b600554811161118957600a5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b6f576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd4576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c92575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cfa575060085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d31576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d396121e2565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8491906138bc565b92505081905550610d936121e2565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555081600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610ee991906138bc565b81548110610efa57610ef96138ef565b5b905f5260205f200154905080600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600c5f8581526020019081526020015f205481548110610f6657610f656138ef565b5b905f5260205f200181905550600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fbf57610fbe61391c565b5b600190038181905f5260205f20015f90559055600c5f8381526020019081526020015f2054600c5f8381526020019081526020015f2081905550600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110a791906138bc565b600c5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761116e6121e2565b60405161117b91906132d4565b60405180910390a3506112c3565b5f60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112b557818161123891906138bc565b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c0848484612215565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461134c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b600e602052805f5260405f205f915090505481565b7f000000000000000000000000000000000000000000000000000000000000000081565b61142b838383610ad1565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611513575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b81526004016114b19392919061397c565b6020604051808303815f875af11580156114cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f19190613a19565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561154a576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060128190555050565b60055481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611667576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611671828261275e565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60045481565b5f600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f0576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6006602052805f5260405f205f915090505481565b60105481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600280546118409061385f565b80601f016020809104026020016040519081016040528092919081815260200182805461186c9061385f565b80156118b75780601f1061188e576101008083540402835291602001916118b7565b820191905f5260205f20905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b600d602052805f5260405f205f915054906101000a900460ff1681565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c891906132ac565b60405180910390a35050565b5f6119e0338484612215565b905092915050565b60035481565b8181611a21828233604051602001611a069190613a89565b60405160208183030381529060405280519060200120612782565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613aed565b60405180910390fd5b60135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b55565b60405180910390fd5b600f60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613bbd565b60405180910390fd5b611b773033600f612215565b50600160135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505050565b611bde858585610ad1565b5f8473ffffffffffffffffffffffffffffffffffffffff163b14158015611cca575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611c68959493929190613c07565b6020604051808303815f875af1158015611c84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ca89190613a19565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611d01576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005811115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790613cc3565b60405180910390fd5b8060038190555050565b60605f82118015611e0b57507f00000000000000000000000000000000000000000000000000000000000000008211155b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613d51565b60405180910390fd5b5f611e536127d9565b90505f600184611e6391906138bc565b90505f825111611e815760405180602001604052805f815250611eac565b81611e8b82612869565b604051602001611e9c929190613df3565b6040516020818303038152906040525b92505050919050565b6013602052805f5260405f205f915054906101000a900460ff1681565b60118054611edf9061385f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b9061385f565b8015611f565780601f10611f2d57610100808354040283529160200191611f56565b820191905f5260205f20905b815481529060010190602001808311611f3957829003601f168201915b505050505081565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612002576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601190816120119190613fbe565b5050565b6009602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b5f600354905090565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612131576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b600f602052805f5260405f205f915090505481565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a61221091906141bc565b905090565b5f8061221f6121e2565b90505f60648260065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461226d9190614233565b6122779190614233565b90505f6064838660065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546122c69190614263565b6122d09190614233565b6122da9190614233565b90505f60648460065f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123289190614233565b6123329190614233565b90505f6064858860065f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461238191906138bc565b61238b9190614233565b6123959190614233565b90505f8760065f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546123e491906138bc565b92505081905550600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561246e57505f73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614155b1561249e576064600354896124839190614296565b61248d9190614233565b9050808861249b91906138bc565b97505b8760065f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508060065f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166125db57818311156125da575f82846125b591906138bc565b90505f5b818110156125d7576125ca8c612933565b80806001019150506125b9565b50505b5b600d5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166126645784841115612663575f858561263e91906138bc565b90505f5b81811015612660576126538b612bcb565b8080600101915050612642565b50505b5b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487836040516126e091906132d4565b60405180910390a38873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878a60405161274591906132d4565b60405180910390a3600196505050505050509392505050565b816001908161276d9190613fbe565b50806002908161277d9190613fbe565b505050565b5f6127d08484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060125484612ec6565b90509392505050565b6060601180546127e89061385f565b80601f01602080910402602001604051908101604052809291908181526020018280546128149061385f565b801561285f5780601f106128365761010080835404028352916020019161285f565b820191905f5260205f20905b81548152906001019060200180831161284257829003601f168201915b5050505050905090565b60605f600161287784612edc565b0190505f8167ffffffffffffffff811115612895576128946133ff565b5b6040519080825280601f01601f1916602001820160405280156128c75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612928578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161291d5761291c614206565b5b0494505f85036128d4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612998576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a2391906138bc565b81548110612a3457612a336138ef565b5b905f5260205f2001549050600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480612a8c57612a8b61391c565b5b600190038181905f5260205f20015f90559055600c5f8281526020019081526020015f205f9055600a5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600e5f8381526020019081526020015f20549050600f5f8081526020019081526020015f2054600f5f8381526020019081526020015f208190555080600f5f8081526020019081526020015f2081905550815f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c30576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f81548092919060010191905055505f60055490505f73ffffffffffffffffffffffffffffffffffffffff16600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cdc576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612dd991906138bc565b600c5f8381526020019081526020015f2081905550601054811115612e50575f600f5f8081526020019081526020015f2054905080600e5f8481526020019081526020015f2081905550600f5f8281526020019081526020015f2054600f5f8081526020019081526020015f208190555050612e67565b80600e5f8381526020019081526020015f20819055505b808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f82612ed2858461302d565b1490509392505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f38577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f2e57612f2d614206565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612f75576d04ee2d6d415b85acef81000000008381612f6b57612f6a614206565b5b0492506020810190505b662386f26fc100008310612fa457662386f26fc100008381612f9a57612f99614206565b5b0492506010810190505b6305f5e1008310612fcd576305f5e1008381612fc357612fc2614206565b5b0492506008810190505b6127108310612ff2576127108381612fe857612fe7614206565b5b0492506004810190505b60648310613015576064838161300b5761300a614206565b5b0492506002810190505b600a8310613024576001810190505b80915050919050565b5f808290505f5b84518110156130705761306182868381518110613054576130536138ef565b5b602002602001015161307b565b91508080600101915050613034565b508091505092915050565b5f8183106130925761308d82846130a5565b61309d565b61309c83836130a5565b5b905092915050565b5f825f528160205260405f20905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130f05780820151818401526020810190506130d5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613115826130b9565b61311f81856130c3565b935061312f8185602086016130d3565b613138816130fb565b840191505092915050565b5f6020820190508181035f83015261315b818461310b565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61318681613174565b8114613190575f80fd5b50565b5f813590506131a18161317d565b92915050565b5f602082840312156131bc576131bb61316c565b5b5f6131c984828501613193565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131fb826131d2565b9050919050565b61320b816131f1565b82525050565b5f6020820190506132245f830184613202565b92915050565b613233816131f1565b811461323d575f80fd5b50565b5f8135905061324e8161322a565b92915050565b5f806040838503121561326a5761326961316c565b5b5f61327785828601613240565b925050602061328885828601613193565b9150509250929050565b5f8115159050919050565b6132a681613292565b82525050565b5f6020820190506132bf5f83018461329d565b92915050565b6132ce81613174565b82525050565b5f6020820190506132e75f8301846132c5565b92915050565b5f819050919050565b6132ff816132ed565b82525050565b5f6020820190506133185f8301846132f6565b92915050565b5f805f606084860312156133355761333461316c565b5b5f61334286828701613240565b935050602061335386828701613240565b925050604061336486828701613193565b9150509250925092565b5f60ff82169050919050565b6133838161336e565b82525050565b5f60208201905061339c5f83018461337a565b92915050565b6133ab816132ed565b81146133b5575f80fd5b50565b5f813590506133c6816133a2565b92915050565b5f602082840312156133e1576133e061316c565b5b5f6133ee848285016133b8565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613435826130fb565b810181811067ffffffffffffffff82111715613454576134536133ff565b5b80604052505050565b5f613466613163565b9050613472828261342c565b919050565b5f67ffffffffffffffff821115613491576134906133ff565b5b61349a826130fb565b9050602081019050919050565b828183375f83830152505050565b5f6134c76134c284613477565b61345d565b9050828152602081018484840111156134e3576134e26133fb565b5b6134ee8482856134a7565b509392505050565b5f82601f83011261350a576135096133f7565b5b813561351a8482602086016134b5565b91505092915050565b5f80604083850312156135395761353861316c565b5b5f83013567ffffffffffffffff81111561355657613555613170565b5b613562858286016134f6565b925050602083013567ffffffffffffffff81111561358357613582613170565b5b61358f858286016134f6565b9150509250929050565b6135a281613292565b81146135ac575f80fd5b50565b5f813590506135bd81613599565b92915050565b5f80604083850312156135d9576135d861316c565b5b5f6135e685828601613240565b92505060206135f7858286016135af565b9150509250929050565b5f602082840312156136165761361561316c565b5b5f61362384828501613240565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112613649576136486133f7565b5b8235905067ffffffffffffffff8111156136665761366561362c565b5b60208301915083602082028301111561368257613681613630565b5b9250929050565b5f806020838503121561369f5761369e61316c565b5b5f83013567ffffffffffffffff8111156136bc576136bb613170565b5b6136c885828601613634565b92509250509250929050565b5f8083601f8401126136e9576136e86133f7565b5b8235905067ffffffffffffffff8111156137065761370561362c565b5b60208301915083600182028301111561372257613721613630565b5b9250929050565b5f805f805f608086880312156137425761374161316c565b5b5f61374f88828901613240565b955050602061376088828901613240565b945050604061377188828901613193565b935050606086013567ffffffffffffffff81111561379257613791613170565b5b61379e888289016136d4565b92509250509295509295909350565b5f80604083850312156137c3576137c261316c565b5b5f6137d085828601613240565b92505060206137e185828601613240565b9150509250929050565b5f60208284031215613800576137ff61316c565b5b5f82013567ffffffffffffffff81111561381d5761381c613170565b5b613829848285016134f6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061387657607f821691505b60208210810361388957613888613832565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138c682613174565b91506138d183613174565b92508282039050818111156138e9576138e861388f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6139675f83613949565b915061397282613959565b5f82019050919050565b5f60808201905061398f5f830186613202565b61399c6020830185613202565b6139a960408301846132c5565b81810360608301526139ba8161395c565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f8816139c4565b8114613a02575f80fd5b50565b5f81519050613a13816139ef565b92915050565b5f60208284031215613a2e57613a2d61316c565b5b5f613a3b84828501613a05565b91505092915050565b5f8160601b9050919050565b5f613a5a82613a44565b9050919050565b5f613a6b82613a50565b9050919050565b613a83613a7e826131f1565b613a61565b82525050565b5f613a948284613a72565b60148201915081905092915050565b7f4e6f742057686974654c697374656420416464726573730000000000000000005f82015250565b5f613ad76017836130c3565b9150613ae282613aa3565b602082019050919050565b5f6020820190508181035f830152613b0481613acb565b9050919050565b7f546f6b656e7320616c726561647920636c61696d6564000000000000000000005f82015250565b5f613b3f6016836130c3565b9150613b4a82613b0b565b602082019050919050565b5f6020820190508181035f830152613b6c81613b33565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f613ba7601d836130c3565b9150613bb282613b73565b602082019050919050565b5f6020820190508181035f830152613bd481613b9b565b9050919050565b5f613be68385613949565b9350613bf38385846134a7565b613bfc836130fb565b840190509392505050565b5f608082019050613c1a5f830188613202565b613c276020830187613202565b613c3460408301866132c5565b8181036060830152613c47818486613bdb565b90509695505050505050565b7f54617820616d6f756e74206d757374206265206265747765656e203020616e645f8201527f2035000000000000000000000000000000000000000000000000000000000000602082015250565b5f613cad6022836130c3565b9150613cb882613c53565b604082019050919050565b5f6020820190508181035f830152613cda81613ca1565b9050919050565b7f455243343034613a2055524920717565727920666f72206e6f6e6578697374655f8201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b5f613d3b6028836130c3565b9150613d4682613ce1565b604082019050919050565b5f6020820190508181035f830152613d6881613d2f565b9050919050565b5f81905092915050565b5f613d83826130b9565b613d8d8185613d6f565b9350613d9d8185602086016130d3565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613ddd600583613d6f565b9150613de882613da9565b600582019050919050565b5f613dfe8285613d79565b9150613e0a8284613d79565b9150613e1582613dd1565b91508190509392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613e7d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e42565b613e878683613e42565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613ec2613ebd613eb884613174565b613e9f565b613174565b9050919050565b5f819050919050565b613edb83613ea8565b613eef613ee782613ec9565b848454613e4e565b825550505050565b5f90565b613f03613ef7565b613f0e818484613ed2565b505050565b5b81811015613f3157613f265f82613efb565b600181019050613f14565b5050565b601f821115613f7657613f4781613e21565b613f5084613e33565b81016020851015613f5f578190505b613f73613f6b85613e33565b830182613f13565b50505b505050565b5f82821c905092915050565b5f613f965f1984600802613f7b565b1980831691505092915050565b5f613fae8383613f87565b9150826002028217905092915050565b613fc7826130b9565b67ffffffffffffffff811115613fe057613fdf6133ff565b5b613fea825461385f565b613ff5828285613f35565b5f60209050601f831160018114614026575f8415614014578287015190505b61401e8582613fa3565b865550614085565b601f19841661403486613e21565b5f5b8281101561405b57848901518255600182019150602085019450602081019050614036565b868310156140785784890151614074601f891682613f87565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156140e2578086048111156140be576140bd61388f565b5b60018516156140cd5780820291505b80810290506140db8561408d565b94506140a2565b94509492505050565b5f826140fa57600190506141b5565b81614107575f90506141b5565b816001811461411d576002811461412757614156565b60019150506141b5565b60ff8411156141395761413861388f565b5b8360020a9150848211156141505761414f61388f565b5b506141b5565b5060208310610133831016604e8410600b841016171561418b5782820a9050838111156141865761418561388f565b5b6141b5565b6141988484846001614099565b925090508184048111156141af576141ae61388f565b5b81810290505b9392505050565b5f6141c682613174565b91506141d18361336e565b92506141fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846140eb565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61423d82613174565b915061424883613174565b92508261425857614257614206565b5b828204905092915050565b5f61426d82613174565b915061427883613174565b92508282019050808211156142905761428f61388f565b5b92915050565b5f6142a082613174565b91506142ab83613174565b92508282026142b981613174565b915082820484148315176142d0576142cf61388f565b5b509291505056fea2646970667358221220cde97a68a4d59eb4dc7a6fae52d79ac9255ec6e37545007a2b9a9d7c01ed662664736f6c6343000818003300000000000000000000000072fef29f03f8b678db70410956537fffdaf3e0a7

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061021a575f3560e01c80638da5cb5b11610123578063c87b56dd116100ab578063e0df5b6f1161007a578063e0df5b6f1461064e578063e985e9c51461066a578063f0fcce631461069a578063f2fde38b146106b8578063ff57527f146106d45761021a565b8063c87b56dd146105a0578063c884ef83146105d0578063d547cfb714610600578063dd62ed3e1461061e5761021a565b8063a9059cbb116100f2578063a9059cbb146104fe578063ae7b6d161461052e578063b391c5081461054c578063b88d4fde14610568578063c3d9c9d7146105845761021a565b80638da5cb5b1461047657806395d89b41146104945780639b19251a146104b2578063a22cb465146104e25761021a565b806342842e0e116101a657806353d6fd591161017557806353d6fd59146103be5780635bbdaed4146103da5780636352211e146103f857806370a082311461042857806381456f48146104585761021a565b806342842e0e1461034c578063438114d0146103685780634f02c42014610384578063504334c2146103a25761021a565b80631d80009a116101ed5780631d80009a146102ba57806323b872dd146102d85780632b968958146102f45780632fa55ac0146102fe578063313ce5671461032e5761021a565b806306fdde031461021e578063081812fc1461023c578063095ea7b31461026c57806318160ddd1461029c575b5f80fd5b610226610704565b6040516102339190613143565b60405180910390f35b610256600480360381019061025191906131a7565b610790565b6040516102639190613211565b60405180910390f35b61028660048036038101906102819190613254565b6107c0565b60405161029391906132ac565b60405180910390f35b6102a4610aa7565b6040516102b191906132d4565b60405180910390f35b6102c2610acb565b6040516102cf9190613305565b60405180910390f35b6102f260048036038101906102ed919061331e565b610ad1565b005b6102fc6112c8565b005b610318600480360381019061031391906131a7565b6113e7565b60405161032591906132d4565b60405180910390f35b6103366113fc565b6040516103439190613389565b60405180910390f35b6103666004803603810190610361919061331e565b611420565b005b610382600480360381019061037d91906133cc565b61154f565b005b61038c6115dd565b60405161039991906132d4565b60405180910390f35b6103bc60048036038101906103b79190613523565b6115e3565b005b6103d860048036038101906103d391906135c3565b611675565b005b6103e2611751565b6040516103ef91906132d4565b60405180910390f35b610412600480360381019061040d91906131a7565b611757565b60405161041f9190613211565b60405180910390f35b610442600480360381019061043d9190613601565b6117f5565b60405161044f91906132d4565b60405180910390f35b61046061180a565b60405161046d91906132d4565b60405180910390f35b61047e611810565b60405161048b9190613211565b60405180910390f35b61049c611833565b6040516104a99190613143565b60405180910390f35b6104cc60048036038101906104c79190613601565b6118bf565b6040516104d991906132ac565b60405180910390f35b6104fc60048036038101906104f791906135c3565b6118dc565b005b61051860048036038101906105139190613254565b6119d4565b60405161052591906132ac565b60405180910390f35b6105366119e8565b60405161054391906132d4565b60405180910390f35b61056660048036038101906105619190613689565b6119ee565b005b610582600480360381019061057d9190613729565b611bd3565b005b61059e600480360381019061059991906131a7565b611d08565b005b6105ba60048036038101906105b591906131a7565b611dda565b6040516105c79190613143565b60405180910390f35b6105ea60048036038101906105e59190613601565b611eb5565b6040516105f791906132ac565b60405180910390f35b610608611ed2565b6040516106159190613143565b60405180910390f35b610638600480360381019061063391906137ad565b611f5e565b60405161064591906132d4565b60405180910390f35b610668600480360381019061066391906137eb565b611f7e565b005b610684600480360381019061067f91906137ad565b612015565b60405161069191906132ac565b60405180910390f35b6106a261203f565b6040516106af91906132d4565b60405180910390f35b6106d260048036038101906106cd9190613601565b612048565b005b6106ee60048036038101906106e991906131a7565b6121cd565b6040516106fb91906132d4565b60405180910390f35b600180546107119061385f565b80601f016020809104026020016040519081016040528092919081815260200182805461073d9061385f565b80156107885780601f1061075f57610100808354040283529160200191610788565b820191905f5260205f20905b81548152906001019060200180831161076b57829003601f168201915b505050505081565b6008602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055482111580156107d257505f82115b156109ba575f600a5f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141580156108c9575060095f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15610900576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360085f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516109ac91906132d4565b60405180910390a350610a9d565b8160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a9491906132d4565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000002a5a058fc295ed00000081565b60125481565b600554811161118957600a5f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610b6f576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bd4576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610c92575060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610cfa575060085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610d31576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d396121e2565b60065f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610d8491906138bc565b92505081905550610d936121e2565b60065f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555081600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610ee991906138bc565b81548110610efa57610ef96138ef565b5b905f5260205f200154905080600b5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600c5f8581526020019081526020015f205481548110610f6657610f656138ef565b5b905f5260205f200181905550600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610fbf57610fbe61391c565b5b600190038181905f5260205f20015f90559055600c5f8381526020019081526020015f2054600c5f8381526020019081526020015f2081905550600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506110a791906138bc565b600c5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761116e6121e2565b60405161117b91906132d4565b60405180910390a3506112c3565b5f60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112b557818161123891906138bc565b60075f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b6112c0848484612215565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461134c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b600e602052805f5260405f205f915090505481565b7f000000000000000000000000000000000000000000000000000000000000001281565b61142b838383610ad1565b5f8273ffffffffffffffffffffffffffffffffffffffff163b14158015611513575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b81526004016114b19392919061397c565b6020604051808303815f875af11580156114cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114f19190613a19565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b1561154a576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146115d3576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060128190555050565b60055481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611667576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611671828261275e565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146116f9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60045481565b5f600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117f0576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6006602052805f5260405f205f915090505481565b60105481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600280546118409061385f565b80601f016020809104026020016040519081016040528092919081815260200182805461186c9061385f565b80156118b75780601f1061188e576101008083540402835291602001916118b7565b820191905f5260205f20905b81548152906001019060200180831161189a57829003601f168201915b505050505081565b600d602052805f5260405f205f915054906101000a900460ff1681565b8060095f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c891906132ac565b60405180910390a35050565b5f6119e0338484612215565b905092915050565b60035481565b8181611a21828233604051602001611a069190613a89565b60405160208183030381529060405280519060200120612782565b611a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5790613aed565b60405180910390fd5b60135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613b55565b60405180910390fd5b600f60065f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20541015611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290613bbd565b60405180910390fd5b611b773033600f612215565b50600160135f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050505050565b611bde858585610ad1565b5f8473ffffffffffffffffffffffffffffffffffffffff163b14158015611cca575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b8152600401611c68959493929190613c07565b6020604051808303815f875af1158015611c84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ca89190613a19565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611d01576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005811115611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790613cc3565b60405180910390fd5b8060038190555050565b60605f82118015611e0b57507f000000000000000000000000000000000000000000002a5a058fc295ed0000008211155b611e4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4190613d51565b60405180910390fd5b5f611e536127d9565b90505f600184611e6391906138bc565b90505f825111611e815760405180602001604052805f815250611eac565b81611e8b82612869565b604051602001611e9c929190613df3565b6040516020818303038152906040525b92505050919050565b6013602052805f5260405f205f915054906101000a900460ff1681565b60118054611edf9061385f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0b9061385f565b8015611f565780601f10611f2d57610100808354040283529160200191611f56565b820191905f5260205f20905b815481529060010190602001808311611f3957829003601f168201915b505050505081565b6007602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612002576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80601190816120119190613fbe565b5050565b6009602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b5f600354905090565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120cc576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612131576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b600f602052805f5260405f205f915090505481565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a61221091906141bc565b905090565b5f8061221f6121e2565b90505f60648260065f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461226d9190614233565b6122779190614233565b90505f6064838660065f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546122c69190614263565b6122d09190614233565b6122da9190614233565b90505f60648460065f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123289190614233565b6123329190614233565b90505f6064858860065f8d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461238191906138bc565b61238b9190614233565b6123959190614233565b90505f8760065f8c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546123e491906138bc565b92505081905550600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561246e57505f73ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614155b1561249e576064600354896124839190614296565b61248d9190614233565b9050808861249b91906138bc565b97505b8760065f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508060065f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600d5f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166125db57818311156125da575f82846125b591906138bc565b90505f5b818110156125d7576125ca8c612933565b80806001019150506125b9565b50505b5b600d5f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166126645784841115612663575f858561263e91906138bc565b90505f5b81811015612660576126538b612bcb565b8080600101915050612642565b50505b5b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487836040516126e091906132d4565b60405180910390a38873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e0314878a60405161274591906132d4565b60405180910390a3600196505050505050509392505050565b816001908161276d9190613fbe565b50806002908161277d9190613fbe565b505050565b5f6127d08484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060125484612ec6565b90509392505050565b6060601180546127e89061385f565b80601f01602080910402602001604051908101604052809291908181526020018280546128149061385f565b801561285f5780601f106128365761010080835404028352916020019161285f565b820191905f5260205f20905b81548152906001019060200180831161284257829003601f168201915b5050505050905090565b60605f600161287784612edc565b0190505f8167ffffffffffffffff811115612895576128946133ff565b5b6040519080825280601f01601f1916602001820160405280156128c75781602001600182028036833780820191505090505b5090505f82602001820190505b600115612928578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a858161291d5761291c614206565b5b0494505f85036128d4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612998576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a2391906138bc565b81548110612a3457612a336138ef565b5b905f5260205f2001549050600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480612a8c57612a8b61391c565b5b600190038181905f5260205f20015f90559055600c5f8281526020019081526020015f205f9055600a5f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f600e5f8381526020019081526020015f20549050600f5f8081526020019081526020015f2054600f5f8381526020019081526020015f208190555080600f5f8081526020019081526020015f2081905550815f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612c30576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60055f81548092919060010191905055505f60055490505f73ffffffffffffffffffffffffffffffffffffffff16600a5f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612cdc576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600a5f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600b5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f90919091909150556001600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612dd991906138bc565b600c5f8381526020019081526020015f2081905550601054811115612e50575f600f5f8081526020019081526020015f2054905080600e5f8481526020019081526020015f2081905550600f5f8281526020019081526020015f2054600f5f8081526020019081526020015f208190555050612e67565b80600e5f8381526020019081526020015f20819055505b808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f82612ed2858461302d565b1490509392505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612f38577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612f2e57612f2d614206565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612f75576d04ee2d6d415b85acef81000000008381612f6b57612f6a614206565b5b0492506020810190505b662386f26fc100008310612fa457662386f26fc100008381612f9a57612f99614206565b5b0492506010810190505b6305f5e1008310612fcd576305f5e1008381612fc357612fc2614206565b5b0492506008810190505b6127108310612ff2576127108381612fe857612fe7614206565b5b0492506004810190505b60648310613015576064838161300b5761300a614206565b5b0492506002810190505b600a8310613024576001810190505b80915050919050565b5f808290505f5b84518110156130705761306182868381518110613054576130536138ef565b5b602002602001015161307b565b91508080600101915050613034565b508091505092915050565b5f8183106130925761308d82846130a5565b61309d565b61309c83836130a5565b5b905092915050565b5f825f528160205260405f20905092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156130f05780820151818401526020810190506130d5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f613115826130b9565b61311f81856130c3565b935061312f8185602086016130d3565b613138816130fb565b840191505092915050565b5f6020820190508181035f83015261315b818461310b565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61318681613174565b8114613190575f80fd5b50565b5f813590506131a18161317d565b92915050565b5f602082840312156131bc576131bb61316c565b5b5f6131c984828501613193565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6131fb826131d2565b9050919050565b61320b816131f1565b82525050565b5f6020820190506132245f830184613202565b92915050565b613233816131f1565b811461323d575f80fd5b50565b5f8135905061324e8161322a565b92915050565b5f806040838503121561326a5761326961316c565b5b5f61327785828601613240565b925050602061328885828601613193565b9150509250929050565b5f8115159050919050565b6132a681613292565b82525050565b5f6020820190506132bf5f83018461329d565b92915050565b6132ce81613174565b82525050565b5f6020820190506132e75f8301846132c5565b92915050565b5f819050919050565b6132ff816132ed565b82525050565b5f6020820190506133185f8301846132f6565b92915050565b5f805f606084860312156133355761333461316c565b5b5f61334286828701613240565b935050602061335386828701613240565b925050604061336486828701613193565b9150509250925092565b5f60ff82169050919050565b6133838161336e565b82525050565b5f60208201905061339c5f83018461337a565b92915050565b6133ab816132ed565b81146133b5575f80fd5b50565b5f813590506133c6816133a2565b92915050565b5f602082840312156133e1576133e061316c565b5b5f6133ee848285016133b8565b91505092915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b613435826130fb565b810181811067ffffffffffffffff82111715613454576134536133ff565b5b80604052505050565b5f613466613163565b9050613472828261342c565b919050565b5f67ffffffffffffffff821115613491576134906133ff565b5b61349a826130fb565b9050602081019050919050565b828183375f83830152505050565b5f6134c76134c284613477565b61345d565b9050828152602081018484840111156134e3576134e26133fb565b5b6134ee8482856134a7565b509392505050565b5f82601f83011261350a576135096133f7565b5b813561351a8482602086016134b5565b91505092915050565b5f80604083850312156135395761353861316c565b5b5f83013567ffffffffffffffff81111561355657613555613170565b5b613562858286016134f6565b925050602083013567ffffffffffffffff81111561358357613582613170565b5b61358f858286016134f6565b9150509250929050565b6135a281613292565b81146135ac575f80fd5b50565b5f813590506135bd81613599565b92915050565b5f80604083850312156135d9576135d861316c565b5b5f6135e685828601613240565b92505060206135f7858286016135af565b9150509250929050565b5f602082840312156136165761361561316c565b5b5f61362384828501613240565b91505092915050565b5f80fd5b5f80fd5b5f8083601f840112613649576136486133f7565b5b8235905067ffffffffffffffff8111156136665761366561362c565b5b60208301915083602082028301111561368257613681613630565b5b9250929050565b5f806020838503121561369f5761369e61316c565b5b5f83013567ffffffffffffffff8111156136bc576136bb613170565b5b6136c885828601613634565b92509250509250929050565b5f8083601f8401126136e9576136e86133f7565b5b8235905067ffffffffffffffff8111156137065761370561362c565b5b60208301915083600182028301111561372257613721613630565b5b9250929050565b5f805f805f608086880312156137425761374161316c565b5b5f61374f88828901613240565b955050602061376088828901613240565b945050604061377188828901613193565b935050606086013567ffffffffffffffff81111561379257613791613170565b5b61379e888289016136d4565b92509250509295509295909350565b5f80604083850312156137c3576137c261316c565b5b5f6137d085828601613240565b92505060206137e185828601613240565b9150509250929050565b5f60208284031215613800576137ff61316c565b5b5f82013567ffffffffffffffff81111561381d5761381c613170565b5b613829848285016134f6565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061387657607f821691505b60208210810361388957613888613832565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138c682613174565b91506138d183613174565b92508282039050818111156138e9576138e861388f565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f6139675f83613949565b915061397282613959565b5f82019050919050565b5f60808201905061398f5f830186613202565b61399c6020830185613202565b6139a960408301846132c5565b81810360608301526139ba8161395c565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6139f8816139c4565b8114613a02575f80fd5b50565b5f81519050613a13816139ef565b92915050565b5f60208284031215613a2e57613a2d61316c565b5b5f613a3b84828501613a05565b91505092915050565b5f8160601b9050919050565b5f613a5a82613a44565b9050919050565b5f613a6b82613a50565b9050919050565b613a83613a7e826131f1565b613a61565b82525050565b5f613a948284613a72565b60148201915081905092915050565b7f4e6f742057686974654c697374656420416464726573730000000000000000005f82015250565b5f613ad76017836130c3565b9150613ae282613aa3565b602082019050919050565b5f6020820190508181035f830152613b0481613acb565b9050919050565b7f546f6b656e7320616c726561647920636c61696d6564000000000000000000005f82015250565b5f613b3f6016836130c3565b9150613b4a82613b0b565b602082019050919050565b5f6020820190508181035f830152613b6c81613b33565b9050919050565b7f4e6f7420656e6f75676820746f6b656e7320696e20636f6e74726163740000005f82015250565b5f613ba7601d836130c3565b9150613bb282613b73565b602082019050919050565b5f6020820190508181035f830152613bd481613b9b565b9050919050565b5f613be68385613949565b9350613bf38385846134a7565b613bfc836130fb565b840190509392505050565b5f608082019050613c1a5f830188613202565b613c276020830187613202565b613c3460408301866132c5565b8181036060830152613c47818486613bdb565b90509695505050505050565b7f54617820616d6f756e74206d757374206265206265747765656e203020616e645f8201527f2035000000000000000000000000000000000000000000000000000000000000602082015250565b5f613cad6022836130c3565b9150613cb882613c53565b604082019050919050565b5f6020820190508181035f830152613cda81613ca1565b9050919050565b7f455243343034613a2055524920717565727920666f72206e6f6e6578697374655f8201527f6e7420746f6b656e000000000000000000000000000000000000000000000000602082015250565b5f613d3b6028836130c3565b9150613d4682613ce1565b604082019050919050565b5f6020820190508181035f830152613d6881613d2f565b9050919050565b5f81905092915050565b5f613d83826130b9565b613d8d8185613d6f565b9350613d9d8185602086016130d3565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f613ddd600583613d6f565b9150613de882613da9565b600582019050919050565b5f613dfe8285613d79565b9150613e0a8284613d79565b9150613e1582613dd1565b91508190509392505050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302613e7d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613e42565b613e878683613e42565b95508019841693508086168417925050509392505050565b5f819050919050565b5f613ec2613ebd613eb884613174565b613e9f565b613174565b9050919050565b5f819050919050565b613edb83613ea8565b613eef613ee782613ec9565b848454613e4e565b825550505050565b5f90565b613f03613ef7565b613f0e818484613ed2565b505050565b5b81811015613f3157613f265f82613efb565b600181019050613f14565b5050565b601f821115613f7657613f4781613e21565b613f5084613e33565b81016020851015613f5f578190505b613f73613f6b85613e33565b830182613f13565b50505b505050565b5f82821c905092915050565b5f613f965f1984600802613f7b565b1980831691505092915050565b5f613fae8383613f87565b9150826002028217905092915050565b613fc7826130b9565b67ffffffffffffffff811115613fe057613fdf6133ff565b5b613fea825461385f565b613ff5828285613f35565b5f60209050601f831160018114614026575f8415614014578287015190505b61401e8582613fa3565b865550614085565b601f19841661403486613e21565b5f5b8281101561405b57848901518255600182019150602085019450602081019050614036565b868310156140785784890151614074601f891682613f87565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f808291508390505b60018511156140e2578086048111156140be576140bd61388f565b5b60018516156140cd5780820291505b80810290506140db8561408d565b94506140a2565b94509492505050565b5f826140fa57600190506141b5565b81614107575f90506141b5565b816001811461411d576002811461412757614156565b60019150506141b5565b60ff8411156141395761413861388f565b5b8360020a9150848211156141505761414f61388f565b5b506141b5565b5060208310610133831016604e8410600b841016171561418b5782820a9050838111156141865761418561388f565b5b6141b5565b6141988484846001614099565b925090508184048111156141af576141ae61388f565b5b81810290505b9392505050565b5f6141c682613174565b91506141d18361336e565b92506141fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846140eb565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61423d82613174565b915061424883613174565b92508261425857614257614206565b5b828204905092915050565b5f61426d82613174565b915061427883613174565b92508282019050808211156142905761428f61388f565b5b92915050565b5f6142a082613174565b91506142ab83613174565b92508282026142b981613174565b915082820484148315176142d0576142cf61388f565b5b509291505056fea2646970667358221220cde97a68a4d59eb4dc7a6fae52d79ac9255ec6e37545007a2b9a9d7c01ed662664736f6c63430008180033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000072fef29f03f8b678db70410956537fffdaf3e0a7

-----Decoded View---------------
Arg [0] : _owner (address): 0x72feF29f03f8b678DB70410956537ffFdAF3e0a7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000072fef29f03f8b678db70410956537fffdaf3e0a7


Loading...
Loading
Loading...
Loading
[ 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.