ETH Price: $2,444.51 (+1.79%)

Token

Kyoto Warriors (Kyoto)
 

Overview

Max Total Supply

20 Kyoto

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Kyoto
0x98f081894c66d2bd0e9d0bca5bccbe9b886fb24f
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:
Kyoto

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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");
        uint count = 0;
        uint length = _owners.length;
        for( uint 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);

        // Clear approvals
        _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);

        // Clear approvals from the previous owner
        _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 {}
}

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");
        uint count;
        for( uint 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;
    }
}

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract Kyoto is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public SALE_NFT = 2000;
	
	uint256 public MAX_MINT_PRESALE = 2;
	uint256 public MAX_MINT_SALE = 2;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 2;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 2;
	
	uint256 public PRESALE_PRICE = 8 * 10**16;
	uint256 public SALE_PRICE = 8 * 10**16;
	
	uint256 public SALE_MINTED;
	
    bool public presaleEnable = false;
	bool public saleEnable = false;
	
    string private baseURI;
	bytes32 public merkleRoot;
	
	struct User {
		uint256 presalemint;
		uint256 salemint;
    }
	mapping (address => User) public users;

    constructor() ERC721P('Kyoto Warriors', 'Kyoto') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		uint256 totalSupply = totalSupply();
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].presalemint += _count;
    }
	
	function mintSaleNFT(uint256 _count) public payable{
		uint256 totalSupply = totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per tnx"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].salemint += _count;
    }
	
    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }
	
    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
    }
	
	function withdraw() external {
        uint balance = address(this).balance;
        require(balance > 0);
        address payable _devAddress = payable (0x21F169f44597B7579eb46b84DBE3Dd85f2818D87);
        uint devFees =  (balance*(15))/(100);
        _devAddress.transfer(devFees);

        address payable _ownerAddress = payable (0x214F8E7D78D8C4655D99AC288ecA5F8b035caAF5);
        _ownerAddress.transfer(address(this).balance);
    }
	
	function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function setSaleStatus(bool status) public onlyOwner {
        require(saleEnable != status, "Incorrect value");
		saleEnable = status;
    }
	
	function setPreSaleStatus(bool status) public onlyOwner {
	   require(presaleEnable != status, "Incorrect value");
       presaleEnable = status;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updateMerkleRoot(bytes32 newRoot) external onlyOwner {
	   merkleRoot = newRoot;
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","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":[{"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526107d0600755600260088190556009819055600a819055600b5567011c37937e080000600c819055600d55600f805461ffff191690553480156200004757600080fd5b50604080518082018252600e81526d4b796f746f2057617272696f727360901b6020808301918252835180850190945260058452644b796f746f60d81b9084015281519192916200009b916000916200012f565b508051620000b19060019060208401906200012f565b505050620000ce620000c8620000d960201b60201c565b620000dd565b600160065562000212565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013d90620001d5565b90600052602060002090601f016020900481019282620001615760008555620001ac565b82601f106200017c57805160ff1916838001178555620001ac565b82800160010185558215620001ac579182015b82811115620001ac5782518255916020019190600101906200018f565b50620001ba929150620001be565b5090565b5b80821115620001ba5760008155600101620001bf565b600281046001821680620001ea57607f821691505b602082108114156200020c57634e487b7160e01b600052602260045260246000fd5b50919050565b612bd480620002226000396000f3fe60806040526004361061027d5760003560e01c80637e95eac41161014f578063a87430ba116100c1578063d897833e1161007a578063d897833e14610712578063e985e9c514610732578063f176baaa14610752578063f2fde38b14610772578063f439733514610792578063fe4ca847146107b25761027d565b8063a87430ba14610667578063a952686214610695578063ae5cc172146106a8578063b88d4fde146106bd578063c87b56dd146106dd578063ccfb63a4146106fd5761027d565b80638da5cb5b116101135780638da5cb5b146105d5578063941e79fc146105ea578063945242c61461060a57806395d89b411461061d578063995b8ef614610632578063a22cb465146106475761027d565b80637e95eac4146105495780637ec0912e1461055e5780637ec18cf61461057e5780637f205a74146105935780638462151c146105a85761027d565b80633e2e2a80116101f357806362dc6e21116101ac57806362dc6e21146104aa5780636352211e146104bf57806365fccb52146104df57806370a08231146104ff578063711cc2ae1461051f578063715018a6146105345761027d565b80633e2e2a80146103ea57806342842e0e1461040a5780634783f0ef1461042a5780634f6ccce71461044a57806355f804b31461046a5780635e326b921461048a5761027d565b806318160ddd1161024557806318160ddd1461034b57806323b872dd146103605780632eb4a7ab146103805780632f745c5914610395578063305004d9146103b55780633ccfd60b146103d55761027d565b806301ffc9a71461028257806306fdde03146102b8578063081812fc146102da578063095ea7b3146103075780630990e53414610329575b600080fd5b34801561028e57600080fd5b506102a261029d3660046121b2565b6107c7565b6040516102af91906123d4565b60405180910390f35b3480156102c457600080fd5b506102cd6107f4565b6040516102af91906123e8565b3480156102e657600080fd5b506102fa6102f536600461219a565b610886565b6040516102af919061233f565b34801561031357600080fd5b50610327610322366004612157565b6108d2565b005b34801561033557600080fd5b5061033e61096a565b6040516102af91906123df565b34801561035757600080fd5b5061033e610970565b34801561036c57600080fd5b5061032761037b36600461207a565b610976565b34801561038c57600080fd5b5061033e610981565b3480156103a157600080fd5b5061033e6103b0366004612157565b610987565b3480156103c157600080fd5b506103276103d036600461219a565b610a4a565b3480156103e157600080fd5b50610327610ab0565b3480156103f657600080fd5b5061032761040536600461219a565b610b6c565b34801561041657600080fd5b5061032761042536600461207a565b610bd2565b34801561043657600080fd5b5061032761044536600461219a565b610bed565b34801561045657600080fd5b5061033e61046536600461219a565b610c31565b34801561047657600080fd5b506103276104853660046121ea565b610c5d565b34801561049657600080fd5b506103276104a5366004612180565b610cb3565b3480156104b657600080fd5b5061033e610d2e565b3480156104cb57600080fd5b506102fa6104da36600461219a565b610d34565b3480156104eb57600080fd5b506103276104fa36600461219a565b610d8c565b34801561050b57600080fd5b5061033e61051a36600461202e565b610dd0565b34801561052b57600080fd5b5061033e610e6d565b34801561054057600080fd5b50610327610e73565b34801561055557600080fd5b5061033e610ebe565b34801561056a57600080fd5b5061032761057936600461219a565b610ec4565b34801561058a57600080fd5b506102a2610f08565b34801561059f57600080fd5b5061033e610f11565b3480156105b457600080fd5b506105c86105c336600461202e565b610f17565b6040516102af9190612390565b3480156105e157600080fd5b506102fa610ffd565b3480156105f657600080fd5b5061032761060536600461219a565b61100c565b610327610618366004612230565b611072565b34801561062957600080fd5b506102cd611255565b34801561063e57600080fd5b5061033e611264565b34801561065357600080fd5b5061032761066236600461212e565b61126a565b34801561067357600080fd5b5061068761068236600461202e565b611338565b6040516102af9291906122f2565b6103276106a336600461219a565b611351565b3480156106b457600080fd5b5061033e6114af565b3480156106c957600080fd5b506103276106d83660046120b5565b6114b5565b3480156106e957600080fd5b506102cd6106f836600461219a565b6114c7565b34801561070957600080fd5b5061033e61154a565b34801561071e57600080fd5b5061032761072d366004612180565b611550565b34801561073e57600080fd5b506102a261074d366004612048565b6115d8565b34801561075e57600080fd5b5061032761076d36600461219a565b611606565b34801561077e57600080fd5b5061032761078d36600461202e565b61166c565b34801561079e57600080fd5b506103276107ad36600461219a565b6116dd565b3480156107be57600080fd5b506102a2611743565b60006001600160e01b0319821663780e9d6360e01b14806107ec57506107ec82611751565b90505b919050565b60606000805461080390612adc565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612adc565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b600061089182611791565b6108b65760405162461bcd60e51b81526004016108ad906127f6565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108dd82610d34565b9050806001600160a01b0316836001600160a01b031614156109115760405162461bcd60e51b81526004016108ad9061297b565b806001600160a01b03166109236117e9565b6001600160a01b0316148061093f575061093f8161074d6117e9565b61095b5760405162461bcd60e51b81526004016108ad9061266f565b61096583836117ed565b505050565b600e5481565b60025490565b61096583838361185b565b60115481565b600061099283610dd0565b82106109b05760405162461bcd60e51b81526004016108ad90612914565b6000805b600254811015610a2b57600281815481106109df57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610a1b5783821415610a0f579150610a449050565b610a1882612b17565b91505b610a2481612b17565b90506109b4565b5060405162461bcd60e51b81526004016108ad90612914565b92915050565b610a526117e9565b6001600160a01b0316610a63610ffd565b6001600160a01b031614610a895760405162461bcd60e51b81526004016108ad9061286b565b806007541015610aab5760405162461bcd60e51b81526004016108ad90612842565b600a55565b4780610abb57600080fd5b7321f169f44597b7579eb46b84dbe3dd85f2818d8760006064610adf84600f612a7a565b610ae99190612a66565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b22573d6000803e3d6000fd5b5060405173214f8e7d78d8c4655d99ac288eca5f8b035caaf59081904780156108fc02916000818181858888f19350505050158015610b65573d6000803e3d6000fd5b5050505050565b610b746117e9565b6001600160a01b0316610b85610ffd565b6001600160a01b031614610bab5760405162461bcd60e51b81526004016108ad9061286b565b806007541015610bcd5760405162461bcd60e51b81526004016108ad90612842565b600b55565b610965838383604051806020016040528060008152506114b5565b610bf56117e9565b6001600160a01b0316610c06610ffd565b6001600160a01b031614610c2c5760405162461bcd60e51b81526004016108ad9061286b565b601155565b6000610c3b610970565b8210610c595760405162461bcd60e51b81526004016108ad90612944565b5090565b610c656117e9565b6001600160a01b0316610c76610ffd565b6001600160a01b031614610c9c5760405162461bcd60e51b81526004016108ad9061286b565b8051610caf906010906020840190611f07565b5050565b610cbb6117e9565b6001600160a01b0316610ccc610ffd565b6001600160a01b031614610cf25760405162461bcd60e51b81526004016108ad9061286b565b600f5460ff1615158115151415610d1b5760405162461bcd60e51b81526004016108ad90612842565b600f805460ff1916911515919091179055565b600c5481565b60008060028381548110610d5857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806107ec5760405162461bcd60e51b81526004016108ad9061274d565b610d946117e9565b6001600160a01b0316610da5610ffd565b6001600160a01b031614610dcb5760405162461bcd60e51b81526004016108ad9061286b565b600c55565b60006001600160a01b038216610df85760405162461bcd60e51b81526004016108ad90612703565b600254600090815b81811015610e645760028181548110610e2957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610e5457610e5183612b17565b92505b610e5d81612b17565b9050610e00565b50909392505050565b600b5481565b610e7b6117e9565b6001600160a01b0316610e8c610ffd565b6001600160a01b031614610eb25760405162461bcd60e51b81526004016108ad9061286b565b610ebc6000611893565b565b60085481565b610ecc6117e9565b6001600160a01b0316610edd610ffd565b6001600160a01b031614610f035760405162461bcd60e51b81526004016108ad9061286b565b600d55565b600f5460ff1681565b600d5481565b6060610f2282610dd0565b600010610f415760405162461bcd60e51b81526004016108ad90612914565b6000610f4c83610dd0565b905060008167ffffffffffffffff811115610f7757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fa0578160200160208202803683370190505b50905060005b82811015610ff557610fb88582610987565b828281518110610fd857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610fed81612b17565b915050610fa6565b509392505050565b6005546001600160a01b031690565b6110146117e9565b6001600160a01b0316611025610ffd565b6001600160a01b03161461104b5760405162461bcd60e51b81526004016108ad9061286b565b80600754101561106d5760405162461bcd60e51b81526004016108ad90612842565b600855565b60003360405160200161108591906122d5565b60405160208183030381529060405280519060200120905060006110a7610970565b600f5490915060ff166110cc5760405162461bcd60e51b81526004016108ad906125fe565b60075485600e546110dd9190612a4e565b11156110fb5760405162461bcd60e51b81526004016108ad90612796565b61113c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060115491508590506118e5565b6111585760405162461bcd60e51b81526004016108ad9061262e565b60085433600090815260126020526040902054611176908790612a4e565b11156111945760405162461bcd60e51b81526004016108ad90612a0d565b600a548511156111b65760405162461bcd60e51b81526004016108ad906126cc565b84600c546111c49190612a7a565b3410156111e35760405162461bcd60e51b81526004016108ad906128e9565b60005b8581101561122957611201336111fc8385612a4e565b6119a0565b600e805490600061121183612b17565b9190505550808061122190612b17565b9150506111e6565b503360009081526012602052604081208054879290611249908490612a4e565b90915550505050505050565b60606001805461080390612adc565b60075481565b6112726117e9565b6001600160a01b0316826001600160a01b031614156112a35760405162461bcd60e51b81526004016108ad9061254f565b80600460006112b06117e9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112f46117e9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132c91906123d4565b60405180910390a35050565b6012602052600090815260409020805460019091015482565b600061135b610970565b600f54909150610100900460ff166113855760405162461bcd60e51b81526004016108ad90612586565b60075482600e546113969190612a4e565b11156113b45760405162461bcd60e51b81526004016108ad90612796565b600954336000908152601260205260409020600101546113d5908490612a4e565b11156113f35760405162461bcd60e51b81526004016108ad90612a0d565b600b548211156114155760405162461bcd60e51b81526004016108ad906126cc565b81600d546114239190612a7a565b3410156114425760405162461bcd60e51b81526004016108ad906128e9565b60005b828110156114835761145b336111fc8385612a4e565b600e805490600061146b83612b17565b9190505550808061147b90612b17565b915050611445565b5033600090815260126020526040812060010180548492906114a6908490612a4e565b90915550505050565b60095481565b6114c1848484846119ba565b50505050565b60606114d282611791565b6114ee5760405162461bcd60e51b81526004016108ad906123fb565b60006114f86119f3565b905060008151116115185760405180602001604052806000815250611543565b8061152284611a02565b604051602001611533929190612300565b6040516020818303038152906040525b9392505050565b600a5481565b6115586117e9565b6001600160a01b0316611569610ffd565b6001600160a01b03161461158f5760405162461bcd60e51b81526004016108ad9061286b565b600f5460ff61010090910416151581151514156115be5760405162461bcd60e51b81526004016108ad90612842565b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61160e6117e9565b6001600160a01b031661161f610ffd565b6001600160a01b0316146116455760405162461bcd60e51b81526004016108ad9061286b565b8060075410156116675760405162461bcd60e51b81526004016108ad90612842565b600955565b6116746117e9565b6001600160a01b0316611685610ffd565b6001600160a01b0316146116ab5760405162461bcd60e51b81526004016108ad9061286b565b6001600160a01b0381166116d15760405162461bcd60e51b81526004016108ad9061248e565b6116da81611893565b50565b6116e56117e9565b6001600160a01b03166116f6610ffd565b6001600160a01b03161461171c5760405162461bcd60e51b81526004016108ad9061286b565b600e5481101561173e5760405162461bcd60e51b81526004016108ad90612842565b600755565b600f54610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061178257506001600160e01b03198216635b5e139f60e01b145b806107ec57506107ec82611b25565b600254600090821080156107ec575060006001600160a01b0316600283815481106117cc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182282610d34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61186c6118666117e9565b82611b3e565b6118885760405162461bcd60e51b81526004016108ad906129bc565b610965838383611bbb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b855181101561199557600086828151811061191557634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116119565782816040516020016119399291906122f2565b604051602081830303815290604052805190602001209250611982565b80836040516020016119699291906122f2565b6040516020818303038152906040528051906020012092505b508061198d81612b17565b9150506118ea565b509092149392505050565b610caf828260405180602001604052806000815250611cac565b6119cb6119c56117e9565b83611b3e565b6119e75760405162461bcd60e51b81526004016108ad906129bc565b6114c184848484611cdf565b60606010805461080390612adc565b606081611a2757506040805180820190915260018152600360fc1b60208201526107ef565b8160005b8115611a515780611a3b81612b17565b9150611a4a9050600a83612a66565b9150611a2b565b60008167ffffffffffffffff811115611a7a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611aa4576020820181803683370190505b5090505b8415611b1d57611ab9600183612a99565b9150611ac6600a86612b32565b611ad1906030612a4e565b60f81b818381518110611af457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b16600a86612a66565b9450611aa8565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000611b4982611791565b611b655760405162461bcd60e51b81526004016108ad906125b2565b6000611b7083610d34565b9050806001600160a01b0316846001600160a01b03161480611bab5750836001600160a01b0316611ba084610886565b6001600160a01b0316145b80611b1d5750611b1d81856115d8565b826001600160a01b0316611bce82610d34565b6001600160a01b031614611bf45760405162461bcd60e51b81526004016108ad906128a0565b6001600160a01b038216611c1a5760405162461bcd60e51b81526004016108ad9061250b565b611c25838383610965565b611c306000826117ed565b8160028281548110611c5257634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611cb68383611d12565b611cc36000848484611de6565b6109655760405162461bcd60e51b81526004016108ad9061243c565b611cea848484611bbb565b611cf684848484611de6565b6114c15760405162461bcd60e51b81526004016108ad9061243c565b6001600160a01b038216611d385760405162461bcd60e51b81526004016108ad906127c1565b611d4181611791565b15611d5e5760405162461bcd60e51b81526004016108ad906124d4565b611d6a60008383610965565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611dfa846001600160a01b0316611f01565b15611ef657836001600160a01b031663150b7a02611e166117e9565b8786866040518563ffffffff1660e01b8152600401611e389493929190612353565b602060405180830381600087803b158015611e5257600080fd5b505af1925050508015611e82575060408051601f3d908101601f19168201909252611e7f918101906121ce565b60015b611edc573d808015611eb0576040519150601f19603f3d011682016040523d82523d6000602084013e611eb5565b606091505b508051611ed45760405162461bcd60e51b81526004016108ad9061243c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b1d565b506001949350505050565b3b151590565b828054611f1390612adc565b90600052602060002090601f016020900481019282611f355760008555611f7b565b82601f10611f4e57805160ff1916838001178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578251825591602001919060010190611f60565b50610c599291505b80821115610c595760008155600101611f83565b600067ffffffffffffffff80841115611fb257611fb2612b72565b604051601f8501601f191681016020018281118282101715611fd657611fd6612b72565b604052848152915081838501861015611fee57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ef57600080fd5b803580151581146107ef57600080fd5b60006020828403121561203f578081fd5b61154382612007565b6000806040838503121561205a578081fd5b61206383612007565b915061207160208401612007565b90509250929050565b60008060006060848603121561208e578081fd5b61209784612007565b92506120a560208501612007565b9150604084013590509250925092565b600080600080608085870312156120ca578081fd5b6120d385612007565b93506120e160208601612007565b925060408501359150606085013567ffffffffffffffff811115612103578182fd5b8501601f81018713612113578182fd5b61212287823560208401611f97565b91505092959194509250565b60008060408385031215612140578182fd5b61214983612007565b91506120716020840161201e565b60008060408385031215612169578182fd5b61217283612007565b946020939093013593505050565b600060208284031215612191578081fd5b6115438261201e565b6000602082840312156121ab578081fd5b5035919050565b6000602082840312156121c3578081fd5b813561154381612b88565b6000602082840312156121df578081fd5b815161154381612b88565b6000602082840312156121fb578081fd5b813567ffffffffffffffff811115612211578182fd5b8201601f81018413612221578182fd5b611b1d84823560208401611f97565b600080600060408486031215612244578283fd5b83359250602084013567ffffffffffffffff80821115612262578384fd5b818601915086601f830112612275578384fd5b813581811115612283578485fd5b8760208083028501011115612296578485fd5b6020830194508093505050509250925092565b600081518084526122c1816020860160208601612ab0565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612312818460208801612ab0565b835190830190612326818360208801612ab0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612386908301846122a9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123c8578351835292840192918401916001016123ac565b50909695505050505050565b901515815260200190565b90815260200190565b60006020825261154360208301846122a9565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60008219821115612a6157612a61612b46565b500190565b600082612a7557612a75612b5c565b500490565b6000816000190483118215151615612a9457612a94612b46565b500290565b600082821015612aab57612aab612b46565b500390565b60005b83811015612acb578181015183820152602001612ab3565b838111156114c15750506000910152565b600281046001821680612af057607f821691505b60208210811415612b1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2b57612b2b612b46565b5060010190565b600082612b4157612b41612b5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116da57600080fdfea2646970667358221220badaf4f3ec0a24e8d564357e0fb2ea7d41103c5aa78286ccdfe1a892303cb6d264736f6c63430008000033

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80637e95eac41161014f578063a87430ba116100c1578063d897833e1161007a578063d897833e14610712578063e985e9c514610732578063f176baaa14610752578063f2fde38b14610772578063f439733514610792578063fe4ca847146107b25761027d565b8063a87430ba14610667578063a952686214610695578063ae5cc172146106a8578063b88d4fde146106bd578063c87b56dd146106dd578063ccfb63a4146106fd5761027d565b80638da5cb5b116101135780638da5cb5b146105d5578063941e79fc146105ea578063945242c61461060a57806395d89b411461061d578063995b8ef614610632578063a22cb465146106475761027d565b80637e95eac4146105495780637ec0912e1461055e5780637ec18cf61461057e5780637f205a74146105935780638462151c146105a85761027d565b80633e2e2a80116101f357806362dc6e21116101ac57806362dc6e21146104aa5780636352211e146104bf57806365fccb52146104df57806370a08231146104ff578063711cc2ae1461051f578063715018a6146105345761027d565b80633e2e2a80146103ea57806342842e0e1461040a5780634783f0ef1461042a5780634f6ccce71461044a57806355f804b31461046a5780635e326b921461048a5761027d565b806318160ddd1161024557806318160ddd1461034b57806323b872dd146103605780632eb4a7ab146103805780632f745c5914610395578063305004d9146103b55780633ccfd60b146103d55761027d565b806301ffc9a71461028257806306fdde03146102b8578063081812fc146102da578063095ea7b3146103075780630990e53414610329575b600080fd5b34801561028e57600080fd5b506102a261029d3660046121b2565b6107c7565b6040516102af91906123d4565b60405180910390f35b3480156102c457600080fd5b506102cd6107f4565b6040516102af91906123e8565b3480156102e657600080fd5b506102fa6102f536600461219a565b610886565b6040516102af919061233f565b34801561031357600080fd5b50610327610322366004612157565b6108d2565b005b34801561033557600080fd5b5061033e61096a565b6040516102af91906123df565b34801561035757600080fd5b5061033e610970565b34801561036c57600080fd5b5061032761037b36600461207a565b610976565b34801561038c57600080fd5b5061033e610981565b3480156103a157600080fd5b5061033e6103b0366004612157565b610987565b3480156103c157600080fd5b506103276103d036600461219a565b610a4a565b3480156103e157600080fd5b50610327610ab0565b3480156103f657600080fd5b5061032761040536600461219a565b610b6c565b34801561041657600080fd5b5061032761042536600461207a565b610bd2565b34801561043657600080fd5b5061032761044536600461219a565b610bed565b34801561045657600080fd5b5061033e61046536600461219a565b610c31565b34801561047657600080fd5b506103276104853660046121ea565b610c5d565b34801561049657600080fd5b506103276104a5366004612180565b610cb3565b3480156104b657600080fd5b5061033e610d2e565b3480156104cb57600080fd5b506102fa6104da36600461219a565b610d34565b3480156104eb57600080fd5b506103276104fa36600461219a565b610d8c565b34801561050b57600080fd5b5061033e61051a36600461202e565b610dd0565b34801561052b57600080fd5b5061033e610e6d565b34801561054057600080fd5b50610327610e73565b34801561055557600080fd5b5061033e610ebe565b34801561056a57600080fd5b5061032761057936600461219a565b610ec4565b34801561058a57600080fd5b506102a2610f08565b34801561059f57600080fd5b5061033e610f11565b3480156105b457600080fd5b506105c86105c336600461202e565b610f17565b6040516102af9190612390565b3480156105e157600080fd5b506102fa610ffd565b3480156105f657600080fd5b5061032761060536600461219a565b61100c565b610327610618366004612230565b611072565b34801561062957600080fd5b506102cd611255565b34801561063e57600080fd5b5061033e611264565b34801561065357600080fd5b5061032761066236600461212e565b61126a565b34801561067357600080fd5b5061068761068236600461202e565b611338565b6040516102af9291906122f2565b6103276106a336600461219a565b611351565b3480156106b457600080fd5b5061033e6114af565b3480156106c957600080fd5b506103276106d83660046120b5565b6114b5565b3480156106e957600080fd5b506102cd6106f836600461219a565b6114c7565b34801561070957600080fd5b5061033e61154a565b34801561071e57600080fd5b5061032761072d366004612180565b611550565b34801561073e57600080fd5b506102a261074d366004612048565b6115d8565b34801561075e57600080fd5b5061032761076d36600461219a565b611606565b34801561077e57600080fd5b5061032761078d36600461202e565b61166c565b34801561079e57600080fd5b506103276107ad36600461219a565b6116dd565b3480156107be57600080fd5b506102a2611743565b60006001600160e01b0319821663780e9d6360e01b14806107ec57506107ec82611751565b90505b919050565b60606000805461080390612adc565b80601f016020809104026020016040519081016040528092919081815260200182805461082f90612adc565b801561087c5780601f106108515761010080835404028352916020019161087c565b820191906000526020600020905b81548152906001019060200180831161085f57829003601f168201915b5050505050905090565b600061089182611791565b6108b65760405162461bcd60e51b81526004016108ad906127f6565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108dd82610d34565b9050806001600160a01b0316836001600160a01b031614156109115760405162461bcd60e51b81526004016108ad9061297b565b806001600160a01b03166109236117e9565b6001600160a01b0316148061093f575061093f8161074d6117e9565b61095b5760405162461bcd60e51b81526004016108ad9061266f565b61096583836117ed565b505050565b600e5481565b60025490565b61096583838361185b565b60115481565b600061099283610dd0565b82106109b05760405162461bcd60e51b81526004016108ad90612914565b6000805b600254811015610a2b57600281815481106109df57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610a1b5783821415610a0f579150610a449050565b610a1882612b17565b91505b610a2481612b17565b90506109b4565b5060405162461bcd60e51b81526004016108ad90612914565b92915050565b610a526117e9565b6001600160a01b0316610a63610ffd565b6001600160a01b031614610a895760405162461bcd60e51b81526004016108ad9061286b565b806007541015610aab5760405162461bcd60e51b81526004016108ad90612842565b600a55565b4780610abb57600080fd5b7321f169f44597b7579eb46b84dbe3dd85f2818d8760006064610adf84600f612a7a565b610ae99190612a66565b6040519091506001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610b22573d6000803e3d6000fd5b5060405173214f8e7d78d8c4655d99ac288eca5f8b035caaf59081904780156108fc02916000818181858888f19350505050158015610b65573d6000803e3d6000fd5b5050505050565b610b746117e9565b6001600160a01b0316610b85610ffd565b6001600160a01b031614610bab5760405162461bcd60e51b81526004016108ad9061286b565b806007541015610bcd5760405162461bcd60e51b81526004016108ad90612842565b600b55565b610965838383604051806020016040528060008152506114b5565b610bf56117e9565b6001600160a01b0316610c06610ffd565b6001600160a01b031614610c2c5760405162461bcd60e51b81526004016108ad9061286b565b601155565b6000610c3b610970565b8210610c595760405162461bcd60e51b81526004016108ad90612944565b5090565b610c656117e9565b6001600160a01b0316610c76610ffd565b6001600160a01b031614610c9c5760405162461bcd60e51b81526004016108ad9061286b565b8051610caf906010906020840190611f07565b5050565b610cbb6117e9565b6001600160a01b0316610ccc610ffd565b6001600160a01b031614610cf25760405162461bcd60e51b81526004016108ad9061286b565b600f5460ff1615158115151415610d1b5760405162461bcd60e51b81526004016108ad90612842565b600f805460ff1916911515919091179055565b600c5481565b60008060028381548110610d5857634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806107ec5760405162461bcd60e51b81526004016108ad9061274d565b610d946117e9565b6001600160a01b0316610da5610ffd565b6001600160a01b031614610dcb5760405162461bcd60e51b81526004016108ad9061286b565b600c55565b60006001600160a01b038216610df85760405162461bcd60e51b81526004016108ad90612703565b600254600090815b81811015610e645760028181548110610e2957634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610e5457610e5183612b17565b92505b610e5d81612b17565b9050610e00565b50909392505050565b600b5481565b610e7b6117e9565b6001600160a01b0316610e8c610ffd565b6001600160a01b031614610eb25760405162461bcd60e51b81526004016108ad9061286b565b610ebc6000611893565b565b60085481565b610ecc6117e9565b6001600160a01b0316610edd610ffd565b6001600160a01b031614610f035760405162461bcd60e51b81526004016108ad9061286b565b600d55565b600f5460ff1681565b600d5481565b6060610f2282610dd0565b600010610f415760405162461bcd60e51b81526004016108ad90612914565b6000610f4c83610dd0565b905060008167ffffffffffffffff811115610f7757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610fa0578160200160208202803683370190505b50905060005b82811015610ff557610fb88582610987565b828281518110610fd857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610fed81612b17565b915050610fa6565b509392505050565b6005546001600160a01b031690565b6110146117e9565b6001600160a01b0316611025610ffd565b6001600160a01b03161461104b5760405162461bcd60e51b81526004016108ad9061286b565b80600754101561106d5760405162461bcd60e51b81526004016108ad90612842565b600855565b60003360405160200161108591906122d5565b60405160208183030381529060405280519060200120905060006110a7610970565b600f5490915060ff166110cc5760405162461bcd60e51b81526004016108ad906125fe565b60075485600e546110dd9190612a4e565b11156110fb5760405162461bcd60e51b81526004016108ad90612796565b61113c8484808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152505060115491508590506118e5565b6111585760405162461bcd60e51b81526004016108ad9061262e565b60085433600090815260126020526040902054611176908790612a4e565b11156111945760405162461bcd60e51b81526004016108ad90612a0d565b600a548511156111b65760405162461bcd60e51b81526004016108ad906126cc565b84600c546111c49190612a7a565b3410156111e35760405162461bcd60e51b81526004016108ad906128e9565b60005b8581101561122957611201336111fc8385612a4e565b6119a0565b600e805490600061121183612b17565b9190505550808061122190612b17565b9150506111e6565b503360009081526012602052604081208054879290611249908490612a4e565b90915550505050505050565b60606001805461080390612adc565b60075481565b6112726117e9565b6001600160a01b0316826001600160a01b031614156112a35760405162461bcd60e51b81526004016108ad9061254f565b80600460006112b06117e9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556112f46117e9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161132c91906123d4565b60405180910390a35050565b6012602052600090815260409020805460019091015482565b600061135b610970565b600f54909150610100900460ff166113855760405162461bcd60e51b81526004016108ad90612586565b60075482600e546113969190612a4e565b11156113b45760405162461bcd60e51b81526004016108ad90612796565b600954336000908152601260205260409020600101546113d5908490612a4e565b11156113f35760405162461bcd60e51b81526004016108ad90612a0d565b600b548211156114155760405162461bcd60e51b81526004016108ad906126cc565b81600d546114239190612a7a565b3410156114425760405162461bcd60e51b81526004016108ad906128e9565b60005b828110156114835761145b336111fc8385612a4e565b600e805490600061146b83612b17565b9190505550808061147b90612b17565b915050611445565b5033600090815260126020526040812060010180548492906114a6908490612a4e565b90915550505050565b60095481565b6114c1848484846119ba565b50505050565b60606114d282611791565b6114ee5760405162461bcd60e51b81526004016108ad906123fb565b60006114f86119f3565b905060008151116115185760405180602001604052806000815250611543565b8061152284611a02565b604051602001611533929190612300565b6040516020818303038152906040525b9392505050565b600a5481565b6115586117e9565b6001600160a01b0316611569610ffd565b6001600160a01b03161461158f5760405162461bcd60e51b81526004016108ad9061286b565b600f5460ff61010090910416151581151514156115be5760405162461bcd60e51b81526004016108ad90612842565b600f80549115156101000261ff0019909216919091179055565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b61160e6117e9565b6001600160a01b031661161f610ffd565b6001600160a01b0316146116455760405162461bcd60e51b81526004016108ad9061286b565b8060075410156116675760405162461bcd60e51b81526004016108ad90612842565b600955565b6116746117e9565b6001600160a01b0316611685610ffd565b6001600160a01b0316146116ab5760405162461bcd60e51b81526004016108ad9061286b565b6001600160a01b0381166116d15760405162461bcd60e51b81526004016108ad9061248e565b6116da81611893565b50565b6116e56117e9565b6001600160a01b03166116f6610ffd565b6001600160a01b03161461171c5760405162461bcd60e51b81526004016108ad9061286b565b600e5481101561173e5760405162461bcd60e51b81526004016108ad90612842565b600755565b600f54610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061178257506001600160e01b03198216635b5e139f60e01b145b806107ec57506107ec82611b25565b600254600090821080156107ec575060006001600160a01b0316600283815481106117cc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061182282610d34565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61186c6118666117e9565b82611b3e565b6118885760405162461bcd60e51b81526004016108ad906129bc565b610965838383611bbb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600081815b855181101561199557600086828151811061191557634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116119565782816040516020016119399291906122f2565b604051602081830303815290604052805190602001209250611982565b80836040516020016119699291906122f2565b6040516020818303038152906040528051906020012092505b508061198d81612b17565b9150506118ea565b509092149392505050565b610caf828260405180602001604052806000815250611cac565b6119cb6119c56117e9565b83611b3e565b6119e75760405162461bcd60e51b81526004016108ad906129bc565b6114c184848484611cdf565b60606010805461080390612adc565b606081611a2757506040805180820190915260018152600360fc1b60208201526107ef565b8160005b8115611a515780611a3b81612b17565b9150611a4a9050600a83612a66565b9150611a2b565b60008167ffffffffffffffff811115611a7a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611aa4576020820181803683370190505b5090505b8415611b1d57611ab9600183612a99565b9150611ac6600a86612b32565b611ad1906030612a4e565b60f81b818381518110611af457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b16600a86612a66565b9450611aa8565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000611b4982611791565b611b655760405162461bcd60e51b81526004016108ad906125b2565b6000611b7083610d34565b9050806001600160a01b0316846001600160a01b03161480611bab5750836001600160a01b0316611ba084610886565b6001600160a01b0316145b80611b1d5750611b1d81856115d8565b826001600160a01b0316611bce82610d34565b6001600160a01b031614611bf45760405162461bcd60e51b81526004016108ad906128a0565b6001600160a01b038216611c1a5760405162461bcd60e51b81526004016108ad9061250b565b611c25838383610965565b611c306000826117ed565b8160028281548110611c5257634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611cb68383611d12565b611cc36000848484611de6565b6109655760405162461bcd60e51b81526004016108ad9061243c565b611cea848484611bbb565b611cf684848484611de6565b6114c15760405162461bcd60e51b81526004016108ad9061243c565b6001600160a01b038216611d385760405162461bcd60e51b81526004016108ad906127c1565b611d4181611791565b15611d5e5760405162461bcd60e51b81526004016108ad906124d4565b611d6a60008383610965565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611dfa846001600160a01b0316611f01565b15611ef657836001600160a01b031663150b7a02611e166117e9565b8786866040518563ffffffff1660e01b8152600401611e389493929190612353565b602060405180830381600087803b158015611e5257600080fd5b505af1925050508015611e82575060408051601f3d908101601f19168201909252611e7f918101906121ce565b60015b611edc573d808015611eb0576040519150601f19603f3d011682016040523d82523d6000602084013e611eb5565b606091505b508051611ed45760405162461bcd60e51b81526004016108ad9061243c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b1d565b506001949350505050565b3b151590565b828054611f1390612adc565b90600052602060002090601f016020900481019282611f355760008555611f7b565b82601f10611f4e57805160ff1916838001178555611f7b565b82800160010185558215611f7b579182015b82811115611f7b578251825591602001919060010190611f60565b50610c599291505b80821115610c595760008155600101611f83565b600067ffffffffffffffff80841115611fb257611fb2612b72565b604051601f8501601f191681016020018281118282101715611fd657611fd6612b72565b604052848152915081838501861015611fee57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107ef57600080fd5b803580151581146107ef57600080fd5b60006020828403121561203f578081fd5b61154382612007565b6000806040838503121561205a578081fd5b61206383612007565b915061207160208401612007565b90509250929050565b60008060006060848603121561208e578081fd5b61209784612007565b92506120a560208501612007565b9150604084013590509250925092565b600080600080608085870312156120ca578081fd5b6120d385612007565b93506120e160208601612007565b925060408501359150606085013567ffffffffffffffff811115612103578182fd5b8501601f81018713612113578182fd5b61212287823560208401611f97565b91505092959194509250565b60008060408385031215612140578182fd5b61214983612007565b91506120716020840161201e565b60008060408385031215612169578182fd5b61217283612007565b946020939093013593505050565b600060208284031215612191578081fd5b6115438261201e565b6000602082840312156121ab578081fd5b5035919050565b6000602082840312156121c3578081fd5b813561154381612b88565b6000602082840312156121df578081fd5b815161154381612b88565b6000602082840312156121fb578081fd5b813567ffffffffffffffff811115612211578182fd5b8201601f81018413612221578182fd5b611b1d84823560208401611f97565b600080600060408486031215612244578283fd5b83359250602084013567ffffffffffffffff80821115612262578384fd5b818601915086601f830112612275578384fd5b813581811115612283578485fd5b8760208083028501011115612296578485fd5b6020830194508093505050509250925092565b600081518084526122c1816020860160208601612ab0565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612312818460208801612ab0565b835190830190612326818360208801612ab0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612386908301846122a9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123c8578351835292840192918401916001016123ac565b50909695505050505050565b901515815260200190565b90815260200190565b60006020825261154360208301846122a9565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60008219821115612a6157612a61612b46565b500190565b600082612a7557612a75612b5c565b500490565b6000816000190483118215151615612a9457612a94612b46565b500290565b600082821015612aab57612aab612b46565b500390565b60005b83811015612acb578181015183820152602001612ab3565b838111156114c15750506000910152565b600281046001821680612af057607f821691505b60208210811415612b1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b2b57612b2b612b46565b5060010190565b600082612b4157612b41612b5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116da57600080fdfea2646970667358221220badaf4f3ec0a24e8d564357e0fb2ea7d41103c5aa78286ccdfe1a892303cb6d264736f6c63430008000033

Deployed Bytecode Sourcemap

30984:5353:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;31400:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;33878:145::-;;;;;;;;;;-1:-1:-1;33878:145:0;;;;;:::i;:::-;;:::i;31539:25::-;;;;;;;;;;;;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;35828:203::-;;;;;;;;;;-1:-1:-1;35828:203:0;;;;;:::i;:::-;;:::i;34217:448::-;;;;;;;;;;;;;:::i;36037:197::-;;;;;;;;;;-1:-1:-1;36037:197:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;36240:94::-;;;;;;;;;;-1:-1:-1;36240:94:0;;;;;:::i;:::-;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;34671:102::-;;;;;;;;;;-1:-1:-1;34671:102:0;;;;;:::i;:::-;;:::i;35151:154::-;;;;;;;;;;-1:-1:-1;35151:154:0;;;;;:::i;:::-;;:::i;31310:41::-;;;;;;;;;;;;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;34887:108::-;;;;;;;;;;-1:-1:-1;34887:108:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;31253:50::-;;;;;;;;;;;;;:::i;1363:94::-;;;;;;;;;;;;;:::i;31118:35::-;;;;;;;;;;;;;:::i;34779:102::-;;;;;;;;;;-1:-1:-1;34779:102:0;;;;;:::i;:::-;;:::i;31436:33::-;;;;;;;;;;;;;:::i;31355:38::-;;;;;;;;;;;;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;35482:171::-;;;;;;;;;;-1:-1:-1;35482:171:0;;;;;:::i;:::-;;:::i;31851:940::-;;;;;;:::i;:::-;;:::i;22533:104::-;;;;;;;;;;;;;:::i;31081:30::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;31639:38::-;;;;;;;;;;-1:-1:-1;31639:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;32797:710::-;;;;;;:::i;:::-;;:::i;31157:32::-;;;;;;;;;;;;;:::i;34031:180::-;;;;;;;;;;-1:-1:-1;34031:180:0;;;;;:::i;:::-;;:::i;33516:353::-;;;;;;;;;;-1:-1:-1;33516:353:0;;;;;:::i;:::-;;:::i;31196:53::-;;;;;;;;;;;;;:::i;35001:144::-;;;;;;;;;;-1:-1:-1;35001:144:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;35311:165::-;;;;;;;;;;-1:-1:-1;35311:165:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;35659:163::-;;;;;;;;;;-1:-1:-1;35659:163:0;;;;;:::i;:::-;;:::i;31473:30::-;;;;;;;;;;;;;:::i;28308:225::-;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;;28308:225;;;;:::o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;;;;;;:::i;:::-;22883:5;-1:-1:-1;;;;;22867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22867:21:0;;:62;;;;22892:37;22909:5;22916:12;:10;:12::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;;;;;;:::i;:::-;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22643:412;;;:::o;31400:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;33878:145::-;33973:42;33994:5;34001:3;34006:8;33973:20;:42::i;31539:25::-;;;;:::o;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;-1:-1:-1;;;28821:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;28539:500::-;;;;;:::o;35828:203::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35939:8:::1;35927;;:20;;35919:48;;;;-1:-1:-1::0;;;35919:48:0::1;;;;;;;:::i;:::-;35978:34;:45:::0;35828:203::o;34217:448::-;34272:21;34312:11;34304:20;;;;;;34374:42;34335:27;34460:3;34445:12;:7;34454:2;34445:12;:::i;:::-;34444:20;;;;:::i;:::-;34475:29;;34428:36;;-1:-1:-1;;;;;;34475:20:0;;;:29;;;;;34428:36;;34475:29;;;;34428:36;34475:20;:29;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34612:45:0;;34558:42;;;;34635:21;34612:45;;;;;34517:29;34612:45;34517:29;34612:45;34635:21;34558:42;34612:45;;;;;;;;;;;;;;;;;;;;;34217:448;;;;:::o;36037:197::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36145:8:::1;36133;;:20;;36125:48;;;;-1:-1:-1::0;;;36125:48:0::1;;;;;;;:::i;:::-;36184:31;:42:::0;36037:197::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;36240:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36309:10:::1;:20:::0;36240:94::o;29585:194::-;29660:7;29696:24;:22;:24::i;:::-;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;;;;;;:::i;:::-;-1:-1:-1;29766:5:0;29585:194::o;34671:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34745:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;34671:102:::0;:::o;35151:154::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35222:13:::1;::::0;::::1;;:23;;::::0;::::1;;;;35214:51;;;;-1:-1:-1::0;;;35214:51:0::1;;;;;;;:::i;:::-;35275:13;:22:::0;;-1:-1:-1;;35275:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35151:154::o;31310:41::-;;;;:::o;22182:239::-;22254:7;22274:13;22290:7;22298;22290:16;;;;;;-1:-1:-1;;;22290:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;;;;;;:::i;34887:108::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34963:13:::1;:24:::0;34887:108::o;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;;;;;;:::i;:::-;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;-1:-1:-1;;;22057:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;31253:50::-;;;;:::o;1363:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;31118:35::-;;;;:::o;34779:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34852:10:::1;:21:::0;34779:102::o;31436:33::-;;;;;;:::o;31355:38::-;;;;:::o;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;-1:-1:-1;;;29283:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;-1:-1:-1;;;29375:11:0;;;;;;;;;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;712:87::-;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;35482:171::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35579:8:::1;35567;;:20;;35559:48;;;;-1:-1:-1::0;;;35559:48:0::1;;;;;;;:::i;:::-;35618:16;:27:::0;35482:171::o;31851:940::-;31942:12;31984:10;31967:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;31957:39;;;;;;31942:54;;32001:19;32023:13;:11;:13::i;:::-;32054;;32001:35;;-1:-1:-1;32054:13:0;;32041:62;;;;-1:-1:-1;;;32041:62:0;;;;;;;:::i;:::-;32151:8;;32141:6;32127:11;;:20;;;;:::i;:::-;:32;;32114:76;;;;-1:-1:-1;;;32114:76:0;;;;;;;:::i;:::-;32208:49;32227:11;;32208:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32240:10:0;;;-1:-1:-1;32252:4:0;;-1:-1:-1;32208:18:0;:49::i;:::-;32195:109;;;;-1:-1:-1;;;32195:109:0;;;;;;;:::i;:::-;32364:16;;32328:10;32322:17;;;;:5;:17;;;;;:29;:38;;32354:6;;32322:38;:::i;:::-;:58;;32309:117;;;;-1:-1:-1;;;32309:117:0;;;;;;;:::i;:::-;32454:34;;32444:6;:44;;32431:100;;;;-1:-1:-1;;;32431:100:0;;;;;;;:::i;:::-;32578:6;32562:13;;:22;;;;:::i;:::-;32549:9;:35;;32536:78;;;;-1:-1:-1;;;32536:78:0;;;;;;;:::i;:::-;32624:9;32619:121;32643:6;32639:1;:10;32619:121;;;32671:38;32681:10;32693:15;32707:1;32693:11;:15;:::i;:::-;32671:9;:38::i;:::-;32715:11;:13;;;:11;:13;;;:::i;:::-;;;;;;32651:3;;;;;:::i;:::-;;;;32619:121;;;-1:-1:-1;32750:10:0;32744:17;;;;:5;:17;;;;;:39;;32777:6;;32744:17;:39;;32777:6;;32744:39;:::i;:::-;;;;-1:-1:-1;;;;;;;31851:940:0:o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;31081:30::-;;;;:::o;23288:295::-;23403:12;:10;:12::i;:::-;-1:-1:-1;;;;;23391:24:0;:8;-1:-1:-1;;;;;23391:24:0;;;23383:62;;;;-1:-1:-1;;;23383:62:0;;;;;;;:::i;:::-;23503:8;23458:18;:32;23477:12;:10;:12::i;:::-;-1:-1:-1;;;;;23458:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23458:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;;23542:12;:10;:12::i;:::-;-1:-1:-1;;;;;23527:48:0;;23566:8;23527:48;;;;;;:::i;:::-;;;;;;;;23288:295;;:::o;31639:38::-;;;;;;;;;;;;;;;;;;;:::o;32797:710::-;32853:19;32875:13;:11;:13::i;:::-;32906:10;;32853:35;;-1:-1:-1;32906:10:0;;;;;32893:55;;;;-1:-1:-1;;;32893:55:0;;;;;;;:::i;:::-;32996:8;;32986:6;32972:11;;:20;;;;:::i;:::-;:32;;32959:76;;;;-1:-1:-1;;;32959:76:0;;;;;;;:::i;:::-;33092:13;;33059:10;33053:17;;;;:5;:17;;;;;:26;;;:35;;33082:6;;33053:35;:::i;:::-;:52;;33040:111;;;;-1:-1:-1;;;33040:111:0;;;;;;;:::i;:::-;33179:31;;33169:6;:41;;33156:97;;;;-1:-1:-1;;;33156:97:0;;;;;;;:::i;:::-;33297:6;33284:10;;:19;;;;:::i;:::-;33271:9;:32;;33258:75;;;;-1:-1:-1;;;33258:75:0;;;;;;;:::i;:::-;33343:9;33338:121;33362:6;33358:1;:10;33338:121;;;33390:38;33400:10;33412:15;33426:1;33412:11;:15;:::i;33390:38::-;33434:11;:13;;;:11;:13;;;:::i;:::-;;;;;;33370:3;;;;;:::i;:::-;;;;33338:121;;;-1:-1:-1;33469:10:0;33463:17;;;;:5;:17;;;;;:26;;:36;;33493:6;;33463:17;:36;;33493:6;;33463:36;:::i;:::-;;;;-1:-1:-1;;;;32797:710:0:o;31157:32::-;;;;:::o;34031:180::-;34150:53;34175:5;34182:3;34187:8;34197:5;34150:24;:53::i;:::-;34031:180;;;;:::o;33516:353::-;33592:13;33626:17;33634:8;33626:7;:17::i;:::-;33618:63;;;;-1:-1:-1;;;33618:63:0;;;;;;;:::i;:::-;33692:28;33723:10;:8;:10::i;:::-;33692:41;;33782:1;33757:14;33751:28;:32;:110;;;;;;;;;;;;;;;;;33810:14;33826:19;:8;:17;:19::i;:::-;33793:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33751:110;33744:117;33516:353;-1:-1:-1;;;33516:353:0:o;31196:53::-;;;;:::o;35001:144::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35073:10:::1;::::0;::::1;;::::0;;::::1;;:20;;::::0;::::1;;;;35065:48;;;;-1:-1:-1::0;;;35065:48:0::1;;;;;;;:::i;:::-;35118:10;:19:::0;;;::::1;;;;-1:-1:-1::0;;35118:19:0;;::::1;::::0;;;::::1;::::0;;35001:144::o;23589:164::-;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;35311:165::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35405:8:::1;35393;;:20;;35385:48;;;;-1:-1:-1::0;;;35385:48:0::1;;;;;;;:::i;:::-;35444:13;:24:::0;35311:165::o;1612:192::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;;-1:-1:-1::0;;;1693:73:0::1;;;;;;;:::i;:::-;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;35659:163::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;35752:11:::1;;35739:9;:24;;35731:52;;;;-1:-1:-1::0;;;35731:52:0::1;;;;;;;:::i;:::-;35794:8;:20:::0;35659:163::o;31473:30::-;;;;;;;;;:::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;;21704:36;21728:11;21704:23;:36::i;24950:155::-;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;-1:-1:-1;;;25067:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;;24950:155;-1:-1:-1;;24950:155:0:o;95:98::-;175:10;95:98;:::o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;23973:12;:10;:12::i;:::-;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1812:173;;:::o;30147:830::-;30272:4;30312;30272;30329:525;30353:5;:12;30349:1;:16;30329:525;;;30387:20;30410:5;30416:1;30410:8;;;;;;-1:-1:-1;;;30410:8:0;;;;;;;;;;;;;;;30387:31;;30455:12;30439;:28;30435:408;;30609:12;30623;30592:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30582:55;;;;;;30567:70;;30435:408;;;30799:12;30813;30782:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30772:55;;;;;;30757:70;;30435:408;-1:-1:-1;30367:3:0;;;;:::i;:::-;;;;30329:525;;;-1:-1:-1;30949:20:0;;;;30147:830;-1:-1:-1;;;30147:830:0:o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;24295:328::-;24470:41;24489:12;:10;:12::i;:::-;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;31746:99::-;31797:13;31830:7;31823:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;;2453:53;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;-1:-1:-1;;;2682:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;-1:-1:-1;;;2770:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;20834:157::-;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;20834:157;;;:::o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;;;;;;:::i;:::-;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;;25419:32;25436:5;25443:7;25419:16;:32::i;26600:517::-;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;;;;;;:::i;:::-;26899:39;26920:4;26926:2;26930:7;26899:20;:39::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;-1:-1:-1;;;27043:16:0;;;;;;;;;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;;;;;;:::i;:::-;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;;;;;;:::i;:::-;26124:45;26153:1;26157:2;26161:7;26124:20;:45::i;:::-;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;27480:15;:2;-1:-1:-1;;;;;27480:13:0;;:15::i;:::-;27476:620;;;27532:2;-1:-1:-1;;;;;27516:36:0;;27553:12;:10;:12::i;:::-;27567:4;27573:7;27582:5;27516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;13396:387::-;13719:20;13767:8;;;13396:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:190::-;;3362:2;3350:9;3341:7;3337:23;3333:32;3330:2;;;3383:6;3375;3368:22;3330:2;-1:-1:-1;3411:23:1;;3320:120;-1:-1:-1;3320:120:1:o;3445:257::-;;3556:2;3544:9;3535:7;3531:23;3527:32;3524:2;;;3577:6;3569;3562:22;3524:2;3621:9;3608:23;3640:32;3666:5;3640:32;:::i;3707:261::-;;3829:2;3817:9;3808:7;3804:23;3800:32;3797:2;;;3850:6;3842;3835:22;3797:2;3887:9;3881:16;3906:32;3932:5;3906:32;:::i;3973:482::-;;4095:2;4083:9;4074:7;4070:23;4066:32;4063:2;;;4116:6;4108;4101:22;4063:2;4161:9;4148:23;4194:18;4186:6;4183:30;4180:2;;;4231:6;4223;4216:22;4180:2;4259:22;;4312:4;4304:13;;4300:27;-1:-1:-1;4290:2:1;;4346:6;4338;4331:22;4290:2;4374:75;4441:7;4436:2;4423:16;4418:2;4414;4410:11;4374:75;:::i;4655:734::-;;;;4819:2;4807:9;4798:7;4794:23;4790:32;4787:2;;;4840:6;4832;4825:22;4787:2;4881:9;4868:23;4858:33;;4942:2;4931:9;4927:18;4914:32;4965:18;5006:2;4998:6;4995:14;4992:2;;;5027:6;5019;5012:22;4992:2;5070:6;5059:9;5055:22;5045:32;;5115:7;5108:4;5104:2;5100:13;5096:27;5086:2;;5142:6;5134;5127:22;5086:2;5187;5174:16;5213:2;5205:6;5202:14;5199:2;;;5234:6;5226;5219:22;5199:2;5293:7;5288:2;5282;5274:6;5270:15;5266:2;5262:24;5258:33;5255:46;5252:2;;;5319:6;5311;5304:22;5252:2;5355;5351;5347:11;5337:21;;5377:6;5367:16;;;;;4777:612;;;;;:::o;5394:259::-;;5475:5;5469:12;5502:6;5497:3;5490:19;5518:63;5574:6;5567:4;5562:3;5558:14;5551:4;5544:5;5540:16;5518:63;:::i;:::-;5635:2;5614:15;-1:-1:-1;;5610:29:1;5601:39;;;;5642:4;5597:50;;5445:208;-1:-1:-1;;5445:208:1:o;5658:229::-;5807:2;5803:15;;;;-1:-1:-1;;5799:53:1;5787:66;;5878:2;5869:12;;5777:110::o;5892:247::-;6049:19;;;6093:2;6084:12;;6077:28;6130:2;6121:12;;6039:100::o;6144:637::-;;6462:6;6456:13;6478:53;6524:6;6519:3;6512:4;6504:6;6500:17;6478:53;:::i;:::-;6594:13;;6553:16;;;;6616:57;6594:13;6553:16;6650:4;6638:17;;6616:57;:::i;:::-;-1:-1:-1;;;6695:20:1;;6724:22;;;6773:1;6762:13;;6432:349;-1:-1:-1;;;;6432:349:1:o;6786:203::-;-1:-1:-1;;;;;6950:32:1;;;;6932:51;;6920:2;6905:18;;6887:102::o;6994:490::-;-1:-1:-1;;;;;7263:15:1;;;7245:34;;7315:15;;7310:2;7295:18;;7288:43;7362:2;7347:18;;7340:34;;;7410:3;7405:2;7390:18;;7383:31;;;6994:490;;7431:47;;7458:19;;7450:6;7431:47;:::i;:::-;7423:55;7197:287;-1:-1:-1;;;;;;7197:287:1:o;7489:635::-;7660:2;7712:21;;;7782:13;;7685:18;;;7804:22;;;7489:635;;7660:2;7883:15;;;;7857:2;7842:18;;;7489:635;7929:169;7943:6;7940:1;7937:13;7929:169;;;8004:13;;7992:26;;8073:15;;;;8038:12;;;;7965:1;7958:9;7929:169;;;-1:-1:-1;8115:3:1;;7640:484;-1:-1:-1;;;;;;7640:484:1:o;8129:187::-;8294:14;;8287:22;8269:41;;8257:2;8242:18;;8224:92::o;8321:177::-;8467:25;;;8455:2;8440:18;;8422:76::o;8503:221::-;;8652:2;8641:9;8634:21;8672:46;8714:2;8703:9;8699:18;8691:6;8672:46;:::i;8729:397::-;8931:2;8913:21;;;8970:2;8950:18;;;8943:30;9009:34;9004:2;8989:18;;8982:62;-1:-1:-1;;;9075:2:1;9060:18;;9053:31;9116:3;9101:19;;8903:223::o;9131:414::-;9333:2;9315:21;;;9372:2;9352:18;;;9345:30;9411:34;9406:2;9391:18;;9384:62;-1:-1:-1;;;9477:2:1;9462:18;;9455:48;9535:3;9520:19;;9305:240::o;9550:402::-;9752:2;9734:21;;;9791:2;9771:18;;;9764:30;9830:34;9825:2;9810:18;;9803:62;-1:-1:-1;;;9896:2:1;9881:18;;9874:36;9942:3;9927:19;;9724:228::o;9957:352::-;10159:2;10141:21;;;10198:2;10178:18;;;10171:30;10237;10232:2;10217:18;;10210:58;10300:2;10285:18;;10131:178::o;10314:400::-;10516:2;10498:21;;;10555:2;10535:18;;;10528:30;10594:34;10589:2;10574:18;;10567:62;-1:-1:-1;;;10660:2:1;10645:18;;10638:34;10704:3;10689:19;;10488:226::o;10719:349::-;10921:2;10903:21;;;10960:2;10940:18;;;10933:30;10999:27;10994:2;10979:18;;10972:55;11059:2;11044:18;;10893:175::o;11073:342::-;11275:2;11257:21;;;11314:2;11294:18;;;11287:30;-1:-1:-1;;;11348:2:1;11333:18;;11326:48;11406:2;11391:18;;11247:168::o;11420:408::-;11622:2;11604:21;;;11661:2;11641:18;;;11634:30;11700:34;11695:2;11680:18;;11673:62;-1:-1:-1;;;11766:2:1;11751:18;;11744:42;11818:3;11803:19;;11594:234::o;11833:346::-;12035:2;12017:21;;;12074:2;12054:18;;;12047:30;-1:-1:-1;;;12108:2:1;12093:18;;12086:52;12170:2;12155:18;;12007:172::o;12184:397::-;12386:2;12368:21;;;12425:2;12405:18;;;12398:30;12464:34;12459:2;12444:18;;12437:62;-1:-1:-1;;;12530:2:1;12515:18;;12508:31;12571:3;12556:19;;12358:223::o;12586:420::-;12788:2;12770:21;;;12827:2;12807:18;;;12800:30;12866:34;12861:2;12846:18;;12839:62;12937:26;12932:2;12917:18;;12910:54;12996:3;12981:19;;12760:246::o;13011:354::-;13213:2;13195:21;;;13252:2;13232:18;;;13225:30;13291:32;13286:2;13271:18;;13264:60;13356:2;13341:18;;13185:180::o;13370:406::-;13572:2;13554:21;;;13611:2;13591:18;;;13584:30;13650:34;13645:2;13630:18;;13623:62;-1:-1:-1;;;13716:2:1;13701:18;;13694:40;13766:3;13751:19;;13544:232::o;13781:405::-;13983:2;13965:21;;;14022:2;14002:18;;;13995:30;14061:34;14056:2;14041:18;;14034:62;-1:-1:-1;;;14127:2:1;14112:18;;14105:39;14176:3;14161:19;;13955:231::o;14191:341::-;14393:2;14375:21;;;14432:2;14412:18;;;14405:30;-1:-1:-1;;;14466:2:1;14451:18;;14444:47;14523:2;14508:18;;14365:167::o;14537:356::-;14739:2;14721:21;;;14758:18;;;14751:30;14817:34;14812:2;14797:18;;14790:62;14884:2;14869:18;;14711:182::o;14898:408::-;15100:2;15082:21;;;15139:2;15119:18;;;15112:30;15178:34;15173:2;15158:18;;15151:62;-1:-1:-1;;;15244:2:1;15229:18;;15222:42;15296:3;15281:19;;15072:234::o;15311:339::-;15513:2;15495:21;;;15552:2;15532:18;;;15525:30;-1:-1:-1;;;15586:2:1;15571:18;;15564:45;15641:2;15626:18;;15485:165::o;15655:356::-;15857:2;15839:21;;;15876:18;;;15869:30;15935:34;15930:2;15915:18;;15908:62;16002:2;15987:18;;15829:182::o;16016:405::-;16218:2;16200:21;;;16257:2;16237:18;;;16230:30;16296:34;16291:2;16276:18;;16269:62;-1:-1:-1;;;16362:2:1;16347:18;;16340:39;16411:3;16396:19;;16190:231::o;16426:341::-;16628:2;16610:21;;;16667:2;16647:18;;;16640:30;-1:-1:-1;;;16701:2:1;16686:18;;16679:47;16758:2;16743:18;;16600:167::o;16772:346::-;16974:2;16956:21;;;17013:2;16993:18;;;16986:30;-1:-1:-1;;;17047:2:1;17032:18;;17025:52;17109:2;17094:18;;16946:172::o;17123:347::-;17325:2;17307:21;;;17364:2;17344:18;;;17337:30;17403:25;17398:2;17383:18;;17376:53;17461:2;17446:18;;17297:173::o;17475:397::-;17677:2;17659:21;;;17716:2;17696:18;;;17689:30;17755:34;17750:2;17735:18;;17728:62;-1:-1:-1;;;17821:2:1;17806:18;;17799:31;17862:3;17847:19;;17649:223::o;17877:413::-;18079:2;18061:21;;;18118:2;18098:18;;;18091:30;18157:34;18152:2;18137:18;;18130:62;-1:-1:-1;;;18223:2:1;18208:18;;18201:47;18280:3;18265:19;;18051:239::o;18295:397::-;18497:2;18479:21;;;18536:2;18516:18;;;18509:30;18575:34;18570:2;18555:18;;18548:62;-1:-1:-1;;;18641:2:1;18626:18;;18619:31;18682:3;18667:19;;18469:223::o;19132:128::-;;19203:1;19199:6;19196:1;19193:13;19190:2;;;19209:18;;:::i;:::-;-1:-1:-1;19245:9:1;;19180:80::o;19265:120::-;;19331:1;19321:2;;19336:18;;:::i;:::-;-1:-1:-1;19370:9:1;;19311:74::o;19390:168::-;;19496:1;19492;19488:6;19484:14;19481:1;19478:21;19473:1;19466:9;19459:17;19455:45;19452:2;;;19503:18;;:::i;:::-;-1:-1:-1;19543:9:1;;19442:116::o;19563:125::-;;19631:1;19628;19625:8;19622:2;;;19636:18;;:::i;:::-;-1:-1:-1;19673:9:1;;19612:76::o;19693:258::-;19765:1;19775:113;19789:6;19786:1;19783:13;19775:113;;;19865:11;;;19859:18;19846:11;;;19839:39;19811:2;19804:10;19775:113;;;19906:6;19903:1;19900:13;19897:2;;;-1:-1:-1;;19941:1:1;19923:16;;19916:27;19746:205::o;19956:380::-;20041:1;20031:12;;20088:1;20078:12;;;20099:2;;20153:4;20145:6;20141:17;20131:27;;20099:2;20206;20198:6;20195:14;20175:18;20172:38;20169:2;;;20252:10;20247:3;20243:20;20240:1;20233:31;20287:4;20284:1;20277:15;20315:4;20312:1;20305:15;20169:2;;20011:325;;;:::o;20341:135::-;;-1:-1:-1;;20401:17:1;;20398:2;;;20421:18;;:::i;:::-;-1:-1:-1;20468:1:1;20457:13;;20388:88::o;20481:112::-;;20539:1;20529:2;;20544:18;;:::i;:::-;-1:-1:-1;20578:9:1;;20519:74::o;20598:127::-;20659:10;20654:3;20650:20;20647:1;20640:31;20690:4;20687:1;20680:15;20714:4;20711:1;20704:15;20730:127;20791:10;20786:3;20782:20;20779:1;20772:31;20822:4;20819:1;20812:15;20846:4;20843:1;20836:15;20862:127;20923:10;20918:3;20914:20;20911:1;20904:31;20954:4;20951:1;20944:15;20978:4;20975:1;20968:15;20994:133;-1:-1:-1;;;;;;21070:32:1;;21060:43;;21050:2;;21117:1;21114;21107:12

Swarm Source

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