ETH Price: $2,361.23 (-3.84%)

Token

TOUGH GUYS CLUB (TGC)
 

Overview

Max Total Supply

312 TGC

Holders

191

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rogermooning.eth
Balance
1 TGC
0x67037d968d4acc952da5b8e9eb408bd125496f2c
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:
ToughGuysClub

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-16
*/

// SPDX-License-Identifier: MIT

//A community-driven collectibles project featuring art by Tough Guys Club
//Developer Info:
//Written by Ghazanfar Perdakh

// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}
pragma solidity ^0.8.0;
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

// File: ERC2000000.sol



pragma solidity ^0.8.7;










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

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;
        uint length= _owners.length;
        for( uint i; i < length; ++i ){
          if( owner == _owners[i] )
            ++count;
        }
        delete length;
        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 {}
}


pragma solidity ^0.8.7;


/**
 * @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");
    }
}
    pragma solidity ^0.8.7;
    contract ToughGuysClub is ERC721Enumerable,  Ownable {
    using Strings for uint256;


  string private uriPrefix = "ipfs://QmXKyJwy4ba8R6jmaRxT178VNjXt5efKR7Sx1aBDxgkSSk/" ;
  string private uriSuffix = ".json";
  string public revealURL = "ipfs://QmTxTw4oeBy32Z5k9Vz51NUjv1x1eQazbEjwUm1UiwPKFk/ToughGuys.json";

  bytes32 public whitelistMerkleRoot = 0xc3956b3de158d0d464960312844be3dfe476f517cdf23ecc13430627a7d8d8c7;

  uint256 public cost = 0.1 ether;
  uint256 public whiteListCost = 0.05 ether;
  uint256 constant public  maxSupply = 10000; 
  uint256 public maxMintAmountPerTx = 20;  
  uint256 public maxWLMintAmountPerTx = 2;  
  mapping (address => uint256) public txPerWLAddress;

  bool public paused = true;
  bool public WLpaused = false;
  bool public reveal = false;

  constructor() ERC721("TOUGH GUYS CLUB", "TGC") {
    
  }
 
  function mint(uint256 _mintAmount) external payable  {
    uint256 totalSupply = _owners.length;
    require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
    require(_mintAmount <= maxMintAmountPerTx, "Exceeds max per transaction.");

    require(!paused, "The contract is paused!");
    require(msg.value == cost * _mintAmount, "Insufficient funds!");
     for(uint i; i < _mintAmount; i++) {
    _mint(msg.sender, totalSupply + i);
     }
     delete totalSupply;
     delete _mintAmount;
  }
  
  function Airdrop(uint256 _mintAmount, address _receiver) external onlyOwner {
     
    uint256 totalSupply = _owners.length;
    for(uint i; i < _mintAmount; i++) {
    _mint(_receiver , totalSupply + i);
     }
    
     delete _mintAmount;
     delete _receiver;
     delete totalSupply;
    

  }

 function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
        whitelistMerkleRoot = _whitelistMerkleRoot;
    }

    
    function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
    {
        return keccak256(abi.encodePacked(_leaf));
    }
    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }

    function whitelistMint(uint256 _mintAmount, bytes32[] calldata merkleProof) external payable {
        
       bytes32  leafnode = getLeafNode(msg.sender);
        uint _txPerAddress = txPerWLAddress[msg.sender];
       require(_verify(leafnode ,   merkleProof   ),  "Invalid merkle proof");
       require (_txPerAddress + _mintAmount <= maxWLMintAmountPerTx, "Exceeds max tx per address");
      


    require(!WLpaused, "Whitelist minting is over!");
    require(msg.value == whiteListCost * _mintAmount, "Insufficient funds!");

       uint256 totalSupply = _owners.length;
    for(uint i; i < _mintAmount; i++) {
    _mint(msg.sender , totalSupply + i);
     }
      txPerWLAddress[msg.sender] += _mintAmount;
      delete totalSupply;
      delete _mintAmount;
       delete _txPerAddress;
    
    }

    function setMaxTxPerWlAddress(uint _limit) external onlyOwner{
    maxWLMintAmountPerTx = _limit;
   delete _limit;

}
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if (reveal == false) {
      return revealURL;
    }

    

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }
  function setRevealed() external onlyOwner {
    reveal = !reveal;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) external onlyOwner {
    revealURL = _hiddenMetadataUri;
  }

  function setCost(uint256 _cost) external onlyOwner {
    cost = _cost;
    delete _cost;
  }
  function setWLCost(uint256 _cost) external onlyOwner {
    whiteListCost = _cost;
    delete _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) external onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
    delete _maxMintAmountPerTx;
  }
  
  function setMaxWLMintAmountPerTx(uint256 _maxWLMintAmountPerTx) external onlyOwner {
    maxWLMintAmountPerTx = _maxWLMintAmountPerTx;
    delete _maxWLMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) external onlyOwner {
    uriPrefix = _uriPrefix;
  }


  function setPaused() external onlyOwner {
    paused = !paused;
  }

   function setWLPaused() external onlyOwner {
    WLpaused = !WLpaused;
  }

  function withdraw() external onlyOwner {
  uint _balance = address(this).balance;
     payable(0x57c8931e028E4B7c812cCd53c51b7d954244b471).transfer(_balance * 96 / 100); 
     payable(0x38015Cf8d6Dd125d9423df516147f719B778c03a).transfer(_balance * 4 / 100);

       
  }

   function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }

  function _baseURI() internal view  returns (string memory) {
    return uriPrefix;
  }
}

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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxTxPerWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWLMintAmountPerTx","type":"uint256"}],"name":"setMaxWLMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"txPerWLAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260366080818152906200295260a03980516200002991600691602090910190620001cd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600791620001cd565b50604051806080016040528060448152602001620029886044913980516200008991600891602090910190620001cd565b507fc3956b3de158d0d464960312844be3dfe476f517cdf23ecc13430627a7d8d8c760095567016345785d8a0000600a5566b1a2bc2ec50000600b556014600c556002600d55600f805462ffffff19166001179055348015620000eb57600080fd5b50604080518082018252600f81526e2a27aaa3a41023aaaca99021a62aa160891b60208083019182528351808501909452600384526254474360e81b9084015281519192916200013e91600091620001cd565b50805162000154906001906020840190620001cd565b505050620001716200016b6200017760201b60201c565b6200017b565b620002b0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001db9062000273565b90600052602060002090601f016020900481019282620001ff57600085556200024a565b82601f106200021a57805160ff19168380011785556200024a565b828001600101855582156200024a579182015b828111156200024a5782518255916020019190600101906200022d565b50620002589291506200025c565b5090565b5b808211156200025857600081556001016200025d565b600181811c908216806200028857607f821691505b60208210811415620002aa57634e487b7160e01b600052602260045260246000fd5b50919050565b61269280620002c06000396000f3fe6080604052600436106102725760003560e01c80637ec4a6591161014f578063b88d4fde116100c1578063d1f0e8051161007a578063d1f0e805146106e0578063d2cab056146106f6578063d5abeb0114610709578063d5d86c481461071f578063e985e9c51461074c578063f2fde38b1461079557600080fd5b8063b88d4fde14610640578063bd32fb6614610660578063c87b56dd14610680578063cc36ff8f146106a0578063d0e1f7be146106a0578063d1d19213146106c057600080fd5b806395d89b411161011357806395d89b41146105a2578063a0712d68146105b7578063a22cb465146105ca578063a475b5dd146105ea578063aa98e0c61461060a578063b071401b1461062057600080fd5b80637ec4a659146105195780637f6e9093146105395780638da5cb5b146105585780639257e0441461057657806394354fd01461058c57600080fd5b80633ccfd60b116101e85780635c975abb116101ac5780635c975abb146104755780636352211e1461048f57806367f5fd2a146104af57806370a08231146104c4578063715018a6146104e45780637871e154146104f957600080fd5b80633ccfd60b146103e057806342842e0e146103f557806344a0d68a146104155780634f6ccce7146104355780634fdd43cb1461045557600080fd5b806313faede61161023a57806313faede61461033d57806318160ddd1461036157806323b872dd146103765780632f745c591461039657806337a66d85146103b65780633bd64968146103cb57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b5061029761029236600461216e565b6107b5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107e0565b6040516102a391906123c0565b3480156102da57600080fd5b506102ee6102e9366004612155565b610872565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b6108ff565b005b34801561032957600080fd5b5061031b61033836600461212b565b610946565b34801561034957600080fd5b50610353600a5481565b6040519081526020016102a3565b34801561036d57600080fd5b50600254610353565b34801561038257600080fd5b5061031b610391366004612037565b610a5c565b3480156103a257600080fd5b506103536103b136600461212b565b610a8d565b3480156103c257600080fd5b5061031b610b40565b3480156103d757600080fd5b5061031b610b7e565b3480156103ec57600080fd5b5061031b610bc7565b34801561040157600080fd5b5061031b610410366004612037565b610ca5565b34801561042157600080fd5b5061031b610430366004612155565b610cc0565b34801561044157600080fd5b50610353610450366004612155565b610cef565b34801561046157600080fd5b5061031b6104703660046121a8565b610d5c565b34801561048157600080fd5b50600f546102979060ff1681565b34801561049b57600080fd5b506102ee6104aa366004612155565b610d99565b3480156104bb57600080fd5b506102c1610e25565b3480156104d057600080fd5b506103536104df366004611fe9565b610eb3565b3480156104f057600080fd5b5061031b610f85565b34801561050557600080fd5b5061031b6105143660046121f1565b610fbb565b34801561052557600080fd5b5061031b6105343660046121a8565b61101e565b34801561054557600080fd5b50600f5461029790610100900460ff1681565b34801561056457600080fd5b506005546001600160a01b03166102ee565b34801561058257600080fd5b50610353600b5481565b34801561059857600080fd5b50610353600c5481565b3480156105ae57600080fd5b506102c161105b565b61031b6105c5366004612155565b61106a565b3480156105d657600080fd5b5061031b6105e53660046120ef565b6111e0565b3480156105f657600080fd5b50600f546102979062010000900460ff1681565b34801561061657600080fd5b5061035360095481565b34801561062c57600080fd5b5061031b61063b366004612155565b6112a5565b34801561064c57600080fd5b5061031b61065b366004612073565b6112d4565b34801561066c57600080fd5b5061031b61067b366004612155565b611306565b34801561068c57600080fd5b506102c161069b366004612155565b611335565b3480156106ac57600080fd5b5061031b6106bb366004612155565b6114a5565b3480156106cc57600080fd5b5061031b6106db366004612155565b6114d4565b3480156106ec57600080fd5b50610353600d5481565b61031b610704366004612214565b611503565b34801561071557600080fd5b5061035361271081565b34801561072b57600080fd5b5061035361073a366004611fe9565b600e6020526000908152604090205481565b34801561075857600080fd5b50610297610767366004612004565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107a157600080fd5b5061031b6107b0366004611fe9565b611730565b60006001600160e01b0319821663780e9d6360e01b14806107da57506107da826117cb565b92915050565b6060600080546107ef90612584565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612584565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261181b565b6108e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109295760405162461bcd60e51b81526004016108da90612470565b600f805461ff001981166101009182900460ff1615909102179055565b600061095182610d99565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108da565b336001600160a01b03821614806109db57506109db8133610767565b610a4d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108da565b610a578383611865565b505050565b610a6633826118d3565b610a825760405162461bcd60e51b81526004016108da906124a5565b610a578383836119bd565b6000610a9883610eb3565b8210610ab65760405162461bcd60e51b81526004016108da906123d3565b6000805b600254811015610b275760028181548110610ad757610ad761261a565b6000918252602090912001546001600160a01b0386811691161415610b155783821415610b075791506107da9050565b81610b11816125bf565b9250505b80610b1f816125bf565b915050610aba565b5060405162461bcd60e51b81526004016108da906123d3565b6005546001600160a01b03163314610b6a5760405162461bcd60e51b81526004016108da90612470565b600f805460ff19811660ff90911615179055565b6005546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108da90612470565b600f805462ff0000198116620100009182900460ff1615909102179055565b6005546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108da90612470565b477357c8931e028e4b7c812ccd53c51b7d954244b4716108fc6064610c17846060612522565b610c21919061250e565b6040518115909202916000818181858888f19350505050158015610c49573d6000803e3d6000fd5b507338015cf8d6dd125d9423df516147f719b778c03a6108fc6064610c6f846004612522565b610c79919061250e565b6040518115909202916000818181858888f19350505050158015610ca1573d6000803e3d6000fd5b5050565b610a57838383604051806020016040528060008152506112d4565b6005546001600160a01b03163314610cea5760405162461bcd60e51b81526004016108da90612470565b600a55565b6002546000908210610d585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108da565b5090565b6005546001600160a01b03163314610d865760405162461bcd60e51b81526004016108da90612470565b8051610ca1906008906020840190611ec7565b60008060028381548110610daf57610daf61261a565b6000918252602090912001546001600160a01b03169050806107da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108da565b60088054610e3290612584565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90612584565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b505050505081565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108da565b600254600090815b81811015610f7c5760028181548110610f4157610f4161261a565b6000918252602090912001546001600160a01b0386811691161415610f6c57610f69836125bf565b92505b610f75816125bf565b9050610f26565b50909392505050565b6005546001600160a01b03163314610faf5760405162461bcd60e51b81526004016108da90612470565b610fb96000611b13565b565b6005546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108da90612470565b60025460005b83811015611018576110068361100183856124f6565b611b65565b80611010816125bf565b915050610feb565b50505050565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016108da90612470565b8051610ca1906006906020840190611ec7565b6060600180546107ef90612584565b60025461271061107a83836124f6565b11156110be5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108da565b600c548211156111105760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016108da565b600f5460ff16156111635760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108da565b81600a546111719190612522565b34146111b55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108da565b60005b82811015610a57576111ce3361100183856124f6565b806111d8816125bf565b9150506111b8565b6001600160a01b0382163314156112395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108da565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112cf5760405162461bcd60e51b81526004016108da90612470565b600c55565b6112de33836118d3565b6112fa5760405162461bcd60e51b81526004016108da906124a5565b61101884848484611be1565b6005546001600160a01b031633146113305760405162461bcd60e51b81526004016108da90612470565b600955565b60606113408261181b565b6113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108da565b600f5462010000900460ff1661144657600880546113c190612584565b80601f01602080910402602001604051908101604052809291908181526020018280546113ed90612584565b801561143a5780601f1061140f5761010080835404028352916020019161143a565b820191906000526020600020905b81548152906001019060200180831161141d57829003601f168201915b50505050509050919050565b6000611450611c14565b90506000815111611470576040518060200160405280600081525061149e565b8061147a84611c23565b600760405160200161148e939291906122bf565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146114cf5760405162461bcd60e51b81526004016108da90612470565b600d55565b6005546001600160a01b031633146114fe5760405162461bcd60e51b81526004016108da90612470565b600b55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600e602090815260409182902054825186830281810184019094528681529394509261158d92859288918891829190850190849080828437600092019190915250611d2192505050565b6115d05760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108da565b600d546115dd86836124f6565b111561162b5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016108da565b600f54610100900460ff16156116835760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108da565b84600b546116919190612522565b34146116d55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108da565b60025460005b86811015611703576116f13361100183856124f6565b806116fb816125bf565b9150506116db565b50336000908152600e6020526040812080548892906117239084906124f6565b9091555050505050505050565b6005546001600160a01b0316331461175a5760405162461bcd60e51b81526004016108da90612470565b6001600160a01b0381166117bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108da565b6117c881611b13565b50565b60006001600160e01b031982166380ac58cd60e01b14806117fc57506001600160e01b03198216635b5e139f60e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316146107da565b600254600090821080156107da575060006001600160a01b0316600283815481106118485761184861261a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189a82610d99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118de8261181b565b61193f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108da565b600061194a83610d99565b9050806001600160a01b0316846001600160a01b031614806119855750836001600160a01b031661197a84610872565b6001600160a01b0316145b806119b557506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119d082610d99565b6001600160a01b031614611a385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108da565b6001600160a01b038216611a9a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108da565b611aa5600082611865565b8160028281548110611ab957611ab961261a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611bec8484846119bd565b611bf884848484611d30565b6110185760405162461bcd60e51b81526004016108da9061241e565b6060600680546107ef90612584565b606081611c475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c715780611c5b816125bf565b9150611c6a9050600a8361250e565b9150611c4b565b60008167ffffffffffffffff811115611c8c57611c8c612630565b6040519080825280601f01601f191660200182016040528015611cb6576020820181803683370190505b5090505b84156119b557611ccb600183612541565b9150611cd8600a866125da565b611ce39060306124f6565b60f81b818381518110611cf857611cf861261a565b60200101906001600160f81b031916908160001a905350611d1a600a8661250e565b9450611cba565b600061149e8260095485611e3d565b60006001600160a01b0384163b15611e3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d74903390899088908890600401612383565b602060405180830381600087803b158015611d8e57600080fd5b505af1925050508015611dbe575060408051601f3d908101601f19168201909252611dbb9181019061218b565b60015b611e18573d808015611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b508051611e105760405162461bcd60e51b81526004016108da9061241e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b5565b506001949350505050565b600082611e4a8584611e53565b14949350505050565b600081815b8451811015611ebf576000858281518110611e7557611e7561261a565b60200260200101519050808311611e9b5760008381526020829052604090209250611eac565b600081815260208490526040902092505b5080611eb7816125bf565b915050611e58565b509392505050565b828054611ed390612584565b90600052602060002090601f016020900481019282611ef55760008555611f3b565b82601f10611f0e57805160ff1916838001178555611f3b565b82800160010185558215611f3b579182015b82811115611f3b578251825591602001919060010190611f20565b50610d589291505b80821115610d585760008155600101611f43565b600067ffffffffffffffff80841115611f7257611f72612630565b604051601f8501601f19908116603f01168101908282118183101715611f9a57611f9a612630565b81604052809350858152868686011115611fb357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe457600080fd5b919050565b600060208284031215611ffb57600080fd5b61149e82611fcd565b6000806040838503121561201757600080fd5b61202083611fcd565b915061202e60208401611fcd565b90509250929050565b60008060006060848603121561204c57600080fd5b61205584611fcd565b925061206360208501611fcd565b9150604084013590509250925092565b6000806000806080858703121561208957600080fd5b61209285611fcd565b93506120a060208601611fcd565b925060408501359150606085013567ffffffffffffffff8111156120c357600080fd5b8501601f810187136120d457600080fd5b6120e387823560208401611f57565b91505092959194509250565b6000806040838503121561210257600080fd5b61210b83611fcd565b91506020830135801515811461212057600080fd5b809150509250929050565b6000806040838503121561213e57600080fd5b61214783611fcd565b946020939093013593505050565b60006020828403121561216757600080fd5b5035919050565b60006020828403121561218057600080fd5b813561149e81612646565b60006020828403121561219d57600080fd5b815161149e81612646565b6000602082840312156121ba57600080fd5b813567ffffffffffffffff8111156121d157600080fd5b8201601f810184136121e257600080fd5b6119b584823560208401611f57565b6000806040838503121561220457600080fd5b8235915061202e60208401611fcd565b60008060006040848603121561222957600080fd5b83359250602084013567ffffffffffffffff8082111561224857600080fd5b818601915086601f83011261225c57600080fd5b81358181111561226b57600080fd5b8760208260051b850101111561228057600080fd5b6020830194508093505050509250925092565b600081518084526122ab816020860160208601612558565b601f01601f19169290920160200192915050565b6000845160206122d28285838a01612558565b8551918401916122e58184848a01612558565b8554920191600090600181811c908083168061230257607f831692505b85831081141561232057634e487b7160e01b85526022600452602485fd5b808015612334576001811461234557612372565b60ff19851688528388019550612372565b60008b81526020902060005b8581101561236a5781548a820152908401908801612351565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b690830184612293565b9695505050505050565b60208152600061149e6020830184612293565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612509576125096125ee565b500190565b60008261251d5761251d612604565b500490565b600081600019048311821515161561253c5761253c6125ee565b500290565b600082821015612553576125536125ee565b500390565b60005b8381101561257357818101518382015260200161255b565b838111156110185750506000910152565b600181811c9082168061259857607f821691505b602082108114156125b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d3576125d36125ee565b5060010190565b6000826125e9576125e9612604565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117c857600080fdfea2646970667358221220d8d4aa56c42bb38519d1f21c2c2ff4adb9fc1fb93f0777280dc3faefc10ce77a64736f6c63430008070033697066733a2f2f516d584b794a77793462613852366a6d61527854313738564e6a58743565664b523753783161424478676b53536b2f697066733a2f2f516d54785477346f65427933325a356b39567a35314e556a763178316551617a62456a77556d31556977504b466b2f546f756768477579732e6a736f6e

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637ec4a6591161014f578063b88d4fde116100c1578063d1f0e8051161007a578063d1f0e805146106e0578063d2cab056146106f6578063d5abeb0114610709578063d5d86c481461071f578063e985e9c51461074c578063f2fde38b1461079557600080fd5b8063b88d4fde14610640578063bd32fb6614610660578063c87b56dd14610680578063cc36ff8f146106a0578063d0e1f7be146106a0578063d1d19213146106c057600080fd5b806395d89b411161011357806395d89b41146105a2578063a0712d68146105b7578063a22cb465146105ca578063a475b5dd146105ea578063aa98e0c61461060a578063b071401b1461062057600080fd5b80637ec4a659146105195780637f6e9093146105395780638da5cb5b146105585780639257e0441461057657806394354fd01461058c57600080fd5b80633ccfd60b116101e85780635c975abb116101ac5780635c975abb146104755780636352211e1461048f57806367f5fd2a146104af57806370a08231146104c4578063715018a6146104e45780637871e154146104f957600080fd5b80633ccfd60b146103e057806342842e0e146103f557806344a0d68a146104155780634f6ccce7146104355780634fdd43cb1461045557600080fd5b806313faede61161023a57806313faede61461033d57806318160ddd1461036157806323b872dd146103765780632f745c591461039657806337a66d85146103b65780633bd64968146103cb57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063093cfa6314610306578063095ea7b31461031d575b600080fd5b34801561028357600080fd5b5061029761029236600461216e565b6107b5565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c16107e0565b6040516102a391906123c0565b3480156102da57600080fd5b506102ee6102e9366004612155565b610872565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b5061031b6108ff565b005b34801561032957600080fd5b5061031b61033836600461212b565b610946565b34801561034957600080fd5b50610353600a5481565b6040519081526020016102a3565b34801561036d57600080fd5b50600254610353565b34801561038257600080fd5b5061031b610391366004612037565b610a5c565b3480156103a257600080fd5b506103536103b136600461212b565b610a8d565b3480156103c257600080fd5b5061031b610b40565b3480156103d757600080fd5b5061031b610b7e565b3480156103ec57600080fd5b5061031b610bc7565b34801561040157600080fd5b5061031b610410366004612037565b610ca5565b34801561042157600080fd5b5061031b610430366004612155565b610cc0565b34801561044157600080fd5b50610353610450366004612155565b610cef565b34801561046157600080fd5b5061031b6104703660046121a8565b610d5c565b34801561048157600080fd5b50600f546102979060ff1681565b34801561049b57600080fd5b506102ee6104aa366004612155565b610d99565b3480156104bb57600080fd5b506102c1610e25565b3480156104d057600080fd5b506103536104df366004611fe9565b610eb3565b3480156104f057600080fd5b5061031b610f85565b34801561050557600080fd5b5061031b6105143660046121f1565b610fbb565b34801561052557600080fd5b5061031b6105343660046121a8565b61101e565b34801561054557600080fd5b50600f5461029790610100900460ff1681565b34801561056457600080fd5b506005546001600160a01b03166102ee565b34801561058257600080fd5b50610353600b5481565b34801561059857600080fd5b50610353600c5481565b3480156105ae57600080fd5b506102c161105b565b61031b6105c5366004612155565b61106a565b3480156105d657600080fd5b5061031b6105e53660046120ef565b6111e0565b3480156105f657600080fd5b50600f546102979062010000900460ff1681565b34801561061657600080fd5b5061035360095481565b34801561062c57600080fd5b5061031b61063b366004612155565b6112a5565b34801561064c57600080fd5b5061031b61065b366004612073565b6112d4565b34801561066c57600080fd5b5061031b61067b366004612155565b611306565b34801561068c57600080fd5b506102c161069b366004612155565b611335565b3480156106ac57600080fd5b5061031b6106bb366004612155565b6114a5565b3480156106cc57600080fd5b5061031b6106db366004612155565b6114d4565b3480156106ec57600080fd5b50610353600d5481565b61031b610704366004612214565b611503565b34801561071557600080fd5b5061035361271081565b34801561072b57600080fd5b5061035361073a366004611fe9565b600e6020526000908152604090205481565b34801561075857600080fd5b50610297610767366004612004565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107a157600080fd5b5061031b6107b0366004611fe9565b611730565b60006001600160e01b0319821663780e9d6360e01b14806107da57506107da826117cb565b92915050565b6060600080546107ef90612584565b80601f016020809104026020016040519081016040528092919081815260200182805461081b90612584565b80156108685780601f1061083d57610100808354040283529160200191610868565b820191906000526020600020905b81548152906001019060200180831161084b57829003601f168201915b5050505050905090565b600061087d8261181b565b6108e35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b031633146109295760405162461bcd60e51b81526004016108da90612470565b600f805461ff001981166101009182900460ff1615909102179055565b600061095182610d99565b9050806001600160a01b0316836001600160a01b031614156109bf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108da565b336001600160a01b03821614806109db57506109db8133610767565b610a4d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108da565b610a578383611865565b505050565b610a6633826118d3565b610a825760405162461bcd60e51b81526004016108da906124a5565b610a578383836119bd565b6000610a9883610eb3565b8210610ab65760405162461bcd60e51b81526004016108da906123d3565b6000805b600254811015610b275760028181548110610ad757610ad761261a565b6000918252602090912001546001600160a01b0386811691161415610b155783821415610b075791506107da9050565b81610b11816125bf565b9250505b80610b1f816125bf565b915050610aba565b5060405162461bcd60e51b81526004016108da906123d3565b6005546001600160a01b03163314610b6a5760405162461bcd60e51b81526004016108da90612470565b600f805460ff19811660ff90911615179055565b6005546001600160a01b03163314610ba85760405162461bcd60e51b81526004016108da90612470565b600f805462ff0000198116620100009182900460ff1615909102179055565b6005546001600160a01b03163314610bf15760405162461bcd60e51b81526004016108da90612470565b477357c8931e028e4b7c812ccd53c51b7d954244b4716108fc6064610c17846060612522565b610c21919061250e565b6040518115909202916000818181858888f19350505050158015610c49573d6000803e3d6000fd5b507338015cf8d6dd125d9423df516147f719b778c03a6108fc6064610c6f846004612522565b610c79919061250e565b6040518115909202916000818181858888f19350505050158015610ca1573d6000803e3d6000fd5b5050565b610a57838383604051806020016040528060008152506112d4565b6005546001600160a01b03163314610cea5760405162461bcd60e51b81526004016108da90612470565b600a55565b6002546000908210610d585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108da565b5090565b6005546001600160a01b03163314610d865760405162461bcd60e51b81526004016108da90612470565b8051610ca1906008906020840190611ec7565b60008060028381548110610daf57610daf61261a565b6000918252602090912001546001600160a01b03169050806107da5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108da565b60088054610e3290612584565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5e90612584565b8015610eab5780601f10610e8057610100808354040283529160200191610eab565b820191906000526020600020905b815481529060010190602001808311610e8e57829003601f168201915b505050505081565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108da565b600254600090815b81811015610f7c5760028181548110610f4157610f4161261a565b6000918252602090912001546001600160a01b0386811691161415610f6c57610f69836125bf565b92505b610f75816125bf565b9050610f26565b50909392505050565b6005546001600160a01b03163314610faf5760405162461bcd60e51b81526004016108da90612470565b610fb96000611b13565b565b6005546001600160a01b03163314610fe55760405162461bcd60e51b81526004016108da90612470565b60025460005b83811015611018576110068361100183856124f6565b611b65565b80611010816125bf565b915050610feb565b50505050565b6005546001600160a01b031633146110485760405162461bcd60e51b81526004016108da90612470565b8051610ca1906006906020840190611ec7565b6060600180546107ef90612584565b60025461271061107a83836124f6565b11156110be5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016108da565b600c548211156111105760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016108da565b600f5460ff16156111635760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016108da565b81600a546111719190612522565b34146111b55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108da565b60005b82811015610a57576111ce3361100183856124f6565b806111d8816125bf565b9150506111b8565b6001600160a01b0382163314156112395760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108da565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112cf5760405162461bcd60e51b81526004016108da90612470565b600c55565b6112de33836118d3565b6112fa5760405162461bcd60e51b81526004016108da906124a5565b61101884848484611be1565b6005546001600160a01b031633146113305760405162461bcd60e51b81526004016108da90612470565b600955565b60606113408261181b565b6113a45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108da565b600f5462010000900460ff1661144657600880546113c190612584565b80601f01602080910402602001604051908101604052809291908181526020018280546113ed90612584565b801561143a5780601f1061140f5761010080835404028352916020019161143a565b820191906000526020600020905b81548152906001019060200180831161141d57829003601f168201915b50505050509050919050565b6000611450611c14565b90506000815111611470576040518060200160405280600081525061149e565b8061147a84611c23565b600760405160200161148e939291906122bf565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146114cf5760405162461bcd60e51b81526004016108da90612470565b600d55565b6005546001600160a01b031633146114fe5760405162461bcd60e51b81526004016108da90612470565b600b55565b604080513360601b6bffffffffffffffffffffffff19166020808301919091528251601481840301815260349092019092528051910120600090336000908152600e602090815260409182902054825186830281810184019094528681529394509261158d92859288918891829190850190849080828437600092019190915250611d2192505050565b6115d05760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016108da565b600d546115dd86836124f6565b111561162b5760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016108da565b600f54610100900460ff16156116835760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016108da565b84600b546116919190612522565b34146116d55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016108da565b60025460005b86811015611703576116f13361100183856124f6565b806116fb816125bf565b9150506116db565b50336000908152600e6020526040812080548892906117239084906124f6565b9091555050505050505050565b6005546001600160a01b0316331461175a5760405162461bcd60e51b81526004016108da90612470565b6001600160a01b0381166117bf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108da565b6117c881611b13565b50565b60006001600160e01b031982166380ac58cd60e01b14806117fc57506001600160e01b03198216635b5e139f60e01b145b806107da57506301ffc9a760e01b6001600160e01b03198316146107da565b600254600090821080156107da575060006001600160a01b0316600283815481106118485761184861261a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061189a82610d99565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118de8261181b565b61193f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108da565b600061194a83610d99565b9050806001600160a01b0316846001600160a01b031614806119855750836001600160a01b031661197a84610872565b6001600160a01b0316145b806119b557506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119d082610d99565b6001600160a01b031614611a385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108da565b6001600160a01b038216611a9a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108da565b611aa5600082611865565b8160028281548110611ab957611ab961261a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611bec8484846119bd565b611bf884848484611d30565b6110185760405162461bcd60e51b81526004016108da9061241e565b6060600680546107ef90612584565b606081611c475750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c715780611c5b816125bf565b9150611c6a9050600a8361250e565b9150611c4b565b60008167ffffffffffffffff811115611c8c57611c8c612630565b6040519080825280601f01601f191660200182016040528015611cb6576020820181803683370190505b5090505b84156119b557611ccb600183612541565b9150611cd8600a866125da565b611ce39060306124f6565b60f81b818381518110611cf857611cf861261a565b60200101906001600160f81b031916908160001a905350611d1a600a8661250e565b9450611cba565b600061149e8260095485611e3d565b60006001600160a01b0384163b15611e3257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d74903390899088908890600401612383565b602060405180830381600087803b158015611d8e57600080fd5b505af1925050508015611dbe575060408051601f3d908101601f19168201909252611dbb9181019061218b565b60015b611e18573d808015611dec576040519150601f19603f3d011682016040523d82523d6000602084013e611df1565b606091505b508051611e105760405162461bcd60e51b81526004016108da9061241e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119b5565b506001949350505050565b600082611e4a8584611e53565b14949350505050565b600081815b8451811015611ebf576000858281518110611e7557611e7561261a565b60200260200101519050808311611e9b5760008381526020829052604090209250611eac565b600081815260208490526040902092505b5080611eb7816125bf565b915050611e58565b509392505050565b828054611ed390612584565b90600052602060002090601f016020900481019282611ef55760008555611f3b565b82601f10611f0e57805160ff1916838001178555611f3b565b82800160010185558215611f3b579182015b82811115611f3b578251825591602001919060010190611f20565b50610d589291505b80821115610d585760008155600101611f43565b600067ffffffffffffffff80841115611f7257611f72612630565b604051601f8501601f19908116603f01168101908282118183101715611f9a57611f9a612630565b81604052809350858152868686011115611fb357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe457600080fd5b919050565b600060208284031215611ffb57600080fd5b61149e82611fcd565b6000806040838503121561201757600080fd5b61202083611fcd565b915061202e60208401611fcd565b90509250929050565b60008060006060848603121561204c57600080fd5b61205584611fcd565b925061206360208501611fcd565b9150604084013590509250925092565b6000806000806080858703121561208957600080fd5b61209285611fcd565b93506120a060208601611fcd565b925060408501359150606085013567ffffffffffffffff8111156120c357600080fd5b8501601f810187136120d457600080fd5b6120e387823560208401611f57565b91505092959194509250565b6000806040838503121561210257600080fd5b61210b83611fcd565b91506020830135801515811461212057600080fd5b809150509250929050565b6000806040838503121561213e57600080fd5b61214783611fcd565b946020939093013593505050565b60006020828403121561216757600080fd5b5035919050565b60006020828403121561218057600080fd5b813561149e81612646565b60006020828403121561219d57600080fd5b815161149e81612646565b6000602082840312156121ba57600080fd5b813567ffffffffffffffff8111156121d157600080fd5b8201601f810184136121e257600080fd5b6119b584823560208401611f57565b6000806040838503121561220457600080fd5b8235915061202e60208401611fcd565b60008060006040848603121561222957600080fd5b83359250602084013567ffffffffffffffff8082111561224857600080fd5b818601915086601f83011261225c57600080fd5b81358181111561226b57600080fd5b8760208260051b850101111561228057600080fd5b6020830194508093505050509250925092565b600081518084526122ab816020860160208601612558565b601f01601f19169290920160200192915050565b6000845160206122d28285838a01612558565b8551918401916122e58184848a01612558565b8554920191600090600181811c908083168061230257607f831692505b85831081141561232057634e487b7160e01b85526022600452602485fd5b808015612334576001811461234557612372565b60ff19851688528388019550612372565b60008b81526020902060005b8581101561236a5781548a820152908401908801612351565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123b690830184612293565b9695505050505050565b60208152600061149e6020830184612293565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612509576125096125ee565b500190565b60008261251d5761251d612604565b500490565b600081600019048311821515161561253c5761253c6125ee565b500290565b600082821015612553576125536125ee565b500390565b60005b8381101561257357818101518382015260200161255b565b838111156110185750506000910152565b600181811c9082168061259857607f821691505b602082108114156125b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d3576125d36125ee565b5060010190565b6000826125e9576125e9612604565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117c857600080fdfea2646970667358221220d8d4aa56c42bb38519d1f21c2c2ff4adb9fc1fb93f0777280dc3faefc10ce77a64736f6c63430008070033

Deployed Bytecode Sourcemap

32660:5232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31356:224;;;;;;;;;;-1:-1:-1;31356:224:0;;;;;:::i;:::-;;:::i;:::-;;;8069:14:1;;8062:22;8044:41;;8032:2;8017:18;31356:224:0;;;;;;;;19969:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20781:308::-;;;;;;;;;;-1:-1:-1;20781:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7367:32:1;;;7349:51;;7337:2;7322:18;20781:308:0;7203:203:1;37277:75:0;;;;;;;;;;;;;:::i;:::-;;20304:411;;;;;;;;;;-1:-1:-1;20304:411:0;;;;;:::i;:::-;;:::i;33095:31::-;;;;;;;;;;;;;;;;;;;8242:25:1;;;8230:2;8215:18;33095:31:0;8096:177:1;31656:110:0;;;;;;;;;;-1:-1:-1;31744:7:0;:14;31656:110;;21840:376;;;;;;;;;;-1:-1:-1;21840:376:0;;;;;:::i;:::-;;:::i;32132:490::-;;;;;;;;;;-1:-1:-1;32132:490:0;;;;;:::i;:::-;;:::i;37201:69::-;;;;;;;;;;;;;:::i;36317:71::-;;;;;;;;;;;;;:::i;37358:276::-;;;;;;;;;;;;;:::i;22287:185::-;;;;;;;;;;-1:-1:-1;22287:185:0;;;;;:::i;:::-;;:::i;36526:95::-;;;;;;;;;;-1:-1:-1;36526:95:0;;;;;:::i;:::-;;:::i;31843:205::-;;;;;;;;;;-1:-1:-1;31843:205:0;;;;;:::i;:::-;;:::i;36394:126::-;;;;;;;;;;-1:-1:-1;36394:126:0;;;;;:::i;:::-;;:::i;33373:25::-;;;;;;;;;;-1:-1:-1;33373:25:0;;;;;;;;19576:326;;;;;;;;;;-1:-1:-1;19576:326:0;;;;;:::i;:::-;;:::i;32882:96::-;;;;;;;;;;;;;:::i;19068:446::-;;;;;;;;;;-1:-1:-1;19068:446:0;;;;;:::i;:::-;;:::i;7079:103::-;;;;;;;;;;;;;:::i;34068:312::-;;;;;;;;;;-1:-1:-1;34068:312:0;;;;;:::i;:::-;;:::i;37091:102::-;;;;;;;;;;-1:-1:-1;37091:102:0;;;;;:::i;:::-;;:::i;33403:28::-;;;;;;;;;;-1:-1:-1;33403:28:0;;;;;;;;;;;6428:87;;;;;;;;;;-1:-1:-1;6501:6:0;;-1:-1:-1;;;;;6501:6:0;6428:87;;33131:41;;;;;;;;;;;;;;;;33225:38;;;;;;;;;;;;;;;;20138:104;;;;;;;;;;;;;:::i;33535:525::-;;;;;;:::i;:::-;;:::i;21161:327::-;;;;;;;;;;-1:-1:-1;21161:327:0;;;;;:::i;:::-;;:::i;33436:26::-;;;;;;;;;;-1:-1:-1;33436:26:0;;;;;;;;;;;32985:103;;;;;;;;;;;;;;;;36737:165;;;;;;;;;;-1:-1:-1;36737:165:0;;;;;:::i;:::-;;:::i;22543:365::-;;;;;;;;;;-1:-1:-1;22543:365:0;;;;;:::i;:::-;;:::i;34385:142::-;;;;;;;;;;-1:-1:-1;34385:142:0;;;;;:::i;:::-;;:::i;35817:496::-;;;;;;;;;;-1:-1:-1;35817:496:0;;;;;:::i;:::-;;:::i;35691:122::-;;;;;;;;;;-1:-1:-1;35691:122:0;;;;;:::i;:::-;;:::i;36625:106::-;;;;;;;;;;-1:-1:-1;36625:106:0;;;;;:::i;:::-;;:::i;33270:39::-;;;;;;;;;;;;;;;;34855:828;;;;;;:::i;:::-;;:::i;33177:42::-;;;;;;;;;;;;33214:5;33177:42;;33316:50;;;;;;;;;;-1:-1:-1;33316:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;21559:214;;;;;;;;;;-1:-1:-1;21559:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;21730:25:0;;;21701:4;21730:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21559:214;7337:201;;;;;;;;;;-1:-1:-1;7337:201:0;;;;;:::i;:::-;;:::i;31356:224::-;31458:4;-1:-1:-1;;;;;;31482:50:0;;-1:-1:-1;;;31482:50:0;;:90;;;31536:36;31560:11;31536:23;:36::i;:::-;31475:97;31356:224;-1:-1:-1;;31356:224:0:o;19969:100::-;20023:13;20056:5;20049:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19969:100;:::o;20781:308::-;20902:7;20949:16;20957:7;20949;:16::i;:::-;20927:110;;;;-1:-1:-1;;;20927:110:0;;13418:2:1;20927:110:0;;;13400:21:1;13457:2;13437:18;;;13430:30;13496:34;13476:18;;;13469:62;-1:-1:-1;;;13547:18:1;;;13540:42;13599:19;;20927:110:0;;;;;;;;;-1:-1:-1;21057:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21057:24:0;;20781:308::o;37277:75::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;37338:8:::1;::::0;;-1:-1:-1;;37326:20:0;::::1;37338:8;::::0;;;::::1;;;37337:9;37326:20:::0;;::::1;;::::0;;37277:75::o;20304:411::-;20385:13;20401:23;20416:7;20401:14;:23::i;:::-;20385:39;;20449:5;-1:-1:-1;;;;;20443:11:0;:2;-1:-1:-1;;;;;20443:11:0;;;20435:57;;;;-1:-1:-1;;;20435:57:0;;15719:2:1;20435:57:0;;;15701:21:1;15758:2;15738:18;;;15731:30;15797:34;15777:18;;;15770:62;-1:-1:-1;;;15848:18:1;;;15841:31;15889:19;;20435:57:0;15517:397:1;20435:57:0;5232:10;-1:-1:-1;;;;;20527:21:0;;;;:62;;-1:-1:-1;20552:37:0;20569:5;5232:10;21559:214;:::i;20552:37::-;20505:168;;;;-1:-1:-1;;;20505:168:0;;12172:2:1;20505:168:0;;;12154:21:1;12211:2;12191:18;;;12184:30;12250:34;12230:18;;;12223:62;12321:26;12301:18;;;12294:54;12365:19;;20505:168:0;11970:420:1;20505:168:0;20686:21;20695:2;20699:7;20686:8;:21::i;:::-;20374:341;20304:411;;:::o;21840:376::-;22049:41;5232:10;22082:7;22049:18;:41::i;:::-;22027:140;;;;-1:-1:-1;;;22027:140:0;;;;;;;:::i;:::-;22180:28;22190:4;22196:2;22200:7;22180:9;:28::i;32132:490::-;32229:15;32273:16;32283:5;32273:9;:16::i;:::-;32265:5;:24;32257:80;;;;-1:-1:-1;;;32257:80:0;;;;;;;:::i;:::-;32350:10;32375:6;32371:178;32387:7;:14;32383:18;;32371:178;;;32434:7;32442:1;32434:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32425:19:0;;;32434:10;;32425:19;32422:116;;;32476:5;32467;:14;32464:58;;;32490:1;-1:-1:-1;32483:8:0;;-1:-1:-1;32483:8:0;32464:58;32515:7;;;;:::i;:::-;;;;32464:58;32403:3;;;;:::i;:::-;;;;32371:178;;;;32561:53;;-1:-1:-1;;;32561:53:0;;;;;;;:::i;37201:69::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;37258:6:::1;::::0;;-1:-1:-1;;37248:16:0;::::1;37258:6;::::0;;::::1;37257:7;37248:16;::::0;;37201:69::o;36317:71::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;36376:6:::1;::::0;;-1:-1:-1;;36366:16:0;::::1;36376:6:::0;;;;::::1;;;36375:7;36366:16:::0;;::::1;;::::0;;36317:71::o;37358:276::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;37418:21:::1;37455:42;37447:81;37524:3;37508:13;37418:21:::0;37519:2:::1;37508:13;:::i;:::-;:19;;;;:::i;:::-;37447:81;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;37545:42:0::1;37537:80;37613:3;37598:12;:8:::0;37609:1:::1;37598:12;:::i;:::-;:18;;;;:::i;:::-;37537:80;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;37397:237;37358:276::o:0;22287:185::-;22425:39;22442:4;22448:2;22452:7;22425:39;;;;;;;;;;;;:16;:39::i;36526:95::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;36584:4:::1;:12:::0;36526:95::o;31843:205::-;31954:7;:14;31918:7;;31946:22;;31938:79;;;;-1:-1:-1;;;31938:79:0;;16896:2:1;31938:79:0;;;16878:21:1;16935:2;16915:18;;;16908:30;16974:34;16954:18;;;16947:62;-1:-1:-1;;;17025:18:1;;;17018:42;17077:19;;31938:79:0;16694:408:1;31938:79:0;-1:-1:-1;32035:5:0;31843:205::o;36394:126::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;36484:30;;::::1;::::0;:9:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;19576:326::-:0;19693:7;19718:13;19734:7;19742;19734:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19734:16:0;;-1:-1:-1;19783:19:0;19761:110;;;;-1:-1:-1;;;19761:110:0;;13008:2:1;19761:110:0;;;12990:21:1;13047:2;13027:18;;;13020:30;13086:34;13066:18;;;13059:62;-1:-1:-1;;;13137:18:1;;;13130:39;13186:19;;19761:110:0;12806:405:1;32882:96:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19068:446::-;19190:4;-1:-1:-1;;;;;19221:19:0;;19213:74;;;;-1:-1:-1;;;19213:74:0;;12597:2:1;19213:74:0;;;12579:21:1;12636:2;12616:18;;;12609:30;12675:34;12655:18;;;12648:62;-1:-1:-1;;;12726:18:1;;;12719:40;12776:19;;19213:74:0;12395:406:1;19213:74:0;19334:7;:14;19300:10;;;19359:101;19376:6;19372:1;:10;19359:101;;;19415:7;19423:1;19415:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19406:19:0;;;19415:10;;19406:19;19402:46;;;19441:7;;;:::i;:::-;;;19402:46;19384:3;;;:::i;:::-;;;19359:101;;;-1:-1:-1;19501:5:0;;19068:446;-1:-1:-1;;;19068:446:0:o;7079:103::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;7144:30:::1;7171:1;7144:18;:30::i;:::-;7079:103::o:0;34068:312::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;34180:7:::1;:14:::0;34158:19:::1;34201:84;34217:11;34213:1;:15;34201:84;;;34242:34;34248:9:::0;34260:15:::1;34274:1:::0;34260:11;:15:::1;:::i;:::-;34242:5;:34::i;:::-;34230:3:::0;::::1;::::0;::::1;:::i;:::-;;;;34201:84;;;-1:-1:-1::0;;;;34068:312:0:o;37091:102::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;37165:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;20138:104::-:0;20194:13;20227:7;20220:14;;;;;:::i;33535:525::-;33617:7;:14;33214:5;33646:25;33660:11;33617:14;33646:25;:::i;:::-;:38;;33638:70;;;;-1:-1:-1;;;33638:70:0;;8704:2:1;33638:70:0;;;8686:21:1;8743:2;8723:18;;;8716:30;-1:-1:-1;;;8762:18:1;;;8755:49;8821:18;;33638:70:0;8502:343:1;33638:70:0;33738:18;;33723:11;:33;;33715:74;;;;-1:-1:-1;;;33715:74:0;;16539:2:1;33715:74:0;;;16521:21:1;16578:2;16558:18;;;16551:30;16617;16597:18;;;16590:58;16665:18;;33715:74:0;16337:352:1;33715:74:0;33807:6;;;;33806:7;33798:43;;;;-1:-1:-1;;;33798:43:0;;14541:2:1;33798:43:0;;;14523:21:1;14580:2;14560:18;;;14553:30;14619:25;14599:18;;;14592:53;14662:18;;33798:43:0;14339:347:1;33798:43:0;33876:11;33869:4;;:18;;;;:::i;:::-;33856:9;:31;33848:63;;;;-1:-1:-1;;;33848:63:0;;17309:2:1;33848:63:0;;;17291:21:1;17348:2;17328:18;;;17321:30;-1:-1:-1;;;17367:18:1;;;17360:49;17426:18;;33848:63:0;17107:343:1;33848:63:0;33923:6;33919:84;33935:11;33931:1;:15;33919:84;;;33960:34;33966:10;33978:15;33992:1;33978:11;:15;:::i;33960:34::-;33948:3;;;;:::i;:::-;;;;33919:84;;21161:327;-1:-1:-1;;;;;21296:24:0;;5232:10;21296:24;;21288:62;;;;-1:-1:-1;;;21288:62:0;;11050:2:1;21288:62:0;;;11032:21:1;11089:2;11069:18;;;11062:30;11128:27;11108:18;;;11101:55;11173:18;;21288:62:0;10848:349:1;21288:62:0;5232:10;21363:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;21363:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;21363:53:0;;;;;;;;;;21432:48;;8044:41:1;;;21363:42:0;;5232:10;21432:48;;8017:18:1;21432:48:0;;;;;;;21161:327;;:::o;36737:165::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;36823:18:::1;:40:::0;36737:165::o;22543:365::-;22732:41;5232:10;22765:7;22732:18;:41::i;:::-;22710:140;;;;-1:-1:-1;;;22710:140:0;;;;;;;:::i;:::-;22861:39;22875:4;22881:2;22885:7;22894:5;22861:13;:39::i;34385:142::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;34477:19:::1;:42:::0;34385:142::o;35817:496::-;35916:13;35957:17;35965:8;35957:7;:17::i;:::-;35941:98;;;;-1:-1:-1;;;35941:98:0;;15303:2:1;35941:98:0;;;15285:21:1;15342:2;15322:18;;;15315:30;15381:34;15361:18;;;15354:62;-1:-1:-1;;;15432:18:1;;;15425:45;15487:19;;35941:98:0;15101:411:1;35941:98:0;36056:6;;;;;;;36052:54;;36089:9;36082:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35817:496;;;:::o;36052:54::-;36122:28;36153:10;:8;:10::i;:::-;36122:41;;36208:1;36183:14;36177:28;:32;:130;;;;;;;;;;;;;;;;;36245:14;36261:19;:8;:17;:19::i;:::-;36282:9;36228:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36177:130;36170:137;35817:496;-1:-1:-1;;;35817:496:0:o;35691:122::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;35759:20:::1;:29:::0;35691:122::o;36625:106::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;36685:13:::1;:21:::0;36625:106::o;34855:828::-;34647:23;;;35000:10;5586:2:1;5582:15;-1:-1:-1;;5578:53:1;34647:23:0;;;;5566:66:1;;;;34647:23:0;;;;;;;;;5648:12:1;;;;34647:23:0;;;34637:34;;;;;34968:17;;35058:10;35022:18;35043:26;;;:14;:26;;;;;;;;;;35087:36;;;;;;;;;;;;;;;;34968:43;;-1:-1:-1;35043:26:0;35087:36;;34968:43;;35108:11;;;;;;35087:36;;;;35108:11;;35087:36;35108:11;35087:36;;;;;;;;;-1:-1:-1;35087:7:0;;-1:-1:-1;;;35087:36:0:i;:::-;35079:70;;;;-1:-1:-1;;;35079:70:0;;14192:2:1;35079:70:0;;;14174:21:1;14231:2;14211:18;;;14204:30;-1:-1:-1;;;14250:18:1;;;14243:50;14310:18;;35079:70:0;13990:344:1;35079:70:0;35199:20;;35168:27;35184:11;35168:13;:27;:::i;:::-;:51;;35159:91;;;;-1:-1:-1;;;35159:91:0;;11817:2:1;35159:91:0;;;11799:21:1;11856:2;11836:18;;;11829:30;11895:28;11875:18;;;11868:56;11941:18;;35159:91:0;11615:350:1;35159:91:0;35278:8;;;;;;;35277:9;35269:48;;;;-1:-1:-1;;;35269:48:0;;10290:2:1;35269:48:0;;;10272:21:1;10329:2;10309:18;;;10302:30;10368:28;10348:18;;;10341:56;10414:18;;35269:48:0;10088:350:1;35269:48:0;35361:11;35345:13;;:27;;;;:::i;:::-;35332:9;:40;35324:72;;;;-1:-1:-1;;;35324:72:0;;17309:2:1;35324:72:0;;;17291:21:1;17348:2;17328:18;;;17321:30;-1:-1:-1;;;17367:18:1;;;17360:49;17426:18;;35324:72:0;17107:343:1;35324:72:0;35430:7;:14;35408:19;35451:85;35467:11;35463:1;:15;35451:85;;;35492:35;35498:10;35511:15;35525:1;35511:11;:15;:::i;35492:35::-;35480:3;;;;:::i;:::-;;;;35451:85;;;-1:-1:-1;35559:10:0;35544:26;;;;:14;:26;;;;;:41;;35574:11;;35544:26;:41;;35574:11;;35544:41;:::i;:::-;;;;-1:-1:-1;;;;;;;;34855:828:0:o;7337:201::-;6501:6;;-1:-1:-1;;;;;6501:6:0;5232:10;6648:23;6640:68;;;;-1:-1:-1;;;6640:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7426:22:0;::::1;7418:73;;;::::0;-1:-1:-1;;;7418:73:0;;9883:2:1;7418:73:0::1;::::0;::::1;9865:21:1::0;9922:2;9902:18;;;9895:30;9961:34;9941:18;;;9934:62;-1:-1:-1;;;10012:18:1;;;10005:36;10058:19;;7418:73:0::1;9681:402:1::0;7418:73:0::1;7502:28;7521:8;7502:18;:28::i;:::-;7337:201:::0;:::o;18649:355::-;18796:4;-1:-1:-1;;;;;;18838:40:0;;-1:-1:-1;;;18838:40:0;;:105;;-1:-1:-1;;;;;;;18895:48:0;;-1:-1:-1;;;18895:48:0;18838:105;:158;;;-1:-1:-1;;;;;;;;;;10818:40:0;;;18960:36;10709:157;24455:155;24554:7;:14;24520:4;;24544:24;;:58;;;;;24600:1;-1:-1:-1;;;;;24572:30:0;:7;24580;24572:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;24572:16:0;:30;;24537:65;24455:155;-1:-1:-1;;24455:155:0:o;28480:174::-;28555:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;28555:29:0;-1:-1:-1;;;;;28555:29:0;;;;;;;;:24;;28609:23;28555:24;28609:14;:23::i;:::-;-1:-1:-1;;;;;28600:46:0;;;;;;;;;;;28480:174;;:::o;24777:452::-;24906:4;24950:16;24958:7;24950;:16::i;:::-;24928:110;;;;-1:-1:-1;;;24928:110:0;;11404:2:1;24928:110:0;;;11386:21:1;11443:2;11423:18;;;11416:30;11482:34;11462:18;;;11455:62;-1:-1:-1;;;11533:18:1;;;11526:42;11585:19;;24928:110:0;11202:408:1;24928:110:0;25049:13;25065:23;25080:7;25065:14;:23::i;:::-;25049:39;;25118:5;-1:-1:-1;;;;;25107:16:0;:7;-1:-1:-1;;;;;25107:16:0;;:64;;;;25164:7;-1:-1:-1;;;;;25140:31:0;:20;25152:7;25140:11;:20::i;:::-;-1:-1:-1;;;;;25140:31:0;;25107:64;:113;;;-1:-1:-1;;;;;;21730:25:0;;;21701:4;21730:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;25188:32;25099:122;24777:452;-1:-1:-1;;;;24777:452:0:o;27809:553::-;27982:4;-1:-1:-1;;;;;27955:31:0;:23;27970:7;27955:14;:23::i;:::-;-1:-1:-1;;;;;27955:31:0;;27933:122;;;;-1:-1:-1;;;27933:122:0;;14893:2:1;27933:122:0;;;14875:21:1;14932:2;14912:18;;;14905:30;14971:34;14951:18;;;14944:62;-1:-1:-1;;;15022:18:1;;;15015:39;15071:19;;27933:122:0;14691:405:1;27933:122:0;-1:-1:-1;;;;;28074:16:0;;28066:65;;;;-1:-1:-1;;;28066:65:0;;10645:2:1;28066:65:0;;;10627:21:1;10684:2;10664:18;;;10657:30;10723:34;10703:18;;;10696:62;-1:-1:-1;;;10774:18:1;;;10767:34;10818:19;;28066:65:0;10443:400:1;28066:65:0;28248:29;28265:1;28269:7;28248:8;:29::i;:::-;28307:2;28288:7;28296;28288:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;28288:21:0;-1:-1:-1;;;;;28288:21:0;;;;;;28327:27;;28346:7;;28327:27;;;;;;;;;;28288:16;28327:27;27809:553;;;:::o;7698:191::-;7791:6;;;-1:-1:-1;;;;;7808:17:0;;;-1:-1:-1;;;;;;7808:17:0;;;;;;;7841:40;;7791:6;;;7808:17;7791:6;;7841:40;;7772:16;;7841:40;7761:128;7698:191;:::o;37641:154::-;37722:7;:16;;;;;;;-1:-1:-1;37722:16:0;;;;;;;-1:-1:-1;;;;;;37722:16:0;-1:-1:-1;;;;;37722:16:0;;;;;;;;37754:33;;37779:7;;-1:-1:-1;37754:33:0;;-1:-1:-1;;37754:33:0;37641:154;;:::o;23790:352::-;23947:28;23957:4;23963:2;23967:7;23947:9;:28::i;:::-;24008:48;24031:4;24037:2;24041:7;24050:5;24008:22;:48::i;:::-;23986:148;;;;-1:-1:-1;;;23986:148:0;;;;;;;:::i;37801:88::-;37845:13;37874:9;37867:16;;;;;:::i;2714:723::-;2770:13;2991:10;2987:53;;-1:-1:-1;;3018:10:0;;;;;;;;;;;;-1:-1:-1;;;3018:10:0;;;;;2714:723::o;2987:53::-;3065:5;3050:12;3106:78;3113:9;;3106:78;;3139:8;;;;:::i;:::-;;-1:-1:-1;3162:10:0;;-1:-1:-1;3170:2:0;3162:10;;:::i;:::-;;;3106:78;;;3194:19;3226:6;3216:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3216:17:0;;3194:39;;3244:154;3251:10;;3244:154;;3278:11;3288:1;3278:11;;:::i;:::-;;-1:-1:-1;3347:10:0;3355:2;3347:5;:10;:::i;:::-;3334:24;;:2;:24;:::i;:::-;3321:39;;3304:6;3311;3304:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3304:56:0;;;;;;;;-1:-1:-1;3375:11:0;3384:2;3375:11;;:::i;:::-;;;3244:154;;34685:162;34763:4;34787:52;34806:5;34813:19;;34834:4;34787:18;:52::i;29219:980::-;29374:4;-1:-1:-1;;;;;29395:13:0;;17849:20;17897:8;29391:801;;29448:175;;-1:-1:-1;;;29448:175:0;;-1:-1:-1;;;;;29448:36:0;;;;;:175;;5232:10;;29542:4;;29569:7;;29599:5;;29448:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29448:175:0;;;;;;;;-1:-1:-1;;29448:175:0;;;;;;;;;;;;:::i;:::-;;;29427:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29806:13:0;;29802:320;;29849:108;;-1:-1:-1;;;29849:108:0;;;;;;;:::i;29802:320::-;30072:6;30066:13;30057:6;30053:2;30049:15;30042:38;29427:710;-1:-1:-1;;;;;;29687:51:0;-1:-1:-1;;;29687:51:0;;-1:-1:-1;29680:58:0;;29391:801;-1:-1:-1;30176:4:0;29219:980;;;;;;:::o;999:190::-;1124:4;1177;1148:25;1161:5;1168:4;1148:12;:25::i;:::-;:33;;999:190;-1:-1:-1;;;;999:190:0:o;1551:675::-;1634:7;1677:4;1634:7;1692:497;1716:5;:12;1712:1;:16;1692:497;;;1750:20;1773:5;1779:1;1773:8;;;;;;;;:::i;:::-;;;;;;;1750:31;;1816:12;1800;:28;1796:382;;2302:13;2352:15;;;2388:4;2381:15;;;2435:4;2419:21;;1928:57;;1796:382;;;2302:13;2352:15;;;2388:4;2381:15;;;2435:4;2419:21;;2105:57;;1796:382;-1:-1:-1;1730:3:0;;;;:::i;:::-;;;;1692:497;;;-1:-1:-1;2206:12:0;1551:675;-1:-1:-1;;;1551:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:180::-;2958:6;3011:2;2999:9;2990:7;2986:23;2982:32;2979:52;;;3027:1;3024;3017:12;2979:52;-1:-1:-1;3050:23:1;;2899:180;-1:-1:-1;2899:180:1:o;3084:245::-;3142:6;3195:2;3183:9;3174:7;3170:23;3166:32;3163:52;;;3211:1;3208;3201:12;3163:52;3250:9;3237:23;3269:30;3293:5;3269:30;:::i;3334:249::-;3403:6;3456:2;3444:9;3435:7;3431:23;3427:32;3424:52;;;3472:1;3469;3462:12;3424:52;3504:9;3498:16;3523:30;3547:5;3523:30;:::i;3588:450::-;3657:6;3710:2;3698:9;3689:7;3685:23;3681:32;3678:52;;;3726:1;3723;3716:12;3678:52;3766:9;3753:23;3799:18;3791:6;3788:30;3785:50;;;3831:1;3828;3821:12;3785:50;3854:22;;3907:4;3899:13;;3895:27;-1:-1:-1;3885:55:1;;3936:1;3933;3926:12;3885:55;3959:73;4024:7;4019:2;4006:16;4001:2;3997;3993:11;3959:73;:::i;4228:254::-;4296:6;4304;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4409:9;4396:23;4386:33;;4438:38;4472:2;4461:9;4457:18;4438:38;:::i;4487:683::-;4582:6;4590;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:52;;;4667:1;4664;4657:12;4619:52;4703:9;4690:23;4680:33;;4764:2;4753:9;4749:18;4736:32;4787:18;4828:2;4820:6;4817:14;4814:34;;;4844:1;4841;4834:12;4814:34;4882:6;4871:9;4867:22;4857:32;;4927:7;4920:4;4916:2;4912:13;4908:27;4898:55;;4949:1;4946;4939:12;4898:55;4989:2;4976:16;5015:2;5007:6;5004:14;5001:34;;;5031:1;5028;5021:12;5001:34;5084:7;5079:2;5069:6;5066:1;5062:14;5058:2;5054:23;5050:32;5047:45;5044:65;;;5105:1;5102;5095:12;5044:65;5136:2;5132;5128:11;5118:21;;5158:6;5148:16;;;;;4487:683;;;;;:::o;5175:257::-;5216:3;5254:5;5248:12;5281:6;5276:3;5269:19;5297:63;5353:6;5346:4;5341:3;5337:14;5330:4;5323:5;5319:16;5297:63;:::i;:::-;5414:2;5393:15;-1:-1:-1;;5389:29:1;5380:39;;;;5421:4;5376:50;;5175:257;-1:-1:-1;;5175:257:1:o;5671:1527::-;5895:3;5933:6;5927:13;5959:4;5972:51;6016:6;6011:3;6006:2;5998:6;5994:15;5972:51;:::i;:::-;6086:13;;6045:16;;;;6108:55;6086:13;6045:16;6130:15;;;6108:55;:::i;:::-;6252:13;;6185:20;;;6225:1;;6312;6334:18;;;;6387;;;;6414:93;;6492:4;6482:8;6478:19;6466:31;;6414:93;6555:2;6545:8;6542:16;6522:18;6519:40;6516:167;;;-1:-1:-1;;;6582:33:1;;6638:4;6635:1;6628:15;6668:4;6589:3;6656:17;6516:167;6699:18;6726:110;;;;6850:1;6845:328;;;;6692:481;;6726:110;-1:-1:-1;;6761:24:1;;6747:39;;6806:20;;;;-1:-1:-1;6726:110:1;;6845:328;17710:1;17703:14;;;17747:4;17734:18;;6940:1;6954:169;6968:8;6965:1;6962:15;6954:169;;;7050:14;;7035:13;;;7028:37;7093:16;;;;6985:10;;6954:169;;;6958:3;;7154:8;7147:5;7143:20;7136:27;;6692:481;-1:-1:-1;7189:3:1;;5671:1527;-1:-1:-1;;;;;;;;;;;5671:1527:1:o;7411:488::-;-1:-1:-1;;;;;7680:15:1;;;7662:34;;7732:15;;7727:2;7712:18;;7705:43;7779:2;7764:18;;7757:34;;;7827:3;7822:2;7807:18;;7800:31;;;7605:4;;7848:45;;7873:19;;7865:6;7848:45;:::i;:::-;7840:53;7411:488;-1:-1:-1;;;;;;7411:488:1:o;8278:219::-;8427:2;8416:9;8409:21;8390:4;8447:44;8487:2;8476:9;8472:18;8464:6;8447:44;:::i;8850:407::-;9052:2;9034:21;;;9091:2;9071:18;;;9064:30;9130:34;9125:2;9110:18;;9103:62;-1:-1:-1;;;9196:2:1;9181:18;;9174:41;9247:3;9232:19;;8850:407::o;9262:414::-;9464:2;9446:21;;;9503:2;9483:18;;;9476:30;9542:34;9537:2;9522:18;;9515:62;-1:-1:-1;;;9608:2:1;9593:18;;9586:48;9666:3;9651:19;;9262:414::o;13629:356::-;13831:2;13813:21;;;13850:18;;;13843:30;13909:34;13904:2;13889:18;;13882:62;13976:2;13961:18;;13629:356::o;15919:413::-;16121:2;16103:21;;;16160:2;16140:18;;;16133:30;16199:34;16194:2;16179:18;;16172:62;-1:-1:-1;;;16265:2:1;16250:18;;16243:47;16322:3;16307:19;;15919:413::o;17763:128::-;17803:3;17834:1;17830:6;17827:1;17824:13;17821:39;;;17840:18;;:::i;:::-;-1:-1:-1;17876:9:1;;17763:128::o;17896:120::-;17936:1;17962;17952:35;;17967:18;;:::i;:::-;-1:-1:-1;18001:9:1;;17896:120::o;18021:168::-;18061:7;18127:1;18123;18119:6;18115:14;18112:1;18109:21;18104:1;18097:9;18090:17;18086:45;18083:71;;;18134:18;;:::i;:::-;-1:-1:-1;18174:9:1;;18021:168::o;18194:125::-;18234:4;18262:1;18259;18256:8;18253:34;;;18267:18;;:::i;:::-;-1:-1:-1;18304:9:1;;18194:125::o;18324:258::-;18396:1;18406:113;18420:6;18417:1;18414:13;18406:113;;;18496:11;;;18490:18;18477:11;;;18470:39;18442:2;18435:10;18406:113;;;18537:6;18534:1;18531:13;18528:48;;;-1:-1:-1;;18572:1:1;18554:16;;18547:27;18324:258::o;18587:380::-;18666:1;18662:12;;;;18709;;;18730:61;;18784:4;18776:6;18772:17;18762:27;;18730:61;18837:2;18829:6;18826:14;18806:18;18803:38;18800:161;;;18883:10;18878:3;18874:20;18871:1;18864:31;18918:4;18915:1;18908:15;18946:4;18943:1;18936:15;18800:161;;18587:380;;;:::o;18972:135::-;19011:3;-1:-1:-1;;19032:17:1;;19029:43;;;19052:18;;:::i;:::-;-1:-1:-1;19099:1:1;19088:13;;18972:135::o;19112:112::-;19144:1;19170;19160:35;;19175:18;;:::i;:::-;-1:-1:-1;19209:9:1;;19112:112::o;19229:127::-;19290:10;19285:3;19281:20;19278:1;19271:31;19321:4;19318:1;19311:15;19345:4;19342:1;19335:15;19361:127;19422:10;19417:3;19413:20;19410:1;19403:31;19453:4;19450:1;19443:15;19477:4;19474:1;19467:15;19493:127;19554:10;19549:3;19545:20;19542:1;19535:31;19585:4;19582:1;19575:15;19609:4;19606:1;19599:15;19625:127;19686:10;19681:3;19677:20;19674:1;19667:31;19717:4;19714:1;19707:15;19741:4;19738:1;19731:15;19757:131;-1:-1:-1;;;;;;19831:32:1;;19821:43;;19811:71;;19878:1;19875;19868:12

Swarm Source

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