ETH Price: $3,117.76 (+1.53%)
Gas: 6 Gwei

Token

zombiesland.wtf (ZL)
 

Overview

Max Total Supply

6,949 ZL

Holders

1,405

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 ZL
0xd50c1dba1895523900190466f6508a305386568b
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:
zombieslandwtf

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// SPDX-License-Identifier: MIT

//                     _     _           _                 _          _    __ 
//  _______  _ __ ___ | |__ (_) ___  ___| | __ _ _ __   __| |_      _| |_ / _|
// |_  / _ \| '_ ` _ \| '_ \| |/ _ \/ __| |/ _` | '_ \ / _` \ \ /\ / / __| |_ 
//  / / (_) | | | | | | |_) | |  __/\__ \ | (_| | | | | (_| |\ V  V /| |_|  _|
// /___\___/|_| |_| |_|_.__/|_|\___||___/_|\__,_|_| |_|\__,_(_)_/\_/  \__|_|  
                                                                                                                                                                                        

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * 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.
 */
library MerkleProof {
    /**
     * @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 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.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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.
     *
     * _Available since v3.4._
     */
    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 addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            IERC165
    // ==============================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}
// File: nft.sol

pragma solidity 0.8.9;

contract zombieslandwtf is ERC721A, Ownable, ReentrancyGuard{

    using SafeMath for uint256;
    
    uint256 public      constant MAX_TOKENS = 7777;
    uint256 public      price = 0.02 ether;
    uint public         maxPerWallet = 2;
    bool public         holderMintEnabled;
    bool public         publicMintEnabled;

    string public baseURI;

    bytes32 private     merkleRootOne = 0x9d5fc6b3e379b816cf02ba3739df4839a15166ef3f49eb51426ecdd6eae05720;
    bytes32 private     merkleRootTwo = 0x590858ca57a9d69978cd281b9c08429755e9f1b739a30d7f2cccfea963beb119;
    bytes32 private     merkleRootThree = 0x73198db5a6bdc6526ccd4dc903acc9df7d56f444a00d5e09a631c57d2dba3007;


    mapping(address => uint256) public validNumberOfTokensPerBuyerMap;
    
    constructor() ERC721A("zombiesland.wtf", "ZL") ReentrancyGuard(){
    }

    function getMerkleeTreeOne() public view returns (bytes32) {
        return merkleRootOne;
    }

    function getMerkleeTreeTwo() public view returns (bytes32) {
        return merkleRootTwo;
    }

    function getMerkleeTreeThree() public view returns (bytes32) {
        return merkleRootThree;
    }

    function getMerkleOne(address sampleAddress, bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(sampleAddress));
        return MerkleProof.verify(_merkleProof, merkleRootOne, leaf);
    }

    function getMerkleTwo(address sampleAddress, bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(sampleAddress));
        return MerkleProof.verify(_merkleProof, merkleRootTwo, leaf);
    }

    function getMerkleThree(address sampleAddress, bytes32[] calldata _merkleProof) public view returns (bool){
        bytes32 leaf = keccak256(abi.encodePacked(sampleAddress));
        return MerkleProof.verify(_merkleProof, merkleRootThree, leaf);
    }

    function setMerkleRootOne(bytes32 _merkleRoot) public onlyOwner {
        merkleRootOne = _merkleRoot;
    }

    function setMerkleRootTwo(bytes32 _merkleRoot) public onlyOwner {
        merkleRootTwo = _merkleRoot;
    }

    function setMerkleRootThree(bytes32 _merkleRoot) public onlyOwner {
        merkleRootThree = _merkleRoot;
    }

    function setMaxPerWallet(uint256 maxPerWallet_) external onlyOwner {
        maxPerWallet = maxPerWallet_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function togglePublicMinting() external onlyOwner {
        publicMintEnabled = !publicMintEnabled;
    }

    function toggleHolderMinting() external onlyOwner {
        holderMintEnabled = !holderMintEnabled;
    }

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    /*
    * holder addresses with more than three valid number of nfts
    */
    function holderAddresses(address[] calldata wallets, uint256[] calldata validTokens) public onlyOwner {
        for(uint256 i=0; i<wallets.length;i++) {
            validNumberOfTokensPerBuyerMap[wallets[i]] = validTokens[i];
        }
    }

    function holderMint(uint256 numberOfTokens, bytes32[] calldata _merkleProof) public nonReentrant() {
        require(holderMintEnabled, "holder minting is not open yet");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "no more zombielands");

        if (validNumberOfTokensPerBuyerMap[msg.sender] == 0){
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            if(MerkleProof.verify(_merkleProof, merkleRootOne, leaf)){
                validNumberOfTokensPerBuyerMap[msg.sender]= 1;
            } else if (MerkleProof.verify(_merkleProof, merkleRootTwo, leaf)){
                validNumberOfTokensPerBuyerMap[msg.sender] = 2;
            } else if (MerkleProof.verify(_merkleProof, merkleRootThree, leaf)){
                validNumberOfTokensPerBuyerMap[msg.sender] = 3;
            }else{
                require(false, "your address is not allowlisted");
            }
        }

        require(numberMinted(msg.sender) + numberOfTokens <= validNumberOfTokensPerBuyerMap[msg.sender], "you have reached your maximum number of mints");
    
        _safeMint(msg.sender, numberOfTokens);
    }

    function ownerBatchMint(uint256 amount) external onlyOwner
    {
        require(totalSupply() + amount < MAX_TOKENS + 1,"too many!");

        _safeMint(msg.sender, amount);
    }

    function publicMint(uint256 numberOfTokens) external payable {
        require(publicMintEnabled, "public minting is not open yet");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "no more zombielands");
        require(msg.sender == tx.origin, "be yourself, honey.");
        require(msg.value >= numberOfTokens * price, "please send the exact amount");
        require(numberMinted(msg.sender) + numberOfTokens <= maxPerWallet, "max per Wallet reached");

        _safeMint(msg.sender, numberOfTokens);
    }


    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getValidNumberOfTokens(address checkAddress) public view returns (uint256){
        return validNumberOfTokensPerBuyerMap[checkAddress];
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","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":"previousOwner","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":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getMerkleOne","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getMerkleThree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sampleAddress","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"getMerkleTwo","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleeTreeOne","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleeTreeThree","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMerkleeTreeTwo","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"checkAddress","type":"address"}],"name":"getValidNumberOfTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"validTokens","type":"uint256[]"}],"name":"holderAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"holderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"holderMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"tokenId","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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleHolderMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validNumberOfTokensPerBuyerMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600a556002600b557f9d5fc6b3e379b816cf02ba3739df4839a15166ef3f49eb51426ecdd6eae05720600e557f590858ca57a9d69978cd281b9c08429755e9f1b739a30d7f2cccfea963beb119600f557f73198db5a6bdc6526ccd4dc903acc9df7d56f444a00d5e09a631c57d2dba30076010553480156200008d57600080fd5b506040518060400160405280600f81526020016e3d37b6b134b2b9b630b732173bba3360891b81525060405180604001604052806002815260200161169360f21b8152508160029080519060200190620000e99291906200016e565b508051620000ff9060039060208401906200016e565b5050600080555062000111336200011c565b600160095562000251565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017c9062000214565b90600052602060002090601f016020900481019282620001a05760008555620001eb565b82601f10620001bb57805160ff1916838001178555620001eb565b82800160010185558215620001eb579182015b82811115620001eb578251825591602001919060010190620001ce565b50620001f9929150620001fd565b5090565b5b80821115620001f95760008155600101620001fe565b600181811c908216806200022957607f821691505b602082108114156200024b57634e487b7160e01b600052602260045260246000fd5b50919050565b61241e80620002616000396000f3fe6080604052600436106102725760003560e01c8063715018a61161014f578063c5a7e137116100c1578063e346d7b11161007a578063e346d7b114610723578063e43aa9bb14610743578063e985e9c514610770578063f1cf4383146107b9578063f2fde38b146107ce578063f47c84c5146107ee57600080fd5b8063c5a7e13714610684578063c87b56dd14610699578063dc33e681146106b9578063e21e10ef146106d9578063e2326062146106ee578063e268e4d31461070357600080fd5b806391b7f5ed1161011357806391b7f5ed146105d957806395d89b41146105f95780639932698c1461060e578063a035b1fe1461062e578063a22cb46514610644578063b88d4fde1461066457600080fd5b8063715018a61461054c578063858866d9146105615780638da5cb5b146105815780638db89f071461059f5780638e1b57cb146105bf57600080fd5b8063394cba75116101e85780635375bd1d116101ac5780635375bd1d146104a257806355f804b3146104c25780636352211e146104e25780636b8a21fc146105025780636c0360eb1461051757806370a082311461052c57600080fd5b8063394cba75146104175780633ccfd60b1461043757806342842e0e1461044c578063453c23101461046c5780634bce56611461048257600080fd5b80630f4161aa1161023a5780630f4161aa1461036c5780631406f3901461038b57806318160ddd146103ab57806323b872dd146103c45780632db11544146103e457806332ffeae8146103f757600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095a196214610306578063095ea7b31461034a575b600080fd5b34801561028357600080fd5b50610297610292366004611e05565b610804565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610856565b6040516102a39190611e7a565b3480156102da57600080fd5b506102ee6102e9366004611e8d565b6108e8565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061033c610321366004611ec2565b6001600160a01b031660009081526011602052604090205490565b6040519081526020016102a3565b34801561035657600080fd5b5061036a610365366004611edd565b61092c565b005b34801561037857600080fd5b50600c5461029790610100900460ff1681565b34801561039757600080fd5b5061036a6103a6366004611f53565b6109cc565b3480156103b757600080fd5b506001546000540361033c565b3480156103d057600080fd5b5061036a6103df366004611fbf565b610a81565b61036a6103f2366004611e8d565b610a91565b34801561040357600080fd5b5061036a610412366004611e8d565b610c53565b34801561042357600080fd5b5061036a610432366004611ffb565b610c82565b34801561044357600080fd5b5061036a610fcc565b34801561045857600080fd5b5061036a610467366004611fbf565b6110e1565b34801561047857600080fd5b5061033c600b5481565b34801561048e57600080fd5b5061036a61049d366004611e8d565b6110fc565b3480156104ae57600080fd5b506102976104bd366004612047565b61112b565b3480156104ce57600080fd5b5061036a6104dd366004612081565b6111a1565b3480156104ee57600080fd5b506102ee6104fd366004611e8d565b6111d7565b34801561050e57600080fd5b5061036a6111e2565b34801561052357600080fd5b506102c1611229565b34801561053857600080fd5b5061033c610547366004611ec2565b6112b7565b34801561055857600080fd5b5061036a6112fd565b34801561056d57600080fd5b5061029761057c366004612047565b611333565b34801561058d57600080fd5b506008546001600160a01b03166102ee565b3480156105ab57600080fd5b5061036a6105ba366004611e8d565b6113a0565b3480156105cb57600080fd5b50600c546102979060ff1681565b3480156105e557600080fd5b5061036a6105f4366004611e8d565b611428565b34801561060557600080fd5b506102c1611457565b34801561061a57600080fd5b50610297610629366004612047565b611466565b34801561063a57600080fd5b5061033c600a5481565b34801561065057600080fd5b5061036a61065f3660046120f3565b6114d3565b34801561067057600080fd5b5061036a61067f366004612145565b611569565b34801561069057600080fd5b50600e5461033c565b3480156106a557600080fd5b506102c16106b4366004611e8d565b6115b3565b3480156106c557600080fd5b5061033c6106d4366004611ec2565b611638565b3480156106e557600080fd5b5060105461033c565b3480156106fa57600080fd5b50600f5461033c565b34801561070f57600080fd5b5061036a61071e366004611e8d565b611663565b34801561072f57600080fd5b5061036a61073e366004611e8d565b611692565b34801561074f57600080fd5b5061033c61075e366004611ec2565b60116020526000908152604090205481565b34801561077c57600080fd5b5061029761078b366004612221565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c557600080fd5b5061036a6116c1565b3480156107da57600080fd5b5061036a6107e9366004611ec2565b6116ff565b3480156107fa57600080fd5b5061033c611e6181565b60006301ffc9a760e01b6001600160e01b03198316148061083557506380ac58cd60e01b6001600160e01b03198316145b806108505750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461086590612254565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612254565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f382611797565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610937826117be565b9050336001600160a01b0382161461097057610953813361078b565b610970576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109ff5760405162461bcd60e51b81526004016109f69061228f565b60405180910390fd5b60005b83811015610a7a57828282818110610a1c57610a1c6122c4565b9050602002013560116000878785818110610a3957610a396122c4565b9050602002016020810190610a4e9190611ec2565b6001600160a01b0316815260208101919091526040016000205580610a72816122f0565b915050610a02565b5050505050565b610a8c83838361181f565b505050565b600c54610100900460ff16610ae85760405162461bcd60e51b815260206004820152601e60248201527f7075626c6963206d696e74696e67206973206e6f74206f70656e20796574000060448201526064016109f6565b611e6181610af96001546000540390565b610b03919061230b565b1115610b475760405162461bcd60e51b81526020600482015260136024820152726e6f206d6f7265207a6f6d6269656c616e647360681b60448201526064016109f6565b333214610b8c5760405162461bcd60e51b81526020600482015260136024820152723132903cb7bab939b2b63316103437b732bc9760691b60448201526064016109f6565b600a54610b999082612323565b341015610be85760405162461bcd60e51b815260206004820152601c60248201527f706c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016109f6565b600b5481610bf533611638565b610bff919061230b565b1115610c465760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c8815d85b1b195d081c995858da195960521b60448201526064016109f6565b610c5033826119cf565b50565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016109f69061228f565b600e55565b60026009541415610cd55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f6565b6002600955600c5460ff16610d2c5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572206d696e74696e67206973206e6f74206f70656e20796574000060448201526064016109f6565b611e6183610d3d6001546000540390565b610d47919061230b565b1115610d8b5760405162461bcd60e51b81526020600482015260136024820152726e6f206d6f7265207a6f6d6269656c616e647360681b60448201526064016109f6565b33600090815260116020526040902054610f2e57600033604051602001610db29190612342565b604051602081830303815290604052805190602001209050610e0b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ed565b15610e285733600090815260116020526040902060019055610f2c565b610e6983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ed565b15610e865733600090815260116020526040902060029055610f2c565b610ec78383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506119ed565b15610ee45733600090815260116020526040902060039055610f2c565b60405162461bcd60e51b815260206004820152601f60248201527f796f75722061646472657373206973206e6f7420616c6c6f776c69737465640060448201526064016109f6565b505b33600081815260116020526040902054908490610f4a90611638565b610f54919061230b565b1115610fb85760405162461bcd60e51b815260206004820152602d60248201527f796f752068617665207265616368656420796f7572206d6178696d756d206e7560448201526c6d626572206f66206d696e747360981b60648201526084016109f6565b610fc233846119cf565b5050600160095550565b6008546001600160a01b03163314610ff65760405162461bcd60e51b81526004016109f69061228f565b600260095414156110495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f6565b6002600955604051600090339047908381818185875af1925050503d8060008114611090576040519150601f19603f3d011682016040523d82523d6000602084013e611095565b606091505b50509050806110d95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109f6565b506001600955565b610a8c83838360405180602001604052806000815250611569565b6008546001600160a01b031633146111265760405162461bcd60e51b81526004016109f69061228f565b601055565b6000808460405160200161113f9190612342565b6040516020818303038152906040528051906020012090506111988484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506119ed565b95945050505050565b6008546001600160a01b031633146111cb5760405162461bcd60e51b81526004016109f69061228f565b610a8c600d8383611d56565b6000610850826117be565b6008546001600160a01b0316331461120c5760405162461bcd60e51b81526004016109f69061228f565b600c805461ff001981166101009182900460ff1615909102179055565b600d805461123690612254565b80601f016020809104026020016040519081016040528092919081815260200182805461126290612254565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b505050505081565b6000816112d7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146113275760405162461bcd60e51b81526004016109f69061228f565b6113316000611a03565b565b600080846040516020016113479190612342565b60405160208183030381529060405280519060200120905061119884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ed565b6008546001600160a01b031633146113ca5760405162461bcd60e51b81526004016109f69061228f565b6113d7611e61600161230b565b816113e56001546000540390565b6113ef919061230b565b10610c465760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016109f6565b6008546001600160a01b031633146114525760405162461bcd60e51b81526004016109f69061228f565b600a55565b60606003805461086590612254565b6000808460405160200161147a9190612342565b60405160208183030381529060405280519060200120905061119884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ed565b6001600160a01b0382163314156114fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61157484848461181f565b6001600160a01b0383163b156115ad5761159084848484611a55565b6115ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606115be82611797565b6115db57604051630a14c4b560e41b815260040160405180910390fd5b60006115e5611b4c565b90508051600014156116065760405180602001604052806000815250611631565b8061161084611b5b565b60405160200161162192919061235f565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610850565b6008546001600160a01b0316331461168d5760405162461bcd60e51b81526004016109f69061228f565b600b55565b6008546001600160a01b031633146116bc5760405162461bcd60e51b81526004016109f69061228f565b600f55565b6008546001600160a01b031633146116eb5760405162461bcd60e51b81526004016109f69061228f565b600c805460ff19811660ff90911615179055565b6008546001600160a01b031633146117295760405162461bcd60e51b81526004016109f69061228f565b6001600160a01b03811661178e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f6565b610c5081611a03565b6000805482108015610850575050600090815260046020526040902054600160e01b161590565b60008160005481101561180657600081815260046020526040902054600160e01b8116611804575b806116315750600019016000818152600460205260409020546117e6565b505b604051636f96cda160e11b815260040160405180910390fd5b600061182a826117be565b9050836001600160a01b0316816001600160a01b03161461185d5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061188d575061188d863361078b565b806118a057506001600160a01b03821633145b9050806118c057604051632ce44b5f60e11b815260040160405180910390fd5b846118de57604051633a954ecd60e21b815260040160405180910390fd5b811561190157600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661198657600184016000818152600460205260409020546119845760005481146119845760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6119e9828260405180602001604052806000815250611baa565b5050565b6000826119fa8584611c10565b14949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8a90339089908890889060040161238e565b602060405180830381600087803b158015611aa457600080fd5b505af1925050508015611ad4575060408051601f3d908101601f19168201909252611ad1918101906123cb565b60015b611b2f573d808015611b02576040519150601f19603f3d011682016040523d82523d6000602084013e611b07565b606091505b508051611b27576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d805461086590612254565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b9857600183039250600a81066030018353600a9004611b7a565b50819003601f19909101908152919050565b611bb48383611c84565b6001600160a01b0383163b15610a8c576000548281035b611bde6000868380600101945086611a55565b611bfb576040516368d2bf6b60e11b815260040160405180910390fd5b818110611bcb578160005414610a7a57600080fd5b600081815b8451811015611c7c576000858281518110611c3257611c326122c4565b60200260200101519050808311611c585760008381526020829052604090209250611c69565b600081815260208490526040902092505b5080611c74816122f0565b915050611c15565b509392505050565b60005482611ca457604051622e076360e81b815260040160405180910390fd5b81611cc25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110611d0957500160005550565b828054611d6290612254565b90600052602060002090601f016020900481019282611d845760008555611dca565b82601f10611d9d5782800160ff19823516178555611dca565b82800160010185558215611dca579182015b82811115611dca578235825591602001919060010190611daf565b50611dd6929150611dda565b5090565b5b80821115611dd65760008155600101611ddb565b6001600160e01b031981168114610c5057600080fd5b600060208284031215611e1757600080fd5b813561163181611def565b60005b83811015611e3d578181015183820152602001611e25565b838111156115ad5750506000910152565b60008151808452611e66816020860160208601611e22565b601f01601f19169290920160200192915050565b6020815260006116316020830184611e4e565b600060208284031215611e9f57600080fd5b5035919050565b80356001600160a01b0381168114611ebd57600080fd5b919050565b600060208284031215611ed457600080fd5b61163182611ea6565b60008060408385031215611ef057600080fd5b611ef983611ea6565b946020939093013593505050565b60008083601f840112611f1957600080fd5b50813567ffffffffffffffff811115611f3157600080fd5b6020830191508360208260051b8501011115611f4c57600080fd5b9250929050565b60008060008060408587031215611f6957600080fd5b843567ffffffffffffffff80821115611f8157600080fd5b611f8d88838901611f07565b90965094506020870135915080821115611fa657600080fd5b50611fb387828801611f07565b95989497509550505050565b600080600060608486031215611fd457600080fd5b611fdd84611ea6565b9250611feb60208501611ea6565b9150604084013590509250925092565b60008060006040848603121561201057600080fd5b83359250602084013567ffffffffffffffff81111561202e57600080fd5b61203a86828701611f07565b9497909650939450505050565b60008060006040848603121561205c57600080fd5b61206584611ea6565b9250602084013567ffffffffffffffff81111561202e57600080fd5b6000806020838503121561209457600080fd5b823567ffffffffffffffff808211156120ac57600080fd5b818501915085601f8301126120c057600080fd5b8135818111156120cf57600080fd5b8660208285010111156120e157600080fd5b60209290920196919550909350505050565b6000806040838503121561210657600080fd5b61210f83611ea6565b91506020830135801515811461212457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561215b57600080fd5b61216485611ea6565b935061217260208601611ea6565b925060408501359150606085013567ffffffffffffffff8082111561219657600080fd5b818701915087601f8301126121aa57600080fd5b8135818111156121bc576121bc61212f565b604051601f8201601f19908116603f011681019083821181831017156121e4576121e461212f565b816040528281528a60208487010111156121fd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223457600080fd5b61223d83611ea6565b915061224b60208401611ea6565b90509250929050565b600181811c9082168061226857607f821691505b6020821081141561228957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612304576123046122da565b5060010190565b6000821982111561231e5761231e6122da565b500190565b600081600019048311821515161561233d5761233d6122da565b500290565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612371818460208801611e22565b835190830190612385818360208801611e22565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c190830184611e4e565b9695505050505050565b6000602082840312156123dd57600080fd5b815161163181611def56fea2646970667358221220766054f1d178aa7fe222012eb334251dd8ac8c3cd7595ce7f9380961e970b58064736f6c63430008090033

Deployed Bytecode

0x6080604052600436106102725760003560e01c8063715018a61161014f578063c5a7e137116100c1578063e346d7b11161007a578063e346d7b114610723578063e43aa9bb14610743578063e985e9c514610770578063f1cf4383146107b9578063f2fde38b146107ce578063f47c84c5146107ee57600080fd5b8063c5a7e13714610684578063c87b56dd14610699578063dc33e681146106b9578063e21e10ef146106d9578063e2326062146106ee578063e268e4d31461070357600080fd5b806391b7f5ed1161011357806391b7f5ed146105d957806395d89b41146105f95780639932698c1461060e578063a035b1fe1461062e578063a22cb46514610644578063b88d4fde1461066457600080fd5b8063715018a61461054c578063858866d9146105615780638da5cb5b146105815780638db89f071461059f5780638e1b57cb146105bf57600080fd5b8063394cba75116101e85780635375bd1d116101ac5780635375bd1d146104a257806355f804b3146104c25780636352211e146104e25780636b8a21fc146105025780636c0360eb1461051757806370a082311461052c57600080fd5b8063394cba75146104175780633ccfd60b1461043757806342842e0e1461044c578063453c23101461046c5780634bce56611461048257600080fd5b80630f4161aa1161023a5780630f4161aa1461036c5780631406f3901461038b57806318160ddd146103ab57806323b872dd146103c45780632db11544146103e457806332ffeae8146103f757600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095a196214610306578063095ea7b31461034a575b600080fd5b34801561028357600080fd5b50610297610292366004611e05565b610804565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610856565b6040516102a39190611e7a565b3480156102da57600080fd5b506102ee6102e9366004611e8d565b6108e8565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061033c610321366004611ec2565b6001600160a01b031660009081526011602052604090205490565b6040519081526020016102a3565b34801561035657600080fd5b5061036a610365366004611edd565b61092c565b005b34801561037857600080fd5b50600c5461029790610100900460ff1681565b34801561039757600080fd5b5061036a6103a6366004611f53565b6109cc565b3480156103b757600080fd5b506001546000540361033c565b3480156103d057600080fd5b5061036a6103df366004611fbf565b610a81565b61036a6103f2366004611e8d565b610a91565b34801561040357600080fd5b5061036a610412366004611e8d565b610c53565b34801561042357600080fd5b5061036a610432366004611ffb565b610c82565b34801561044357600080fd5b5061036a610fcc565b34801561045857600080fd5b5061036a610467366004611fbf565b6110e1565b34801561047857600080fd5b5061033c600b5481565b34801561048e57600080fd5b5061036a61049d366004611e8d565b6110fc565b3480156104ae57600080fd5b506102976104bd366004612047565b61112b565b3480156104ce57600080fd5b5061036a6104dd366004612081565b6111a1565b3480156104ee57600080fd5b506102ee6104fd366004611e8d565b6111d7565b34801561050e57600080fd5b5061036a6111e2565b34801561052357600080fd5b506102c1611229565b34801561053857600080fd5b5061033c610547366004611ec2565b6112b7565b34801561055857600080fd5b5061036a6112fd565b34801561056d57600080fd5b5061029761057c366004612047565b611333565b34801561058d57600080fd5b506008546001600160a01b03166102ee565b3480156105ab57600080fd5b5061036a6105ba366004611e8d565b6113a0565b3480156105cb57600080fd5b50600c546102979060ff1681565b3480156105e557600080fd5b5061036a6105f4366004611e8d565b611428565b34801561060557600080fd5b506102c1611457565b34801561061a57600080fd5b50610297610629366004612047565b611466565b34801561063a57600080fd5b5061033c600a5481565b34801561065057600080fd5b5061036a61065f3660046120f3565b6114d3565b34801561067057600080fd5b5061036a61067f366004612145565b611569565b34801561069057600080fd5b50600e5461033c565b3480156106a557600080fd5b506102c16106b4366004611e8d565b6115b3565b3480156106c557600080fd5b5061033c6106d4366004611ec2565b611638565b3480156106e557600080fd5b5060105461033c565b3480156106fa57600080fd5b50600f5461033c565b34801561070f57600080fd5b5061036a61071e366004611e8d565b611663565b34801561072f57600080fd5b5061036a61073e366004611e8d565b611692565b34801561074f57600080fd5b5061033c61075e366004611ec2565b60116020526000908152604090205481565b34801561077c57600080fd5b5061029761078b366004612221565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107c557600080fd5b5061036a6116c1565b3480156107da57600080fd5b5061036a6107e9366004611ec2565b6116ff565b3480156107fa57600080fd5b5061033c611e6181565b60006301ffc9a760e01b6001600160e01b03198316148061083557506380ac58cd60e01b6001600160e01b03198316145b806108505750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461086590612254565b80601f016020809104026020016040519081016040528092919081815260200182805461089190612254565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b60006108f382611797565b610910576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610937826117be565b9050336001600160a01b0382161461097057610953813361078b565b610970576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b031633146109ff5760405162461bcd60e51b81526004016109f69061228f565b60405180910390fd5b60005b83811015610a7a57828282818110610a1c57610a1c6122c4565b9050602002013560116000878785818110610a3957610a396122c4565b9050602002016020810190610a4e9190611ec2565b6001600160a01b0316815260208101919091526040016000205580610a72816122f0565b915050610a02565b5050505050565b610a8c83838361181f565b505050565b600c54610100900460ff16610ae85760405162461bcd60e51b815260206004820152601e60248201527f7075626c6963206d696e74696e67206973206e6f74206f70656e20796574000060448201526064016109f6565b611e6181610af96001546000540390565b610b03919061230b565b1115610b475760405162461bcd60e51b81526020600482015260136024820152726e6f206d6f7265207a6f6d6269656c616e647360681b60448201526064016109f6565b333214610b8c5760405162461bcd60e51b81526020600482015260136024820152723132903cb7bab939b2b63316103437b732bc9760691b60448201526064016109f6565b600a54610b999082612323565b341015610be85760405162461bcd60e51b815260206004820152601c60248201527f706c656173652073656e642074686520657861637420616d6f756e740000000060448201526064016109f6565b600b5481610bf533611638565b610bff919061230b565b1115610c465760405162461bcd60e51b81526020600482015260166024820152751b585e081c195c8815d85b1b195d081c995858da195960521b60448201526064016109f6565b610c5033826119cf565b50565b6008546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016109f69061228f565b600e55565b60026009541415610cd55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f6565b6002600955600c5460ff16610d2c5760405162461bcd60e51b815260206004820152601e60248201527f686f6c646572206d696e74696e67206973206e6f74206f70656e20796574000060448201526064016109f6565b611e6183610d3d6001546000540390565b610d47919061230b565b1115610d8b5760405162461bcd60e51b81526020600482015260136024820152726e6f206d6f7265207a6f6d6269656c616e647360681b60448201526064016109f6565b33600090815260116020526040902054610f2e57600033604051602001610db29190612342565b604051602081830303815290604052805190602001209050610e0b83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ed565b15610e285733600090815260116020526040902060019055610f2c565b610e6983838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ed565b15610e865733600090815260116020526040902060029055610f2c565b610ec78383808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506119ed565b15610ee45733600090815260116020526040902060039055610f2c565b60405162461bcd60e51b815260206004820152601f60248201527f796f75722061646472657373206973206e6f7420616c6c6f776c69737465640060448201526064016109f6565b505b33600081815260116020526040902054908490610f4a90611638565b610f54919061230b565b1115610fb85760405162461bcd60e51b815260206004820152602d60248201527f796f752068617665207265616368656420796f7572206d6178696d756d206e7560448201526c6d626572206f66206d696e747360981b60648201526084016109f6565b610fc233846119cf565b5050600160095550565b6008546001600160a01b03163314610ff65760405162461bcd60e51b81526004016109f69061228f565b600260095414156110495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109f6565b6002600955604051600090339047908381818185875af1925050503d8060008114611090576040519150601f19603f3d011682016040523d82523d6000602084013e611095565b606091505b50509050806110d95760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109f6565b506001600955565b610a8c83838360405180602001604052806000815250611569565b6008546001600160a01b031633146111265760405162461bcd60e51b81526004016109f69061228f565b601055565b6000808460405160200161113f9190612342565b6040516020818303038152906040528051906020012090506111988484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060105491508490506119ed565b95945050505050565b6008546001600160a01b031633146111cb5760405162461bcd60e51b81526004016109f69061228f565b610a8c600d8383611d56565b6000610850826117be565b6008546001600160a01b0316331461120c5760405162461bcd60e51b81526004016109f69061228f565b600c805461ff001981166101009182900460ff1615909102179055565b600d805461123690612254565b80601f016020809104026020016040519081016040528092919081815260200182805461126290612254565b80156112af5780601f10611284576101008083540402835291602001916112af565b820191906000526020600020905b81548152906001019060200180831161129257829003601f168201915b505050505081565b6000816112d7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146113275760405162461bcd60e51b81526004016109f69061228f565b6113316000611a03565b565b600080846040516020016113479190612342565b60405160208183030381529060405280519060200120905061119884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ed565b6008546001600160a01b031633146113ca5760405162461bcd60e51b81526004016109f69061228f565b6113d7611e61600161230b565b816113e56001546000540390565b6113ef919061230b565b10610c465760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016109f6565b6008546001600160a01b031633146114525760405162461bcd60e51b81526004016109f69061228f565b600a55565b60606003805461086590612254565b6000808460405160200161147a9190612342565b60405160208183030381529060405280519060200120905061119884848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ed565b6001600160a01b0382163314156114fd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61157484848461181f565b6001600160a01b0383163b156115ad5761159084848484611a55565b6115ad576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606115be82611797565b6115db57604051630a14c4b560e41b815260040160405180910390fd5b60006115e5611b4c565b90508051600014156116065760405180602001604052806000815250611631565b8061161084611b5b565b60405160200161162192919061235f565b6040516020818303038152906040525b9392505050565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c16610850565b6008546001600160a01b0316331461168d5760405162461bcd60e51b81526004016109f69061228f565b600b55565b6008546001600160a01b031633146116bc5760405162461bcd60e51b81526004016109f69061228f565b600f55565b6008546001600160a01b031633146116eb5760405162461bcd60e51b81526004016109f69061228f565b600c805460ff19811660ff90911615179055565b6008546001600160a01b031633146117295760405162461bcd60e51b81526004016109f69061228f565b6001600160a01b03811661178e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109f6565b610c5081611a03565b6000805482108015610850575050600090815260046020526040902054600160e01b161590565b60008160005481101561180657600081815260046020526040902054600160e01b8116611804575b806116315750600019016000818152600460205260409020546117e6565b505b604051636f96cda160e11b815260040160405180910390fd5b600061182a826117be565b9050836001600160a01b0316816001600160a01b03161461185d5760405162a1148160e81b815260040160405180910390fd5b6000828152600660205260408120546001600160a01b039081169190861633148061188d575061188d863361078b565b806118a057506001600160a01b03821633145b9050806118c057604051632ce44b5f60e11b815260040160405180910390fd5b846118de57604051633a954ecd60e21b815260040160405180910390fd5b811561190157600084815260066020526040902080546001600160a01b03191690555b6001600160a01b03868116600090815260056020908152604080832080546000190190559288168252828220805460010190558682526004905220600160e11b4260a01b87178117909155831661198657600184016000818152600460205260409020546119845760005481146119845760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6119e9828260405180602001604052806000815250611baa565b5050565b6000826119fa8584611c10565b14949350505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a8a90339089908890889060040161238e565b602060405180830381600087803b158015611aa457600080fd5b505af1925050508015611ad4575060408051601f3d908101601f19168201909252611ad1918101906123cb565b60015b611b2f573d808015611b02576040519150601f19603f3d011682016040523d82523d6000602084013e611b07565b606091505b508051611b27576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600d805461086590612254565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611b9857600183039250600a81066030018353600a9004611b7a565b50819003601f19909101908152919050565b611bb48383611c84565b6001600160a01b0383163b15610a8c576000548281035b611bde6000868380600101945086611a55565b611bfb576040516368d2bf6b60e11b815260040160405180910390fd5b818110611bcb578160005414610a7a57600080fd5b600081815b8451811015611c7c576000858281518110611c3257611c326122c4565b60200260200101519050808311611c585760008381526020829052604090209250611c69565b600081815260208490526040902092505b5080611c74816122f0565b915050611c15565b509392505050565b60005482611ca457604051622e076360e81b815260040160405180910390fd5b81611cc25760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526005602090815260408083208054680100000000000000018702019055838352600490915281204260a01b85176001851460e11b1790555b60405160018201918301906001600160a01b038616906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4828110611d0957500160005550565b828054611d6290612254565b90600052602060002090601f016020900481019282611d845760008555611dca565b82601f10611d9d5782800160ff19823516178555611dca565b82800160010185558215611dca579182015b82811115611dca578235825591602001919060010190611daf565b50611dd6929150611dda565b5090565b5b80821115611dd65760008155600101611ddb565b6001600160e01b031981168114610c5057600080fd5b600060208284031215611e1757600080fd5b813561163181611def565b60005b83811015611e3d578181015183820152602001611e25565b838111156115ad5750506000910152565b60008151808452611e66816020860160208601611e22565b601f01601f19169290920160200192915050565b6020815260006116316020830184611e4e565b600060208284031215611e9f57600080fd5b5035919050565b80356001600160a01b0381168114611ebd57600080fd5b919050565b600060208284031215611ed457600080fd5b61163182611ea6565b60008060408385031215611ef057600080fd5b611ef983611ea6565b946020939093013593505050565b60008083601f840112611f1957600080fd5b50813567ffffffffffffffff811115611f3157600080fd5b6020830191508360208260051b8501011115611f4c57600080fd5b9250929050565b60008060008060408587031215611f6957600080fd5b843567ffffffffffffffff80821115611f8157600080fd5b611f8d88838901611f07565b90965094506020870135915080821115611fa657600080fd5b50611fb387828801611f07565b95989497509550505050565b600080600060608486031215611fd457600080fd5b611fdd84611ea6565b9250611feb60208501611ea6565b9150604084013590509250925092565b60008060006040848603121561201057600080fd5b83359250602084013567ffffffffffffffff81111561202e57600080fd5b61203a86828701611f07565b9497909650939450505050565b60008060006040848603121561205c57600080fd5b61206584611ea6565b9250602084013567ffffffffffffffff81111561202e57600080fd5b6000806020838503121561209457600080fd5b823567ffffffffffffffff808211156120ac57600080fd5b818501915085601f8301126120c057600080fd5b8135818111156120cf57600080fd5b8660208285010111156120e157600080fd5b60209290920196919550909350505050565b6000806040838503121561210657600080fd5b61210f83611ea6565b91506020830135801515811461212457600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561215b57600080fd5b61216485611ea6565b935061217260208601611ea6565b925060408501359150606085013567ffffffffffffffff8082111561219657600080fd5b818701915087601f8301126121aa57600080fd5b8135818111156121bc576121bc61212f565b604051601f8201601f19908116603f011681019083821181831017156121e4576121e461212f565b816040528281528a60208487010111156121fd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223457600080fd5b61223d83611ea6565b915061224b60208401611ea6565b90509250929050565b600181811c9082168061226857607f821691505b6020821081141561228957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612304576123046122da565b5060010190565b6000821982111561231e5761231e6122da565b500190565b600081600019048311821515161561233d5761233d6122da565b500290565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612371818460208801611e22565b835190830190612385818360208801611e22565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c190830184611e4e565b9695505050505050565b6000602082840312156123dd57600080fd5b815161163181611def56fea2646970667358221220766054f1d178aa7fe222012eb334251dd8ac8c3cd7595ce7f9380961e970b58064736f6c63430008090033

Deployed Bytecode Sourcemap

55544:5698:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31569:615;;;;;;;;;;-1:-1:-1;31569:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;31569:615:0;;;;;;;;36605:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;38614:204::-;;;;;;;;;;-1:-1:-1;38614:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;38614:204:0;1528:203:1;60774:153:0;;;;;;;;;;-1:-1:-1;60774:153:0;;;;;:::i;:::-;-1:-1:-1;;;;;60875:44:0;60849:7;60875:44;;;:30;:44;;;;;;;60774:153;;;;2251:25:1;;;2239:2;2224:18;60774:153:0;2105:177:1;38133:415:0;;;;;;;;;;-1:-1:-1;38133:415:0;;;;;:::i;:::-;;:::i;:::-;;55837:37;;;;;;;;;;-1:-1:-1;55837:37:0;;;;;;;;;;;58503:245;;;;;;;;;;-1:-1:-1;58503:245:0;;;;;:::i;:::-;;:::i;30623:315::-;;;;;;;;;;-1:-1:-1;30889:12:0;;30676:7;30873:13;:28;30623:315;;39500:170;;;;;;;;;;-1:-1:-1;39500:170:0;;;;;:::i;:::-;;:::i;60110:533::-;;;;;;:::i;:::-;;:::i;57507:110::-;;;;;;;;;;-1:-1:-1;57507:110:0;;;;;:::i;:::-;;:::i;58756:1153::-;;;;;;;;;;-1:-1:-1;58756:1153:0;;;;;:::i;:::-;;:::i;61051:186::-;;;;;;;;;;;;;:::i;39741:185::-;;;;;;;;;;-1:-1:-1;39741:185:0;;;;;:::i;:::-;;:::i;55750:36::-;;;;;;;;;;;;;;;;57743:114;;;;;;;;;;-1:-1:-1;57743:114:0;;;;;:::i;:::-;;:::i;57244:255::-;;;;;;;;;;-1:-1:-1;57244:255:0;;;;;:::i;:::-;;:::i;58311:102::-;;;;;;;;;;-1:-1:-1;58311:102:0;;;;;:::i;:::-;;:::i;36394:144::-;;;;;;;;;;-1:-1:-1;36394:144:0;;;;;:::i;:::-;;:::i;58081:107::-;;;;;;;;;;;;;:::i;55883:21::-;;;;;;;;;;;;;:::i;32248:234::-;;;;;;;;;;-1:-1:-1;32248:234:0;;;;;:::i;:::-;;:::i;17836:103::-;;;;;;;;;;;;;:::i;56985:251::-;;;;;;;;;;-1:-1:-1;56985:251:0;;;;;:::i;:::-;;:::i;17185:87::-;;;;;;;;;;-1:-1:-1;17258:6:0;;-1:-1:-1;;;;;17258:6:0;17185:87;;59917:185;;;;;;;;;;-1:-1:-1;59917:185:0;;;;;:::i;:::-;;:::i;55793:37::-;;;;;;;;;;-1:-1:-1;55793:37:0;;;;;;;;57987:86;;;;;;;;;;-1:-1:-1;57987:86:0;;;;;:::i;:::-;;:::i;36774:104::-;;;;;;;;;;;;;:::i;56726:251::-;;;;;;;;;;-1:-1:-1;56726:251:0;;;;;:::i;:::-;;:::i;55705:38::-;;;;;;;;;;;;;;;;38890:308;;;;;;;;;;-1:-1:-1;38890:308:0;;;;;:::i;:::-;;:::i;39997:396::-;;;;;;;;;;-1:-1:-1;39997:396:0;;;;;:::i;:::-;;:::i;56404:98::-;;;;;;;;;;-1:-1:-1;56481:13:0;;56404:98;;36949:318;;;;;;;;;;-1:-1:-1;36949:318:0;;;;;:::i;:::-;;:::i;60653:113::-;;;;;;;;;;-1:-1:-1;60653:113:0;;;;;:::i;:::-;;:::i;56616:102::-;;;;;;;;;;-1:-1:-1;56695:15:0;;56616:102;;56510:98;;;;;;;;;;-1:-1:-1;56587:13:0;;56510:98;;57865:114;;;;;;;;;;-1:-1:-1;57865:114:0;;;;;:::i;:::-;;:::i;57625:110::-;;;;;;;;;;-1:-1:-1;57625:110:0;;;;;:::i;:::-;;:::i;56246:65::-;;;;;;;;;;-1:-1:-1;56246:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;39269:164;;;;;;;;;;-1:-1:-1;39269:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39390:25:0;;;39366:4;39390:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39269:164;58196:107;;;;;;;;;;;;;:::i;18094:201::-;;;;;;;;;;-1:-1:-1;18094:201:0;;;;;:::i;:::-;;:::i;55652:46::-;;;;;;;;;;;;55694:4;55652:46;;31569:615;31654:4;-1:-1:-1;;;;;;;;;31954:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;32031:25:0;;;31954:102;:179;;;-1:-1:-1;;;;;;;;;;32108:25:0;;;31954:179;31934:199;31569:615;-1:-1:-1;;31569:615:0:o;36605:100::-;36659:13;36692:5;36685:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36605:100;:::o;38614:204::-;38682:7;38707:16;38715:7;38707;:16::i;:::-;38702:64;;38732:34;;-1:-1:-1;;;38732:34:0;;;;;;;;;;;38702:64;-1:-1:-1;38786:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;38786:24:0;;38614:204::o;38133:415::-;38206:13;38238:27;38257:7;38238:18;:27::i;:::-;38206:61;-1:-1:-1;53409:10:0;-1:-1:-1;;;;;38284:28:0;;;38280:175;;38332:44;38349:5;53409:10;39269:164;:::i;38332:44::-;38327:128;;38404:35;;-1:-1:-1;;;38404:35:0;;;;;;;;;;;38327:128;38467:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;38467:29:0;-1:-1:-1;;;;;38467:29:0;;;;;;;;;38512:28;;38467:24;;38512:28;;;;;;;38195:353;38133:415;;:::o;58503:245::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;;;;;;;;;58620:9:::1;58616:125;58633:16:::0;;::::1;58616:125;;;58715:11;;58727:1;58715:14;;;;;;;:::i;:::-;;;;;;;58670:30;:42;58701:7;;58709:1;58701:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;58670:42:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;58670:42:0;:59;58650:3;::::1;::::0;::::1;:::i;:::-;;;;58616:125;;;;58503:245:::0;;;;:::o;39500:170::-;39634:28;39644:4;39650:2;39654:7;39634:9;:28::i;:::-;39500:170;;;:::o;60110:533::-;60190:17;;;;;;;60182:60;;;;-1:-1:-1;;;60182:60:0;;9263:2:1;60182:60:0;;;9245:21:1;9302:2;9282:18;;;9275:30;9341:32;9321:18;;;9314:60;9391:18;;60182:60:0;9061:354:1;60182:60:0;55694:4;60277:14;60261:13;30889:12;;30676:7;30873:13;:28;;30623:315;60261:13;:30;;;;:::i;:::-;:44;;60253:76;;;;-1:-1:-1;;;60253:76:0;;9755:2:1;60253:76:0;;;9737:21:1;9794:2;9774:18;;;9767:30;-1:-1:-1;;;9813:18:1;;;9806:49;9872:18;;60253:76:0;9553:343:1;60253:76:0;60348:10;60362:9;60348:23;60340:55;;;;-1:-1:-1;;;60340:55:0;;10103:2:1;60340:55:0;;;10085:21:1;10142:2;10122:18;;;10115:30;-1:-1:-1;;;10161:18:1;;;10154:49;10220:18;;60340:55:0;9901:343:1;60340:55:0;60444:5;;60427:22;;:14;:22;:::i;:::-;60414:9;:35;;60406:76;;;;-1:-1:-1;;;60406:76:0;;10624:2:1;60406:76:0;;;10606:21:1;10663:2;10643:18;;;10636:30;10702;10682:18;;;10675:58;10750:18;;60406:76:0;10422:352:1;60406:76:0;60546:12;;60528:14;60501:24;60514:10;60501:12;:24::i;:::-;:41;;;;:::i;:::-;:57;;60493:92;;;;-1:-1:-1;;;60493:92:0;;10981:2:1;60493:92:0;;;10963:21:1;11020:2;11000:18;;;10993:30;-1:-1:-1;;;11039:18:1;;;11032:52;11101:18;;60493:92:0;10779:346:1;60493:92:0;60598:37;60608:10;60620:14;60598:9;:37::i;:::-;60110:533;:::o;57507:110::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;57582:13:::1;:27:::0;57507:110::o;58756:1153::-;2433:1;3031:7;;:19;;3023:63;;;;-1:-1:-1;;;3023:63:0;;11332:2:1;3023:63:0;;;11314:21:1;11371:2;11351:18;;;11344:30;11410:33;11390:18;;;11383:61;11461:18;;3023:63:0;11130:355:1;3023:63:0;2433:1;3164:7;:18;58874:17:::1;::::0;::::1;;58866:60;;;::::0;-1:-1:-1;;;58866:60:0;;11692:2:1;58866:60:0::1;::::0;::::1;11674:21:1::0;11731:2;11711:18;;;11704:30;11770:32;11750:18;;;11743:60;11820:18;;58866:60:0::1;11490:354:1::0;58866:60:0::1;55694:4;58961:14;58945:13;30889:12:::0;;30676:7;30873:13;:28;;30623:315;58945:13:::1;:30;;;;:::i;:::-;:44;;58937:76;;;::::0;-1:-1:-1;;;58937:76:0;;9755:2:1;58937:76:0::1;::::0;::::1;9737:21:1::0;9794:2;9774:18;;;9767:30;-1:-1:-1;;;9813:18:1;;;9806:49;9872:18;;58937:76:0::1;9553:343:1::0;58937:76:0::1;59061:10;59030:42;::::0;;;:30:::1;:42;::::0;;;;;59026:664:::1;;59093:12;59135:10;59118:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;59108:39;;;;;;59093:54;;59165:53;59184:12;;59165:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59198:13:0::1;::::0;;-1:-1:-1;59213:4:0;;-1:-1:-1;59165:18:0::1;:53::i;:::-;59162:517;;;59269:10;59238:42;::::0;;;:30:::1;:42;::::0;;;;59282:1:::1;59238:45:::0;;59162:517:::1;;;59309:53;59328:12;;59309:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59342:13:0::1;::::0;;-1:-1:-1;59357:4:0;;-1:-1:-1;59309:18:0::1;:53::i;:::-;59305:374;;;59413:10;59382:42;::::0;;;:30:::1;:42;::::0;;;;59427:1:::1;59382:46:::0;;59305:374:::1;;;59454:55;59473:12;;59454:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59487:15:0::1;::::0;;-1:-1:-1;59504:4:0;;-1:-1:-1;59454:18:0::1;:55::i;:::-;59450:229;;;59560:10;59529:42;::::0;;;:30:::1;:42;::::0;;;;59574:1:::1;59529:46:::0;;59450:229:::1;;;59614:49;::::0;-1:-1:-1;;;59614:49:0;;12285:2:1;59614:49:0::1;::::0;::::1;12267:21:1::0;12324:2;12304:18;;;12297:30;12363:33;12343:18;;;12336:61;12414:18;;59614:49:0::1;12083:355:1::0;59614:49:0::1;59078:612;59026:664;59786:10;59755:42;::::0;;;:30:::1;:42;::::0;;;;;;59737:14;;59710:24:::1;::::0;:12:::1;:24::i;:::-;:41;;;;:::i;:::-;:87;;59702:145;;;::::0;-1:-1:-1;;;59702:145:0;;12645:2:1;59702:145:0::1;::::0;::::1;12627:21:1::0;12684:2;12664:18;;;12657:30;12723:34;12703:18;;;12696:62;-1:-1:-1;;;12774:18:1;;;12767:43;12827:19;;59702:145:0::1;12443:409:1::0;59702:145:0::1;59864:37;59874:10;59886:14;59864:9;:37::i;:::-;-1:-1:-1::0;;2389:1:0;3343:7;:22;-1:-1:-1;58756:1153:0:o;61051:186::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;2433:1:::1;3031:7;;:19;;3023:63;;;::::0;-1:-1:-1;;;3023:63:0;;11332:2:1;3023:63:0::1;::::0;::::1;11314:21:1::0;11371:2;11351:18;;;11344:30;11410:33;11390:18;;;11383:61;11461:18;;3023:63:0::1;11130:355:1::0;3023:63:0::1;2433:1;3164:7;:18:::0;61133:49:::2;::::0;61115:12:::2;::::0;61133:10:::2;::::0;61156:21:::2;::::0;61115:12;61133:49;61115:12;61133:49;61156:21;61133:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61114:68;;;61201:7;61193:36;;;::::0;-1:-1:-1;;;61193:36:0;;13269:2:1;61193:36:0::2;::::0;::::2;13251:21:1::0;13308:2;13288:18;;;13281:30;-1:-1:-1;;;13327:18:1;;;13320:46;13383:18;;61193:36:0::2;13067:340:1::0;61193:36:0::2;-1:-1:-1::0;2389:1:0::1;3343:7;:22:::0;61051:186::o;39741:185::-;39879:39;39896:4;39902:2;39906:7;39879:39;;;;;;;;;;;;:16;:39::i;57743:114::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;57820:15:::1;:29:::0;57743:114::o;57244:255::-;57345:4;57361:12;57403:13;57386:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;57376:42;;;;;;57361:57;;57436:55;57455:12;;57436:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57469:15:0;;;-1:-1:-1;57486:4:0;;-1:-1:-1;57436:18:0;:55::i;:::-;57429:62;57244:255;-1:-1:-1;;;;;57244:255:0:o;58311:102::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;58387:18:::1;:7;58397:8:::0;;58387:18:::1;:::i;36394:144::-:0;36458:7;36501:27;36520:7;36501:18;:27::i;58081:107::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;58163:17:::1;::::0;;-1:-1:-1;;58142:38:0;::::1;58163:17;::::0;;;::::1;;;58162:18;58142:38:::0;;::::1;;::::0;;58081:107::o;55883:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32248:234::-;32312:7;32354:5;32332:70;;32374:28;;-1:-1:-1;;;32374:28:0;;;;;;;;;;;32332:70;-1:-1:-1;;;;;;32420:25:0;;;;;:18;:25;;;;;;27593:13;32420:54;;32248:234::o;17836:103::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;17901:30:::1;17928:1;17901:18;:30::i;:::-;17836:103::o:0;56985:251::-;57084:4;57100:12;57142:13;57125:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;57115:42;;;;;;57100:57;;57175:53;57194:12;;57175:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57208:13:0;;;-1:-1:-1;57223:4:0;;-1:-1:-1;57175:18:0;:53::i;59917:185::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;60025:14:::1;55694:4;60038:1;60025:14;:::i;:::-;60016:6;60000:13;30889:12:::0;;30676:7;30873:13;:28;;30623:315;60000:13:::1;:22;;;;:::i;:::-;:39;59992:60;;;::::0;-1:-1:-1;;;59992:60:0;;13614:2:1;59992:60:0::1;::::0;::::1;13596:21:1::0;13653:1;13633:18;;;13626:29;-1:-1:-1;;;13671:18:1;;;13664:39;13720:18;;59992:60:0::1;13412:332:1::0;57987:86:0;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;58051:5:::1;:14:::0;57987:86::o;36774:104::-;36830:13;36863:7;36856:14;;;;;:::i;56726:251::-;56825:4;56841:12;56883:13;56866:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;56856:42;;;;;;56841:57;;56916:53;56935:12;;56916:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;56949:13:0;;;-1:-1:-1;56964:4:0;;-1:-1:-1;56916:18:0;:53::i;38890:308::-;-1:-1:-1;;;;;38989:31:0;;53409:10;38989:31;38985:61;;;39029:17;;-1:-1:-1;;;39029:17:0;;;;;;;;;;;38985:61;53409:10;39059:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;39059:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;39059:60:0;;;;;;;;;;39135:55;;540:41:1;;;39059:49:0;;53409:10;39135:55;;513:18:1;39135:55:0;;;;;;;38890:308;;:::o;39997:396::-;40164:28;40174:4;40180:2;40184:7;40164:9;:28::i;:::-;-1:-1:-1;;;;;40207:14:0;;;:19;40203:183;;40246:56;40277:4;40283:2;40287:7;40296:5;40246:30;:56::i;:::-;40241:145;;40330:40;;-1:-1:-1;;;40330:40:0;;;;;;;;;;;40241:145;39997:396;;;;:::o;36949:318::-;37022:13;37053:16;37061:7;37053;:16::i;:::-;37048:59;;37078:29;;-1:-1:-1;;;37078:29:0;;;;;;;;;;;37048:59;37120:21;37144:10;:8;:10::i;:::-;37120:34;;37178:7;37172:21;37197:1;37172:26;;:87;;;;;;;;;;;;;;;;;37225:7;37234:18;37244:7;37234:9;:18::i;:::-;37208:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37172:87;37165:94;36949:318;-1:-1:-1;;;36949:318:0:o;60653:113::-;-1:-1:-1;;;;;32653:25:0;;60711:7;32653:25;;;:18;:25;;27730:2;32653:25;;;;27593:13;32653:49;;32652:80;60738:20;32564:176;57865:114;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;57943:12:::1;:28:::0;57865:114::o;57625:110::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;57700:13:::1;:27:::0;57625:110::o;58196:107::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;58278:17:::1;::::0;;-1:-1:-1;;58257:38:0;::::1;58278:17;::::0;;::::1;58277:18;58257:38;::::0;;58196:107::o;18094:201::-;17258:6;;-1:-1:-1;;;;;17258:6:0;53409:10;17405:23;17397:68;;;;-1:-1:-1;;;17397:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18183:22:0;::::1;18175:73;;;::::0;-1:-1:-1;;;18175:73:0;;14426:2:1;18175:73:0::1;::::0;::::1;14408:21:1::0;14465:2;14445:18;;;14438:30;14504:34;14484:18;;;14477:62;-1:-1:-1;;;14555:18:1;;;14548:36;14601:19;;18175:73:0::1;14224:402:1::0;18175:73:0::1;18259:28;18278:8;18259:18;:28::i;40648:273::-:0;40705:4;40795:13;;40785:7;:23;40742:152;;;;-1:-1:-1;;40846:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;40846:43:0;:48;;40648:273::o;33909:1129::-;33976:7;34011;34113:13;;34106:4;:20;34102:869;;;34151:14;34168:23;;;:17;:23;;;;;;-1:-1:-1;;;34257:23:0;;34253:699;;34776:113;34783:11;34776:113;;-1:-1:-1;;;34854:6:0;34836:25;;;;:17;:25;;;;;;34776:113;;34253:699;34128:843;34102:869;34999:31;;-1:-1:-1;;;34999:31:0;;;;;;;;;;;44314:2654;44429:27;44459;44478:7;44459:18;:27::i;:::-;44429:57;;44544:4;-1:-1:-1;;;;;44503:45:0;44519:19;-1:-1:-1;;;;;44503:45:0;;44499:86;;44557:28;;-1:-1:-1;;;44557:28:0;;;;;;;;;;;44499:86;44598:23;44624:24;;;:15;:24;;;;;;-1:-1:-1;;;;;44624:24:0;;;;44598:23;44687:27;;53409:10;44687:27;;:87;;-1:-1:-1;44731:43:0;44748:4;53409:10;39269:164;:::i;44731:43::-;44687:142;;;-1:-1:-1;;;;;;44791:38:0;;53409:10;44791:38;44687:142;44661:169;;44848:17;44843:66;;44874:35;;-1:-1:-1;;;44874:35:0;;;;;;;;;;;44843:66;44942:2;44920:62;;44959:23;;-1:-1:-1;;;44959:23:0;;;;;;;;;;;44920:62;45126:15;45108:39;45104:103;;45171:24;;;;:15;:24;;;;;45164:31;;-1:-1:-1;;;;;;45164:31:0;;;45104:103;-1:-1:-1;;;;;45574:24:0;;;;;;;:18;:24;;;;;;;;45572:26;;-1:-1:-1;;45572:26:0;;;45643:22;;;;;;;;45641:24;;-1:-1:-1;45641:24:0;;;45936:26;;;:17;:26;;;-1:-1:-1;;;46024:15:0;28247:3;46024:41;45982:84;;:128;;45936:174;;;46230:46;;46226:626;;46334:1;46324:11;;46302:19;46457:30;;;:17;:30;;;;;;46453:384;;46595:13;;46580:11;:28;46576:242;;46742:30;;;;:17;:30;;;;;:52;;;46576:242;46283:569;46226:626;46899:7;46895:2;-1:-1:-1;;;;;46880:27:0;46889:4;-1:-1:-1;;;;;46880:27:0;;;;;;;;;;;44418:2550;;;44314:2654;;;:::o;41005:104::-;41074:27;41084:2;41088:8;41074:27;;;;;;;;;;;;:9;:27::i;:::-;41005:104;;:::o;4600:190::-;4725:4;4778;4749:25;4762:5;4769:4;4749:12;:25::i;:::-;:33;;4600:190;-1:-1:-1;;;;4600:190:0:o;18455:191::-;18548:6;;;-1:-1:-1;;;;;18565:17:0;;;-1:-1:-1;;;;;;18565:17:0;;;;;;;18598:40;;18548:6;;;18565:17;18548:6;;18598:40;;18529:16;;18598:40;18518:128;18455:191;:::o;50791:716::-;50975:88;;-1:-1:-1;;;50975:88:0;;50954:4;;-1:-1:-1;;;;;50975:45:0;;;;;:88;;53409:10;;51042:4;;51048:7;;51057:5;;50975:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50975:88:0;;;;;;;;-1:-1:-1;;50975:88:0;;;;;;;;;;;;:::i;:::-;;;50971:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51258:13:0;;51254:235;;51304:40;;-1:-1:-1;;;51304:40:0;;;;;;;;;;;51254:235;51447:6;51441:13;51432:6;51428:2;51424:15;51417:38;50971:529;-1:-1:-1;;;;;;51134:64:0;-1:-1:-1;;;51134:64:0;;-1:-1:-1;50791:716:0;;;;;;:::o;60935:108::-;60995:13;61028:7;61021:14;;;;;:::i;53533:1960::-;54002:4;53996:11;;54009:3;53992:21;;54087:17;;;;54783:11;;;54662:5;54915:2;54929;54919:13;;54911:22;54783:11;54898:36;54970:2;54960:13;;54554:697;54989:4;54554:697;;;55180:1;55175:3;55171:11;55164:18;;55231:2;55225:4;55221:13;55217:2;55213:22;55208:3;55200:36;55084:2;55074:13;;54554:697;;;-1:-1:-1;55281:13:0;;;-1:-1:-1;;55396:12:0;;;55456:19;;;55396:12;53533:1960;-1:-1:-1;53533:1960:0:o;41496:681::-;41619:19;41625:2;41629:8;41619:5;:19::i;:::-;-1:-1:-1;;;;;41680:14:0;;;:19;41676:483;;41720:11;41734:13;41782:14;;;41815:233;41846:62;41885:1;41889:2;41893:7;;;;;;41902:5;41846:30;:62::i;:::-;41841:167;;41944:40;;-1:-1:-1;;;41944:40:0;;;;;;;;;;;41841:167;42043:3;42035:5;:11;41815:233;;42130:3;42113:13;;:20;42109:34;;42135:8;;;5151:675;5234:7;5277:4;5234:7;5292:497;5316:5;:12;5312:1;:16;5292:497;;;5350:20;5373:5;5379:1;5373:8;;;;;;;;:::i;:::-;;;;;;;5350:31;;5416:12;5400;:28;5396:382;;5902:13;5952:15;;;5988:4;5981:15;;;6035:4;6019:21;;5528:57;;5396:382;;;5902:13;5952:15;;;5988:4;5981:15;;;6035:4;6019:21;;5705:57;;5396:382;-1:-1:-1;5330:3:0;;;;:::i;:::-;;;;5292:497;;;-1:-1:-1;5806:12:0;5151:675;-1:-1:-1;;;5151:675:0:o;42450:1610::-;42515:20;42538:13;42584:2;42562:58;;42601:19;;-1:-1:-1;;;42601:19:0;;;;;;;;;;;42562:58;42635:13;42631:44;;42657:18;;-1:-1:-1;;;42657:18:0;;;;;;;;;;;42631:44;-1:-1:-1;;;;;43224:22:0;;;;;;:18;:22;;;;27730:2;43224:22;;;:70;;43262:31;43250:44;;43224:70;;;43537:31;;;:17;:31;;;;;43630:15;28247:3;43630:41;43588:84;;-1:-1:-1;43708:13:0;;28506:3;43693:56;43588:162;43537:213;;43796:119;43823:49;;43863:8;;;;43848:23;;;-1:-1:-1;;;;;43823:49:0;;;43840:1;;43823:49;;43840:1;;43823:49;43905:8;43896:6;:17;43796:119;;-1:-1:-1;43947:23:0;43931:13;:39;-1:-1:-1;39500:170:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:186::-;1973:6;2026:2;2014:9;2005:7;2001:23;1997:32;1994:52;;;2042:1;2039;2032:12;1994:52;2065:29;2084:9;2065:29;:::i;2287:254::-;2355:6;2363;2416:2;2404:9;2395:7;2391:23;2387:32;2384:52;;;2432:1;2429;2422:12;2384:52;2455:29;2474:9;2455:29;:::i;:::-;2445:39;2531:2;2516:18;;;;2503:32;;-1:-1:-1;;;2287:254:1:o;2546:367::-;2609:8;2619:6;2673:3;2666:4;2658:6;2654:17;2650:27;2640:55;;2691:1;2688;2681:12;2640:55;-1:-1:-1;2714:20:1;;2757:18;2746:30;;2743:50;;;2789:1;2786;2779:12;2743:50;2826:4;2818:6;2814:17;2802:29;;2886:3;2879:4;2869:6;2866:1;2862:14;2854:6;2850:27;2846:38;2843:47;2840:67;;;2903:1;2900;2893:12;2840:67;2546:367;;;;;:::o;2918:773::-;3040:6;3048;3056;3064;3117:2;3105:9;3096:7;3092:23;3088:32;3085:52;;;3133:1;3130;3123:12;3085:52;3173:9;3160:23;3202:18;3243:2;3235:6;3232:14;3229:34;;;3259:1;3256;3249:12;3229:34;3298:70;3360:7;3351:6;3340:9;3336:22;3298:70;:::i;:::-;3387:8;;-1:-1:-1;3272:96:1;-1:-1:-1;3475:2:1;3460:18;;3447:32;;-1:-1:-1;3491:16:1;;;3488:36;;;3520:1;3517;3510:12;3488:36;;3559:72;3623:7;3612:8;3601:9;3597:24;3559:72;:::i;:::-;2918:773;;;;-1:-1:-1;3650:8:1;-1:-1:-1;;;;2918:773:1:o;3696:328::-;3773:6;3781;3789;3842:2;3830:9;3821:7;3817:23;3813:32;3810:52;;;3858:1;3855;3848:12;3810:52;3881:29;3900:9;3881:29;:::i;:::-;3871:39;;3929:38;3963:2;3952:9;3948:18;3929:38;:::i;:::-;3919:48;;4014:2;4003:9;3999:18;3986:32;3976:42;;3696:328;;;;;:::o;4214:505::-;4309:6;4317;4325;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4430:9;4417:23;4407:33;;4491:2;4480:9;4476:18;4463:32;4518:18;4510:6;4507:30;4504:50;;;4550:1;4547;4540:12;4504:50;4589:70;4651:7;4642:6;4631:9;4627:22;4589:70;:::i;:::-;4214:505;;4678:8;;-1:-1:-1;4563:96:1;;-1:-1:-1;;;;4214:505:1:o;4724:511::-;4819:6;4827;4835;4888:2;4876:9;4867:7;4863:23;4859:32;4856:52;;;4904:1;4901;4894:12;4856:52;4927:29;4946:9;4927:29;:::i;:::-;4917:39;;5007:2;4996:9;4992:18;4979:32;5034:18;5026:6;5023:30;5020:50;;;5066:1;5063;5056:12;5240:592;5311:6;5319;5372:2;5360:9;5351:7;5347:23;5343:32;5340:52;;;5388:1;5385;5378:12;5340:52;5428:9;5415:23;5457:18;5498:2;5490:6;5487:14;5484:34;;;5514:1;5511;5504:12;5484:34;5552:6;5541:9;5537:22;5527:32;;5597:7;5590:4;5586:2;5582:13;5578:27;5568:55;;5619:1;5616;5609:12;5568:55;5659:2;5646:16;5685:2;5677:6;5674:14;5671:34;;;5701:1;5698;5691:12;5671:34;5746:7;5741:2;5732:6;5728:2;5724:15;5720:24;5717:37;5714:57;;;5767:1;5764;5757:12;5714:57;5798:2;5790:11;;;;;5820:6;;-1:-1:-1;5240:592:1;;-1:-1:-1;;;;5240:592:1:o;5837:347::-;5902:6;5910;5963:2;5951:9;5942:7;5938:23;5934:32;5931:52;;;5979:1;5976;5969:12;5931:52;6002:29;6021:9;6002:29;:::i;:::-;5992:39;;6081:2;6070:9;6066:18;6053:32;6128:5;6121:13;6114:21;6107:5;6104:32;6094:60;;6150:1;6147;6140:12;6094:60;6173:5;6163:15;;;5837:347;;;;;:::o;6189:127::-;6250:10;6245:3;6241:20;6238:1;6231:31;6281:4;6278:1;6271:15;6305:4;6302:1;6295:15;6321:1138;6416:6;6424;6432;6440;6493:3;6481:9;6472:7;6468:23;6464:33;6461:53;;;6510:1;6507;6500:12;6461:53;6533:29;6552:9;6533:29;:::i;:::-;6523:39;;6581:38;6615:2;6604:9;6600:18;6581:38;:::i;:::-;6571:48;;6666:2;6655:9;6651:18;6638:32;6628:42;;6721:2;6710:9;6706:18;6693:32;6744:18;6785:2;6777:6;6774:14;6771:34;;;6801:1;6798;6791:12;6771:34;6839:6;6828:9;6824:22;6814:32;;6884:7;6877:4;6873:2;6869:13;6865:27;6855:55;;6906:1;6903;6896:12;6855:55;6942:2;6929:16;6964:2;6960;6957:10;6954:36;;;6970:18;;:::i;:::-;7045:2;7039:9;7013:2;7099:13;;-1:-1:-1;;7095:22:1;;;7119:2;7091:31;7087:40;7075:53;;;7143:18;;;7163:22;;;7140:46;7137:72;;;7189:18;;:::i;:::-;7229:10;7225:2;7218:22;7264:2;7256:6;7249:18;7304:7;7299:2;7294;7290;7286:11;7282:20;7279:33;7276:53;;;7325:1;7322;7315:12;7276:53;7381:2;7376;7372;7368:11;7363:2;7355:6;7351:15;7338:46;7426:1;7421:2;7416;7408:6;7404:15;7400:24;7393:35;7447:6;7437:16;;;;;;;6321:1138;;;;;;;:::o;7646:260::-;7714:6;7722;7775:2;7763:9;7754:7;7750:23;7746:32;7743:52;;;7791:1;7788;7781:12;7743:52;7814:29;7833:9;7814:29;:::i;:::-;7804:39;;7862:38;7896:2;7885:9;7881:18;7862:38;:::i;:::-;7852:48;;7646:260;;;;;:::o;7911:380::-;7990:1;7986:12;;;;8033;;;8054:61;;8108:4;8100:6;8096:17;8086:27;;8054:61;8161:2;8153:6;8150:14;8130:18;8127:38;8124:161;;;8207:10;8202:3;8198:20;8195:1;8188:31;8242:4;8239:1;8232:15;8270:4;8267:1;8260:15;8124:161;;7911:380;;;:::o;8296:356::-;8498:2;8480:21;;;8517:18;;;8510:30;8576:34;8571:2;8556:18;;8549:62;8643:2;8628:18;;8296:356::o;8657:127::-;8718:10;8713:3;8709:20;8706:1;8699:31;8749:4;8746:1;8739:15;8773:4;8770:1;8763:15;8789:127;8850:10;8845:3;8841:20;8838:1;8831:31;8881:4;8878:1;8871:15;8905:4;8902:1;8895:15;8921:135;8960:3;-1:-1:-1;;8981:17:1;;8978:43;;;9001:18;;:::i;:::-;-1:-1:-1;9048:1:1;9037:13;;8921:135::o;9420:128::-;9460:3;9491:1;9487:6;9484:1;9481:13;9478:39;;;9497:18;;:::i;:::-;-1:-1:-1;9533:9:1;;9420:128::o;10249:168::-;10289:7;10355:1;10351;10347:6;10343:14;10340:1;10337:21;10332:1;10325:9;10318:17;10314:45;10311:71;;;10362:18;;:::i;:::-;-1:-1:-1;10402:9:1;;10249:168::o;11849:229::-;11998:2;11994:15;;;;-1:-1:-1;;11990:53:1;11978:66;;12069:2;12060:12;;11849:229::o;13749:470::-;13928:3;13966:6;13960:13;13982:53;14028:6;14023:3;14016:4;14008:6;14004:17;13982:53;:::i;:::-;14098:13;;14057:16;;;;14120:57;14098:13;14057:16;14154:4;14142:17;;14120:57;:::i;:::-;14193:20;;13749:470;-1:-1:-1;;;;13749:470:1:o;14631:489::-;-1:-1:-1;;;;;14900:15:1;;;14882:34;;14952:15;;14947:2;14932:18;;14925:43;14999:2;14984:18;;14977:34;;;15047:3;15042:2;15027:18;;15020:31;;;14825:4;;15068:46;;15094:19;;15086:6;15068:46;:::i;:::-;15060:54;14631:489;-1:-1:-1;;;;;;14631:489:1:o;15125:249::-;15194:6;15247:2;15235:9;15226:7;15222:23;15218:32;15215:52;;;15263:1;15260;15253:12;15215:52;15295:9;15289:16;15314:30;15338:5;15314:30;:::i

Swarm Source

ipfs://766054f1d178aa7fe222012eb334251dd8ac8c3cd7595ce7f9380961e970b580
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.