ETH Price: $3,338.82 (-3.64%)
Gas: 3 Gwei

Token

CoolDoodCats (CoolDoodCats)
 

Overview

Max Total Supply

422 CoolDoodCats

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bimmer88.eth
Balance
9 CoolDoodCats
0x31011345a08826538947fcdc0938607af7f0befa
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:
CoolDoodCats

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.11;
/**
 * @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;
    }
}

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


/**
 * @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;
    }
}

// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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`, 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 Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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 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);

    /**
     * @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;
}

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol)


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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);
}

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)


// 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 substraction 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;
        }
    }
}


library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}

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


/**
 * @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);
    }
}


abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    
    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) 
        public 
        view 
        virtual 
        override 
        returns (uint) 
    {
        require(owner != address(0), "ERC721: balance query for the zero address");

        uint count;
        for( uint i; i < _owners.length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        return count;
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @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 {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), 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 {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _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 {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

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

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < _owners.length, "ERC721Enumerable: global index out of bounds");
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");

        uint count;
        for(uint i; i < _owners.length; i++){
            if(owner == _owners[i]){
                if(count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}

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


/**
 * @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);
    }
}

pragma abicoder v2;

contract CoolDoodCats is ERC721Enumerable, Ownable, ReentrancyGuard {
  using SafeMath for uint256;
  
  mapping(address => uint256) private         freeMintsAllowance;
  bool                        public          presaleIsActive = false;
  bool                        public          saleIsActive = false;
  address                     public          proxyRegistryAddress;
  mapping(address => bool)    public          projectProxy;
  string                      public          baseURI;
  uint256                     public constant TOKEN_PRICE = 0.025 ether;

 // ALL NUMBERS ARE 1 HIGHER TO SAVE ON GAS BY NOT USING <= >=
  uint                        public constant MAX_PER_TXN = 11;
  uint256                     public constant MAX_SUPPLY = 6970;
  uint256                     public constant MAX_FREE_PER_USER = 11;
  uint256                     public constant MAX_FREE_SUPPLY = 421;
  uint256                     public constant MAX_PRE_SUPPLY = 2001;
  


  constructor() ERC721("CoolDoodCats", "CoolDoodCats") {
    proxyRegistryAddress = address(0xa5409ec958C83C3f309868babACA7c86DCB077c1);
  }
    
  function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner {
    proxyRegistryAddress = _proxyRegistryAddress;
  }
  
  function flipProxyState(address proxyAddress) public onlyOwner {
    projectProxy[proxyAddress] = !projectProxy[proxyAddress];
  }

  function withdraw() public onlyOwner nonReentrant {
    uint256 balance = address(this).balance;
    require(balance > 0);

    (bool ownerSuccess, ) = _msgSender().call{value: address(this).balance}("");
    require(ownerSuccess, "Failed to send to Owner.");
  }

  function setBaseURI(string memory _baseURI) public onlyOwner {
    baseURI = _baseURI;
  }
  
    function flipPresaleState() public onlyOwner {
    presaleIsActive = !presaleIsActive;
  }
    function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }
  
  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
      // Return an empty array
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](tokenCount);
      uint256 index;
      for (index = 0; index < tokenCount; index++) {
        result[index] = tokenOfOwnerByIndex(_owner, index);
      }
      return result;
    }
  }
  
  function freeMint(uint numberOfTokens) public nonReentrant {
    require(presaleIsActive, "Sale must be active to mint");
    require(numberOfTokens > 0, "Must mint more than 0 tokens.");
    require(numberOfTokens < MAX_PER_TXN, "You can only mint 10 per transaction.");
    require(freeMintsAllowance[msg.sender].add(numberOfTokens) < MAX_FREE_PER_USER, "Your mint would exceed the total of 10 allowed for free.");
    require(totalSupply().add(numberOfTokens) < MAX_FREE_SUPPLY, "Purchase would exceed free supply");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, totalSupply());
    }

    freeMintsAllowance[msg.sender] += numberOfTokens;
  }
  
  function mintPresale(uint numberOfTokens) public payable nonReentrant {
    require(presaleIsActive, "Sale must be active to mint");
    require(numberOfTokens > 0, "Must mint more than 0 tokens.");
    require(numberOfTokens < MAX_PER_TXN, "You can only mint 10 per transaction.");
    require(totalSupply().add(numberOfTokens) < MAX_PRE_SUPPLY, "Purchase would exceed presale supply");
    require(msg.value == TOKEN_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, totalSupply());
    }
  }

  function mint(uint numberOfTokens) public payable nonReentrant {
    require(saleIsActive, "Sale must be active to mint");
    require(numberOfTokens > 0, "Must mint more than 0 tokens.");
    require(numberOfTokens < MAX_PER_TXN, "You can only mint 10 per transaction.");
    require(totalSupply().add(numberOfTokens) < MAX_SUPPLY, "Purchase would exceed max supply");
    require(msg.value == TOKEN_PRICE.mul(numberOfTokens), "Ether value sent is not correct");
    
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(msg.sender, totalSupply());
    }
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    require(_exists(_tokenId), "Token does not exist.");
    return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
  }

  function isApprovedForAll(address _owner, address operator) public view override returns (bool) {
    OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true;
    return super.isApprovedForAll(_owner, operator);
  }

  function airdrop(address to,uint numberOfTokens) external onlyOwner {
    for(uint i = 0; i < numberOfTokens; i++) {
      _safeMint(to, totalSupply());
    }
  }
}

contract OwnableDelegateProxy {}
contract OpenSeaProxyRegistry {
  mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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_FREE_PER_USER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","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":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526008805461ffff191690553480156200001c57600080fd5b50604080518082018252600c8082526b436f6f6c446f6f644361747360a01b602080840182815285518087019096529285528401528151919291620000649160009162000122565b5080516200007a90600190602084019062000122565b5050506200009762000091620000cc60201b60201c565b620000d0565b60016006556008805462010000600160b01b03191675a5409ec958c83c3f309868babaca7c86dcb077c1000017905562000205565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013090620001c8565b90600052602060002090601f0160209004810192826200015457600085556200019f565b82601f106200016f57805160ff19168380011785556200019f565b828001600101855582156200019f579182015b828111156200019f57825182559160200191906001019062000182565b50620001ad929150620001b1565b5090565b5b80821115620001ad5760008155600101620001b2565b600181811c90821680620001dd57607f821691505b60208210811415620001ff57634e487b7160e01b600052602260045260246000fd5b50919050565b61280280620002156000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c514610668578063eb8d244414610688578063f2fde38b146106a7578063f73c814b146106c7578063f759867a146106e7578063f81227d4146106fa57600080fd5b8063c87b56dd146105d1578063cd7c0326146105f1578063d26ea6c014610617578063d2d8cb6714610637578063e4c0134e1461065257600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054b57806395d89b4114610569578063a0712d681461057e578063a22cb46514610591578063b88d4fde146105b157600080fd5b806370a08231146104a9578063715018a6146104c95780637c928fe9146104de5780638462151c146104fe5780638ba4cc3c1461052b57600080fd5b806334918dfd116101c757806351b96d921161018b57806351b96d92146103cf57806355f804b3146104245780635bab26e2146104445780636352211e146104745780636c0360eb1461049457600080fd5b806334918dfd146103a55780633ccfd60b146103ba57806341a126dd146103cf57806342842e0e146103e45780634f6ccce71461040457600080fd5b806318160ddd1161020e57806318160ddd1461032057806323b872dd146103355780632f745c591461035557806330f72cd41461037557806332cb6b0c1461038f57600080fd5b806301ffc9a71461024b57806302ddb65b1461028057806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561025757600080fd5b5061026b610266366004612038565b61070f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102966101a581565b604051908152602001610277565b3480156102b057600080fd5b506102b961073a565b60405161027791906120ad565b3480156102d257600080fd5b506102e66102e13660046120c0565b6107cc565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b5061031e6103193660046120ee565b610859565b005b34801561032c57600080fd5b50600254610296565b34801561034157600080fd5b5061031e61035036600461211a565b61096f565b34801561036157600080fd5b506102966103703660046120ee565b6109a0565b34801561038157600080fd5b5060085461026b9060ff1681565b34801561039b57600080fd5b50610296611b3a81565b3480156103b157600080fd5b5061031e610a53565b3480156103c657600080fd5b5061031e610a9a565b3480156103db57600080fd5b50610296600b81565b3480156103f057600080fd5b5061031e6103ff36600461211a565b610b98565b34801561041057600080fd5b5061029661041f3660046120c0565b610bb3565b34801561043057600080fd5b5061031e61043f3660046121e7565b610c20565b34801561045057600080fd5b5061026b61045f366004612230565b60096020526000908152604090205460ff1681565b34801561048057600080fd5b506102e661048f3660046120c0565b610c61565b3480156104a057600080fd5b506102b9610ced565b3480156104b557600080fd5b506102966104c4366004612230565b610d7b565b3480156104d557600080fd5b5061031e610e49565b3480156104ea57600080fd5b5061031e6104f93660046120c0565b610e7f565b34801561050a57600080fd5b5061051e610519366004612230565b611062565b604051610277919061224d565b34801561053757600080fd5b5061031e6105463660046120ee565b611121565b34801561055757600080fd5b506005546001600160a01b03166102e6565b34801561057557600080fd5b506102b9611175565b61031e61058c3660046120c0565b611184565b34801561059d57600080fd5b5061031e6105ac366004612291565b6112f9565b3480156105bd57600080fd5b5061031e6105cc3660046122cf565b6113be565b3480156105dd57600080fd5b506102b96105ec3660046120c0565b6113f6565b3480156105fd57600080fd5b506008546102e6906201000090046001600160a01b031681565b34801561062357600080fd5b5061031e610632366004612230565b611477565b34801561064357600080fd5b506102966658d15e1762800081565b34801561065e57600080fd5b506102966107d181565b34801561067457600080fd5b5061026b61068336600461234f565b6114cb565b34801561069457600080fd5b5060085461026b90610100900460ff1681565b3480156106b357600080fd5b5061031e6106c2366004612230565b6115b5565b3480156106d357600080fd5b5061031e6106e2366004612230565b611650565b61031e6106f53660046120c0565b6116a3565b34801561070657600080fd5b5061031e61181f565b60006001600160e01b0319821663780e9d6360e01b148061073457506107348261185d565b92915050565b6060600080546107499061237d565b80601f01602080910402602001604051908101604052809291908181526020018280546107759061237d565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b60006107d7826118ad565b61083d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061086482610c61565b9050806001600160a01b0316836001600160a01b031614156108d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610834565b336001600160a01b03821614806108ee57506108ee81336114cb565b6109605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610834565b61096a83836118f7565b505050565b6109793382611965565b6109955760405162461bcd60e51b8152600401610834906123b2565b61096a838383611a27565b60006109ab83610d7b565b82106109c95760405162461bcd60e51b815260040161083490612403565b6000805b600254811015610a3a57600281815481106109ea576109ea61244e565b6000918252602090912001546001600160a01b0386811691161415610a285783821415610a1a5791506107349050565b81610a248161247a565b9250505b80610a328161247a565b9150506109cd565b5060405162461bcd60e51b815260040161083490612403565b6005546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161083490612495565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610ac45760405162461bcd60e51b815260040161083490612495565b60026006541415610ae75760405162461bcd60e51b8152600401610834906124ca565b60026006554780610af757600080fd5b604051600090339047908381818185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905080610b8f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610834565b50506001600655565b61096a838383604051806020016040528060008152506113be565b6002546000908210610c1c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610834565b5090565b6005546001600160a01b03163314610c4a5760405162461bcd60e51b815260040161083490612495565b8051610c5d90600a906020840190611f92565b5050565b60008060028381548110610c7757610c7761244e565b6000918252602090912001546001600160a01b03169050806107345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610834565b600a8054610cfa9061237d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061237d565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b60006001600160a01b038216610de65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610834565b6000805b600254811015610e425760028181548110610e0757610e0761244e565b6000918252602090912001546001600160a01b0385811691161415610e3257610e2f8261247a565b91505b610e3b8161247a565b9050610dea565b5092915050565b6005546001600160a01b03163314610e735760405162461bcd60e51b815260040161083490612495565b610e7d6000611b7d565b565b60026006541415610ea25760405162461bcd60e51b8152600401610834906124ca565b600260065560085460ff16610ec95760405162461bcd60e51b815260040161083490612501565b60008111610ee95760405162461bcd60e51b815260040161083490612538565b600b8110610f095760405162461bcd60e51b81526004016108349061256f565b33600090815260076020526040902054600b90610f269083611bcf565b10610f995760405162461bcd60e51b815260206004820152603860248201527f596f7572206d696e7420776f756c64206578636565642074686520746f74616c60448201527f206f6620313020616c6c6f77656420666f7220667265652e00000000000000006064820152608401610834565b6101a5610faf82610fa960025490565b90611bcf565b106110065760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b6064820152608401610834565b60005b81811015611035576110233361101e60025490565b611be2565b8061102d8161247a565b915050611009565b5033600090815260076020526040812080548392906110559084906125b4565b9091555050600160065550565b6060600061106f83610d7b565b9050806110905760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110ab576110ab61215b565b6040519080825280602002602001820160405280156110d4578160200160208202803683370190505b50905060005b82811015611088576110ec85826109a0565b8282815181106110fe576110fe61244e565b6020908102919091010152806111138161247a565b9150506110da565b50919050565b6005546001600160a01b0316331461114b5760405162461bcd60e51b815260040161083490612495565b60005b8181101561096a576111638361101e60025490565b8061116d8161247a565b91505061114e565b6060600180546107499061237d565b600260065414156111a75760405162461bcd60e51b8152600401610834906124ca565b6002600655600854610100900460ff166111d35760405162461bcd60e51b815260040161083490612501565b600081116111f35760405162461bcd60e51b815260040161083490612538565b600b81106112135760405162461bcd60e51b81526004016108349061256f565b611b3a61122382610fa960025490565b106112705760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610834565b6112816658d15e1762800082611bfc565b34146112cf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610834565b60005b81811015610b8f576112e73361101e60025490565b806112f18161247a565b9150506112d2565b6001600160a01b0382163314156113525760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610834565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c83383611965565b6113e45760405162461bcd60e51b8152600401610834906123b2565b6113f084848484611c08565b50505050565b6060611401826118ad565b6114455760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610834565b600a61145083611c3b565b6040516020016114619291906125e8565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114a15760405162461bcd60e51b815260040161083490612495565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60085460405163c455279160e01b81526001600160a01b03848116600483015260009262010000900481169190841690829063c455279190602401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611547919061268f565b6001600160a01b0316148061157457506001600160a01b03831660009081526009602052604090205460ff165b15611583576001915050610734565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146115df5760405162461bcd60e51b815260040161083490612495565b6001600160a01b0381166116445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610834565b61164d81611b7d565b50565b6005546001600160a01b0316331461167a5760405162461bcd60e51b815260040161083490612495565b6001600160a01b03166000908152600960205260409020805460ff19811660ff90911615179055565b600260065414156116c65760405162461bcd60e51b8152600401610834906124ca565b600260065560085460ff166116ed5760405162461bcd60e51b815260040161083490612501565b6000811161170d5760405162461bcd60e51b815260040161083490612538565b600b811061172d5760405162461bcd60e51b81526004016108349061256f565b6107d161173d82610fa960025490565b106117965760405162461bcd60e51b8152602060048201526024808201527f507572636861736520776f756c64206578636565642070726573616c6520737560448201526370706c7960e01b6064820152608401610834565b6117a76658d15e1762800082611bfc565b34146117f55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610834565b60005b81811015610b8f5761180d3361101e60025490565b806118178161247a565b9150506117f8565b6005546001600160a01b031633146118495760405162461bcd60e51b815260040161083490612495565b6008805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061188e57506001600160e01b03198216635b5e139f60e01b145b8061073457506301ffc9a760e01b6001600160e01b0319831614610734565b60025460009082108015610734575060006001600160a01b0316600283815481106118da576118da61244e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192c82610c61565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611970826118ad565b6119d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610834565b60006119dc83610c61565b9050806001600160a01b0316846001600160a01b03161480611a175750836001600160a01b0316611a0c846107cc565b6001600160a01b0316145b806115ad57506115ad81856114cb565b826001600160a01b0316611a3a82610c61565b6001600160a01b031614611aa25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610834565b6001600160a01b038216611b045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610834565b611b0f6000826118f7565b8160028281548110611b2357611b2361244e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611bdb82846125b4565b9392505050565b610c5d828260405180602001604052806000815250611d39565b6000611bdb82846126ac565b611c13848484611a27565b611c1f84848484611d6c565b6113f05760405162461bcd60e51b8152600401610834906126cb565b606081611c5f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c895780611c738161247a565b9150611c829050600a83612733565b9150611c63565b60008167ffffffffffffffff811115611ca457611ca461215b565b6040519080825280601f01601f191660200182016040528015611cce576020820181803683370190505b5090505b84156115ad57611ce3600183612747565b9150611cf0600a8661275e565b611cfb9060306125b4565b60f81b818381518110611d1057611d1061244e565b60200101906001600160f81b031916908160001a905350611d32600a86612733565b9450611cd2565b611d438383611e6a565b611d506000848484611d6c565b61096a5760405162461bcd60e51b8152600401610834906126cb565b60006001600160a01b0384163b15611e5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611db0903390899088908890600401612772565b6020604051808303816000875af1925050508015611deb575060408051601f3d908101601f19168201909252611de8918101906127af565b60015b611e45573d808015611e19576040519150601f19603f3d011682016040523d82523d6000602084013e611e1e565b606091505b508051611e3d5760405162461bcd60e51b8152600401610834906126cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ad565b506001949350505050565b6001600160a01b038216611ec05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610834565b611ec9816118ad565b15611f165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610834565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f9e9061237d565b90600052602060002090601f016020900481019282611fc05760008555612006565b82601f10611fd957805160ff1916838001178555612006565b82800160010185558215612006579182015b82811115612006578251825591602001919060010190611feb565b50610c1c9291505b80821115610c1c576000815560010161200e565b6001600160e01b03198116811461164d57600080fd5b60006020828403121561204a57600080fd5b8135611bdb81612022565b60005b83811015612070578181015183820152602001612058565b838111156113f05750506000910152565b60008151808452612099816020860160208601612055565b601f01601f19169290920160200192915050565b602081526000611bdb6020830184612081565b6000602082840312156120d257600080fd5b5035919050565b6001600160a01b038116811461164d57600080fd5b6000806040838503121561210157600080fd5b823561210c816120d9565b946020939093013593505050565b60008060006060848603121561212f57600080fd5b833561213a816120d9565b9250602084013561214a816120d9565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561218c5761218c61215b565b604051601f8501601f19908116603f011681019082821181831017156121b4576121b461215b565b816040528093508581528686860111156121cd57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121f957600080fd5b813567ffffffffffffffff81111561221057600080fd5b8201601f8101841361222157600080fd5b6115ad84823560208401612171565b60006020828403121561224257600080fd5b8135611bdb816120d9565b6020808252825182820181905260009190848201906040850190845b8181101561228557835183529284019291840191600101612269565b50909695505050505050565b600080604083850312156122a457600080fd5b82356122af816120d9565b9150602083013580151581146122c457600080fd5b809150509250929050565b600080600080608085870312156122e557600080fd5b84356122f0816120d9565b93506020850135612300816120d9565b925060408501359150606085013567ffffffffffffffff81111561232357600080fd5b8501601f8101871361233457600080fd5b61234387823560208401612171565b91505092959194509250565b6000806040838503121561236257600080fd5b823561236d816120d9565b915060208301356122c4816120d9565b600181811c9082168061239157607f821691505b6020821081141561111b57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561248e5761248e612464565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601d908201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e732e000000604082015260600190565b60208082526025908201527f596f752063616e206f6e6c79206d696e7420313020706572207472616e7361636040820152643a34b7b71760d91b606082015260800190565b600082198211156125c7576125c7612464565b500190565b600081516125de818560208601612055565b9290920192915050565b600080845481600182811c91508083168061260457607f831692505b602080841082141561262457634e487b7160e01b86526022600452602486fd5b818015612638576001811461264957612676565b60ff19861689528489019650612676565b60008b81526020902060005b8681101561266e5781548b820152908501908301612655565b505084890196505b50505050505061268681856125cc565b95945050505050565b6000602082840312156126a157600080fd5b8151611bdb816120d9565b60008160001904831182151516156126c6576126c6612464565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127425761274261271d565b500490565b60008282101561275957612759612464565b500390565b60008261276d5761276d61271d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a590830184612081565b9695505050505050565b6000602082840312156127c157600080fd5b8151611bdb8161202256fea2646970667358221220b120a614d5cb5a38e328d350075992954fca81e6bfb13c8be4882248a300f90264736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c514610668578063eb8d244414610688578063f2fde38b146106a7578063f73c814b146106c7578063f759867a146106e7578063f81227d4146106fa57600080fd5b8063c87b56dd146105d1578063cd7c0326146105f1578063d26ea6c014610617578063d2d8cb6714610637578063e4c0134e1461065257600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054b57806395d89b4114610569578063a0712d681461057e578063a22cb46514610591578063b88d4fde146105b157600080fd5b806370a08231146104a9578063715018a6146104c95780637c928fe9146104de5780638462151c146104fe5780638ba4cc3c1461052b57600080fd5b806334918dfd116101c757806351b96d921161018b57806351b96d92146103cf57806355f804b3146104245780635bab26e2146104445780636352211e146104745780636c0360eb1461049457600080fd5b806334918dfd146103a55780633ccfd60b146103ba57806341a126dd146103cf57806342842e0e146103e45780634f6ccce71461040457600080fd5b806318160ddd1161020e57806318160ddd1461032057806323b872dd146103355780632f745c591461035557806330f72cd41461037557806332cb6b0c1461038f57600080fd5b806301ffc9a71461024b57806302ddb65b1461028057806306fdde03146102a4578063081812fc146102c6578063095ea7b3146102fe575b600080fd5b34801561025757600080fd5b5061026b610266366004612038565b61070f565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102966101a581565b604051908152602001610277565b3480156102b057600080fd5b506102b961073a565b60405161027791906120ad565b3480156102d257600080fd5b506102e66102e13660046120c0565b6107cc565b6040516001600160a01b039091168152602001610277565b34801561030a57600080fd5b5061031e6103193660046120ee565b610859565b005b34801561032c57600080fd5b50600254610296565b34801561034157600080fd5b5061031e61035036600461211a565b61096f565b34801561036157600080fd5b506102966103703660046120ee565b6109a0565b34801561038157600080fd5b5060085461026b9060ff1681565b34801561039b57600080fd5b50610296611b3a81565b3480156103b157600080fd5b5061031e610a53565b3480156103c657600080fd5b5061031e610a9a565b3480156103db57600080fd5b50610296600b81565b3480156103f057600080fd5b5061031e6103ff36600461211a565b610b98565b34801561041057600080fd5b5061029661041f3660046120c0565b610bb3565b34801561043057600080fd5b5061031e61043f3660046121e7565b610c20565b34801561045057600080fd5b5061026b61045f366004612230565b60096020526000908152604090205460ff1681565b34801561048057600080fd5b506102e661048f3660046120c0565b610c61565b3480156104a057600080fd5b506102b9610ced565b3480156104b557600080fd5b506102966104c4366004612230565b610d7b565b3480156104d557600080fd5b5061031e610e49565b3480156104ea57600080fd5b5061031e6104f93660046120c0565b610e7f565b34801561050a57600080fd5b5061051e610519366004612230565b611062565b604051610277919061224d565b34801561053757600080fd5b5061031e6105463660046120ee565b611121565b34801561055757600080fd5b506005546001600160a01b03166102e6565b34801561057557600080fd5b506102b9611175565b61031e61058c3660046120c0565b611184565b34801561059d57600080fd5b5061031e6105ac366004612291565b6112f9565b3480156105bd57600080fd5b5061031e6105cc3660046122cf565b6113be565b3480156105dd57600080fd5b506102b96105ec3660046120c0565b6113f6565b3480156105fd57600080fd5b506008546102e6906201000090046001600160a01b031681565b34801561062357600080fd5b5061031e610632366004612230565b611477565b34801561064357600080fd5b506102966658d15e1762800081565b34801561065e57600080fd5b506102966107d181565b34801561067457600080fd5b5061026b61068336600461234f565b6114cb565b34801561069457600080fd5b5060085461026b90610100900460ff1681565b3480156106b357600080fd5b5061031e6106c2366004612230565b6115b5565b3480156106d357600080fd5b5061031e6106e2366004612230565b611650565b61031e6106f53660046120c0565b6116a3565b34801561070657600080fd5b5061031e61181f565b60006001600160e01b0319821663780e9d6360e01b148061073457506107348261185d565b92915050565b6060600080546107499061237d565b80601f01602080910402602001604051908101604052809291908181526020018280546107759061237d565b80156107c25780601f10610797576101008083540402835291602001916107c2565b820191906000526020600020905b8154815290600101906020018083116107a557829003601f168201915b5050505050905090565b60006107d7826118ad565b61083d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b600061086482610c61565b9050806001600160a01b0316836001600160a01b031614156108d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610834565b336001600160a01b03821614806108ee57506108ee81336114cb565b6109605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610834565b61096a83836118f7565b505050565b6109793382611965565b6109955760405162461bcd60e51b8152600401610834906123b2565b61096a838383611a27565b60006109ab83610d7b565b82106109c95760405162461bcd60e51b815260040161083490612403565b6000805b600254811015610a3a57600281815481106109ea576109ea61244e565b6000918252602090912001546001600160a01b0386811691161415610a285783821415610a1a5791506107349050565b81610a248161247a565b9250505b80610a328161247a565b9150506109cd565b5060405162461bcd60e51b815260040161083490612403565b6005546001600160a01b03163314610a7d5760405162461bcd60e51b815260040161083490612495565b6008805461ff001981166101009182900460ff1615909102179055565b6005546001600160a01b03163314610ac45760405162461bcd60e51b815260040161083490612495565b60026006541415610ae75760405162461bcd60e51b8152600401610834906124ca565b60026006554780610af757600080fd5b604051600090339047908381818185875af1925050503d8060008114610b39576040519150601f19603f3d011682016040523d82523d6000602084013e610b3e565b606091505b5050905080610b8f5760405162461bcd60e51b815260206004820152601860248201527f4661696c656420746f2073656e6420746f204f776e65722e00000000000000006044820152606401610834565b50506001600655565b61096a838383604051806020016040528060008152506113be565b6002546000908210610c1c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610834565b5090565b6005546001600160a01b03163314610c4a5760405162461bcd60e51b815260040161083490612495565b8051610c5d90600a906020840190611f92565b5050565b60008060028381548110610c7757610c7761244e565b6000918252602090912001546001600160a01b03169050806107345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610834565b600a8054610cfa9061237d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d269061237d565b8015610d735780601f10610d4857610100808354040283529160200191610d73565b820191906000526020600020905b815481529060010190602001808311610d5657829003601f168201915b505050505081565b60006001600160a01b038216610de65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610834565b6000805b600254811015610e425760028181548110610e0757610e0761244e565b6000918252602090912001546001600160a01b0385811691161415610e3257610e2f8261247a565b91505b610e3b8161247a565b9050610dea565b5092915050565b6005546001600160a01b03163314610e735760405162461bcd60e51b815260040161083490612495565b610e7d6000611b7d565b565b60026006541415610ea25760405162461bcd60e51b8152600401610834906124ca565b600260065560085460ff16610ec95760405162461bcd60e51b815260040161083490612501565b60008111610ee95760405162461bcd60e51b815260040161083490612538565b600b8110610f095760405162461bcd60e51b81526004016108349061256f565b33600090815260076020526040902054600b90610f269083611bcf565b10610f995760405162461bcd60e51b815260206004820152603860248201527f596f7572206d696e7420776f756c64206578636565642074686520746f74616c60448201527f206f6620313020616c6c6f77656420666f7220667265652e00000000000000006064820152608401610834565b6101a5610faf82610fa960025490565b90611bcf565b106110065760405162461bcd60e51b815260206004820152602160248201527f507572636861736520776f756c6420657863656564206672656520737570706c6044820152607960f81b6064820152608401610834565b60005b81811015611035576110233361101e60025490565b611be2565b8061102d8161247a565b915050611009565b5033600090815260076020526040812080548392906110559084906125b4565b9091555050600160065550565b6060600061106f83610d7b565b9050806110905760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff8111156110ab576110ab61215b565b6040519080825280602002602001820160405280156110d4578160200160208202803683370190505b50905060005b82811015611088576110ec85826109a0565b8282815181106110fe576110fe61244e565b6020908102919091010152806111138161247a565b9150506110da565b50919050565b6005546001600160a01b0316331461114b5760405162461bcd60e51b815260040161083490612495565b60005b8181101561096a576111638361101e60025490565b8061116d8161247a565b91505061114e565b6060600180546107499061237d565b600260065414156111a75760405162461bcd60e51b8152600401610834906124ca565b6002600655600854610100900460ff166111d35760405162461bcd60e51b815260040161083490612501565b600081116111f35760405162461bcd60e51b815260040161083490612538565b600b81106112135760405162461bcd60e51b81526004016108349061256f565b611b3a61122382610fa960025490565b106112705760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610834565b6112816658d15e1762800082611bfc565b34146112cf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610834565b60005b81811015610b8f576112e73361101e60025490565b806112f18161247a565b9150506112d2565b6001600160a01b0382163314156113525760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610834565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113c83383611965565b6113e45760405162461bcd60e51b8152600401610834906123b2565b6113f084848484611c08565b50505050565b6060611401826118ad565b6114455760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610834565b600a61145083611c3b565b6040516020016114619291906125e8565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114a15760405162461bcd60e51b815260040161083490612495565b600880546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b60085460405163c455279160e01b81526001600160a01b03848116600483015260009262010000900481169190841690829063c455279190602401602060405180830381865afa158015611523573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611547919061268f565b6001600160a01b0316148061157457506001600160a01b03831660009081526009602052604090205460ff165b15611583576001915050610734565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146115df5760405162461bcd60e51b815260040161083490612495565b6001600160a01b0381166116445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610834565b61164d81611b7d565b50565b6005546001600160a01b0316331461167a5760405162461bcd60e51b815260040161083490612495565b6001600160a01b03166000908152600960205260409020805460ff19811660ff90911615179055565b600260065414156116c65760405162461bcd60e51b8152600401610834906124ca565b600260065560085460ff166116ed5760405162461bcd60e51b815260040161083490612501565b6000811161170d5760405162461bcd60e51b815260040161083490612538565b600b811061172d5760405162461bcd60e51b81526004016108349061256f565b6107d161173d82610fa960025490565b106117965760405162461bcd60e51b8152602060048201526024808201527f507572636861736520776f756c64206578636565642070726573616c6520737560448201526370706c7960e01b6064820152608401610834565b6117a76658d15e1762800082611bfc565b34146117f55760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610834565b60005b81811015610b8f5761180d3361101e60025490565b806118178161247a565b9150506117f8565b6005546001600160a01b031633146118495760405162461bcd60e51b815260040161083490612495565b6008805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061188e57506001600160e01b03198216635b5e139f60e01b145b8061073457506301ffc9a760e01b6001600160e01b0319831614610734565b60025460009082108015610734575060006001600160a01b0316600283815481106118da576118da61244e565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061192c82610c61565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611970826118ad565b6119d15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610834565b60006119dc83610c61565b9050806001600160a01b0316846001600160a01b03161480611a175750836001600160a01b0316611a0c846107cc565b6001600160a01b0316145b806115ad57506115ad81856114cb565b826001600160a01b0316611a3a82610c61565b6001600160a01b031614611aa25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610834565b6001600160a01b038216611b045760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610834565b611b0f6000826118f7565b8160028281548110611b2357611b2361244e565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611bdb82846125b4565b9392505050565b610c5d828260405180602001604052806000815250611d39565b6000611bdb82846126ac565b611c13848484611a27565b611c1f84848484611d6c565b6113f05760405162461bcd60e51b8152600401610834906126cb565b606081611c5f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c895780611c738161247a565b9150611c829050600a83612733565b9150611c63565b60008167ffffffffffffffff811115611ca457611ca461215b565b6040519080825280601f01601f191660200182016040528015611cce576020820181803683370190505b5090505b84156115ad57611ce3600183612747565b9150611cf0600a8661275e565b611cfb9060306125b4565b60f81b818381518110611d1057611d1061244e565b60200101906001600160f81b031916908160001a905350611d32600a86612733565b9450611cd2565b611d438383611e6a565b611d506000848484611d6c565b61096a5760405162461bcd60e51b8152600401610834906126cb565b60006001600160a01b0384163b15611e5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611db0903390899088908890600401612772565b6020604051808303816000875af1925050508015611deb575060408051601f3d908101601f19168201909252611de8918101906127af565b60015b611e45573d808015611e19576040519150601f19603f3d011682016040523d82523d6000602084013e611e1e565b606091505b508051611e3d5760405162461bcd60e51b8152600401610834906126cb565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115ad565b506001949350505050565b6001600160a01b038216611ec05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610834565b611ec9816118ad565b15611f165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610834565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f9e9061237d565b90600052602060002090601f016020900481019282611fc05760008555612006565b82601f10611fd957805160ff1916838001178555612006565b82800160010185558215612006579182015b82811115612006578251825591602001919060010190611feb565b50610c1c9291505b80821115610c1c576000815560010161200e565b6001600160e01b03198116811461164d57600080fd5b60006020828403121561204a57600080fd5b8135611bdb81612022565b60005b83811015612070578181015183820152602001612058565b838111156113f05750506000910152565b60008151808452612099816020860160208601612055565b601f01601f19169290920160200192915050565b602081526000611bdb6020830184612081565b6000602082840312156120d257600080fd5b5035919050565b6001600160a01b038116811461164d57600080fd5b6000806040838503121561210157600080fd5b823561210c816120d9565b946020939093013593505050565b60008060006060848603121561212f57600080fd5b833561213a816120d9565b9250602084013561214a816120d9565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561218c5761218c61215b565b604051601f8501601f19908116603f011681019082821181831017156121b4576121b461215b565b816040528093508581528686860111156121cd57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156121f957600080fd5b813567ffffffffffffffff81111561221057600080fd5b8201601f8101841361222157600080fd5b6115ad84823560208401612171565b60006020828403121561224257600080fd5b8135611bdb816120d9565b6020808252825182820181905260009190848201906040850190845b8181101561228557835183529284019291840191600101612269565b50909695505050505050565b600080604083850312156122a457600080fd5b82356122af816120d9565b9150602083013580151581146122c457600080fd5b809150509250929050565b600080600080608085870312156122e557600080fd5b84356122f0816120d9565b93506020850135612300816120d9565b925060408501359150606085013567ffffffffffffffff81111561232357600080fd5b8501601f8101871361233457600080fd5b61234387823560208401612171565b91505092959194509250565b6000806040838503121561236257600080fd5b823561236d816120d9565b915060208301356122c4816120d9565b600181811c9082168061239157607f821691505b6020821081141561111b57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141561248e5761248e612464565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601d908201527f4d757374206d696e74206d6f7265207468616e203020746f6b656e732e000000604082015260600190565b60208082526025908201527f596f752063616e206f6e6c79206d696e7420313020706572207472616e7361636040820152643a34b7b71760d91b606082015260800190565b600082198211156125c7576125c7612464565b500190565b600081516125de818560208601612055565b9290920192915050565b600080845481600182811c91508083168061260457607f831692505b602080841082141561262457634e487b7160e01b86526022600452602486fd5b818015612638576001811461264957612676565b60ff19861689528489019650612676565b60008b81526020902060005b8681101561266e5781548b820152908501908301612655565b505084890196505b50505050505061268681856125cc565b95945050505050565b6000602082840312156126a157600080fd5b8151611bdb816120d9565b60008160001904831182151516156126c6576126c6612464565b500290565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826127425761274261271d565b500490565b60008282101561275957612759612464565b500390565b60008261276d5761276d61271d565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127a590830184612081565b9695505050505050565b6000602082840312156127c157600080fd5b8151611bdb8161202256fea2646970667358221220b120a614d5cb5a38e328d350075992954fca81e6bfb13c8be4882248a300f90264736f6c634300080b0033

Deployed Bytecode Sourcemap

38971:5098:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35229:224;;;;;;;;;;-1:-1:-1;35229:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35229:224:0;;;;;;;;39815:65;;;;;;;;;;;;39877:3;39815:65;;;;;738:25:1;;;726:2;711:18;39815:65:0;592:177:1;23871:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24683:308::-;;;;;;;;;;-1:-1:-1;24683:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;24683:308:0;1732:203:1;24206:411:0;;;;;;;;;;-1:-1:-1;24206:411:0;;;;;:::i;:::-;;:::i;:::-;;35529:110;;;;;;;;;;-1:-1:-1;35617:7:0;:14;35529:110;;25742:376;;;;;;;;;;-1:-1:-1;25742:376:0;;;;;:::i;:::-;;:::i;36005:490::-;;;;;;;;;;-1:-1:-1;36005:490:0;;;;;:::i;:::-;;:::i;39146:67::-;;;;;;;;;;-1:-1:-1;39146:67:0;;;;;;;;39678:61;;;;;;;;;;;;39735:4;39678:61;;40874:83;;;;;;;;;;;;;:::i;40399:269::-;;;;;;;;;;;;;:::i;39744:66::-;;;;;;;;;;;;39808:2;39744:66;;26189:185;;;;;;;;;;-1:-1:-1;26189:185:0;;;;;:::i;:::-;;:::i;35716:205::-;;;;;;;;;;-1:-1:-1;35716:205:0;;;;;:::i;:::-;;:::i;40674:92::-;;;;;;;;;;-1:-1:-1;40674:92:0;;;;;:::i;:::-;;:::i;39356:56::-;;;;;;;;;;-1:-1:-1;39356:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23478:326;;;;;;;;;;-1:-1:-1;23478:326:0;;;;;:::i;:::-;;:::i;39417:51::-;;;;;;;;;;;;;:::i;23024:392::-;;;;;;;;;;-1:-1:-1;23024:392:0;;;;;:::i;:::-;;:::i;38131:103::-;;;;;;;;;;;;;:::i;41445:692::-;;;;;;;;;;-1:-1:-1;41445:692:0;;;;;:::i;:::-;;:::i;40965:472::-;;;;;;;;;;-1:-1:-1;40965:472:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43900:166::-;;;;;;;;;;-1:-1:-1;43900:166:0;;;;;:::i;:::-;;:::i;37480:87::-;;;;;;;;;;-1:-1:-1;37553:6:0;;-1:-1:-1;;;;;37553:6:0;37480:87;;24040:104;;;;;;;;;;;;;:::i;42748:579::-;;;;;;:::i;:::-;;:::i;25063:327::-;;;;;;;;;;-1:-1:-1;25063:327:0;;;;;:::i;:::-;;:::i;26445:365::-;;;;;;;;;;-1:-1:-1;26445:365:0;;;;;:::i;:::-;;:::i;43333:213::-;;;;;;;;;;-1:-1:-1;43333:213:0;;;;;:::i;:::-;;:::i;39287:64::-;;;;;;;;;;-1:-1:-1;39287:64:0;;;;;;;-1:-1:-1;;;;;39287:64:0;;;40113:140;;;;;;;;;;-1:-1:-1;40113:140:0;;;;;:::i;:::-;;:::i;39473:69::-;;;;;;;;;;;;39531:11;39473:69;;39885:65;;;;;;;;;;;;39946:4;39885:65;;43552:342;;;;;;;;;;-1:-1:-1;43552:342:0;;;;;:::i;:::-;;:::i;39218:64::-;;;;;;;;;;-1:-1:-1;39218:64:0;;;;;;;;;;;38389:201;;;;;;;;;;-1:-1:-1;38389:201:0;;;;;:::i;:::-;;:::i;40261:132::-;;;;;;;;;;-1:-1:-1;40261:132:0;;;;;:::i;:::-;;:::i;42145:597::-;;;;;;:::i;:::-;;:::i;40776:92::-;;;;;;;;;;;;;:::i;35229:224::-;35331:4;-1:-1:-1;;;;;;35355:50:0;;-1:-1:-1;;;35355:50:0;;:90;;;35409:36;35433:11;35409:23;:36::i;:::-;35348:97;35229:224;-1:-1:-1;;35229:224:0:o;23871:100::-;23925:13;23958:5;23951:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23871:100;:::o;24683:308::-;24804:7;24851:16;24859:7;24851;:16::i;:::-;24829:110;;;;-1:-1:-1;;;24829:110:0;;7172:2:1;24829:110:0;;;7154:21:1;7211:2;7191:18;;;7184:30;7250:34;7230:18;;;7223:62;-1:-1:-1;;;7301:18:1;;;7294:42;7353:19;;24829:110:0;;;;;;;;;-1:-1:-1;24959:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24959:24:0;;24683:308::o;24206:411::-;24287:13;24303:23;24318:7;24303:14;:23::i;:::-;24287:39;;24351:5;-1:-1:-1;;;;;24345:11:0;:2;-1:-1:-1;;;;;24345:11:0;;;24337:57;;;;-1:-1:-1;;;24337:57:0;;7585:2:1;24337:57:0;;;7567:21:1;7624:2;7604:18;;;7597:30;7663:34;7643:18;;;7636:62;-1:-1:-1;;;7714:18:1;;;7707:31;7755:19;;24337:57:0;7383:397:1;24337:57:0;737:10;-1:-1:-1;;;;;24429:21:0;;;;:62;;-1:-1:-1;24454:37:0;24471:5;737:10;43552:342;:::i;24454:37::-;24407:168;;;;-1:-1:-1;;;24407:168:0;;7987:2:1;24407:168:0;;;7969:21:1;8026:2;8006:18;;;7999:30;8065:34;8045:18;;;8038:62;8136:26;8116:18;;;8109:54;8180:19;;24407:168:0;7785:420:1;24407:168:0;24588:21;24597:2;24601:7;24588:8;:21::i;:::-;24276:341;24206:411;;:::o;25742:376::-;25951:41;737:10;25984:7;25951:18;:41::i;:::-;25929:140;;;;-1:-1:-1;;;25929:140:0;;;;;;;:::i;:::-;26082:28;26092:4;26098:2;26102:7;26082:9;:28::i;36005:490::-;36102:15;36146:16;36156:5;36146:9;:16::i;:::-;36138:5;:24;36130:80;;;;-1:-1:-1;;;36130:80:0;;;;;;;:::i;:::-;36223:10;36248:6;36244:178;36260:7;:14;36256:18;;36244:178;;;36307:7;36315:1;36307:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36298:19:0;;;36307:10;;36298:19;36295:116;;;36349:5;36340;:14;36337:58;;;36363:1;-1:-1:-1;36356:8:0;;-1:-1:-1;36356:8:0;36337:58;36388:7;;;;:::i;:::-;;;;36337:58;36276:3;;;;:::i;:::-;;;;36244:178;;;;36434:53;;-1:-1:-1;;;36434:53:0;;;;;;;:::i;40874:83::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;40939:12:::1;::::0;;-1:-1:-1;;40923:28:0;::::1;40939:12;::::0;;;::::1;;;40938:13;40923:28:::0;;::::1;;::::0;;40874:83::o;40399:269::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;2591:1:::1;3189:7;;:19;;3181:63;;;;-1:-1:-1::0;;;3181:63:0::1;;;;;;;:::i;:::-;2591:1;3322:7;:18:::0;40474:21:::2;40510:11:::0;40502:20:::2;;;::::0;::::2;;40555:51;::::0;40532:17:::2;::::0;737:10;;40580:21:::2;::::0;40532:17;40555:51;40532:17;40555:51;40580:21;737:10;40555:51:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40531:75;;;40621:12;40613:49;;;::::0;-1:-1:-1;;;40613:49:0;;10577:2:1;40613:49:0::2;::::0;::::2;10559:21:1::0;10616:2;10596:18;;;10589:30;10655:26;10635:18;;;10628:54;10699:18;;40613:49:0::2;10375:348:1::0;40613:49:0::2;-1:-1:-1::0;;2547:1:0::1;3501:7;:22:::0;40399:269::o;26189:185::-;26327:39;26344:4;26350:2;26354:7;26327:39;;;;;;;;;;;;:16;:39::i;35716:205::-;35827:7;:14;35791:7;;35819:22;;35811:79;;;;-1:-1:-1;;;35811:79:0;;10930:2:1;35811:79:0;;;10912:21:1;10969:2;10949:18;;;10942:30;11008:34;10988:18;;;10981:62;-1:-1:-1;;;11059:18:1;;;11052:42;11111:19;;35811:79:0;10728:408:1;35811:79:0;-1:-1:-1;35908:5:0;35716:205::o;40674:92::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;40742:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40674:92:::0;:::o;23478:326::-;23595:7;23620:13;23636:7;23644;23636:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23636:16:0;;-1:-1:-1;23685:19:0;23663:110;;;;-1:-1:-1;;;23663:110:0;;11343:2:1;23663:110:0;;;11325:21:1;11382:2;11362:18;;;11355:30;11421:34;11401:18;;;11394:62;-1:-1:-1;;;11472:18:1;;;11465:39;11521:19;;23663:110:0;11141:405:1;39417:51:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23024:392::-;23146:4;-1:-1:-1;;;;;23177:19:0;;23169:74;;;;-1:-1:-1;;;23169:74:0;;11753:2:1;23169:74:0;;;11735:21:1;11792:2;11772:18;;;11765:30;11831:34;11811:18;;;11804:62;-1:-1:-1;;;11882:18:1;;;11875:40;11932:19;;23169:74:0;11551:406:1;23169:74:0;23256:10;23282:6;23277:109;23294:7;:14;23290:18;;23277:109;;;23341:7;23349:1;23341:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;23332:19:0;;;23341:10;;23332:19;23328:46;;;23367:7;;;:::i;:::-;;;23328:46;23310:3;;;:::i;:::-;;;23277:109;;;-1:-1:-1;23403:5:0;23024:392;-1:-1:-1;;23024:392:0:o;38131:103::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;38196:30:::1;38223:1;38196:18;:30::i;:::-;38131:103::o:0;41445:692::-;2591:1;3189:7;;:19;;3181:63;;;;-1:-1:-1;;;3181:63:0;;;;;;;:::i;:::-;2591:1;3322:7;:18;41519:15:::1;::::0;::::1;;41511:55;;;;-1:-1:-1::0;;;41511:55:0::1;;;;;;;:::i;:::-;41598:1;41581:14;:18;41573:60;;;;-1:-1:-1::0;;;41573:60:0::1;;;;;;;:::i;:::-;39671:2;41648:14;:28;41640:78;;;;-1:-1:-1::0;;;41640:78:0::1;;;;;;;:::i;:::-;41752:10;41733:30;::::0;;;:18:::1;:30;::::0;;;;;39808:2:::1;::::0;41733:50:::1;::::0;41768:14;41733:34:::1;:50::i;:::-;:70;41725:139;;;::::0;-1:-1:-1;;;41725:139:0;;13284:2:1;41725:139:0::1;::::0;::::1;13266:21:1::0;13323:2;13303:18;;;13296:30;13362:34;13342:18;;;13335:62;13433:26;13413:18;;;13406:54;13477:19;;41725:139:0::1;13082:420:1::0;41725:139:0::1;39877:3;41879:33;41897:14;41879:13;35617:7:::0;:14;;35529:110;41879:13:::1;:17:::0;::::1;:33::i;:::-;:51;41871:97;;;::::0;-1:-1:-1;;;41871:97:0;;13709:2:1;41871:97:0::1;::::0;::::1;13691:21:1::0;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;-1:-1:-1;;;13838:18:1;;;13831:31;13879:19;;41871:97:0::1;13507:397:1::0;41871:97:0::1;41985:6;41981:94;42001:14;41997:1;:18;41981:94;;;42031:36;42041:10;42053:13;35617:7:::0;:14;;35529:110;42053:13:::1;42031:9;:36::i;:::-;42017:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41981:94;;;-1:-1:-1::0;42102:10:0::1;42083:30;::::0;;;:18:::1;:30;::::0;;;;:48;;42117:14;;42083:30;:48:::1;::::0;42117:14;;42083:48:::1;:::i;:::-;::::0;;;-1:-1:-1;;2547:1:0;3501:7;:22;-1:-1:-1;41445:692:0:o;40965:472::-;41026:16;41052:18;41073:17;41083:6;41073:9;:17::i;:::-;41052:38;-1:-1:-1;41101:15:0;41097:335;;41166:16;;;41180:1;41166:16;;;;;;;;;;;-1:-1:-1;41159:23:0;40965:472;-1:-1:-1;;;40965:472:0:o;41097:335::-;41205:23;41245:10;41231:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41231:25:0;;41205:51;;41265:13;41287:116;41311:10;41303:5;:18;41287:116;;;41359:34;41379:6;41387:5;41359:19;:34::i;:::-;41343:6;41350:5;41343:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;41323:7;;;;:::i;:::-;;;;41287:116;;41097:335;41045:392;40965:472;;;:::o;43900:166::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;43979:6:::1;43975:86;43995:14;43991:1;:18;43975:86;;;44025:28;44035:2;44039:13;35617:7:::0;:14;;35529:110;44025:28:::1;44011:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43975:86;;24040:104:::0;24096:13;24129:7;24122:14;;;;;:::i;42748:579::-;2591:1;3189:7;;:19;;3181:63;;;;-1:-1:-1;;;3181:63:0;;;;;;;:::i;:::-;2591:1;3322:7;:18;42826:12:::1;::::0;::::1;::::0;::::1;;;42818:52;;;;-1:-1:-1::0;;;42818:52:0::1;;;;;;;:::i;:::-;42902:1;42885:14;:18;42877:60;;;;-1:-1:-1::0;;;42877:60:0::1;;;;;;;:::i;:::-;39671:2;42952:14;:28;42944:78;;;;-1:-1:-1::0;;;42944:78:0::1;;;;;;;:::i;:::-;39735:4;43037:33;43055:14;43037:13;35617:7:::0;:14;;35529:110;43037:33:::1;:46;43029:91;;;::::0;-1:-1:-1;;;43029:91:0;;14244:2:1;43029:91:0::1;::::0;::::1;14226:21:1::0;;;14263:18;;;14256:30;14322:34;14302:18;;;14295:62;14374:18;;43029:91:0::1;14042:356:1::0;43029:91:0::1;43148:31;39531:11;43164:14:::0;43148:15:::1;:31::i;:::-;43135:9;:44;43127:88;;;::::0;-1:-1:-1;;;43127:88:0;;14605:2:1;43127:88:0::1;::::0;::::1;14587:21:1::0;14644:2;14624:18;;;14617:30;14683:33;14663:18;;;14656:61;14734:18;;43127:88:0::1;14403:355:1::0;43127:88:0::1;43232:6;43228:94;43248:14;43244:1;:18;43228:94;;;43278:36;43288:10;43300:13;35617:7:::0;:14;;35529:110;43278:36:::1;43264:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43228:94;;25063:327:::0;-1:-1:-1;;;;;25198:24:0;;737:10;25198:24;;25190:62;;;;-1:-1:-1;;;25190:62:0;;14965:2:1;25190:62:0;;;14947:21:1;15004:2;14984:18;;;14977:30;15043:27;15023:18;;;15016:55;15088:18;;25190:62:0;14763:349:1;25190:62:0;737:10;25265:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25265:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25265:53:0;;;;;;;;;;25334:48;;540:41:1;;;25265:42:0;;737:10;25334:48;;513:18:1;25334:48:0;;;;;;;25063:327;;:::o;26445:365::-;26634:41;737:10;26667:7;26634:18;:41::i;:::-;26612:140;;;;-1:-1:-1;;;26612:140:0;;;;;;;:::i;:::-;26763:39;26777:4;26783:2;26787:7;26796:5;26763:13;:39::i;:::-;26445:365;;;;:::o;43333:213::-;43392:13;43422:17;43430:8;43422:7;:17::i;:::-;43414:51;;;;-1:-1:-1;;;43414:51:0;;15319:2:1;43414:51:0;;;15301:21:1;15358:2;15338:18;;;15331:30;-1:-1:-1;;;15377:18:1;;;15370:51;15438:18;;43414:51:0;15117:345:1;43414:51:0;43503:7;43512:26;43529:8;43512:16;:26::i;:::-;43486:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43472:68;;43333:213;;;:::o;40113:140::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;40203:20:::1;:44:::0;;-1:-1:-1;;;;;40203:44:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;40203:44:0;;::::1;::::0;;;::::1;::::0;;40113:140::o;43552:342::-;43713:20;;43753:29;;-1:-1:-1;;;43753:29:0;;-1:-1:-1;;;;;1896:32:1;;;43753:29:0;;;1878:51:1;43642:4:0;;43713:20;;;;;;43745:50;;;;43713:20;;43753:21;;1851:18:1;;43753:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;43745:50:0;;:76;;;-1:-1:-1;;;;;;43799:22:0;;;;;;:12;:22;;;;;;;;43745:76;43741:93;;;43830:4;43823:11;;;;;43741:93;-1:-1:-1;;;;;25632:25:0;;;25603:4;25632:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;43848:40;43841:47;43552:342;-1:-1:-1;;;;43552:342:0:o;38389:201::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38478:22:0;::::1;38470:73;;;::::0;-1:-1:-1;;;38470:73:0;;17449:2:1;38470:73:0::1;::::0;::::1;17431:21:1::0;17488:2;17468:18;;;17461:30;17527:34;17507:18;;;17500:62;-1:-1:-1;;;17578:18:1;;;17571:36;17624:19;;38470:73:0::1;17247:402:1::0;38470:73:0::1;38554:28;38573:8;38554:18;:28::i;:::-;38389:201:::0;:::o;40261:132::-;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40361:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;40331:56:0;::::1;40361:26;::::0;;::::1;40360:27;40331:56;::::0;;40261:132::o;42145:597::-;2591:1;3189:7;;:19;;3181:63;;;;-1:-1:-1;;;3181:63:0;;;;;;;:::i;:::-;2591:1;3322:7;:18;42230:15:::1;::::0;::::1;;42222:55;;;;-1:-1:-1::0;;;42222:55:0::1;;;;;;;:::i;:::-;42309:1;42292:14;:18;42284:60;;;;-1:-1:-1::0;;;42284:60:0::1;;;;;;;:::i;:::-;39671:2;42359:14;:28;42351:78;;;;-1:-1:-1::0;;;42351:78:0::1;;;;;;;:::i;:::-;39946:4;42444:33;42462:14;42444:13;35617:7:::0;:14;;35529:110;42444:33:::1;:50;42436:99;;;::::0;-1:-1:-1;;;42436:99:0;;17856:2:1;42436:99:0::1;::::0;::::1;17838:21:1::0;17895:2;17875:18;;;17868:30;17934:34;17914:18;;;17907:62;-1:-1:-1;;;17985:18:1;;;17978:34;18029:19;;42436:99:0::1;17654:400:1::0;42436:99:0::1;42563:31;39531:11;42579:14:::0;42563:15:::1;:31::i;:::-;42550:9;:44;42542:88;;;::::0;-1:-1:-1;;;42542:88:0;;14605:2:1;42542:88:0::1;::::0;::::1;14587:21:1::0;14644:2;14624:18;;;14617:30;14683:33;14663:18;;;14656:61;14734:18;;42542:88:0::1;14403:355:1::0;42542:88:0::1;42647:6;42643:94;42663:14;42659:1;:18;42643:94;;;42693:36;42703:10;42715:13;35617:7:::0;:14;;35529:110;42693:36:::1;42679:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42643:94;;40776:92:::0;37553:6;;-1:-1:-1;;;;;37553:6:0;737:10;37700:23;37692:68;;;;-1:-1:-1;;;37692:68:0;;;;;;;:::i;:::-;40847:15:::1;::::0;;-1:-1:-1;;40828:34:0;::::1;40847:15;::::0;;::::1;40846:16;40828:34;::::0;;40776:92::o;22605:355::-;22752:4;-1:-1:-1;;;;;;22794:40:0;;-1:-1:-1;;;22794:40:0;;:105;;-1:-1:-1;;;;;;;22851:48:0;;-1:-1:-1;;;22851:48:0;22794:105;:158;;;-1:-1:-1;;;;;;;;;;12611:40:0;;;22916:36;12502:157;28357:155;28456:7;:14;28422:4;;28446:24;;:58;;;;;28502:1;-1:-1:-1;;;;;28474:30:0;:7;28482;28474:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28474:16:0;:30;;28439:65;28357:155;-1:-1:-1;;28357:155:0:o;32382:174::-;32457:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32457:29:0;-1:-1:-1;;;;;32457:29:0;;;;;;;;:24;;32511:23;32457:24;32511:14;:23::i;:::-;-1:-1:-1;;;;;32502:46:0;;;;;;;;;;;32382:174;;:::o;28679:452::-;28808:4;28852:16;28860:7;28852;:16::i;:::-;28830:110;;;;-1:-1:-1;;;28830:110:0;;18261:2:1;28830:110:0;;;18243:21:1;18300:2;18280:18;;;18273:30;18339:34;18319:18;;;18312:62;-1:-1:-1;;;18390:18:1;;;18383:42;18442:19;;28830:110:0;18059:408:1;28830:110:0;28951:13;28967:23;28982:7;28967:14;:23::i;:::-;28951:39;;29020:5;-1:-1:-1;;;;;29009:16:0;:7;-1:-1:-1;;;;;29009:16:0;;:64;;;;29066:7;-1:-1:-1;;;;;29042:31:0;:20;29054:7;29042:11;:20::i;:::-;-1:-1:-1;;;;;29042:31:0;;29009:64;:113;;;;29090:32;29107:5;29114:7;29090:16;:32::i;31711:553::-;31884:4;-1:-1:-1;;;;;31857:31:0;:23;31872:7;31857:14;:23::i;:::-;-1:-1:-1;;;;;31857:31:0;;31835:122;;;;-1:-1:-1;;;31835:122:0;;18674:2:1;31835:122:0;;;18656:21:1;18713:2;18693:18;;;18686:30;18752:34;18732:18;;;18725:62;-1:-1:-1;;;18803:18:1;;;18796:39;18852:19;;31835:122:0;18472:405:1;31835:122:0;-1:-1:-1;;;;;31976:16:0;;31968:65;;;;-1:-1:-1;;;31968:65:0;;19084:2:1;31968:65:0;;;19066:21:1;19123:2;19103:18;;;19096:30;19162:34;19142:18;;;19135:62;-1:-1:-1;;;19213:18:1;;;19206:34;19257:19;;31968:65:0;18882:400:1;31968:65:0;32150:29;32167:1;32171:7;32150:8;:29::i;:::-;32209:2;32190:7;32198;32190:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;32190:21:0;-1:-1:-1;;;;;32190:21:0;;;;;;32229:27;;32248:7;;32229:27;;;;;;;;;;32190:16;32229:27;31711:553;;;:::o;38750:191::-;38843:6;;;-1:-1:-1;;;;;38860:17:0;;;-1:-1:-1;;;;;;38860:17:0;;;;;;;38893:40;;38843:6;;;38860:17;38843:6;;38893:40;;38824:16;;38893:40;38813:128;38750:191;:::o;15441:98::-;15499:7;15526:5;15530:1;15526;:5;:::i;:::-;15519:12;15441:98;-1:-1:-1;;;15441:98:0:o;29473:110::-;29549:26;29559:2;29563:7;29549:26;;;;;;;;;;;;:9;:26::i;16179:98::-;16237:7;16264:5;16268:1;16264;:5;:::i;27692:352::-;27849:28;27859:4;27865:2;27869:7;27849:9;:28::i;:::-;27910:48;27933:4;27939:2;27943:7;27952:5;27910:22;:48::i;:::-;27888:148;;;;-1:-1:-1;;;27888:148:0;;;;;;;:::i;20115:723::-;20171:13;20392:10;20388:53;;-1:-1:-1;;20419:10:0;;;;;;;;;;;;-1:-1:-1;;;20419:10:0;;;;;20115:723::o;20388:53::-;20466:5;20451:12;20507:78;20514:9;;20507:78;;20540:8;;;;:::i;:::-;;-1:-1:-1;20563:10:0;;-1:-1:-1;20571:2:0;20563:10;;:::i;:::-;;;20507:78;;;20595:19;20627:6;20617:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20617:17:0;;20595:39;;20645:154;20652:10;;20645:154;;20679:11;20689:1;20679:11;;:::i;:::-;;-1:-1:-1;20748:10:0;20756:2;20748:5;:10;:::i;:::-;20735:24;;:2;:24;:::i;:::-;20722:39;;20705:6;20712;20705:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20705:56:0;;;;;;;;-1:-1:-1;20776:11:0;20785:2;20776:11;;:::i;:::-;;;20645:154;;29810:321;29940:18;29946:2;29950:7;29940:5;:18::i;:::-;29991:54;30022:1;30026:2;30030:7;30039:5;29991:22;:54::i;:::-;29969:154;;;;-1:-1:-1;;;29969:154:0;;;;;;;:::i;33121:980::-;33276:4;-1:-1:-1;;;;;33297:13:0;;19760:20;19808:8;33293:801;;33350:175;;-1:-1:-1;;;33350:175:0;;-1:-1:-1;;;;;33350:36:0;;;;;:175;;737:10;;33444:4;;33471:7;;33501:5;;33350:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33350:175:0;;;;;;;;-1:-1:-1;;33350:175:0;;;;;;;;;;;;:::i;:::-;;;33329:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33708:13:0;;33704:320;;33751:108;;-1:-1:-1;;;33751:108:0;;;;;;;:::i;33704:320::-;33974:6;33968:13;33959:6;33955:2;33951:15;33944:38;33329:710;-1:-1:-1;;;;;;33589:51:0;-1:-1:-1;;;33589:51:0;;-1:-1:-1;33582:58:0;;33293:801;-1:-1:-1;34078:4:0;33121:980;;;;;;:::o;30467:346::-;-1:-1:-1;;;;;30547:16:0;;30539:61;;;;-1:-1:-1;;;30539:61:0;;21344:2:1;30539:61:0;;;21326:21:1;;;21363:18;;;21356:30;21422:34;21402:18;;;21395:62;21474:18;;30539:61:0;21142:356:1;30539:61:0;30620:16;30628:7;30620;:16::i;:::-;30619:17;30611:58;;;;-1:-1:-1;;;30611:58:0;;21705:2:1;30611:58:0;;;21687:21:1;21744:2;21724:18;;;21717:30;21783;21763:18;;;21756:58;21831:18;;30611:58:0;21503:352:1;30611:58:0;30738:7;:16;;;;;;;-1:-1:-1;30738:16:0;;;;;;;-1:-1:-1;;;;;;30738:16:0;-1:-1:-1;;;;;30738:16:0;;;;;;;;30772:33;;30797:7;;-1:-1:-1;30772:33:0;;-1:-1:-1;;30772:33:0;30467:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:131::-;-1:-1:-1;;;;;2015:31:1;;2005:42;;1995:70;;2061:1;2058;2051:12;2076:315;2144:6;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:31;2304:5;2279:31;:::i;:::-;2329:5;2381:2;2366:18;;;;2353:32;;-1:-1:-1;;;2076:315:1:o;2396:456::-;2473:6;2481;2489;2542:2;2530:9;2521:7;2517:23;2513:32;2510:52;;;2558:1;2555;2548:12;2510:52;2597:9;2584:23;2616:31;2641:5;2616:31;:::i;:::-;2666:5;-1:-1:-1;2723:2:1;2708:18;;2695:32;2736:33;2695:32;2736:33;:::i;:::-;2396:456;;2788:7;;-1:-1:-1;;;2842:2:1;2827:18;;;;2814:32;;2396:456::o;2857:127::-;2918:10;2913:3;2909:20;2906:1;2899:31;2949:4;2946:1;2939:15;2973:4;2970:1;2963:15;2989:632;3054:5;3084:18;3125:2;3117:6;3114:14;3111:40;;;3131:18;;:::i;:::-;3206:2;3200:9;3174:2;3260:15;;-1:-1:-1;;3256:24:1;;;3282:2;3252:33;3248:42;3236:55;;;3306:18;;;3326:22;;;3303:46;3300:72;;;3352:18;;:::i;:::-;3392:10;3388:2;3381:22;3421:6;3412:15;;3451:6;3443;3436:22;3491:3;3482:6;3477:3;3473:16;3470:25;3467:45;;;3508:1;3505;3498:12;3467:45;3558:6;3553:3;3546:4;3538:6;3534:17;3521:44;3613:1;3606:4;3597:6;3589;3585:19;3581:30;3574:41;;;;2989:632;;;;;:::o;3626:451::-;3695:6;3748:2;3736:9;3727:7;3723:23;3719:32;3716:52;;;3764:1;3761;3754:12;3716:52;3804:9;3791:23;3837:18;3829:6;3826:30;3823:50;;;3869:1;3866;3859:12;3823:50;3892:22;;3945:4;3937:13;;3933:27;-1:-1:-1;3923:55:1;;3974:1;3971;3964:12;3923:55;3997:74;4063:7;4058:2;4045:16;4040:2;4036;4032:11;3997:74;:::i;4082:247::-;4141:6;4194:2;4182:9;4173:7;4169:23;4165:32;4162:52;;;4210:1;4207;4200:12;4162:52;4249:9;4236:23;4268:31;4293:5;4268:31;:::i;4334:632::-;4505:2;4557:21;;;4627:13;;4530:18;;;4649:22;;;4476:4;;4505:2;4728:15;;;;4702:2;4687:18;;;4476:4;4771:169;4785:6;4782:1;4779:13;4771:169;;;4846:13;;4834:26;;4915:15;;;;4880:12;;;;4807:1;4800:9;4771:169;;;-1:-1:-1;4957:3:1;;4334:632;-1:-1:-1;;;;;;4334:632:1:o;4971:416::-;5036:6;5044;5097:2;5085:9;5076:7;5072:23;5068:32;5065:52;;;5113:1;5110;5103:12;5065:52;5152:9;5139:23;5171:31;5196:5;5171:31;:::i;:::-;5221:5;-1:-1:-1;5278:2:1;5263:18;;5250:32;5320:15;;5313:23;5301:36;;5291:64;;5351:1;5348;5341:12;5291:64;5374:7;5364:17;;;4971:416;;;;;:::o;5392:795::-;5487:6;5495;5503;5511;5564:3;5552:9;5543:7;5539:23;5535:33;5532:53;;;5581:1;5578;5571:12;5532:53;5620:9;5607:23;5639:31;5664:5;5639:31;:::i;:::-;5689:5;-1:-1:-1;5746:2:1;5731:18;;5718:32;5759:33;5718:32;5759:33;:::i;:::-;5811:7;-1:-1:-1;5865:2:1;5850:18;;5837:32;;-1:-1:-1;5920:2:1;5905:18;;5892:32;5947:18;5936:30;;5933:50;;;5979:1;5976;5969:12;5933:50;6002:22;;6055:4;6047:13;;6043:27;-1:-1:-1;6033:55:1;;6084:1;6081;6074:12;6033:55;6107:74;6173:7;6168:2;6155:16;6150:2;6146;6142:11;6107:74;:::i;:::-;6097:84;;;5392:795;;;;;;;:::o;6192:388::-;6260:6;6268;6321:2;6309:9;6300:7;6296:23;6292:32;6289:52;;;6337:1;6334;6327:12;6289:52;6376:9;6363:23;6395:31;6420:5;6395:31;:::i;:::-;6445:5;-1:-1:-1;6502:2:1;6487:18;;6474:32;6515:33;6474:32;6515:33;:::i;6585:380::-;6664:1;6660:12;;;;6707;;;6728:61;;6782:4;6774:6;6770:17;6760:27;;6728:61;6835:2;6827:6;6824:14;6804:18;6801:38;6798:161;;;6881:10;6876:3;6872:20;6869:1;6862:31;6916:4;6913:1;6906:15;6944:4;6941:1;6934:15;8210:413;8412:2;8394:21;;;8451:2;8431:18;;;8424:30;8490:34;8485:2;8470:18;;8463:62;-1:-1:-1;;;8556:2:1;8541:18;;8534:47;8613:3;8598:19;;8210:413::o;8628:407::-;8830:2;8812:21;;;8869:2;8849:18;;;8842:30;8908:34;8903:2;8888:18;;8881:62;-1:-1:-1;;;8974:2:1;8959:18;;8952:41;9025:3;9010:19;;8628:407::o;9040:127::-;9101:10;9096:3;9092:20;9089:1;9082:31;9132:4;9129:1;9122:15;9156:4;9153:1;9146:15;9172:127;9233:10;9228:3;9224:20;9221:1;9214:31;9264:4;9261:1;9254:15;9288:4;9285:1;9278:15;9304:135;9343:3;-1:-1:-1;;9364:17:1;;9361:43;;;9384:18;;:::i;:::-;-1:-1:-1;9431:1:1;9420:13;;9304:135::o;9444:356::-;9646:2;9628:21;;;9665:18;;;9658:30;9724:34;9719:2;9704:18;;9697:62;9791:2;9776:18;;9444:356::o;9805:355::-;10007:2;9989:21;;;10046:2;10026:18;;;10019:30;10085:33;10080:2;10065:18;;10058:61;10151:2;10136:18;;9805:355::o;11962:351::-;12164:2;12146:21;;;12203:2;12183:18;;;12176:30;12242:29;12237:2;12222:18;;12215:57;12304:2;12289:18;;11962:351::o;12318:353::-;12520:2;12502:21;;;12559:2;12539:18;;;12532:30;12598:31;12593:2;12578:18;;12571:59;12662:2;12647:18;;12318:353::o;12676:401::-;12878:2;12860:21;;;12917:2;12897:18;;;12890:30;12956:34;12951:2;12936:18;;12929:62;-1:-1:-1;;;13022:2:1;13007:18;;13000:35;13067:3;13052:19;;12676:401::o;13909:128::-;13949:3;13980:1;13976:6;13973:1;13970:13;13967:39;;;13986:18;;:::i;:::-;-1:-1:-1;14022:9:1;;13909:128::o;15593:185::-;15635:3;15673:5;15667:12;15688:52;15733:6;15728:3;15721:4;15714:5;15710:16;15688:52;:::i;:::-;15756:16;;;;;15593:185;-1:-1:-1;;15593:185:1:o;15783:1174::-;15959:3;15988:1;16021:6;16015:13;16051:3;16073:1;16101:9;16097:2;16093:18;16083:28;;16161:2;16150:9;16146:18;16183;16173:61;;16227:4;16219:6;16215:17;16205:27;;16173:61;16253:2;16301;16293:6;16290:14;16270:18;16267:38;16264:165;;;-1:-1:-1;;;16328:33:1;;16384:4;16381:1;16374:15;16414:4;16335:3;16402:17;16264:165;16445:18;16472:104;;;;16590:1;16585:320;;;;16438:467;;16472:104;-1:-1:-1;;16505:24:1;;16493:37;;16550:16;;;;-1:-1:-1;16472:104:1;;16585:320;15540:1;15533:14;;;15577:4;15564:18;;16680:1;16694:165;16708:6;16705:1;16702:13;16694:165;;;16786:14;;16773:11;;;16766:35;16829:16;;;;16723:10;;16694:165;;;16698:3;;16888:6;16883:3;16879:16;16872:23;;16438:467;;;;;;;16921:30;16947:3;16939:6;16921:30;:::i;:::-;16914:37;15783:1174;-1:-1:-1;;;;;15783:1174:1:o;16962:280::-;17061:6;17114:2;17102:9;17093:7;17089:23;17085:32;17082:52;;;17130:1;17127;17120:12;17082:52;17162:9;17156:16;17181:31;17206:5;17181:31;:::i;19287:168::-;19327:7;19393:1;19389;19385:6;19381:14;19378:1;19375:21;19370:1;19363:9;19356:17;19352:45;19349:71;;;19400:18;;:::i;:::-;-1:-1:-1;19440:9:1;;19287:168::o;19460:414::-;19662:2;19644:21;;;19701:2;19681:18;;;19674:30;19740:34;19735:2;19720:18;;19713:62;-1:-1:-1;;;19806:2:1;19791:18;;19784:48;19864:3;19849:19;;19460:414::o;19879:127::-;19940:10;19935:3;19931:20;19928:1;19921:31;19971:4;19968:1;19961:15;19995:4;19992:1;19985:15;20011:120;20051:1;20077;20067:35;;20082:18;;:::i;:::-;-1:-1:-1;20116:9:1;;20011:120::o;20136:125::-;20176:4;20204:1;20201;20198:8;20195:34;;;20209:18;;:::i;:::-;-1:-1:-1;20246:9:1;;20136:125::o;20266:112::-;20298:1;20324;20314:35;;20329:18;;:::i;:::-;-1:-1:-1;20363:9:1;;20266:112::o;20383:500::-;-1:-1:-1;;;;;20652:15:1;;;20634:34;;20704:15;;20699:2;20684:18;;20677:43;20751:2;20736:18;;20729:34;;;20799:3;20794:2;20779:18;;20772:31;;;20577:4;;20820:57;;20857:19;;20849:6;20820:57;:::i;:::-;20812:65;20383:500;-1:-1:-1;;;;;;20383:500:1:o;20888:249::-;20957:6;21010:2;20998:9;20989:7;20985:23;20981:32;20978:52;;;21026:1;21023;21016:12;20978:52;21058:9;21052:16;21077:30;21101:5;21077:30;:::i

Swarm Source

ipfs://b120a614d5cb5a38e328d350075992954fca81e6bfb13c8be4882248a300f902
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.