ETH Price: $2,688.49 (-3.32%)

Token

ToonKnights (TK)
 

Overview

Max Total Supply

1,072 TK

Holders

526

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 TK
0x8c4daad2233848217489e0f33065979cd8eee30f
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:
ToonKnights

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/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;
    }
}

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/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
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/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:
 *
 * ```soliditycontract ERC721 is Context, ERC165, IERC721, IERC721Metadata
 * 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/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: @openzeppelin/contracts/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);
}

pragma solidity ^0.8.10;

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;

    string private _name;
    string private _symbol;

    address[] internal _owners;

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

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

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

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

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    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);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    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);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    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);
    }

    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"
        );
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    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"
        );
    }

    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);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.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);

        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(
            payees.length == shares_.length,
            "PaymentSplitter: payees and shares length mismatch"
        );
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) /
            _totalShares -
            _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(
            account != address(0),
            "PaymentSplitter: account is the zero address"
        );
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(
            _shares[account] == 0,
            "PaymentSplitter: account already has shares"
        );

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol
pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.10;

contract ToonKnights is ERC721Enum, Ownable, PaymentSplitter {
    using Strings for uint256;

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant FREE_SUPPLY = 1000;
    uint256 public constant MAX_FREE_MINT_PER_WALLET = 2;
    uint256 public constant MAX_PAID_PER_WALLET = 5;

    uint256 public cost = 0.0035 ether;
    bool public paused = true;
    string baseURI;
    string hiddenURI;
    
    mapping(address => uint256) public freeAddressMintedBalance;
    mapping(address => uint256) public paidAddressMintedBalance;

    address[] private _splitterAddressList = [
        0x86533526090B33cFF46c7017DB90468F34387FFD, //k 
        0x8C6cf26572C05f49559CB57a8dA18Dce935A1057, //bnc
        0xa38fF0A1dBadaB21ad37D3D7618db834ecd8683B //a
    ];

    uint256[] private _shareList = [10, 10, 10];

    constructor(string memory _uri) ERC721P("ToonKnights", "TK") PaymentSplitter(_splitterAddressList, _shareList) {
        setBaseURI(_uri);
    }

    modifier mintCheck(uint256 _mintAmount) {
        require(!paused, "Sale is currently not active");
        require(_mintAmount > 0, "Mint amt must be greater than 0");
        require(msg.sender == tx.origin, "Sender must be origin wallet");
        _;
    }

    //---------------- Internal ----------------

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

    function _doMint(address _receiver, uint256 _mintAmount) internal {
        uint256 supply = totalSupply();
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_receiver, supply + i);
        }
    }

    //---------------- Public/External ----------------

    function freeMint(uint256 _mintAmount) external mintCheck(_mintAmount) {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= FREE_SUPPLY, "Mint amt exceeds max free supply. Refresh and try again or call Paid Mint.");
        
        uint256 senderMintedCount = freeAddressMintedBalance[msg.sender];
        require(senderMintedCount + _mintAmount <= MAX_FREE_MINT_PER_WALLET, "Total mints after tx exceeds max mints free mint wallet");
        freeAddressMintedBalance[msg.sender] += _mintAmount;
        
        _doMint(msg.sender, _mintAmount);
    }

    function paidMint(uint256 _mintAmount) external payable mintCheck(_mintAmount) {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MAX_SUPPLY, "Mint amt exceeds max supply");
        require(supply + _mintAmount > FREE_SUPPLY, "Mint is within free supply. Call free mint.");
        require(msg.value >= cost * _mintAmount, "Insufficient funds");
        
        uint256 senderMintedCount = paidAddressMintedBalance[msg.sender]; 	
        require(senderMintedCount + _mintAmount <= MAX_PAID_PER_WALLET, "Total mints after tx exceeds max mints for this address. Max 5 per paid mint wallet.");	
        paidAddressMintedBalance[msg.sender] += _mintAmount;	

        _doMint(msg.sender, _mintAmount);
    }

    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);
            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }
            currentTokenId++;
        }
        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: TokenID does not exist.");
        
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    //---------------- Only Owner ----------------
    
    function teamReserveMint(uint256 _mintAmount, address _receiver) public onlyOwner {
        uint256 supply = totalSupply();
        require(supply + _mintAmount <= MAX_SUPPLY, "Mint amt exceeds max supply");
        _doMint(_receiver, _mintAmount);
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PAID_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"address","name":"","type":"address"}],"name":"freeAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"","type":"address"}],"name":"paidAddressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"paidMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

660c6f3b40b6c000600b55600c805460ff1916600117905560e06040527386533526090b33cff46c7017db90468f34387ffd6080908152738c6cf26572c05f49559cb57a8da18dce935a105760a05273a38ff0a1dbadab21ad37d3d7618db834ecd8683b60c052620000769060119060036200060c565b5060408051606081018252600a8082526020820181905291810191909152620000a490601290600362000676565b50348015620000b257600080fd5b506040516200329938038062003299833981016040819052620000d59162000763565b60118054806020026020016040519081016040528092919081815260200182805480156200012d57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200010e575b505050505060128054806020026020016040519081016040528092919081815260200182805480156200018057602002820191906000526020600020905b8154815260200190600101908083116200016b575b5050604080518082018252600b81526a546f6f6e4b6e696768747360a81b602080830191825283518085019094526002845261544b60f01b908401528151919550919350620001d4925060009190620006b9565b508051620001ea906001906020840190620006b9565b50505062000207620002016200035360201b60201c565b62000357565b8051825114620002795760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002cc5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000270565b60005b8251811015620003385762000323838281518110620002f257620002f26200083f565b60200260200101518383815181106200030f576200030f6200083f565b6020026020010151620003a960201b60201c565b806200032f816200086b565b915050620002cf565b5050506200034c816200059760201b60201c565b50620008e1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004165760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000270565b60008111620004685760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000270565b6001600160a01b03821660009081526008602052604090205415620004e45760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000270565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b03841690811790915560009081526008602052604090208190556006546200054e90829062000889565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620005f35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000270565b80516200060890600d906020840190620006b9565b5050565b82805482825590600052602060002090810192821562000664579160200282015b828111156200066457825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200062d565b506200067292915062000736565b5090565b82805482825590600052602060002090810192821562000664579160200282015b8281111562000664578251829060ff1690559160200191906001019062000697565b828054620006c790620008a4565b90600052602060002090601f016020900481019282620006eb576000855562000664565b82601f106200070657805160ff191683800117855562000664565b8280016001018555821562000664579182015b828111156200066457825182559160200191906001019062000719565b5b8082111562000672576000815560010162000737565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200077757600080fd5b82516001600160401b03808211156200078f57600080fd5b818501915085601f830112620007a457600080fd5b815181811115620007b957620007b96200074d565b604051601f8201601f19908116603f01168101908382118183101715620007e457620007e46200074d565b816040528281528886848701011115620007fd57600080fd5b600093505b8284101562000821578484018601518185018701529285019262000802565b82841115620008335760008684830101525b98975050505050505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060001982141562000882576200088262000855565b5060010190565b600082198211156200089f576200089f62000855565b500190565b600181811c90821680620008b957607f821691505b60208210811415620008db57634e487b7160e01b600052602260045260246000fd5b50919050565b6129a880620008f16000396000f3fe60806040526004361061024a5760003560e01c80636352211e116101395780639852595c116100b6578063c87b56dd1161007a578063c87b56dd146106f2578063ce7c2ac214610712578063cffb009814610748578063e33b7de314610775578063e985e9c51461078a578063f2fde38b146107d357600080fd5b80639852595c146106515780639858cf1914610687578063a22cb4651461069d578063a6eb27e2146106bd578063b88d4fde146106d257600080fd5b80638462151c116100fd5780638462151c146105b157806385eeab49146105d15780638b83209b146105fe5780638da5cb5b1461061e57806395d89b411461063c57600080fd5b80636352211e1461052957806365cde7331461054957806370a082311461055c578063715018a61461057c5780637c928fe91461059157600080fd5b80632f745c59116101c7578063438b63001161018b578063438b63001461048257806344a0d68a146104af5780634f6ccce7146104cf57806355f804b3146104ef5780635c975abb1461050f57600080fd5b80632f745c591461040257806332cb6b0c146104225780633a98ef39146104385780633e6eaad81461044d57806342842e0e1461046257600080fd5b806313faede61161020e57806313faede61461036957806318160ddd1461038d57806319165587146103a25780631df656b0146103c257806323b872dd146103e257600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063095ea7b31461034957600080fd5b36610293577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612327565b6107f3565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612359565b61081e565b005b3480156102fb57600080fd5b50610304610864565b6040516102c491906123cc565b34801561031d57600080fd5b5061033161032c3660046123df565b6108f6565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed61036436600461240d565b61097e565b34801561037557600080fd5b5061037f600b5481565b6040519081526020016102c4565b34801561039957600080fd5b5060025461037f565b3480156103ae57600080fd5b506102ed6103bd366004612439565b610a94565b3480156103ce57600080fd5b506102ed6103dd366004612456565b610c65565b3480156103ee57600080fd5b506102ed6103fd366004612486565b610d01565b34801561040e57600080fd5b5061037f61041d36600461240d565b610d32565b34801561042e57600080fd5b5061037f6115b381565b34801561044457600080fd5b5060065461037f565b34801561045957600080fd5b5061037f600581565b34801561046e57600080fd5b506102ed61047d366004612486565b610de1565b34801561048e57600080fd5b506104a261049d366004612439565b610dfc565b6040516102c491906124c7565b3480156104bb57600080fd5b506102ed6104ca3660046123df565b610edd565b3480156104db57600080fd5b5061037f6104ea3660046123df565b610f0c565b3480156104fb57600080fd5b506102ed61050a366004612597565b610f69565b34801561051b57600080fd5b50600c546102b89060ff1681565b34801561053557600080fd5b506103316105443660046123df565b610faa565b6102ed6105573660046123df565b611036565b34801561056857600080fd5b5061037f610577366004612439565b611334565b34801561058857600080fd5b506102ed611406565b34801561059d57600080fd5b506102ed6105ac3660046123df565b61143c565b3480156105bd57600080fd5b506104a26105cc366004612439565b611680565b3480156105dd57600080fd5b5061037f6105ec366004612439565b600f6020526000908152604090205481565b34801561060a57600080fd5b506103316106193660046123df565b61174a565b34801561062a57600080fd5b506005546001600160a01b0316610331565b34801561064857600080fd5b5061030461177a565b34801561065d57600080fd5b5061037f61066c366004612439565b6001600160a01b031660009081526009602052604090205490565b34801561069357600080fd5b5061037f6103e881565b3480156106a957600080fd5b506102ed6106b83660046125e0565b611789565b3480156106c957600080fd5b5061037f600281565b3480156106de57600080fd5b506102ed6106ed366004612615565b61184e565b3480156106fe57600080fd5b5061030461070d3660046123df565b611880565b34801561071e57600080fd5b5061037f61072d366004612439565b6001600160a01b031660009081526008602052604090205490565b34801561075457600080fd5b5061037f610763366004612439565b60106020526000908152604090205481565b34801561078157600080fd5b5060075461037f565b34801561079657600080fd5b506102b86107a5366004612695565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107df57600080fd5b506102ed6107ee366004612439565b611943565b60006001600160e01b0319821663780e9d6360e01b14806108185750610818826119de565b92915050565b6005546001600160a01b031633146108515760405162461bcd60e51b8152600401610848906126c3565b60405180910390fd5b600c805460ff1916911515919091179055565b606060008054610873906126f8565b80601f016020809104026020016040519081016040528092919081815260200182805461089f906126f8565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090182611a2e565b6109625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b506000908152600360205260409020546001600160a01b031690565b600061098982610faa565b9050806001600160a01b0316836001600160a01b031614156109f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610848565b336001600160a01b0382161480610a135750610a1381336107a5565b610a855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610848565b610a8f8383611a78565b505050565b6001600160a01b038116600090815260086020526040902054610b085760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610848565b600060075447610b189190612749565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610b4f9085612761565b610b599190612796565b610b6391906127aa565b905080610bc65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610848565b6001600160a01b038316600090815260096020526040902054610bea908290612749565b6001600160a01b038416600090815260096020526040902055600754610c11908290612749565b600755610c1e8382611ae6565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610c8f5760405162461bcd60e51b8152600401610848906126c3565b6000610c9a60025490565b90506115b3610ca98483612749565b1115610cf75760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c7900000000006044820152606401610848565b610a8f8284611bff565b610d0b3382611c3c565b610d275760405162461bcd60e51b8152600401610848906127c1565b610a8f838383611d26565b6000610d3d83611334565b8210610d5b5760405162461bcd60e51b815260040161084890612812565b6000805b600254811015610dc85760028181548110610d7c57610d7c612842565b6000918252602090912001546001600160a01b0386811691161415610db85783821415610dac5791506108189050565b610db582612858565b91505b610dc181612858565b9050610d5f565b5060405162461bcd60e51b815260040161084890612812565b610a8f8383836040518060200160405280600081525061184e565b60606000610e0983611334565b905060008167ffffffffffffffff811115610e2657610e2661250b565b604051908082528060200260200182016040528015610e4f578160200160208202803683370190505b509050600160005b8381108015610e6857506115b38211155b15610ed3576000610e7883610faa565b9050866001600160a01b0316816001600160a01b03161415610ec05782848381518110610ea757610ea7612842565b602090810291909101015281610ebc81612858565b9250505b82610eca81612858565b93505050610e57565b5090949350505050565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610848906126c3565b600b55565b6000610f1760025490565b8210610f655760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610848565b5090565b6005546001600160a01b03163314610f935760405162461bcd60e51b8152600401610848906126c3565b8051610fa690600d906020840190612281565b5050565b60008060028381548110610fc057610fc0612842565b6000918252602090912001546001600160a01b03169050806108185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610848565b600c54819060ff161561108b5760405162461bcd60e51b815260206004820152601c60248201527f53616c652069732063757272656e746c79206e6f7420616374697665000000006044820152606401610848565b600081116110db5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e2030006044820152606401610848565b33321461112a5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c6574000000006044820152606401610848565b600061113560025490565b90506115b36111448483612749565b11156111925760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c7900000000006044820152606401610848565b6103e861119f8483612749565b116112005760405162461bcd60e51b815260206004820152602b60248201527f4d696e742069732077697468696e206672656520737570706c792e2043616c6c60448201526a10333932b29036b4b73a1760a91b6064820152608401610848565b82600b5461120e9190612761565b3410156112525760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610848565b33600090815260106020526040902054600561126e8583612749565b11156112ff5760405162461bcd60e51b815260206004820152605460248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d61782035207060648201527332b9103830b4b21036b4b73a103bb0b63632ba1760611b608482015260a401610848565b336000908152601060205260408120805486929061131e908490612749565b9091555061132e90503385611bff565b50505050565b60006001600160a01b03821661139f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610848565b600254600090815b818110156113fd57600281815481106113c2576113c2612842565b6000918252602090912001546001600160a01b03868116911614156113ed576113ea83612858565b92505b6113f681612858565b90506113a7565b50909392505050565b6005546001600160a01b031633146114305760405162461bcd60e51b8152600401610848906126c3565b61143a6000611e7c565b565b600c54819060ff16156114915760405162461bcd60e51b815260206004820152601c60248201527f53616c652069732063757272656e746c79206e6f7420616374697665000000006044820152606401610848565b600081116114e15760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e2030006044820152606401610848565b3332146115305760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c6574000000006044820152606401610848565b600061153b60025490565b90506103e861154a8483612749565b11156115d15760405162461bcd60e51b815260206004820152604a60248201527f4d696e7420616d742065786365656473206d6178206672656520737570706c7960448201527f2e205265667265736820616e642074727920616761696e206f722063616c6c206064820152692830b4b21026b4b73a1760b11b608482015260a401610848565b336000908152600f602052604090205460026115ed8583612749565b11156116615760405162461bcd60e51b815260206004820152603760248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e74732066726565206d696e742077616c6c65740000000000000000006064820152608401610848565b336000908152600f60205260408120805486929061131e908490612749565b606061168b82611334565b6000106116aa5760405162461bcd60e51b815260040161084890612812565b60006116b583611334565b905060008167ffffffffffffffff8111156116d2576116d261250b565b6040519080825280602002602001820160405280156116fb578160200160208202803683370190505b50905060005b82811015611742576117138582610d32565b82828151811061172557611725612842565b60209081029190910101528061173a81612858565b915050611701565b509392505050565b6000600a828154811061175f5761175f612842565b6000918252602090912001546001600160a01b031692915050565b606060018054610873906126f8565b6001600160a01b0382163314156117e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610848565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118583383611c3c565b6118745760405162461bcd60e51b8152600401610848906127c1565b61132e84848484611ece565b606061188b82611a2e565b6118e75760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b6064820152608401610848565b60006118f1611f01565b90506000815111611911576040518060200160405280600081525061193c565b8061191b84611f10565b60405160200161192c929190612873565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461196d5760405162461bcd60e51b8152600401610848906126c3565b6001600160a01b0381166119d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610848565b6119db81611e7c565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a0f57506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b0319831614610818565b60025460009082108015610818575060006001600160a01b031660028381548110611a5b57611a5b612842565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aad82610faa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611b365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610848565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b83576040519150601f19603f3d011682016040523d82523d6000602084013e611b88565b606091505b5050905080610a8f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610848565b6000611c0a60025490565b905060005b8281101561132e57611c2a84611c258385612749565b61200e565b80611c3481612858565b915050611c0f565b6000611c4782611a2e565b611ca85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b6000611cb383610faa565b9050806001600160a01b0316846001600160a01b03161480611cee5750836001600160a01b0316611ce3846108f6565b6001600160a01b0316145b80611d1e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d3982610faa565b6001600160a01b031614611da15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610848565b6001600160a01b038216611e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610848565b611e0e600082611a78565b8160028281548110611e2257611e22612842565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ed9848484611d26565b611ee584848484612028565b61132e5760405162461bcd60e51b8152600401610848906128b2565b6060600d8054610873906126f8565b606081611f345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f5e5780611f4881612858565b9150611f579050600a83612796565b9150611f38565b60008167ffffffffffffffff811115611f7957611f7961250b565b6040519080825280601f01601f191660200182016040528015611fa3576020820181803683370190505b5090505b8415611d1e57611fb86001836127aa565b9150611fc5600a86612904565b611fd0906030612749565b60f81b818381518110611fe557611fe5612842565b60200101906001600160f81b031916908160001a905350612007600a86612796565b9450611fa7565b610fa6828260405180602001604052806000815250612126565b60006001600160a01b0384163b1561211b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206c903390899088908890600401612918565b6020604051808303816000875af19250505080156120a7575060408051601f3d908101601f191682019092526120a491810190612955565b60015b612101573d8080156120d5576040519150601f19603f3d011682016040523d82523d6000602084013e6120da565b606091505b5080516120f95760405162461bcd60e51b8152600401610848906128b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d1e565b506001949350505050565b6121308383612159565b61213d6000848484612028565b610a8f5760405162461bcd60e51b8152600401610848906128b2565b6001600160a01b0382166121af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610848565b6121b881611a2e565b156122055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610848565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228d906126f8565b90600052602060002090601f0160209004810192826122af57600085556122f5565b82601f106122c857805160ff19168380011785556122f5565b828001600101855582156122f5579182015b828111156122f55782518255916020019190600101906122da565b50610f659291505b80821115610f6557600081556001016122fd565b6001600160e01b0319811681146119db57600080fd5b60006020828403121561233957600080fd5b813561193c81612311565b8035801515811461235457600080fd5b919050565b60006020828403121561236b57600080fd5b61193c82612344565b60005b8381101561238f578181015183820152602001612377565b8381111561132e5750506000910152565b600081518084526123b8816020860160208601612374565b601f01601f19169290920160200192915050565b60208152600061193c60208301846123a0565b6000602082840312156123f157600080fd5b5035919050565b6001600160a01b03811681146119db57600080fd5b6000806040838503121561242057600080fd5b823561242b816123f8565b946020939093013593505050565b60006020828403121561244b57600080fd5b813561193c816123f8565b6000806040838503121561246957600080fd5b82359150602083013561247b816123f8565b809150509250929050565b60008060006060848603121561249b57600080fd5b83356124a6816123f8565b925060208401356124b6816123f8565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156124ff578351835292840192918401916001016124e3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561253c5761253c61250b565b604051601f8501601f19908116603f011681019082821181831017156125645761256461250b565b8160405280935085815286868601111561257d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125a957600080fd5b813567ffffffffffffffff8111156125c057600080fd5b8201601f810184136125d157600080fd5b611d1e84823560208401612521565b600080604083850312156125f357600080fd5b82356125fe816123f8565b915061260c60208401612344565b90509250929050565b6000806000806080858703121561262b57600080fd5b8435612636816123f8565b93506020850135612646816123f8565b925060408501359150606085013567ffffffffffffffff81111561266957600080fd5b8501601f8101871361267a57600080fd5b61268987823560208401612521565b91505092959194509250565b600080604083850312156126a857600080fd5b82356126b3816123f8565b9150602083013561247b816123f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061270c57607f821691505b6020821081141561272d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561275c5761275c612733565b500190565b600081600019048311821515161561277b5761277b612733565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127a5576127a5612780565b500490565b6000828210156127bc576127bc612733565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561286c5761286c612733565b5060010190565b60008351612885818460208801612374565b835190830190612899818360208801612374565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261291357612913612780565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294b908301846123a0565b9695505050505050565b60006020828403121561296757600080fd5b815161193c8161231156fea26469706673582212202bcb91e54960255dc4bb361291c67fae16f21be55207f072651ca2ceed15a17b64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046173646600000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061024a5760003560e01c80636352211e116101395780639852595c116100b6578063c87b56dd1161007a578063c87b56dd146106f2578063ce7c2ac214610712578063cffb009814610748578063e33b7de314610775578063e985e9c51461078a578063f2fde38b146107d357600080fd5b80639852595c146106515780639858cf1914610687578063a22cb4651461069d578063a6eb27e2146106bd578063b88d4fde146106d257600080fd5b80638462151c116100fd5780638462151c146105b157806385eeab49146105d15780638b83209b146105fe5780638da5cb5b1461061e57806395d89b411461063c57600080fd5b80636352211e1461052957806365cde7331461054957806370a082311461055c578063715018a61461057c5780637c928fe91461059157600080fd5b80632f745c59116101c7578063438b63001161018b578063438b63001461048257806344a0d68a146104af5780634f6ccce7146104cf57806355f804b3146104ef5780635c975abb1461050f57600080fd5b80632f745c591461040257806332cb6b0c146104225780633a98ef39146104385780633e6eaad81461044d57806342842e0e1461046257600080fd5b806313faede61161020e57806313faede61461036957806318160ddd1461038d57806319165587146103a25780631df656b0146103c257806323b872dd146103e257600080fd5b806301ffc9a71461029857806302329a29146102cd57806306fdde03146102ef578063081812fc14610311578063095ea7b31461034957600080fd5b36610293577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102a457600080fd5b506102b86102b3366004612327565b6107f3565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102ed6102e8366004612359565b61081e565b005b3480156102fb57600080fd5b50610304610864565b6040516102c491906123cc565b34801561031d57600080fd5b5061033161032c3660046123df565b6108f6565b6040516001600160a01b0390911681526020016102c4565b34801561035557600080fd5b506102ed61036436600461240d565b61097e565b34801561037557600080fd5b5061037f600b5481565b6040519081526020016102c4565b34801561039957600080fd5b5060025461037f565b3480156103ae57600080fd5b506102ed6103bd366004612439565b610a94565b3480156103ce57600080fd5b506102ed6103dd366004612456565b610c65565b3480156103ee57600080fd5b506102ed6103fd366004612486565b610d01565b34801561040e57600080fd5b5061037f61041d36600461240d565b610d32565b34801561042e57600080fd5b5061037f6115b381565b34801561044457600080fd5b5060065461037f565b34801561045957600080fd5b5061037f600581565b34801561046e57600080fd5b506102ed61047d366004612486565b610de1565b34801561048e57600080fd5b506104a261049d366004612439565b610dfc565b6040516102c491906124c7565b3480156104bb57600080fd5b506102ed6104ca3660046123df565b610edd565b3480156104db57600080fd5b5061037f6104ea3660046123df565b610f0c565b3480156104fb57600080fd5b506102ed61050a366004612597565b610f69565b34801561051b57600080fd5b50600c546102b89060ff1681565b34801561053557600080fd5b506103316105443660046123df565b610faa565b6102ed6105573660046123df565b611036565b34801561056857600080fd5b5061037f610577366004612439565b611334565b34801561058857600080fd5b506102ed611406565b34801561059d57600080fd5b506102ed6105ac3660046123df565b61143c565b3480156105bd57600080fd5b506104a26105cc366004612439565b611680565b3480156105dd57600080fd5b5061037f6105ec366004612439565b600f6020526000908152604090205481565b34801561060a57600080fd5b506103316106193660046123df565b61174a565b34801561062a57600080fd5b506005546001600160a01b0316610331565b34801561064857600080fd5b5061030461177a565b34801561065d57600080fd5b5061037f61066c366004612439565b6001600160a01b031660009081526009602052604090205490565b34801561069357600080fd5b5061037f6103e881565b3480156106a957600080fd5b506102ed6106b83660046125e0565b611789565b3480156106c957600080fd5b5061037f600281565b3480156106de57600080fd5b506102ed6106ed366004612615565b61184e565b3480156106fe57600080fd5b5061030461070d3660046123df565b611880565b34801561071e57600080fd5b5061037f61072d366004612439565b6001600160a01b031660009081526008602052604090205490565b34801561075457600080fd5b5061037f610763366004612439565b60106020526000908152604090205481565b34801561078157600080fd5b5060075461037f565b34801561079657600080fd5b506102b86107a5366004612695565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156107df57600080fd5b506102ed6107ee366004612439565b611943565b60006001600160e01b0319821663780e9d6360e01b14806108185750610818826119de565b92915050565b6005546001600160a01b031633146108515760405162461bcd60e51b8152600401610848906126c3565b60405180910390fd5b600c805460ff1916911515919091179055565b606060008054610873906126f8565b80601f016020809104026020016040519081016040528092919081815260200182805461089f906126f8565b80156108ec5780601f106108c1576101008083540402835291602001916108ec565b820191906000526020600020905b8154815290600101906020018083116108cf57829003601f168201915b5050505050905090565b600061090182611a2e565b6109625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b506000908152600360205260409020546001600160a01b031690565b600061098982610faa565b9050806001600160a01b0316836001600160a01b031614156109f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610848565b336001600160a01b0382161480610a135750610a1381336107a5565b610a855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610848565b610a8f8383611a78565b505050565b6001600160a01b038116600090815260086020526040902054610b085760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610848565b600060075447610b189190612749565b6001600160a01b0383166000908152600960209081526040808320546006546008909352908320549394509192610b4f9085612761565b610b599190612796565b610b6391906127aa565b905080610bc65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610848565b6001600160a01b038316600090815260096020526040902054610bea908290612749565b6001600160a01b038416600090815260096020526040902055600754610c11908290612749565b600755610c1e8382611ae6565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6005546001600160a01b03163314610c8f5760405162461bcd60e51b8152600401610848906126c3565b6000610c9a60025490565b90506115b3610ca98483612749565b1115610cf75760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c7900000000006044820152606401610848565b610a8f8284611bff565b610d0b3382611c3c565b610d275760405162461bcd60e51b8152600401610848906127c1565b610a8f838383611d26565b6000610d3d83611334565b8210610d5b5760405162461bcd60e51b815260040161084890612812565b6000805b600254811015610dc85760028181548110610d7c57610d7c612842565b6000918252602090912001546001600160a01b0386811691161415610db85783821415610dac5791506108189050565b610db582612858565b91505b610dc181612858565b9050610d5f565b5060405162461bcd60e51b815260040161084890612812565b610a8f8383836040518060200160405280600081525061184e565b60606000610e0983611334565b905060008167ffffffffffffffff811115610e2657610e2661250b565b604051908082528060200260200182016040528015610e4f578160200160208202803683370190505b509050600160005b8381108015610e6857506115b38211155b15610ed3576000610e7883610faa565b9050866001600160a01b0316816001600160a01b03161415610ec05782848381518110610ea757610ea7612842565b602090810291909101015281610ebc81612858565b9250505b82610eca81612858565b93505050610e57565b5090949350505050565b6005546001600160a01b03163314610f075760405162461bcd60e51b8152600401610848906126c3565b600b55565b6000610f1760025490565b8210610f655760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610848565b5090565b6005546001600160a01b03163314610f935760405162461bcd60e51b8152600401610848906126c3565b8051610fa690600d906020840190612281565b5050565b60008060028381548110610fc057610fc0612842565b6000918252602090912001546001600160a01b03169050806108185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610848565b600c54819060ff161561108b5760405162461bcd60e51b815260206004820152601c60248201527f53616c652069732063757272656e746c79206e6f7420616374697665000000006044820152606401610848565b600081116110db5760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e2030006044820152606401610848565b33321461112a5760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c6574000000006044820152606401610848565b600061113560025490565b90506115b36111448483612749565b11156111925760405162461bcd60e51b815260206004820152601b60248201527f4d696e7420616d742065786365656473206d617820737570706c7900000000006044820152606401610848565b6103e861119f8483612749565b116112005760405162461bcd60e51b815260206004820152602b60248201527f4d696e742069732077697468696e206672656520737570706c792e2043616c6c60448201526a10333932b29036b4b73a1760a91b6064820152608401610848565b82600b5461120e9190612761565b3410156112525760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610848565b33600090815260106020526040902054600561126e8583612749565b11156112ff5760405162461bcd60e51b815260206004820152605460248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e747320666f72207468697320616464726573732e204d61782035207060648201527332b9103830b4b21036b4b73a103bb0b63632ba1760611b608482015260a401610848565b336000908152601060205260408120805486929061131e908490612749565b9091555061132e90503385611bff565b50505050565b60006001600160a01b03821661139f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610848565b600254600090815b818110156113fd57600281815481106113c2576113c2612842565b6000918252602090912001546001600160a01b03868116911614156113ed576113ea83612858565b92505b6113f681612858565b90506113a7565b50909392505050565b6005546001600160a01b031633146114305760405162461bcd60e51b8152600401610848906126c3565b61143a6000611e7c565b565b600c54819060ff16156114915760405162461bcd60e51b815260206004820152601c60248201527f53616c652069732063757272656e746c79206e6f7420616374697665000000006044820152606401610848565b600081116114e15760405162461bcd60e51b815260206004820152601f60248201527f4d696e7420616d74206d7573742062652067726561746572207468616e2030006044820152606401610848565b3332146115305760405162461bcd60e51b815260206004820152601c60248201527f53656e646572206d757374206265206f726967696e2077616c6c6574000000006044820152606401610848565b600061153b60025490565b90506103e861154a8483612749565b11156115d15760405162461bcd60e51b815260206004820152604a60248201527f4d696e7420616d742065786365656473206d6178206672656520737570706c7960448201527f2e205265667265736820616e642074727920616761696e206f722063616c6c206064820152692830b4b21026b4b73a1760b11b608482015260a401610848565b336000908152600f602052604090205460026115ed8583612749565b11156116615760405162461bcd60e51b815260206004820152603760248201527f546f74616c206d696e74732061667465722074782065786365656473206d617860448201527f206d696e74732066726565206d696e742077616c6c65740000000000000000006064820152608401610848565b336000908152600f60205260408120805486929061131e908490612749565b606061168b82611334565b6000106116aa5760405162461bcd60e51b815260040161084890612812565b60006116b583611334565b905060008167ffffffffffffffff8111156116d2576116d261250b565b6040519080825280602002602001820160405280156116fb578160200160208202803683370190505b50905060005b82811015611742576117138582610d32565b82828151811061172557611725612842565b60209081029190910101528061173a81612858565b915050611701565b509392505050565b6000600a828154811061175f5761175f612842565b6000918252602090912001546001600160a01b031692915050565b606060018054610873906126f8565b6001600160a01b0382163314156117e25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610848565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6118583383611c3c565b6118745760405162461bcd60e51b8152600401610848906127c1565b61132e84848484611ece565b606061188b82611a2e565b6118e75760405162461bcd60e51b815260206004820152602760248201527f4552433732314d657461646174613a20546f6b656e494420646f6573206e6f746044820152661032bc34b9ba1760c91b6064820152608401610848565b60006118f1611f01565b90506000815111611911576040518060200160405280600081525061193c565b8061191b84611f10565b60405160200161192c929190612873565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461196d5760405162461bcd60e51b8152600401610848906126c3565b6001600160a01b0381166119d25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610848565b6119db81611e7c565b50565b60006001600160e01b031982166380ac58cd60e01b1480611a0f57506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b0319831614610818565b60025460009082108015610818575060006001600160a01b031660028381548110611a5b57611a5b612842565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611aad82610faa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015611b365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610848565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611b83576040519150601f19603f3d011682016040523d82523d6000602084013e611b88565b606091505b5050905080610a8f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610848565b6000611c0a60025490565b905060005b8281101561132e57611c2a84611c258385612749565b61200e565b80611c3481612858565b915050611c0f565b6000611c4782611a2e565b611ca85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b6000611cb383610faa565b9050806001600160a01b0316846001600160a01b03161480611cee5750836001600160a01b0316611ce3846108f6565b6001600160a01b0316145b80611d1e57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d3982610faa565b6001600160a01b031614611da15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610848565b6001600160a01b038216611e035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610848565b611e0e600082611a78565b8160028281548110611e2257611e22612842565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ed9848484611d26565b611ee584848484612028565b61132e5760405162461bcd60e51b8152600401610848906128b2565b6060600d8054610873906126f8565b606081611f345750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f5e5780611f4881612858565b9150611f579050600a83612796565b9150611f38565b60008167ffffffffffffffff811115611f7957611f7961250b565b6040519080825280601f01601f191660200182016040528015611fa3576020820181803683370190505b5090505b8415611d1e57611fb86001836127aa565b9150611fc5600a86612904565b611fd0906030612749565b60f81b818381518110611fe557611fe5612842565b60200101906001600160f81b031916908160001a905350612007600a86612796565b9450611fa7565b610fa6828260405180602001604052806000815250612126565b60006001600160a01b0384163b1561211b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206c903390899088908890600401612918565b6020604051808303816000875af19250505080156120a7575060408051601f3d908101601f191682019092526120a491810190612955565b60015b612101573d8080156120d5576040519150601f19603f3d011682016040523d82523d6000602084013e6120da565b606091505b5080516120f95760405162461bcd60e51b8152600401610848906128b2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d1e565b506001949350505050565b6121308383612159565b61213d6000848484612028565b610a8f5760405162461bcd60e51b8152600401610848906128b2565b6001600160a01b0382166121af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610848565b6121b881611a2e565b156122055760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610848565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461228d906126f8565b90600052602060002090601f0160209004810192826122af57600085556122f5565b82601f106122c857805160ff19168380011785556122f5565b828001600101855582156122f5579182015b828111156122f55782518255916020019190600101906122da565b50610f659291505b80821115610f6557600081556001016122fd565b6001600160e01b0319811681146119db57600080fd5b60006020828403121561233957600080fd5b813561193c81612311565b8035801515811461235457600080fd5b919050565b60006020828403121561236b57600080fd5b61193c82612344565b60005b8381101561238f578181015183820152602001612377565b8381111561132e5750506000910152565b600081518084526123b8816020860160208601612374565b601f01601f19169290920160200192915050565b60208152600061193c60208301846123a0565b6000602082840312156123f157600080fd5b5035919050565b6001600160a01b03811681146119db57600080fd5b6000806040838503121561242057600080fd5b823561242b816123f8565b946020939093013593505050565b60006020828403121561244b57600080fd5b813561193c816123f8565b6000806040838503121561246957600080fd5b82359150602083013561247b816123f8565b809150509250929050565b60008060006060848603121561249b57600080fd5b83356124a6816123f8565b925060208401356124b6816123f8565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b818110156124ff578351835292840192918401916001016124e3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561253c5761253c61250b565b604051601f8501601f19908116603f011681019082821181831017156125645761256461250b565b8160405280935085815286868601111561257d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156125a957600080fd5b813567ffffffffffffffff8111156125c057600080fd5b8201601f810184136125d157600080fd5b611d1e84823560208401612521565b600080604083850312156125f357600080fd5b82356125fe816123f8565b915061260c60208401612344565b90509250929050565b6000806000806080858703121561262b57600080fd5b8435612636816123f8565b93506020850135612646816123f8565b925060408501359150606085013567ffffffffffffffff81111561266957600080fd5b8501601f8101871361267a57600080fd5b61268987823560208401612521565b91505092959194509250565b600080604083850312156126a857600080fd5b82356126b3816123f8565b9150602083013561247b816123f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061270c57607f821691505b6020821081141561272d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561275c5761275c612733565b500190565b600081600019048311821515161561277b5761277b612733565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826127a5576127a5612780565b500490565b6000828210156127bc576127bc612733565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561286c5761286c612733565b5060010190565b60008351612885818460208801612374565b835190830190612899818360208801612374565b64173539b7b760d91b9101908152600501949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261291357612913612780565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061294b908301846123a0565b9695505050505050565b60006020828403121561296757600080fd5b815161193c8161231156fea26469706673582212202bcb91e54960255dc4bb361291c67fae16f21be55207f072651ca2ceed15a17b64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000046173646600000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): asdf

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 6173646600000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38373:4759:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25100:40;734:10;25100:40;;;-1:-1:-1;;;;;206:32:1;;;188:51;;25130:9:0;270:2:1;255:18;;248:34;161:18;25100:40:0;;;;;;;38373:4759;;;;;18502:301;;;;;;;;;;-1:-1:-1;18502:301:0;;;;;:::i;:::-;;:::i;:::-;;;844:14:1;;837:22;819:41;;807:2;792:18;18502:301:0;;;;;;;;43050:79;;;;;;;;;;-1:-1:-1;43050:79:0;;;;;:::i;:::-;;:::i;:::-;;12067:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;12707:308::-;;;;;;;;;;-1:-1:-1;12707:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2321:32:1;;;2303:51;;2291:2;2276:18;12707:308:0;2157:203:1;12287:412:0;;;;;;;;;;-1:-1:-1;12287:412:0;;;;;:::i;:::-;;:::i;38687:34::-;;;;;;;;;;;;;;;;;;;2967:25:1;;;2955:2;2940:18;38687:34:0;2821:177:1;19781:110:0;;;;;;;;;;-1:-1:-1;19869:7:0;:14;19781:110;;26306:639;;;;;;;;;;-1:-1:-1;26306:639:0;;;;;:::i;:::-;;:::i;42578:258::-;;;;;;;;;;-1:-1:-1;42578:258:0;;;;;:::i;:::-;;:::i;13580:376::-;;;;;;;;;;-1:-1:-1;13580:376:0;;;;;:::i;:::-;;:::i;18811:504::-;;;;;;;;;;-1:-1:-1;18811:504:0;;;;;:::i;:::-;;:::i;38475:41::-;;;;;;;;;;;;38512:4;38475:41;;25231:91;;;;;;;;;;-1:-1:-1;25302:12:0;;25231:91;;38631:47;;;;;;;;;;;;38677:1;38631:47;;13964:185;;;;;;;;;;-1:-1:-1;13964:185:0;;;;;:::i;:::-;;:::i;41457:680::-;;;;;;;;;;-1:-1:-1;41457:680:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;42956:86::-;;;;;;;;;;-1:-1:-1;42956:86:0;;;;;:::i;:::-;;:::i;19899:244::-;;;;;;;;;;-1:-1:-1;19899:244:0;;;;;:::i;:::-;;:::i;42844:104::-;;;;;;;;;;-1:-1:-1;42844:104:0;;;;;:::i;:::-;;:::i;38728:25::-;;;;;;;;;;-1:-1:-1;38728:25:0;;;;;;;;11733:326;;;;;;;;;;-1:-1:-1;11733:326:0;;;;;:::i;:::-;;:::i;40704:745::-;;;;;;:::i;:::-;;:::i;11207:518::-;;;;;;;;;;-1:-1:-1;11207:518:0;;;;;:::i;:::-;;:::i;21816:94::-;;;;;;;;;;;;;:::i;40105:591::-;;;;;;;;;;-1:-1:-1;40105:591:0;;;;;:::i;:::-;;:::i;19323:450::-;;;;;;;;;;-1:-1:-1;19323:450:0;;;;;:::i;:::-;;:::i;38810:59::-;;;;;;;;;;-1:-1:-1;38810:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;26006:100;;;;;;;;;;-1:-1:-1;26006:100:0;;;;;:::i;:::-;;:::i;21165:87::-;;;;;;;;;;-1:-1:-1;21238:6:0;;-1:-1:-1;;;;;21238:6:0;21165:87;;12175:104;;;;;;;;;;;;;:::i;25806:109::-;;;;;;;;;;-1:-1:-1;25806:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;25889:18:0;25862:7;25889:18;;;:9;:18;;;;;;;25806:109;38523:42;;;;;;;;;;;;38561:4;38523:42;;13023:327;;;;;;;;;;-1:-1:-1;13023:327:0;;;;;:::i;:::-;;:::i;38572:52::-;;;;;;;;;;;;38623:1;38572:52;;14157:365;;;;;;;;;;-1:-1:-1;14157:365:0;;;;;:::i;:::-;;:::i;42145:367::-;;;;;;;;;;-1:-1:-1;42145:367:0;;;;;:::i;:::-;;:::i;25602:105::-;;;;;;;;;;-1:-1:-1;25602:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;25683:16:0;25656:7;25683:16;;;:7;:16;;;;;;;25602:105;38876:59;;;;;;;;;;-1:-1:-1;38876:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;25416:95;;;;;;;;;;-1:-1:-1;25489:14:0;;25416:95;;13358:214;;;;;;;;;;-1:-1:-1;13358:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13358:214;22065:229;;;;;;;;;;-1:-1:-1;22065:229:0;;;;;:::i;:::-;;:::i;18502:301::-;18650:4;-1:-1:-1;;;;;;18692:50:0;;-1:-1:-1;;;18692:50:0;;:103;;;18759:36;18783:11;18759:23;:36::i;:::-;18672:123;18502:301;-1:-1:-1;;18502:301:0:o;43050:79::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;;;;;;;;;43106:6:::1;:15:::0;;-1:-1:-1;;43106:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43050:79::o;12067:100::-;12121:13;12154:5;12147:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12067:100;:::o;12707:308::-;12828:7;12875:16;12883:7;12875;:16::i;:::-;12853:110;;;;-1:-1:-1;;;12853:110:0;;8619:2:1;12853:110:0;;;8601:21:1;8658:2;8638:18;;;8631:30;8697:34;8677:18;;;8670:62;-1:-1:-1;;;8748:18:1;;;8741:42;8800:19;;12853:110:0;8417:408:1;12853:110:0;-1:-1:-1;12983:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12983:24:0;;12707:308::o;12287:412::-;12368:13;12384:24;12400:7;12384:15;:24::i;:::-;12368:40;;12433:5;-1:-1:-1;;;;;12427:11:0;:2;-1:-1:-1;;;;;12427:11:0;;;12419:57;;;;-1:-1:-1;;;12419:57:0;;9032:2:1;12419:57:0;;;9014:21:1;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;-1:-1:-1;;;9161:18:1;;;9154:31;9202:19;;12419:57:0;8830:397:1;12419:57:0;734:10;-1:-1:-1;;;;;12511:21:0;;;;:62;;-1:-1:-1;12536:37:0;12553:5;734:10;13358:214;:::i;12536:37::-;12489:168;;;;-1:-1:-1;;;12489:168:0;;9434:2:1;12489:168:0;;;9416:21:1;9473:2;9453:18;;;9446:30;9512:34;9492:18;;;9485:62;9583:26;9563:18;;;9556:54;9627:19;;12489:168:0;9232:420:1;12489:168:0;12670:21;12679:2;12683:7;12670:8;:21::i;:::-;12357:342;12287:412;;:::o;26306:639::-;-1:-1:-1;;;;;26382:16:0;;26401:1;26382:16;;;:7;:16;;;;;;26374:71;;;;-1:-1:-1;;;26374:71:0;;9859:2:1;26374:71:0;;;9841:21:1;9898:2;9878:18;;;9871:30;9937:34;9917:18;;;9910:62;-1:-1:-1;;;9988:18:1;;;9981:36;10034:19;;26374:71:0;9657:402:1;26374:71:0;26458:21;26506:14;;26482:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;26627:18:0;;26531:15;26627:18;;;:9;:18;;;;;;;;;26599:12;;26566:7;:16;;;;;;;26458:62;;-1:-1:-1;26531:15:0;;26550:32;;26458:62;26550:32;:::i;:::-;26549:62;;;;:::i;:::-;:96;;;;:::i;:::-;26531:114;-1:-1:-1;26666:12:0;26658:68;;;;-1:-1:-1;;;26658:68:0;;11091:2:1;26658:68:0;;;11073:21:1;11130:2;11110:18;;;11103:30;11169:34;11149:18;;;11142:62;-1:-1:-1;;;11220:18:1;;;11213:41;11271:19;;26658:68:0;10889:407:1;26658:68:0;-1:-1:-1;;;;;26760:18:0;;;;;;:9;:18;;;;;;:28;;26781:7;;26760:28;:::i;:::-;-1:-1:-1;;;;;26739:18:0;;;;;;:9;:18;;;;;:49;26816:14;;:24;;26833:7;;26816:24;:::i;:::-;26799:14;:41;26853:35;26871:7;26880;26853:17;:35::i;:::-;26904:33;;;-1:-1:-1;;;;;206:32:1;;188:51;;270:2;255:18;;248:34;;;26904:33:0;;161:18:1;26904:33:0;;;;;;;26363:582;;26306:639;:::o;42578:258::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;42671:14:::1;42688:13;19869:7:::0;:14;;19781:110;42688:13:::1;42671:30:::0;-1:-1:-1;38512:4:0::1;42720:20;42729:11:::0;42671:30;42720:20:::1;:::i;:::-;:34;;42712:74;;;::::0;-1:-1:-1;;;42712:74:0;;11790:2:1;42712:74:0::1;::::0;::::1;11772:21:1::0;11829:2;11809:18;;;11802:30;11868:29;11848:18;;;11841:57;11915:18;;42712:74:0::1;11588:351:1::0;42712:74:0::1;42797:31;42805:9;42816:11;42797:7;:31::i;13580:376::-:0;13789:41;734:10;13822:7;13789:18;:41::i;:::-;13767:140;;;;-1:-1:-1;;;13767:140:0;;;;;;;:::i;:::-;13920:28;13930:4;13936:2;13940:7;13920:9;:28::i;18811:504::-;18936:15;18985:24;19003:5;18985:17;:24::i;:::-;18977:5;:32;18969:67;;;;-1:-1:-1;;;18969:67:0;;;;;;;:::i;:::-;19047:13;19076:9;19071:186;19091:7;:14;19087:18;;19071:186;;;19140:7;19148:1;19140:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;19131:19:0;;;19140:10;;19131:19;19127:119;;;19184:5;19175;:14;19171:59;;;19198:1;-1:-1:-1;19191:8:0;;-1:-1:-1;19191:8:0;19171:59;19223:7;;;:::i;:::-;;;19171:59;19107:3;;;:::i;:::-;;;19071:186;;;-1:-1:-1;19267:40:0;;-1:-1:-1;;;19267:40:0;;;;;;;:::i;13964:185::-;14102:39;14119:4;14125:2;14129:7;14102:39;;;;;;;;;;;;:16;:39::i;41457:680::-;41517:16;41546:23;41572:17;41582:6;41572:9;:17::i;:::-;41546:43;;41600:30;41647:15;41633:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41633:30:0;-1:-1:-1;41600:63:0;-1:-1:-1;41699:1:0;41674:22;41751:348;41776:15;41758;:33;:65;;;;;38512:4;41795:14;:28;;41758:65;41751:348;;;41840:25;41868:23;41876:14;41868:7;:23::i;:::-;41840:51;;41931:6;-1:-1:-1;;;;;41910:27:0;:17;-1:-1:-1;;;;;41910:27:0;;41906:151;;;41991:14;41958:13;41972:15;41958:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;42024:17;;;;:::i;:::-;;;;41906:151;42071:16;;;;:::i;:::-;;;;41825:274;41751:348;;;-1:-1:-1;42116:13:0;;41457:680;-1:-1:-1;;;;41457:680:0:o;42956:86::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;43019:4:::1;:15:::0;42956:86::o;19899:244::-;20019:7;20060:24;19869:7;:14;;19781:110;20060:24;20052:5;:32;20044:68;;;;-1:-1:-1;;;20044:68:0;;13187:2:1;20044:68:0;;;13169:21:1;13226:2;13206:18;;;13199:30;13265:25;13245:18;;;13238:53;13308:18;;20044:68:0;12985:347:1;20044:68:0;-1:-1:-1;20130:5:0;19899:244::o;42844:104::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;42919:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42844:104:::0;:::o;11733:326::-;11850:7;11875:13;11891:7;11899;11891:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11891:16:0;;-1:-1:-1;11940:19:0;11918:110;;;;-1:-1:-1;;;11918:110:0;;13539:2:1;11918:110:0;;;13521:21:1;13578:2;13558:18;;;13551:30;13617:34;13597:18;;;13590:62;-1:-1:-1;;;13668:18:1;;;13661:39;13717:19;;11918:110:0;13337:405:1;40704:745:0;39441:6;;40770:11;;39441:6;;39440:7;39432:48;;;;-1:-1:-1;;;39432:48:0;;13949:2:1;39432:48:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027;14007:18;;;14000:58;14075:18;;39432:48:0;13747:352:1;39432:48:0;39513:1;39499:11;:15;39491:59;;;;-1:-1:-1;;;39491:59:0;;14306:2:1;39491:59:0;;;14288:21:1;14345:2;14325:18;;;14318:30;14384:33;14364:18;;;14357:61;14435:18;;39491:59:0;14104:355:1;39491:59:0;39569:10;39583:9;39569:23;39561:64;;;;-1:-1:-1;;;39561:64:0;;14666:2:1;39561:64:0;;;14648:21:1;14705:2;14685:18;;;14678:30;14744;14724:18;;;14717:58;14792:18;;39561:64:0;14464:352:1;39561:64:0;40794:14:::1;40811:13;19869:7:::0;:14;;19781:110;40811:13:::1;40794:30:::0;-1:-1:-1;38512:4:0::1;40843:20;40852:11:::0;40794:30;40843:20:::1;:::i;:::-;:34;;40835:74;;;::::0;-1:-1:-1;;;40835:74:0;;11790:2:1;40835:74:0::1;::::0;::::1;11772:21:1::0;11829:2;11809:18;;;11802:30;11868:29;11848:18;;;11841:57;11915:18;;40835:74:0::1;11588:351:1::0;40835:74:0::1;38561:4;40928:20;40937:11:::0;40928:6;:20:::1;:::i;:::-;:34;40920:90;;;::::0;-1:-1:-1;;;40920:90:0;;15023:2:1;40920:90:0::1;::::0;::::1;15005:21:1::0;15062:2;15042:18;;;15035:30;15101:34;15081:18;;;15074:62;-1:-1:-1;;;15152:18:1;;;15145:41;15203:19;;40920:90:0::1;14821:407:1::0;40920:90:0::1;41049:11;41042:4;;:18;;;;:::i;:::-;41029:9;:31;;41021:62;;;::::0;-1:-1:-1;;;41021:62:0;;15435:2:1;41021:62:0::1;::::0;::::1;15417:21:1::0;15474:2;15454:18;;;15447:30;-1:-1:-1;;;15493:18:1;;;15486:48;15551:18;;41021:62:0::1;15233:342:1::0;41021:62:0::1;41157:10;41104:25;41132:36:::0;;;:24:::1;:36;::::0;;;;;38677:1:::1;41189:31;41209:11:::0;41132:36;41189:31:::1;:::i;:::-;:54;;41181:151;;;::::0;-1:-1:-1;;;41181:151:0;;15782:2:1;41181:151:0::1;::::0;::::1;15764:21:1::0;15821:2;15801:18;;;15794:30;15860:34;15840:18;;;15833:62;15931:34;15911:18;;;15904:62;-1:-1:-1;;;15982:19:1;;;15975:51;16043:19;;41181:151:0::1;15580:488:1::0;41181:151:0::1;41369:10;41344:36;::::0;;;:24:::1;:36;::::0;;;;:51;;41384:11;;41344:36;:51:::1;::::0;41384:11;;41344:51:::1;:::i;:::-;::::0;;;-1:-1:-1;41409:32:0::1;::::0;-1:-1:-1;41417:10:0::1;41429:11:::0;41409:7:::1;:32::i;:::-;40783:666;;40704:745:::0;;:::o;11207:518::-;11324:7;-1:-1:-1;;;;;11371:19:0;;11349:111;;;;-1:-1:-1;;;11349:111:0;;16275:2:1;11349:111:0;;;16257:21:1;16314:2;16294:18;;;16287:30;16353:34;16333:18;;;16326:62;-1:-1:-1;;;16404:18:1;;;16397:40;16454:19;;11349:111:0;16073:406:1;11349:111:0;11516:7;:14;11471:13;;;11541:130;11565:6;11561:1;:10;11541:130;;;11606:7;11614:1;11606:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;11597:19:0;;;11606:10;;11597:19;11593:67;;;11637:7;;;:::i;:::-;;;11593:67;11573:3;;;:::i;:::-;;;11541:130;;;-1:-1:-1;11712:5:0;;11207:518;-1:-1:-1;;;11207:518:0:o;21816:94::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;21881:21:::1;21899:1;21881:9;:21::i;:::-;21816:94::o:0;40105:591::-;39441:6;;40163:11;;39441:6;;39440:7;39432:48;;;;-1:-1:-1;;;39432:48:0;;13949:2:1;39432:48:0;;;13931:21:1;13988:2;13968:18;;;13961:30;14027;14007:18;;;14000:58;14075:18;;39432:48:0;13747:352:1;39432:48:0;39513:1;39499:11;:15;39491:59;;;;-1:-1:-1;;;39491:59:0;;14306:2:1;39491:59:0;;;14288:21:1;14345:2;14325:18;;;14318:30;14384:33;14364:18;;;14357:61;14435:18;;39491:59:0;14104:355:1;39491:59:0;39569:10;39583:9;39569:23;39561:64;;;;-1:-1:-1;;;39561:64:0;;14666:2:1;39561:64:0;;;14648:21:1;14705:2;14685:18;;;14678:30;14744;14724:18;;;14717:58;14792:18;;39561:64:0;14464:352:1;39561:64:0;40187:14:::1;40204:13;19869:7:::0;:14;;19781:110;40204:13:::1;40187:30:::0;-1:-1:-1;38561:4:0::1;40236:20;40245:11:::0;40187:30;40236:20:::1;:::i;:::-;:35;;40228:122;;;::::0;-1:-1:-1;;;40228:122:0;;16686:2:1;40228:122:0::1;::::0;::::1;16668:21:1::0;16725:2;16705:18;;;16698:30;16764:34;16744:18;;;16737:62;16835:34;16815:18;;;16808:62;-1:-1:-1;;;16886:19:1;;;16879:41;16937:19;;40228:122:0::1;16484:478:1::0;40228:122:0::1;40424:10;40371:25;40399:36:::0;;;:24:::1;:36;::::0;;;;;38623:1:::1;40454:31;40474:11:::0;40399:36;40454:31:::1;:::i;:::-;:59;;40446:127;;;::::0;-1:-1:-1;;;40446:127:0;;17169:2:1;40446:127:0::1;::::0;::::1;17151:21:1::0;17208:2;17188:18;;;17181:30;17247:34;17227:18;;;17220:62;17318:25;17298:18;;;17291:53;17361:19;;40446:127:0::1;16967:419:1::0;40446:127:0::1;40609:10;40584:36;::::0;;;:24:::1;:36;::::0;;;;:51;;40624:11;;40584:36;:51:::1;::::0;40624:11;;40584:51:::1;:::i;19323:450::-:0;19409:16;19455:24;19473:5;19455:17;:24::i;:::-;19451:1;:28;19443:63;;;;-1:-1:-1;;;19443:63:0;;;;;;;:::i;:::-;19517:18;19538:16;19548:5;19538:9;:16::i;:::-;19517:37;;19565:25;19607:10;19593:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19593:25:0;;19565:53;;19634:9;19629:111;19653:10;19649:1;:14;19629:111;;;19699:29;19719:5;19726:1;19699:19;:29::i;:::-;19685:8;19694:1;19685:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;19665:3;;;;:::i;:::-;;;;19629:111;;;-1:-1:-1;19757:8:0;19323:450;-1:-1:-1;;;19323:450:0:o;26006:100::-;26057:7;26084;26092:5;26084:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26084:14:0;;26006:100;-1:-1:-1;;26006:100:0:o;12175:104::-;12231:13;12264:7;12257:14;;;;;:::i;13023:327::-;-1:-1:-1;;;;;13158:24:0;;734:10;13158:24;;13150:62;;;;-1:-1:-1;;;13150:62:0;;17593:2:1;13150:62:0;;;17575:21:1;17632:2;17612:18;;;17605:30;17671:27;17651:18;;;17644:55;17716:18;;13150:62:0;17391:349:1;13150:62:0;734:10;13225:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;13225:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;13225:53:0;;;;;;;;;;13294:48;;819:41:1;;;13225:42:0;;734:10;13294:48;;792:18:1;13294:48:0;;;;;;;13023:327;;:::o;14157:365::-;14346:41;734:10;14379:7;14346:18;:41::i;:::-;14324:140;;;;-1:-1:-1;;;14324:140:0;;;;;;;:::i;:::-;14475:39;14489:4;14495:2;14499:7;14508:5;14475:13;:39::i;42145:367::-;42219:13;42253:17;42261:8;42253:7;:17::i;:::-;42245:69;;;;-1:-1:-1;;;42245:69:0;;17947:2:1;42245:69:0;;;17929:21:1;17986:2;17966:18;;;17959:30;18025:34;18005:18;;;17998:62;-1:-1:-1;;;18076:18:1;;;18069:37;18123:19;;42245:69:0;17745:403:1;42245:69:0;42335:28;42366:10;:8;:10::i;:::-;42335:41;;42425:1;42400:14;42394:28;:32;:110;;;;;;;;;;;;;;;;;42453:14;42469:19;:8;:17;:19::i;:::-;42436:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42394:110;42387:117;42145:367;-1:-1:-1;;;42145:367:0:o;22065:229::-;21238:6;;-1:-1:-1;;;;;21238:6:0;734:10;21385:23;21377:68;;;;-1:-1:-1;;;21377:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22168:22:0;::::1;22146:110;;;::::0;-1:-1:-1;;;22146:110:0;;18997:2:1;22146:110:0::1;::::0;::::1;18979:21:1::0;19036:2;19016:18;;;19009:30;19075:34;19055:18;;;19048:62;-1:-1:-1;;;19126:18:1;;;19119:36;19172:19;;22146:110:0::1;18795:402:1::0;22146:110:0::1;22267:19;22277:8;22267:9;:19::i;:::-;22065:229:::0;:::o;10844:355::-;10991:4;-1:-1:-1;;;;;;11033:40:0;;-1:-1:-1;;;11033:40:0;;:105;;-1:-1:-1;;;;;;;11090:48:0;;-1:-1:-1;;;11090:48:0;11033:105;:158;;;-1:-1:-1;;;;;;;;;;8613:40:0;;;11155:36;8454:207;14890:155;14989:7;:14;14955:4;;14979:24;;:58;;;;;15035:1;-1:-1:-1;;;;;15007:30:0;:7;15015;15007:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15007:16:0;:30;;14972:65;14890:155;-1:-1:-1;;14890:155:0:o;17104:175::-;17179:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;17179:29:0;-1:-1:-1;;;;;17179:29:0;;;;;;;;:24;;17233;17179;17233:15;:24::i;:::-;-1:-1:-1;;;;;17224:47:0;;;;;;;;;;;17104:175;;:::o;29773:391::-;29902:6;29877:21;:31;;29855:110;;;;-1:-1:-1;;;29855:110:0;;19404:2:1;29855:110:0;;;19386:21:1;19443:2;19423:18;;;19416:30;19482:31;19462:18;;;19455:59;19531:18;;29855:110:0;19202:353:1;29855:110:0;29979:12;29997:9;-1:-1:-1;;;;;29997:14:0;30019:6;29997:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29978:52;;;30063:7;30041:115;;;;-1:-1:-1;;;30041:115:0;;19972:2:1;30041:115:0;;;19954:21:1;20011:2;19991:18;;;19984:30;20050:34;20030:18;;;20023:62;20121:28;20101:18;;;20094:56;20167:19;;30041:115:0;19770:422:1;39812:226:0;39889:14;39906:13;19869:7;:14;;19781:110;39906:13;39889:30;;39935:9;39930:101;39954:11;39950:1;:15;39930:101;;;39987:32;39997:9;40008:10;40017:1;40008:6;:10;:::i;:::-;39987:9;:32::i;:::-;39967:3;;;;:::i;:::-;;;;39930:101;;15053:453;15182:4;15226:16;15234:7;15226;:16::i;:::-;15204:110;;;;-1:-1:-1;;;15204:110:0;;20399:2:1;15204:110:0;;;20381:21:1;20438:2;20418:18;;;20411:30;20477:34;20457:18;;;20450:62;-1:-1:-1;;;20528:18:1;;;20521:42;20580:19;;15204:110:0;20197:408:1;15204:110:0;15325:13;15341:24;15357:7;15341:15;:24::i;:::-;15325:40;;15395:5;-1:-1:-1;;;;;15384:16:0;:7;-1:-1:-1;;;;;15384:16:0;;:64;;;;15441:7;-1:-1:-1;;;;;15417:31:0;:20;15429:7;15417:11;:20::i;:::-;-1:-1:-1;;;;;15417:31:0;;15384:64;:113;;;-1:-1:-1;;;;;;13529:25:0;;;13500:4;13529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;15465:32;15376:122;15053:453;-1:-1:-1;;;;15053:453:0:o;16594:502::-;16768:4;-1:-1:-1;;;;;16740:32:0;:24;16756:7;16740:15;:24::i;:::-;-1:-1:-1;;;;;16740:32:0;;16718:123;;;;-1:-1:-1;;;16718:123:0;;20812:2:1;16718:123:0;;;20794:21:1;20851:2;20831:18;;;20824:30;20890:34;20870:18;;;20863:62;-1:-1:-1;;;20941:18:1;;;20934:39;20990:19;;16718:123:0;20610:405:1;16718:123:0;-1:-1:-1;;;;;16860:16:0;;16852:65;;;;-1:-1:-1;;;16852:65:0;;21222:2:1;16852:65:0;;;21204:21:1;21261:2;21241:18;;;21234:30;21300:34;21280:18;;;21273:62;-1:-1:-1;;;21351:18:1;;;21344:34;21395:19;;16852:65:0;21020:400:1;16852:65:0;16982:29;16999:1;17003:7;16982:8;:29::i;:::-;17041:2;17022:7;17030;17022:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;17022:21:0;-1:-1:-1;;;;;17022:21:0;;;;;;17061:27;;17080:7;;17061:27;;;;;;;;;;17022:16;17061:27;16594:502;;;:::o;22302:173::-;22377:6;;;-1:-1:-1;;;;;22394:17:0;;;-1:-1:-1;;;;;;22394:17:0;;;;;;;22427:40;;22377:6;;;22394:17;22377:6;;22427:40;;22358:16;;22427:40;22347:128;22302:173;:::o;14530:352::-;14687:28;14697:4;14703:2;14707:7;14687:9;:28::i;:::-;14748:48;14771:4;14777:2;14781:7;14790:5;14748:22;:48::i;:::-;14726:148;;;;-1:-1:-1;;;14726:148:0;;;;;;;:::i;39705:99::-;39756:13;39789:7;39782:14;;;;;:::i;36554:723::-;36610:13;36831:10;36827:53;;-1:-1:-1;;36858:10:0;;;;;;;;;;;;-1:-1:-1;;;36858:10:0;;;;;36554:723::o;36827:53::-;36905:5;36890:12;36946:78;36953:9;;36946:78;;36979:8;;;;:::i;:::-;;-1:-1:-1;37002:10:0;;-1:-1:-1;37010:2:0;37002:10;;:::i;:::-;;;36946:78;;;37034:19;37066:6;37056:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37056:17:0;;37034:39;;37084:154;37091:10;;37084:154;;37118:11;37128:1;37118:11;;:::i;:::-;;-1:-1:-1;37187:10:0;37195:2;37187:5;:10;:::i;:::-;37174:24;;:2;:24;:::i;:::-;37161:39;;37144:6;37151;37144:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37144:56:0;;;;;;;;-1:-1:-1;37215:11:0;37224:2;37215:11;;:::i;:::-;;;37084:154;;15514:110;15590:26;15600:2;15604:7;15590:26;;;;;;;;;;;;:9;:26::i;17287:980::-;17442:4;-1:-1:-1;;;;;17463:13:0;;28774:20;28822:8;17459:801;;17516:175;;-1:-1:-1;;;17516:175:0;;-1:-1:-1;;;;;17516:36:0;;;;;:175;;734:10;;17610:4;;17637:7;;17667:5;;17516:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17516:175:0;;;;;;;;-1:-1:-1;;17516:175:0;;;;;;;;;;;;:::i;:::-;;;17495:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17874:13:0;;17870:320;;17917:108;;-1:-1:-1;;;17917:108:0;;;;;;;:::i;17870:320::-;18140:6;18134:13;18125:6;18121:2;18117:15;18110:38;17495:710;-1:-1:-1;;;;;;17755:51:0;-1:-1:-1;;;17755:51:0;;-1:-1:-1;17748:58:0;;17459:801;-1:-1:-1;18244:4:0;17287:980;;;;;;:::o;15632:287::-;15728:18;15734:2;15738:7;15728:5;:18::i;:::-;15779:54;15810:1;15814:2;15818:7;15827:5;15779:22;:54::i;:::-;15757:154;;;;-1:-1:-1;;;15757:154:0;;;;;;;:::i;15927:346::-;-1:-1:-1;;;;;16007:16:0;;15999:61;;;;-1:-1:-1;;;15999:61:0;;22911:2:1;15999:61:0;;;22893:21:1;;;22930:18;;;22923:30;22989:34;22969:18;;;22962:62;23041:18;;15999:61:0;22709:356:1;15999:61:0;16080:16;16088:7;16080;:16::i;:::-;16079:17;16071:58;;;;-1:-1:-1;;;16071:58:0;;23272:2:1;16071:58:0;;;23254:21:1;23311:2;23291:18;;;23284:30;23350;23330:18;;;23323:58;23398:18;;16071:58:0;23070:352:1;16071:58:0;16198:7;:16;;;;;;;-1:-1:-1;16198:16:0;;;;;;;-1:-1:-1;;;;;;16198:16:0;-1:-1:-1;;;;;16198:16:0;;;;;;;;16232:33;;16257:7;;-1:-1:-1;16232:33:0;;-1:-1:-1;;16232:33:0;15927:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;293:131:1;-1:-1:-1;;;;;;367:32:1;;357:43;;347:71;;414:1;411;404:12;429:245;487:6;540:2;528:9;519:7;515:23;511:32;508:52;;;556:1;553;546:12;508:52;595:9;582:23;614:30;638:5;614:30;:::i;871:160::-;936:20;;992:13;;985:21;975:32;;965:60;;1021:1;1018;1011:12;965:60;871:160;;;:::o;1036:180::-;1092:6;1145:2;1133:9;1124:7;1120:23;1116:32;1113:52;;;1161:1;1158;1151:12;1113:52;1184:26;1200:9;1184:26;:::i;1221:258::-;1293:1;1303:113;1317:6;1314:1;1311:13;1303:113;;;1393:11;;;1387:18;1374:11;;;1367:39;1339:2;1332:10;1303:113;;;1434:6;1431:1;1428:13;1425:48;;;-1:-1:-1;;1469:1:1;1451:16;;1444:27;1221:258::o;1484:::-;1526:3;1564:5;1558:12;1591:6;1586:3;1579:19;1607:63;1663:6;1656:4;1651:3;1647:14;1640:4;1633:5;1629:16;1607:63;:::i;:::-;1724:2;1703:15;-1:-1:-1;;1699:29:1;1690:39;;;;1731:4;1686:50;;1484:258;-1:-1:-1;;1484:258:1:o;1747:220::-;1896:2;1885:9;1878:21;1859:4;1916:45;1957:2;1946:9;1942:18;1934:6;1916:45;:::i;1972:180::-;2031:6;2084:2;2072:9;2063:7;2059:23;2055:32;2052:52;;;2100:1;2097;2090:12;2052:52;-1:-1:-1;2123:23:1;;1972:180;-1:-1:-1;1972:180:1:o;2365:131::-;-1:-1:-1;;;;;2440:31:1;;2430:42;;2420:70;;2486:1;2483;2476:12;2501:315;2569:6;2577;2630:2;2618:9;2609:7;2605:23;2601:32;2598:52;;;2646:1;2643;2636:12;2598:52;2685:9;2672:23;2704:31;2729:5;2704:31;:::i;:::-;2754:5;2806:2;2791:18;;;;2778:32;;-1:-1:-1;;;2501:315:1:o;3003:255::-;3070:6;3123:2;3111:9;3102:7;3098:23;3094:32;3091:52;;;3139:1;3136;3129:12;3091:52;3178:9;3165:23;3197:31;3222:5;3197:31;:::i;3263:315::-;3331:6;3339;3392:2;3380:9;3371:7;3367:23;3363:32;3360:52;;;3408:1;3405;3398:12;3360:52;3444:9;3431:23;3421:33;;3504:2;3493:9;3489:18;3476:32;3517:31;3542:5;3517:31;:::i;:::-;3567:5;3557:15;;;3263:315;;;;;:::o;3583:456::-;3660:6;3668;3676;3729:2;3717:9;3708:7;3704:23;3700:32;3697:52;;;3745:1;3742;3735:12;3697:52;3784:9;3771:23;3803:31;3828:5;3803:31;:::i;:::-;3853:5;-1:-1:-1;3910:2:1;3895:18;;3882:32;3923:33;3882:32;3923:33;:::i;:::-;3583:456;;3975:7;;-1:-1:-1;;;4029:2:1;4014:18;;;;4001:32;;3583:456::o;4296:632::-;4467:2;4519:21;;;4589:13;;4492:18;;;4611:22;;;4438:4;;4467:2;4690:15;;;;4664:2;4649:18;;;4438:4;4733:169;4747:6;4744:1;4741:13;4733:169;;;4808:13;;4796:26;;4877:15;;;;4842:12;;;;4769:1;4762:9;4733:169;;;-1:-1:-1;4919:3:1;;4296:632;-1:-1:-1;;;;;;4296:632:1:o;4933:127::-;4994:10;4989:3;4985:20;4982:1;4975:31;5025:4;5022:1;5015:15;5049:4;5046:1;5039:15;5065:632;5130:5;5160:18;5201:2;5193:6;5190:14;5187:40;;;5207:18;;:::i;:::-;5282:2;5276:9;5250:2;5336:15;;-1:-1:-1;;5332:24:1;;;5358:2;5328:33;5324:42;5312:55;;;5382:18;;;5402:22;;;5379:46;5376:72;;;5428:18;;:::i;:::-;5468:10;5464:2;5457:22;5497:6;5488:15;;5527:6;5519;5512:22;5567:3;5558:6;5553:3;5549:16;5546:25;5543:45;;;5584:1;5581;5574:12;5543:45;5634:6;5629:3;5622:4;5614:6;5610:17;5597:44;5689:1;5682:4;5673:6;5665;5661:19;5657:30;5650:41;;;;5065:632;;;;;:::o;5702:451::-;5771:6;5824:2;5812:9;5803:7;5799:23;5795:32;5792:52;;;5840:1;5837;5830:12;5792:52;5880:9;5867:23;5913:18;5905:6;5902:30;5899:50;;;5945:1;5942;5935:12;5899:50;5968:22;;6021:4;6013:13;;6009:27;-1:-1:-1;5999:55:1;;6050:1;6047;6040:12;5999:55;6073:74;6139:7;6134:2;6121:16;6116:2;6112;6108:11;6073:74;:::i;6158:315::-;6223:6;6231;6284:2;6272:9;6263:7;6259:23;6255:32;6252:52;;;6300:1;6297;6290:12;6252:52;6339:9;6326:23;6358:31;6383:5;6358:31;:::i;:::-;6408:5;-1:-1:-1;6432:35:1;6463:2;6448:18;;6432:35;:::i;:::-;6422:45;;6158:315;;;;;:::o;6478:795::-;6573:6;6581;6589;6597;6650:3;6638:9;6629:7;6625:23;6621:33;6618:53;;;6667:1;6664;6657:12;6618:53;6706:9;6693:23;6725:31;6750:5;6725:31;:::i;:::-;6775:5;-1:-1:-1;6832:2:1;6817:18;;6804:32;6845:33;6804:32;6845:33;:::i;:::-;6897:7;-1:-1:-1;6951:2:1;6936:18;;6923:32;;-1:-1:-1;7006:2:1;6991:18;;6978:32;7033:18;7022:30;;7019:50;;;7065:1;7062;7055:12;7019:50;7088:22;;7141:4;7133:13;;7129:27;-1:-1:-1;7119:55:1;;7170:1;7167;7160:12;7119:55;7193:74;7259:7;7254:2;7241:16;7236:2;7232;7228:11;7193:74;:::i;:::-;7183:84;;;6478:795;;;;;;;:::o;7278:388::-;7346:6;7354;7407:2;7395:9;7386:7;7382:23;7378:32;7375:52;;;7423:1;7420;7413:12;7375:52;7462:9;7449:23;7481:31;7506:5;7481:31;:::i;:::-;7531:5;-1:-1:-1;7588:2:1;7573:18;;7560:32;7601:33;7560:32;7601:33;:::i;7671:356::-;7873:2;7855:21;;;7892:18;;;7885:30;7951:34;7946:2;7931:18;;7924:62;8018:2;8003:18;;7671:356::o;8032:380::-;8111:1;8107:12;;;;8154;;;8175:61;;8229:4;8221:6;8217:17;8207:27;;8175:61;8282:2;8274:6;8271:14;8251:18;8248:38;8245:161;;;8328:10;8323:3;8319:20;8316:1;8309:31;8363:4;8360:1;8353:15;8391:4;8388:1;8381:15;8245:161;;8032:380;;;:::o;10064:127::-;10125:10;10120:3;10116:20;10113:1;10106:31;10156:4;10153:1;10146:15;10180:4;10177:1;10170:15;10196:128;10236:3;10267:1;10263:6;10260:1;10257:13;10254:39;;;10273:18;;:::i;:::-;-1:-1:-1;10309:9:1;;10196:128::o;10329:168::-;10369:7;10435:1;10431;10427:6;10423:14;10420:1;10417:21;10412:1;10405:9;10398:17;10394:45;10391:71;;;10442:18;;:::i;:::-;-1:-1:-1;10482:9:1;;10329:168::o;10502:127::-;10563:10;10558:3;10554:20;10551:1;10544:31;10594:4;10591:1;10584:15;10618:4;10615:1;10608:15;10634:120;10674:1;10700;10690:35;;10705:18;;:::i;:::-;-1:-1:-1;10739:9:1;;10634:120::o;10759:125::-;10799:4;10827:1;10824;10821:8;10818:34;;;10832:18;;:::i;:::-;-1:-1:-1;10869:9:1;;10759:125::o;11944:413::-;12146:2;12128:21;;;12185:2;12165:18;;;12158:30;12224:34;12219:2;12204:18;;12197:62;-1:-1:-1;;;12290:2:1;12275:18;;12268:47;12347:3;12332:19;;11944:413::o;12362:346::-;12564:2;12546:21;;;12603:2;12583:18;;;12576:30;-1:-1:-1;;;12637:2:1;12622:18;;12615:52;12699:2;12684:18;;12362:346::o;12713:127::-;12774:10;12769:3;12765:20;12762:1;12755:31;12805:4;12802:1;12795:15;12829:4;12826:1;12819:15;12845:135;12884:3;-1:-1:-1;;12905:17:1;;12902:43;;;12925:18;;:::i;:::-;-1:-1:-1;12972:1:1;12961:13;;12845:135::o;18153:637::-;18433:3;18471:6;18465:13;18487:53;18533:6;18528:3;18521:4;18513:6;18509:17;18487:53;:::i;:::-;18603:13;;18562:16;;;;18625:57;18603:13;18562:16;18659:4;18647:17;;18625:57;:::i;:::-;-1:-1:-1;;;18704:20:1;;18733:22;;;18782:1;18771:13;;18153:637;-1:-1:-1;;;;18153:637:1:o;21425:414::-;21627:2;21609:21;;;21666:2;21646:18;;;21639:30;21705:34;21700:2;21685:18;;21678:62;-1:-1:-1;;;21771:2:1;21756:18;;21749:48;21829:3;21814:19;;21425:414::o;21844:112::-;21876:1;21902;21892:35;;21907:18;;:::i;:::-;-1:-1:-1;21941:9:1;;21844:112::o;21961:489::-;-1:-1:-1;;;;;22230:15:1;;;22212:34;;22282:15;;22277:2;22262:18;;22255:43;22329:2;22314:18;;22307:34;;;22377:3;22372:2;22357:18;;22350:31;;;22155:4;;22398:46;;22424:19;;22416:6;22398:46;:::i;:::-;22390:54;21961:489;-1:-1:-1;;;;;;21961:489:1:o;22455:249::-;22524:6;22577:2;22565:9;22556:7;22552:23;22548:32;22545:52;;;22593:1;22590;22583:12;22545:52;22625:9;22619:16;22644:30;22668:5;22644:30;:::i

Swarm Source

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