ETH Price: $3,253.44 (-0.02%)
Gas: 1 Gwei

Token

Cursed Vegiemon (CVGM)
 

Overview

Max Total Supply

371 CVGM

Holders

146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
jbondwagon.eth
Balance
1 CVGM
0x9dfd400201b905dc343cf0eaae5f68f4da342b60
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:
CursedVegiemon

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-12
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;

// File: @openzeppelin/contracts/utils/Strings.sol
/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Counters.sol
/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

        _balances[to] += 1;
        _owners[tokenId] = to;

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

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

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: contracts/Vegiemon.sol
contract Vegiemon is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    
    bool public isActive = false;
    uint256 public itemPrice;
    
    uint256 public _reserved = 50; // for giveAway
    string private baseURI;

    // withdraw addresses
    address t1 = 0xc40C2Db69DF9A7480d7d55E13c8DB55b63805DFd;
    address t2 = 0xeFcc0f7892bFe2F70011F422DA65AA431Fe0Be50;
    
    //vegiemon dont need a lots of complicated code ╮ (. ❛ ᴗ ❛.) ╭
    constructor () ERC721("Vegiemon", "VGM") 
    {
        baseURI = "https://needfreetime.me/vegiemon/tokens/";
        itemPrice = 50000000000000000; // 0.05 ETH
        giveAway( t1, 10); //community giveaway       
        giveAway( t2, 10);
    }

	function getItemPrice() public view returns (uint256) 
	{
		return itemPrice;
	}
	
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    /*
    * Mint
    */
    function mint(address player, uint numberOfMints)
        public payable
    {
        require(isActive,                                                   "vegiemon sale hasn't started yet");
        require(_tokenIds.current() + numberOfMints <= 10000 - _reserved,   "Maximum amount already minted.");
        require(msg.value >= itemPrice * numberOfMints,                     "insufficient ETH");
        require(numberOfMints <= 20,                                        "You cant mint more than 20 at a time.");
        require(numberOfMints > 0,                                          "gas fee for nothing, vegiemon don't accept this request."); //(づ ̄ ³ ̄)づ
        
        for(uint i = 0; i < numberOfMints; i++)
        {
            uint256 newItemId = _tokenIds.current();
            _safeMint(player, newItemId);
            _tokenIds.increment();
        }
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) 
    {
        require(tokenId < _tokenIds.current(), "tokenId exceeds upper bound");
        string memory _tokenURI = super.tokenURI(tokenId);
        return _tokenURI;
    }
    
    /*Owner*/
    function setActive(bool val) public onlyOwner 
    {
        isActive = val;
    }
    
    function giveAway(address _to, uint256 _amount) public onlyOwner
    {
        require(_amount <= _reserved,   "exceeds reserved supply");
        require(_amount > 0,            "giveAway nothing.");
        
        for(uint256 i; i < _amount; i++)
        {
            uint256 newItemId = _tokenIds.current();
            _safeMint(_to, newItemId);
            _tokenIds.increment();
        }

        _reserved -= _amount;
    }
     
    function setBaseURI(string memory uri) public onlyOwner 
    {
        baseURI = uri;
    }

    //Just incase something bad happen ʕノ•ᴥ•ʔノ ︵ ┻━┻
    function setItemPrice(uint256 _price) public onlyOwner 
    {
		itemPrice = _price;
	}
    
    function cashOut() public onlyOwner 
    {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
}

// File: contracts/CursedVegiemon.sol
contract CursedVegiemon is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    
    bool public isUpgradeActive = false;
    bool public isMintActive = false;
    bool public isSaleActive = false;
    
    uint256 public itemPrice;
    
    uint256 public _reserved_mint = 2000;
    uint256 public _reserved_sale = 2000;
    uint256 public _reserved_giveaway = 50;
    
    string private baseURI;
    string private upgradeURI;
    
    // withdraw addresses
    address t1 = 0xc40C2Db69DF9A7480d7d55E13c8DB55b63805DFd;
    address t2 = 0xeFcc0f7892bFe2F70011F422DA65AA431Fe0Be50;
    address burnAddress = 0x000000000000000000000000000000000000dEaD;

    //vegiemon
    address public addressVegiemon;
    Vegiemon public ctxVegiemon;
    
    mapping (uint256 => bool) public VegiemonTokens;
    mapping (uint256 => bool) public CursedVegiemonUpgrade;
    
    struct UnclaimedItems {
      uint unclaimedItemCount;
      uint256[] unclaimedItemIds;
    }
  
    constructor () ERC721("Cursed Vegiemon", "CVGM") 
    {
        baseURI = "https://vegiemon.me/cursedvegiemon/tokens/";
        upgradeURI = "https://vegiemon.me/cursedvegiemon_upgrade/tokens/";
        itemPrice = 50000000000000000; // 0.05 ETH
        setupVegiemon(0x2FB5B875a85713cBA312c097D16838C242caDaec);
        giveAway(t1, 10);
        giveAway(t2, 10);
    }

	function getItemPrice() public view returns (uint256) 
	{
		return itemPrice;
	}
	
	function getReservedMint() public view returns (uint256) 
	{
		return _reserved_mint;
	}
	
	function getReservedSale() public view returns (uint256) 
	{
		return _reserved_sale;
	}
	
    function isVegiemonTokenContains(uint256 id) view public returns (bool){
        return VegiemonTokens[id];
    }
	
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }
    
    function vegiemonWalletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        require(addressVegiemon != address(0),                                  "vegiemon contract address need be set");
        return ctxVegiemon.walletOfOwner(_owner);
    }
    
    function getNumberOfVegiemonToken(address _owner) public view returns (UnclaimedItems memory)
    {
        uint256 tc = ctxVegiemon.balanceOf(_owner);
        UnclaimedItems memory result = UnclaimedItems(0, new uint256[](tc));

        for(uint256 i; i < tc; i++) 
        {
            uint256 tokenid = ctxVegiemon.tokenOfOwnerByIndex(_owner, i);
            if(VegiemonTokens[tokenid] == false)
            {
                result.unclaimedItemIds[result.unclaimedItemCount] = tokenid;
                result.unclaimedItemCount += 1;
            }
        }

        return result;
    }

    /*
    * Mint
    */
    function mint(uint numberOfMints) public
    {
        address from = msg.sender;
        require(addressVegiemon != address(0),                                  "vegiemon contract address need be set");
        require(isMintActive,                                                   "cursed vegiemon mint hasn't started yet");
        UnclaimedItems memory ucs = getNumberOfVegiemonToken(from);
        require(ucs.unclaimedItemCount >= numberOfMints * 5,                    "vegiemon tokens not enough to mint!");
        require(_reserved_mint - numberOfMints >= 0,                            "Maximum amount already minted.");
        require(numberOfMints <= 20,                                            "You cant mint more than 20 at a time.");
        require(numberOfMints > 0,                                              "gas fee for nothing, vegiemon don't accept this request."); //(づ ̄ ³ ̄)づ

        uint index = 0;
        for(uint i = 0; i < numberOfMints; i++)
        {
            index = i * 5;
            VegiemonTokens[ucs.unclaimedItemIds[index ]] = true;
            VegiemonTokens[ucs.unclaimedItemIds[index + 1]] = true;
            VegiemonTokens[ucs.unclaimedItemIds[index + 2]] = true;
            VegiemonTokens[ucs.unclaimedItemIds[index + 3]] = true;
            VegiemonTokens[ucs.unclaimedItemIds[index + 4]] = true;

            _safeMint(from, _tokenIds.current());
            _tokenIds.increment();
        }

        _reserved_mint = _reserved_mint - numberOfMints;
    }
    
    function checkVegiemonIds(address from,uint256[] memory ids) public view returns (bool)
    {
        for(uint256 i; i < ids.length; i++) 
        {
            uint256 tokenid = ids[i];
            if(VegiemonTokens[tokenid] == true || ctxVegiemon.ownerOf(tokenid) != from)
            {
                return false;
            }
        }

        return true;
    }
    
    /*
    * Mint
    */
    function mint2(uint256[] memory ids) public
    {
        address from = msg.sender;
        require(addressVegiemon != address(0),                                  "vegiemon contract address need be set");
        require(isMintActive,                                                   "cursed vegiemon mint hasn't started yet");
        uint numberOfMints = ids.length / 5;
        require(_reserved_mint - numberOfMints >= 0,                            "Maximum amount already minted.");
        require(numberOfMints <= 20,                                            "You cant mint more than 20 at a time.");
        require(numberOfMints > 0,                                              "gas fee for nothing, vegiemon don't accept this request."); //(づ ̄ ³ ̄)づ
        require(checkVegiemonIds(from, ids),                                    "Vegiemon Ids is not token owner or someone used");
        
        uint256 index = 0;
        uint256 count = 0;
        for(uint i = 0; i < numberOfMints; i++)
        {
            index = i * 5;
            uint256 v1 = ids[index];
            uint256 v2 = ids[index + 1];
            uint256 v3 = ids[index + 2];
            uint256 v4 = ids[index + 3];
            uint256 v5 = ids[index + 4];
            if(ctxVegiemon.ownerOf(v1) == from && ctxVegiemon.ownerOf(v2) == from && ctxVegiemon.ownerOf(v3) == from && ctxVegiemon.ownerOf(v4) == from && ctxVegiemon.ownerOf(v5) == from
            && VegiemonTokens[v1] == false && VegiemonTokens[v2] == false && VegiemonTokens[v3] == false && VegiemonTokens[v4] == false && VegiemonTokens[v5] == false)
            {
                VegiemonTokens[v1] = true;
                VegiemonTokens[v2] = true;
                VegiemonTokens[v3] = true;
                VegiemonTokens[v4] = true;
                VegiemonTokens[v5] = true;
                _safeMint(from, _tokenIds.current());
                _tokenIds.increment();
                count += 1;
            }
        }

        _reserved_mint = _reserved_mint - count;
    }
    
    /*
    * sale
    */
    function sale(uint numberOfMints)
        public payable
    {
        require(isSaleActive,                                               "cursed vegiemon sale hasn't started yet");
        require(_reserved_sale - numberOfMints >= 0,                        "Maximum amount already minted.");
        require(msg.value >= itemPrice * numberOfMints,                     "insufficient ETH");
        require(numberOfMints <= 10,                                        "You cant mint more than 10 at a time.");
        require(numberOfMints > 0,                                          "gas fee for nothing, vegiemon don't accept this request."); //(づ ̄ ³ ̄)づ
        
        for(uint i = 0; i < numberOfMints; i++)
        {
            _safeMint(msg.sender, _tokenIds.current());
            _tokenIds.increment();
        }
        
        _reserved_sale = _reserved_sale - numberOfMints;
    }
    
    /*
    * giveAway
    */
    function giveAway(address _to, uint256 _amount) public onlyOwner
    {
        require(_amount <= _reserved_sale,          "exceeds reserved sale supply");
        require(_amount <= _reserved_giveaway,      "exceeds reserved giveaway supply");
        require(_amount > 0,                        "giveAway nothing.");
        
        for(uint256 i; i < _amount; i++)
        {
            uint256 newItemId = _tokenIds.current();
            _safeMint(_to, newItemId);
            _tokenIds.increment();
        }
        _reserved_giveaway = _reserved_giveaway - _amount;
        _reserved_sale = _reserved_sale - _amount;
    }
    
    /*
    * upgrade
    */
    function upgrade(uint256 v1, uint256 v2, uint256 v3, uint256 cv1) public
    {
        address from = msg.sender;
        require(isUpgradeActive,                                               "cursed vegiemon upgrade hasn't started yet");
        require(addressVegiemon != address(0),                                  "vegiemon contract address need be set");
        require(ctxVegiemon.isApprovedForAll(from, address(this)),              "vegiemon contract address need be Approved");
        require(ctxVegiemon.ownerOf(v1) == from,                                "vegiemon: use of token1 that is not own");
        require(ctxVegiemon.ownerOf(v2) == from,                                "vegiemon: use of token2 that is not own");
        require(ctxVegiemon.ownerOf(v3) == from,                                "vegiemon: use of token3 that is not own");
        require(ownerOf(cv1) == from,                                           "cursed vegiemon: use of token3 that is not own");
        require(v1 != v2 && v1 != v3 && v2 != v3,                               "vegiemon ids need be unique");
        require(CursedVegiemonUpgrade[cv1] == false,                            "cursed vegiemon must be the one that hasn't been upgraded.");
        
        burnVegiemon(from, v1);
        burnVegiemon(from, v2);
        burnVegiemon(from, v3);
        
        upgradeCursedVegiemon(cv1, true);
    }
    
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory uri = CursedVegiemonUpgrade[tokenId] ? upgradeURI : _baseURI();
        return bytes(uri).length > 0 ? string(abi.encodePacked(uri, toString(tokenId))) : "";
    }

    function _baseURI() internal view override returns (string memory) 
    {
        return baseURI;
    }
    
    /**
     * @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);
    }

    /*Owner*/
    function setupVegiemon(address vegiemon) public payable onlyOwner
    {
        addressVegiemon = vegiemon;
        ctxVegiemon = Vegiemon(payable(vegiemon));
    }
        
    function burnVegiemon(address from, uint256 vegiemon) public onlyOwner
    {
        ctxVegiemon.transferFrom(from, burnAddress, vegiemon);
    }

    function setVegiemonToken(uint256 id, bool val) public onlyOwner {
        VegiemonTokens[id] = val;
    }
    
    function upgradeCursedVegiemon(uint256 id, bool val) public onlyOwner {
        CursedVegiemonUpgrade[id] = val;
    }

    function setMintActive(bool val) public onlyOwner 
    {
        isMintActive = val;
    }
    
    function setSaleActive(bool val) public onlyOwner 
    {
        isSaleActive = val;
    }
    
    function setUpgradeActive(bool val) public onlyOwner 
    {
        isUpgradeActive = val;
    }
  
    function setBaseURI(string memory uri) public onlyOwner 
    {
        baseURI = uri;
    }
    
    function setUpgradeURI(string memory uri) public onlyOwner 
    {
        upgradeURI = uri;
    }

    function setItemPrice(uint256 _price) public onlyOwner 
    {
		itemPrice = _price;
	}
    
    function cashOut() public onlyOwner 
    {
        uint256 _each = address(this).balance / 2;
        require(payable(t1).send(_each));
        require(payable(t2).send(_each));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"CursedVegiemonUpgrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"VegiemonTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved_giveaway","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved_mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_reserved_sale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressVegiemon","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"vegiemon","type":"uint256"}],"name":"burnVegiemon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cashOut","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"checkVegiemonIds","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ctxVegiemon","outputs":[{"internalType":"contract Vegiemon","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getItemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getNumberOfVegiemonToken","outputs":[{"components":[{"internalType":"uint256","name":"unclaimedItemCount","type":"uint256"},{"internalType":"uint256[]","name":"unclaimedItemIds","type":"uint256[]"}],"internalType":"struct CursedVegiemon.UnclaimedItems","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","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":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isUpgradeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isVegiemonTokenContains","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"mint2","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfMints","type":"uint256"}],"name":"sale","outputs":[],"stateMutability":"payable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setItemPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setUpgradeActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUpgradeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"val","type":"bool"}],"name":"setVegiemonToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vegiemon","type":"address"}],"name":"setupVegiemon","outputs":[],"stateMutability":"payable","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":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"v1","type":"uint256"},{"internalType":"uint256","name":"v2","type":"uint256"},{"internalType":"uint256","name":"v3","type":"uint256"},{"internalType":"uint256","name":"cv1","type":"uint256"}],"name":"upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"val","type":"bool"}],"name":"upgradeCursedVegiemon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"vegiemonWalletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"}]

6080604052600c805462ffffff191690556107d0600e819055600f556032601055601380546001600160a01b031990811673c40c2db69df9a7480d7d55e13c8db55b63805dfd1790915560148054821673efcc0f7892bfe2f70011f422da65aa431fe0be501790556015805490911661dead1790553480156200008157600080fd5b50604080518082018252600f81526e21bab939b2b2102b32b3b4b2b6b7b760891b6020808301918252835180850190945260048452634356474d60e01b908401528151919291620000d59160009162000aee565b508051620000eb90600190602084019062000aee565b5050506200010862000102620001cc60201b60201c565b620001d0565b6040518060600160405280602a815260200162004ece602a91398051620001389160119160209091019062000aee565b5060405180606001604052806032815260200162004e9c603291398051620001699160129160209091019062000aee565b5066b1a2bc2ec50000600d5562000194732fb5b875a85713cba312c097d16838c242cadaec62000222565b601354620001ad906001600160a01b0316600a6200029d565b601454620001c6906001600160a01b0316600a6200029d565b62000d14565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620002715760405162461bcd60e51b8152602060048201819052602482015260008051602062004e7c83398151915260448201526064015b60405180910390fd5b601680546001600160a01b039092166001600160a01b0319928316811790915560178054909216179055565b600a546001600160a01b03163314620002e85760405162461bcd60e51b8152602060048201819052602482015260008051602062004e7c833981519152604482015260640162000268565b600f548111156200033c5760405162461bcd60e51b815260206004820152601c60248201527f657863656564732072657365727665642073616c6520737570706c7900000000604482015260640162000268565b601054811115620003905760405162461bcd60e51b815260206004820181905260248201527f6578636565647320726573657276656420676976656177617920737570706c79604482015260640162000268565b60008111620003d65760405162461bcd60e51b815260206004820152601160248201527033b4bb32a0bbb0bc903737ba3434b7339760791b604482015260640162000268565b60005b8181101562000436576000620003fb600b6200046160201b62002c6a1760201c565b905062000409848262000465565b62000420600b6200048b60201b62002c6e1760201c565b50806200042d8162000cb4565b915050620003d9565b508060105462000447919062000c5d565b601055600f546200045a90829062000c5d565b600f555050565b5490565b620004878282604051806020016040528060008152506200049460201b60201c565b5050565b80546001019055565b620004a083836200050c565b620004af600084848462000662565b620005075760405162461bcd60e51b8152602060048201526032602482015260008051602062004e5c83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000268565b505050565b6001600160a01b038216620005645760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000268565b6000818152600260205260409020546001600160a01b031615620005cb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000268565b620005d960008383620007cb565b6001600160a01b03821660009081526003602052604081208054600192906200060490849062000c42565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000683846001600160a01b0316620008a760201b62002c771760201c565b15620007bf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620006bd90339089908890889060040162000bc7565b602060405180830381600087803b158015620006d857600080fd5b505af19250505080156200070b575060408051601f3d908101601f19168201909252620007089181019062000b94565b60015b620007a4573d8080156200073c576040519150601f19603f3d011682016040523d82523d6000602084013e62000741565b606091505b5080516200079c5760405162461bcd60e51b8152602060048201526032602482015260008051602062004e5c83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000268565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620007c3565b5060015b949350505050565b620007e38383836200050760201b62000c771760201c565b6001600160a01b03831662000841576200083b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b62000867565b816001600160a01b0316836001600160a01b0316146200086757620008678382620008ad565b6001600160a01b038216620008815762000507816200095a565b826001600160a01b0316826001600160a01b031614620005075762000507828262000a14565b3b151590565b60006001620008c78462000a6560201b6200193a1760201c565b620008d3919062000c5d565b60008381526007602052604090205490915080821462000927576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906200096e9060019062000c5d565b6000838152600960205260408120546008805493945090928490811062000999576200099962000cfe565b906000526020600020015490508060088381548110620009bd57620009bd62000cfe565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480620009f857620009f862000ce8565b6001900381819060005260206000200160009055905550505050565b600062000a2c8362000a6560201b6200193a1760201c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60006001600160a01b03821662000ad25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840162000268565b506001600160a01b031660009081526003602052604090205490565b82805462000afc9062000c77565b90600052602060002090601f01602090048101928262000b20576000855562000b6b565b82601f1062000b3b57805160ff191683800117855562000b6b565b8280016001018555821562000b6b579182015b8281111562000b6b57825182559160200191906001019062000b4e565b5062000b7992915062000b7d565b5090565b5b8082111562000b79576000815560010162000b7e565b60006020828403121562000ba757600080fd5b81516001600160e01b03198116811462000bc057600080fd5b9392505050565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b8281101562000c165785810182015185820160a00152810162000bf8565b8281111562000c2957600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000821982111562000c585762000c5862000cd2565b500190565b60008282101562000c725762000c7262000cd2565b500390565b600181811c9082168062000c8c57607f821691505b6020821081141562000cae57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000ccb5762000ccb62000cd2565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6141388062000d246000396000f3fe6080604052600436106103345760003560e01c806370a08231116101ab5780639b9a9e03116100f7578063ca1ca9b411610095578063e985e9c51161006f578063e985e9c514610956578063ee1cc9441461099f578063f2fde38b146109bf578063f8a1be05146109df57600080fd5b8063ca1ca9b414610900578063ca80014414610920578063dac6db1c1461094057600080fd5b8063a71fa573116100d1578063a71fa57314610895578063b88d4fde146108aa578063bdc4db9d146108ca578063c87b56dd146108e057600080fd5b80639b9a9e0314610835578063a0712d6814610855578063a22cb4651461087557600080fd5b80638da5cb5b1161016457806393888e301161013e57806393888e30146107cd57806395d89b41146107ed578063960327021461080257806398ca77951461081557600080fd5b80638da5cb5b1461076f57806392c570f81461078d578063933ba677146107ad57600080fd5b806370a08231146106b5578063715018a6146106d5578063793cd71e146106ea578063841718a6146106ff5780638ba5f50a1461071f5780638d38bbe71461073f57600080fd5b80632f745c59116102855780634f036b351161022357806355f804b3116101fd57806355f804b314610636578063564566a8146106565780635b92ac0d146106765780636352211e1461069557600080fd5b80634f036b35146105e15780634f6ccce7146105f65780635290b0051461061657600080fd5b806337a537181161025f57806337a537181461055e5780633dd4bbea1461058b57806342842e0e146105a1578063438b6300146105c157600080fd5b80632f745c59146104fe5780633284ffae1461051e578063362846611461053e57600080fd5b806318160ddd116102f25780631dd126a0116102cc5780631dd126a0146104a05780632083ad82146104b357806323b872dd146104c857806327c461c8146104e857600080fd5b806318160ddd146104345780631992fc4e146104535780631d6de93a1461048057600080fd5b8062e21c991461033957806301ffc9a71461037e578063065f02db1461039e57806306fdde03146103b8578063081812fc146103da578063095ea7b314610412575b600080fd5b34801561034557600080fd5b50610369610354366004613b2a565b60196020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561038a57600080fd5b50610369610399366004613aa7565b610a0f565b3480156103aa57600080fd5b50600c546103699060ff1681565b3480156103c457600080fd5b506103cd610a3a565b6040516103759190613c99565b3480156103e657600080fd5b506103fa6103f5366004613b2a565b610acc565b6040516001600160a01b039091168152602001610375565b34801561041e57600080fd5b5061043261042d366004613974565b610b66565b005b34801561044057600080fd5b506008545b604051908152602001610375565b34801561045f57600080fd5b5061047361046e3660046137c2565b610c7c565b6040516103759190613c86565b34801561048c57600080fd5b5061043261049b366004613b5c565b610d27565b6104326104ae3660046137c2565b610d71565b3480156104bf57600080fd5b50600d54610445565b3480156104d457600080fd5b506104326104e3366004613835565b610dc7565b3480156104f457600080fd5b50610445600f5481565b34801561050a57600080fd5b50610445610519366004613974565b610df8565b34801561052a57600080fd5b506104326105393660046139a0565b610e8e565b34801561054a57600080fd5b50610432610559366004613b5c565b6114c1565b34801561056a57600080fd5b5061057e6105793660046137c2565b61150b565b6040516103759190613ee9565b34801561059757600080fd5b50610445600e5481565b3480156105ad57600080fd5b506104326105bc366004613835565b6116fd565b3480156105cd57600080fd5b506104736105dc3660046137c2565b611718565b3480156105ed57600080fd5b50600f54610445565b34801561060257600080fd5b50610445610611366004613b2a565b6117b2565b34801561062257600080fd5b50610432610631366004613a6d565b611845565b34801561064257600080fd5b50610432610651366004613ae1565b611882565b34801561066257600080fd5b50600c546103699062010000900460ff1681565b34801561068257600080fd5b50600c5461036990610100900460ff1681565b3480156106a157600080fd5b506103fa6106b0366004613b2a565b6118c3565b3480156106c157600080fd5b506104456106d03660046137c2565b61193a565b3480156106e157600080fd5b506104326119c1565b3480156106f657600080fd5b506104326119f7565b34801561070b57600080fd5b5061043261071a366004613a6d565b611a96565b34801561072b57600080fd5b5061043261073a366004613b81565b611adc565b34801561074b57600080fd5b5061036961075a366004613b2a565b60009081526018602052604090205460ff1690565b34801561077b57600080fd5b50600a546001600160a01b03166103fa565b34801561079957600080fd5b506016546103fa906001600160a01b031681565b3480156107b957600080fd5b506104326107c8366004613974565b612096565b3480156107d957600080fd5b506017546103fa906001600160a01b031681565b3480156107f957600080fd5b506103cd612134565b610432610810366004613b2a565b612143565b34801561082157600080fd5b50610432610830366004613b2a565b6122f5565b34801561084157600080fd5b50610432610850366004613ae1565b612324565b34801561086157600080fd5b50610432610870366004613b2a565b612361565b34801561088157600080fd5b50610432610890366004613946565b612690565b3480156108a157600080fd5b50600e54610445565b3480156108b657600080fd5b506104326108c5366004613876565b612755565b3480156108d657600080fd5b5061044560105481565b3480156108ec57600080fd5b506103cd6108fb366004613b2a565b61278d565b34801561090c57600080fd5b5061036961091b3660046138f6565b61290d565b34801561092c57600080fd5b5061043261093b366004613974565b612a12565b34801561094c57600080fd5b50610445600d5481565b34801561096257600080fd5b506103696109713660046137fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109ab57600080fd5b506104326109ba366004613a6d565b612b8e565b3480156109cb57600080fd5b506104326109da3660046137c2565b612bd2565b3480156109eb57600080fd5b506103696109fa366004613b2a565b60186020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610a345750610a3482612c7d565b92915050565b606060008054610a4990613ff1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7590613ff1565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b71826118c3565b9050806001600160a01b0316836001600160a01b03161415610bdf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b41565b336001600160a01b0382161480610bfb5750610bfb8133610971565b610c6d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b41565b610c778383612ccd565b505050565b6016546060906001600160a01b0316610ca75760405162461bcd60e51b8152600401610b4190613d7c565b60175460405162438b6360e81b81526001600160a01b0384811660048301529091169063438b63009060240160006040518083038186803b158015610ceb57600080fd5b505afa158015610cff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a3491908101906139d5565b600a546001600160a01b03163314610d515760405162461bcd60e51b8152600401610b4190613dc1565b600091825260196020526040909120805460ff1916911515919091179055565b600a546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610b4190613dc1565b601680546001600160a01b039092166001600160a01b0319928316811790915560178054909216179055565b610dd13382612d3b565b610ded5760405162461bcd60e51b8152600401610b4190613e53565b610c77838383612e32565b6000610e038361193a565b8210610e655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b41565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60165433906001600160a01b0316610eb85760405162461bcd60e51b8152600401610b4190613d7c565b600c54610100900460ff16610edf5760405162461bcd60e51b8152600401610b4190613cfe565b600060058351610eef9190613f7b565b9050600081600e54610f019190613fae565b1015610f1f5760405162461bcd60e51b8152600401610b4190613d45565b6014811115610f405760405162461bcd60e51b8152600401610b4190613ea4565b60008111610f605760405162461bcd60e51b8152600401610b4190613df6565b610f6a828461290d565b610fce5760405162461bcd60e51b815260206004820152602f60248201527f56656769656d6f6e20496473206973206e6f7420746f6b656e206f776e65722060448201526e1bdc881cdbdb595bdb99481d5cd959608a1b6064820152608401610b41565b60008060005b838110156114a857610fe7816005613f8f565b92506000868481518110610ffd57610ffd61409d565b602002602001015190506000878560016110179190613f63565b815181106110275761102761409d565b602002602001015190506000888660026110419190613f63565b815181106110515761105161409d565b6020026020010151905060008987600361106b9190613f63565b8151811061107b5761107b61409d565b6020026020010151905060008a8860046110959190613f63565b815181106110a5576110a561409d565b60209081029190910101516017546040516331a9108f60e11b8152600481018890529192506001600160a01b038c811692911690636352211e9060240160206040518083038186803b1580156110fa57600080fd5b505afa15801561110e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113291906137df565b6001600160a01b03161480156111cc57506017546040516331a9108f60e11b8152600481018690526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906137df565b6001600160a01b0316145b801561125c57506017546040516331a9108f60e11b8152600481018590526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561121957600080fd5b505afa15801561122d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125191906137df565b6001600160a01b0316145b80156112ec57506017546040516331a9108f60e11b8152600481018490526001600160a01b038c8116921690636352211e9060240160206040518083038186803b1580156112a957600080fd5b505afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e191906137df565b6001600160a01b0316145b801561137c57506017546040516331a9108f60e11b8152600481018390526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561133957600080fd5b505afa15801561134d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137191906137df565b6001600160a01b0316145b8015611397575060008581526018602052604090205460ff16155b80156113b2575060008481526018602052604090205460ff16155b80156113cd575060008381526018602052604090205460ff16155b80156113e8575060008281526018602052604090205460ff16155b8015611403575060008181526018602052604090205460ff16155b1561149057600085815260186020526040808220805460ff19908116600190811790925587845282842080548216831790558684528284208054821683179055858452828420805482168317905584845291909220805490911690911790556114748a61146f600b5490565b612fdd565b611482600b80546001019055565b61148d600188613f63565b96505b505050505080806114a09061402c565b915050610fd4565b5080600e546114b79190613fae565b600e555050505050565b600a546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610b4190613dc1565b600091825260186020526040909120805460ff1916911515919091179055565b6040805180820190915260008152606060208201526017546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561156657600080fd5b505afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e9190613b43565b905060006040518060400160405280600081526020018367ffffffffffffffff8111156115cd576115cd6140b3565b6040519080825280602002602001820160405280156115f6578160200160208202803683370190505b509052905060005b828110156116f557601754604051632f745c5960e01b81526001600160a01b038781166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561165357600080fd5b505afa158015611667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168b9190613b43565b60008181526018602052604090205490915060ff166116e2578083602001518460000151815181106116bf576116bf61409d565b6020026020010181815250506001836000018181516116de9190613f63565b9052505b50806116ed8161402c565b9150506115fe565b509392505050565b610c7783838360405180602001604052806000815250612755565b606060006117258361193a565b905060008167ffffffffffffffff811115611742576117426140b3565b60405190808252806020026020018201604052801561176b578160200160208202803683370190505b50905060005b828110156116f5576117838582610df8565b8282815181106117955761179561409d565b6020908102919091010152806117aa8161402c565b915050611771565b60006117bd60085490565b82106118205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b41565b600882815481106118335761183361409d565b90600052602060002001549050919050565b600a546001600160a01b0316331461186f5760405162461bcd60e51b8152600401610b4190613dc1565b600c805460ff1916911515919091179055565b600a546001600160a01b031633146118ac5760405162461bcd60e51b8152600401610b4190613dc1565b80516118bf90601190602084019061365f565b5050565b6000818152600260205260408120546001600160a01b031680610a345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b41565b60006001600160a01b0382166119a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b41565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119eb5760405162461bcd60e51b8152600401610b4190613dc1565b6119f56000612ff7565b565b600a546001600160a01b03163314611a215760405162461bcd60e51b8152600401610b4190613dc1565b6000611a2e600247613f7b565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050611a6157600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050611a9357600080fd5b50565b600a546001600160a01b03163314611ac05760405162461bcd60e51b8152600401610b4190613dc1565b600c8054911515620100000262ff000019909216919091179055565b600c54339060ff16611b435760405162461bcd60e51b815260206004820152602a60248201527f6375727365642076656769656d6f6e2075706772616465206861736e277420736044820152691d185c9d1959081e595d60b21b6064820152608401610b41565b6016546001600160a01b0316611b6b5760405162461bcd60e51b8152600401610b4190613d7c565b60175460405163e985e9c560e01b81526001600160a01b0383811660048301523060248301529091169063e985e9c59060440160206040518083038186803b158015611bb657600080fd5b505afa158015611bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bee9190613a8a565b611c4d5760405162461bcd60e51b815260206004820152602a60248201527f76656769656d6f6e20636f6e74726163742061646472657373206e65656420626044820152691948105c1c1c9bdd995960b21b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018790526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611c9357600080fd5b505afa158015611ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccb91906137df565b6001600160a01b031614611d315760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e312074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018690526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611d7757600080fd5b505afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906137df565b6001600160a01b031614611e155760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e322074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018590526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611e5b57600080fd5b505afa158015611e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9391906137df565b6001600160a01b031614611ef95760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e332074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b806001600160a01b0316611f0c836118c3565b6001600160a01b031614611f795760405162461bcd60e51b815260206004820152602e60248201527f6375727365642076656769656d6f6e3a20757365206f6620746f6b656e33207460448201526d3430ba1034b9903737ba1037bbb760911b6064820152608401610b41565b838514158015611f895750828514155b8015611f955750828414155b611fe15760405162461bcd60e51b815260206004820152601b60248201527f76656769656d6f6e20696473206e65656420626520756e6971756500000000006044820152606401610b41565b60008281526019602052604090205460ff16156120665760405162461bcd60e51b815260206004820152603a60248201527f6375727365642076656769656d6f6e206d75737420626520746865206f6e652060448201527f74686174206861736e2774206265656e2075706772616465642e0000000000006064820152608401610b41565b6120708186612096565b61207a8185612096565b6120848184612096565b61208f826001610d27565b5050505050565b600a546001600160a01b031633146120c05760405162461bcd60e51b8152600401610b4190613dc1565b6017546015546040516323b872dd60e01b81526001600160a01b0385811660048301529182166024820152604481018490529116906323b872dd90606401600060405180830381600087803b15801561211857600080fd5b505af115801561212c573d6000803e3d6000fd5b505050505050565b606060018054610a4990613ff1565b600c5462010000900460ff166121ab5760405162461bcd60e51b815260206004820152602760248201527f6375727365642076656769656d6f6e2073616c65206861736e277420737461726044820152661d1959081e595d60ca1b6064820152608401610b41565b600081600f546121bb9190613fae565b10156121d95760405162461bcd60e51b8152600401610b4190613d45565b80600d546121e79190613f8f565b3410156122295760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b41565b600a8111156122885760405162461bcd60e51b815260206004820152602560248201527f596f752063616e74206d696e74206d6f7265207468616e2031302061742061206044820152643a34b6b29760d91b6064820152608401610b41565b600081116122a85760405162461bcd60e51b8152600401610b4190613df6565b60005b818110156122e0576122c03361146f600b5490565b6122ce600b80546001019055565b806122d88161402c565b9150506122ab565b5080600f546122ef9190613fae565b600f5550565b600a546001600160a01b0316331461231f5760405162461bcd60e51b8152600401610b4190613dc1565b600d55565b600a546001600160a01b0316331461234e5760405162461bcd60e51b8152600401610b4190613dc1565b80516118bf90601290602084019061365f565b60165433906001600160a01b031661238b5760405162461bcd60e51b8152600401610b4190613d7c565b600c54610100900460ff166123b25760405162461bcd60e51b8152600401610b4190613cfe565b60006123bd8261150b565b90506123ca836005613f8f565b815110156124265760405162461bcd60e51b815260206004820152602360248201527f76656769656d6f6e20746f6b656e73206e6f7420656e6f75676820746f206d696044820152626e742160e81b6064820152608401610b41565b600083600e546124369190613fae565b10156124545760405162461bcd60e51b8152600401610b4190613d45565b60148311156124755760405162461bcd60e51b8152600401610b4190613ea4565b600083116124955760405162461bcd60e51b8152600401610b4190613df6565b6000805b84811015612678576124ac816005613f8f565b9150600160186000856020015185815181106124ca576124ca61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000856020015185600161250f9190613f63565b8151811061251f5761251f61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600085602001518560026125649190613f63565b815181106125745761257461409d565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600085602001518560036125b99190613f63565b815181106125c9576125c961409d565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000856020015185600461260e9190613f63565b8151811061261e5761261e61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506126588461146f600b5490565b612666600b80546001019055565b806126708161402c565b915050612499565b5083600e546126879190613fae565b600e5550505050565b6001600160a01b0382163314156126e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b41565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61275f3383612d3b565b61277b5760405162461bcd60e51b8152600401610b4190613e53565b61278784848484613049565b50505050565b6000818152600260205260409020546060906001600160a01b031661280c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b41565b60008281526019602052604081205460ff1661282f5761282a61307c565b6128bb565b6012805461283c90613ff1565b80601f016020809104026020016040519081016040528092919081815260200182805461286890613ff1565b80156128b55780601f1061288a576101008083540402835291602001916128b5565b820191906000526020600020905b81548152906001019060200180831161289857829003601f168201915b50505050505b905060008151116128db5760405180602001604052806000815250612906565b806128e58461308b565b6040516020016128f6929190613c1a565b6040516020818303038152906040525b9392505050565b6000805b8251811015612a0857600083828151811061292e5761292e61409d565b6020908102919091018101516000818152601890925260409091205490915060ff161515600114806129e557506017546040516331a9108f60e11b8152600481018390526001600160a01b03878116921690636352211e9060240160206040518083038186803b1580156129a157600080fd5b505afa1580156129b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d991906137df565b6001600160a01b031614155b156129f557600092505050610a34565b5080612a008161402c565b915050612911565b5060019392505050565b600a546001600160a01b03163314612a3c5760405162461bcd60e51b8152600401610b4190613dc1565b600f54811115612a8e5760405162461bcd60e51b815260206004820152601c60248201527f657863656564732072657365727665642073616c6520737570706c79000000006044820152606401610b41565b601054811115612ae05760405162461bcd60e51b815260206004820181905260248201527f6578636565647320726573657276656420676976656177617920737570706c796044820152606401610b41565b60008111612b245760405162461bcd60e51b815260206004820152601160248201527033b4bb32a0bbb0bc903737ba3434b7339760791b6044820152606401610b41565b60005b81811015612b67576000612b3a600b5490565b9050612b468482612fdd565b612b54600b80546001019055565b5080612b5f8161402c565b915050612b27565b5080601054612b769190613fae565b601055600f54612b87908290613fae565b600f555050565b600a546001600160a01b03163314612bb85760405162461bcd60e51b8152600401610b4190613dc1565b600c80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314612bfc5760405162461bcd60e51b8152600401610b4190613dc1565b6001600160a01b038116612c615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b41565b611a9381612ff7565b5490565b80546001019055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480612cae57506001600160e01b03198216635b5e139f60e01b145b80610a3457506301ffc9a760e01b6001600160e01b0319831614610a34565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d02826118c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612db45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b41565b6000612dbf836118c3565b9050806001600160a01b0316846001600160a01b03161480612dfa5750836001600160a01b0316612def84610acc565b6001600160a01b0316145b80612e2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612e45826118c3565b6001600160a01b031614612ead5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b41565b6001600160a01b038216612f0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b41565b612f1a838383613189565b612f25600082612ccd565b6001600160a01b0383166000908152600360205260408120805460019290612f4e908490613fae565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f7c908490613f63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118bf828260405180602001604052806000815250613241565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613054848484612e32565b61306084848484613274565b6127875760405162461bcd60e51b8152600401610b4190613cac565b606060118054610a4990613ff1565b6060816130af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130d957806130c38161402c565b91506130d29050600a83613f7b565b91506130b3565b60008167ffffffffffffffff8111156130f4576130f46140b3565b6040519080825280601f01601f19166020018201604052801561311e576020820181803683370190505b5090505b8415612e2a57613133600183613fae565b9150613140600a86614047565b61314b906030613f63565b60f81b8183815181106131605761316061409d565b60200101906001600160f81b031916908160001a905350613182600a86613f7b565b9450613122565b6001600160a01b0383166131e4576131df81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613207565b816001600160a01b0316836001600160a01b031614613207576132078382613381565b6001600160a01b03821661321e57610c778161341e565b826001600160a01b0316826001600160a01b031614610c7757610c7782826134cd565b61324b8383613511565b6132586000848484613274565b610c775760405162461bcd60e51b8152600401610b4190613cac565b60006001600160a01b0384163b1561337657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132b8903390899088908890600401613c49565b602060405180830381600087803b1580156132d257600080fd5b505af1925050508015613302575060408051601f3d908101601f191682019092526132ff91810190613ac4565b60015b61335c573d808015613330576040519150601f19603f3d011682016040523d82523d6000602084013e613335565b606091505b5080516133545760405162461bcd60e51b8152600401610b4190613cac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e2a565b506001949350505050565b6000600161338e8461193a565b6133989190613fae565b6000838152600760205260409020549091508082146133eb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061343090600190613fae565b600083815260096020526040812054600880549394509092849081106134585761345861409d565b9060005260206000200154905080600883815481106134795761347961409d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806134b1576134b1614087565b6001900381819060005260206000200160009055905550505050565b60006134d88361193a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b41565b6000818152600260205260409020546001600160a01b0316156135cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b41565b6135d860008383613189565b6001600160a01b0382166000908152600360205260408120805460019290613601908490613f63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461366b90613ff1565b90600052602060002090601f01602090048101928261368d57600085556136d3565b82601f106136a657805160ff19168380011785556136d3565b828001600101855582156136d3579182015b828111156136d35782518255916020019190600101906136b8565b506136df9291506136e3565b5090565b5b808211156136df57600081556001016136e4565b600067ffffffffffffffff831115613712576137126140b3565b613725601f8401601f1916602001613f0e565b905082815283838301111561373957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261376157600080fd5b8135602061377661377183613f3f565b613f0e565b80838252828201915082860187848660051b890101111561379657600080fd5b60005b858110156137b557813584529284019290840190600101613799565b5090979650505050505050565b6000602082840312156137d457600080fd5b8135612906816140c9565b6000602082840312156137f157600080fd5b8151612906816140c9565b6000806040838503121561380f57600080fd5b823561381a816140c9565b9150602083013561382a816140c9565b809150509250929050565b60008060006060848603121561384a57600080fd5b8335613855816140c9565b92506020840135613865816140c9565b929592945050506040919091013590565b6000806000806080858703121561388c57600080fd5b8435613897816140c9565b935060208501356138a7816140c9565b925060408501359150606085013567ffffffffffffffff8111156138ca57600080fd5b8501601f810187136138db57600080fd5b6138ea878235602084016136f8565b91505092959194509250565b6000806040838503121561390957600080fd5b8235613914816140c9565b9150602083013567ffffffffffffffff81111561393057600080fd5b61393c85828601613750565b9150509250929050565b6000806040838503121561395957600080fd5b8235613964816140c9565b9150602083013561382a816140de565b6000806040838503121561398757600080fd5b8235613992816140c9565b946020939093013593505050565b6000602082840312156139b257600080fd5b813567ffffffffffffffff8111156139c957600080fd5b612e2a84828501613750565b600060208083850312156139e857600080fd5b825167ffffffffffffffff8111156139ff57600080fd5b8301601f81018513613a1057600080fd5b8051613a1e61377182613f3f565b80828252848201915084840188868560051b8701011115613a3e57600080fd5b600094505b83851015613a61578051835260019490940193918501918501613a43565b50979650505050505050565b600060208284031215613a7f57600080fd5b8135612906816140de565b600060208284031215613a9c57600080fd5b8151612906816140de565b600060208284031215613ab957600080fd5b8135612906816140ec565b600060208284031215613ad657600080fd5b8151612906816140ec565b600060208284031215613af357600080fd5b813567ffffffffffffffff811115613b0a57600080fd5b8201601f81018413613b1b57600080fd5b612e2a848235602084016136f8565b600060208284031215613b3c57600080fd5b5035919050565b600060208284031215613b5557600080fd5b5051919050565b60008060408385031215613b6f57600080fd5b82359150602083013561382a816140de565b60008060008060808587031215613b9757600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526020808501945080840160005b83811015613be357815187529582019590820190600101613bc7565b509495945050505050565b60008151808452613c06816020860160208601613fc5565b601f01601f19169290920160200192915050565b60008351613c2c818460208801613fc5565b835190830190613c40818360208801613fc5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613c7c90830184613bee565b9695505050505050565b6020815260006129066020830184613bb3565b6020815260006129066020830184613bee565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6375727365642076656769656d6f6e206d696e74206861736e277420737461726040820152661d1959081e595d60ca1b606082015260800190565b6020808252601e908201527f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000604082015260600190565b60208082526025908201527f76656769656d6f6e20636f6e74726163742061646472657373206e656564206260408201526419481cd95d60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526038908201527f6761732066656520666f72206e6f7468696e672c2076656769656d6f6e20646f60408201527f6e277420616363657074207468697320726571756573742e0000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2032302061742061206040820152643a34b6b29760d91b606082015260800190565b602081528151602082015260006020830151604080840152612e2a6060840182613bb3565b604051601f8201601f1916810167ffffffffffffffff81118282101715613f3757613f376140b3565b604052919050565b600067ffffffffffffffff821115613f5957613f596140b3565b5060051b60200190565b60008219821115613f7657613f7661405b565b500190565b600082613f8a57613f8a614071565b500490565b6000816000190483118215151615613fa957613fa961405b565b500290565b600082821015613fc057613fc061405b565b500390565b60005b83811015613fe0578181015183820152602001613fc8565b838111156127875750506000910152565b600181811c9082168061400557607f821691505b6020821081141561402657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156140405761404061405b565b5060010190565b60008261405657614056614071565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a9357600080fd5b8015158114611a9357600080fd5b6001600160e01b031981168114611a9357600080fdfea2646970667358221220c2f06f56e06d939c1fdaaec12132114ab7c60a411462d39426acced5ddac45ea64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657268747470733a2f2f76656769656d6f6e2e6d652f63757273656476656769656d6f6e5f757067726164652f746f6b656e732f68747470733a2f2f76656769656d6f6e2e6d652f63757273656476656769656d6f6e2f746f6b656e732f

Deployed Bytecode

0x6080604052600436106103345760003560e01c806370a08231116101ab5780639b9a9e03116100f7578063ca1ca9b411610095578063e985e9c51161006f578063e985e9c514610956578063ee1cc9441461099f578063f2fde38b146109bf578063f8a1be05146109df57600080fd5b8063ca1ca9b414610900578063ca80014414610920578063dac6db1c1461094057600080fd5b8063a71fa573116100d1578063a71fa57314610895578063b88d4fde146108aa578063bdc4db9d146108ca578063c87b56dd146108e057600080fd5b80639b9a9e0314610835578063a0712d6814610855578063a22cb4651461087557600080fd5b80638da5cb5b1161016457806393888e301161013e57806393888e30146107cd57806395d89b41146107ed578063960327021461080257806398ca77951461081557600080fd5b80638da5cb5b1461076f57806392c570f81461078d578063933ba677146107ad57600080fd5b806370a08231146106b5578063715018a6146106d5578063793cd71e146106ea578063841718a6146106ff5780638ba5f50a1461071f5780638d38bbe71461073f57600080fd5b80632f745c59116102855780634f036b351161022357806355f804b3116101fd57806355f804b314610636578063564566a8146106565780635b92ac0d146106765780636352211e1461069557600080fd5b80634f036b35146105e15780634f6ccce7146105f65780635290b0051461061657600080fd5b806337a537181161025f57806337a537181461055e5780633dd4bbea1461058b57806342842e0e146105a1578063438b6300146105c157600080fd5b80632f745c59146104fe5780633284ffae1461051e578063362846611461053e57600080fd5b806318160ddd116102f25780631dd126a0116102cc5780631dd126a0146104a05780632083ad82146104b357806323b872dd146104c857806327c461c8146104e857600080fd5b806318160ddd146104345780631992fc4e146104535780631d6de93a1461048057600080fd5b8062e21c991461033957806301ffc9a71461037e578063065f02db1461039e57806306fdde03146103b8578063081812fc146103da578063095ea7b314610412575b600080fd5b34801561034557600080fd5b50610369610354366004613b2a565b60196020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b34801561038a57600080fd5b50610369610399366004613aa7565b610a0f565b3480156103aa57600080fd5b50600c546103699060ff1681565b3480156103c457600080fd5b506103cd610a3a565b6040516103759190613c99565b3480156103e657600080fd5b506103fa6103f5366004613b2a565b610acc565b6040516001600160a01b039091168152602001610375565b34801561041e57600080fd5b5061043261042d366004613974565b610b66565b005b34801561044057600080fd5b506008545b604051908152602001610375565b34801561045f57600080fd5b5061047361046e3660046137c2565b610c7c565b6040516103759190613c86565b34801561048c57600080fd5b5061043261049b366004613b5c565b610d27565b6104326104ae3660046137c2565b610d71565b3480156104bf57600080fd5b50600d54610445565b3480156104d457600080fd5b506104326104e3366004613835565b610dc7565b3480156104f457600080fd5b50610445600f5481565b34801561050a57600080fd5b50610445610519366004613974565b610df8565b34801561052a57600080fd5b506104326105393660046139a0565b610e8e565b34801561054a57600080fd5b50610432610559366004613b5c565b6114c1565b34801561056a57600080fd5b5061057e6105793660046137c2565b61150b565b6040516103759190613ee9565b34801561059757600080fd5b50610445600e5481565b3480156105ad57600080fd5b506104326105bc366004613835565b6116fd565b3480156105cd57600080fd5b506104736105dc3660046137c2565b611718565b3480156105ed57600080fd5b50600f54610445565b34801561060257600080fd5b50610445610611366004613b2a565b6117b2565b34801561062257600080fd5b50610432610631366004613a6d565b611845565b34801561064257600080fd5b50610432610651366004613ae1565b611882565b34801561066257600080fd5b50600c546103699062010000900460ff1681565b34801561068257600080fd5b50600c5461036990610100900460ff1681565b3480156106a157600080fd5b506103fa6106b0366004613b2a565b6118c3565b3480156106c157600080fd5b506104456106d03660046137c2565b61193a565b3480156106e157600080fd5b506104326119c1565b3480156106f657600080fd5b506104326119f7565b34801561070b57600080fd5b5061043261071a366004613a6d565b611a96565b34801561072b57600080fd5b5061043261073a366004613b81565b611adc565b34801561074b57600080fd5b5061036961075a366004613b2a565b60009081526018602052604090205460ff1690565b34801561077b57600080fd5b50600a546001600160a01b03166103fa565b34801561079957600080fd5b506016546103fa906001600160a01b031681565b3480156107b957600080fd5b506104326107c8366004613974565b612096565b3480156107d957600080fd5b506017546103fa906001600160a01b031681565b3480156107f957600080fd5b506103cd612134565b610432610810366004613b2a565b612143565b34801561082157600080fd5b50610432610830366004613b2a565b6122f5565b34801561084157600080fd5b50610432610850366004613ae1565b612324565b34801561086157600080fd5b50610432610870366004613b2a565b612361565b34801561088157600080fd5b50610432610890366004613946565b612690565b3480156108a157600080fd5b50600e54610445565b3480156108b657600080fd5b506104326108c5366004613876565b612755565b3480156108d657600080fd5b5061044560105481565b3480156108ec57600080fd5b506103cd6108fb366004613b2a565b61278d565b34801561090c57600080fd5b5061036961091b3660046138f6565b61290d565b34801561092c57600080fd5b5061043261093b366004613974565b612a12565b34801561094c57600080fd5b50610445600d5481565b34801561096257600080fd5b506103696109713660046137fc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109ab57600080fd5b506104326109ba366004613a6d565b612b8e565b3480156109cb57600080fd5b506104326109da3660046137c2565b612bd2565b3480156109eb57600080fd5b506103696109fa366004613b2a565b60186020526000908152604090205460ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610a345750610a3482612c7d565b92915050565b606060008054610a4990613ff1565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7590613ff1565b8015610ac25780601f10610a9757610100808354040283529160200191610ac2565b820191906000526020600020905b815481529060010190602001808311610aa557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b4a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610b71826118c3565b9050806001600160a01b0316836001600160a01b03161415610bdf5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610b41565b336001600160a01b0382161480610bfb5750610bfb8133610971565b610c6d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610b41565b610c778383612ccd565b505050565b6016546060906001600160a01b0316610ca75760405162461bcd60e51b8152600401610b4190613d7c565b60175460405162438b6360e81b81526001600160a01b0384811660048301529091169063438b63009060240160006040518083038186803b158015610ceb57600080fd5b505afa158015610cff573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610a3491908101906139d5565b600a546001600160a01b03163314610d515760405162461bcd60e51b8152600401610b4190613dc1565b600091825260196020526040909120805460ff1916911515919091179055565b600a546001600160a01b03163314610d9b5760405162461bcd60e51b8152600401610b4190613dc1565b601680546001600160a01b039092166001600160a01b0319928316811790915560178054909216179055565b610dd13382612d3b565b610ded5760405162461bcd60e51b8152600401610b4190613e53565b610c77838383612e32565b6000610e038361193a565b8210610e655760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b41565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b60165433906001600160a01b0316610eb85760405162461bcd60e51b8152600401610b4190613d7c565b600c54610100900460ff16610edf5760405162461bcd60e51b8152600401610b4190613cfe565b600060058351610eef9190613f7b565b9050600081600e54610f019190613fae565b1015610f1f5760405162461bcd60e51b8152600401610b4190613d45565b6014811115610f405760405162461bcd60e51b8152600401610b4190613ea4565b60008111610f605760405162461bcd60e51b8152600401610b4190613df6565b610f6a828461290d565b610fce5760405162461bcd60e51b815260206004820152602f60248201527f56656769656d6f6e20496473206973206e6f7420746f6b656e206f776e65722060448201526e1bdc881cdbdb595bdb99481d5cd959608a1b6064820152608401610b41565b60008060005b838110156114a857610fe7816005613f8f565b92506000868481518110610ffd57610ffd61409d565b602002602001015190506000878560016110179190613f63565b815181106110275761102761409d565b602002602001015190506000888660026110419190613f63565b815181106110515761105161409d565b6020026020010151905060008987600361106b9190613f63565b8151811061107b5761107b61409d565b6020026020010151905060008a8860046110959190613f63565b815181106110a5576110a561409d565b60209081029190910101516017546040516331a9108f60e11b8152600481018890529192506001600160a01b038c811692911690636352211e9060240160206040518083038186803b1580156110fa57600080fd5b505afa15801561110e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113291906137df565b6001600160a01b03161480156111cc57506017546040516331a9108f60e11b8152600481018690526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561118957600080fd5b505afa15801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906137df565b6001600160a01b0316145b801561125c57506017546040516331a9108f60e11b8152600481018590526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561121957600080fd5b505afa15801561122d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125191906137df565b6001600160a01b0316145b80156112ec57506017546040516331a9108f60e11b8152600481018490526001600160a01b038c8116921690636352211e9060240160206040518083038186803b1580156112a957600080fd5b505afa1580156112bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e191906137df565b6001600160a01b0316145b801561137c57506017546040516331a9108f60e11b8152600481018390526001600160a01b038c8116921690636352211e9060240160206040518083038186803b15801561133957600080fd5b505afa15801561134d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137191906137df565b6001600160a01b0316145b8015611397575060008581526018602052604090205460ff16155b80156113b2575060008481526018602052604090205460ff16155b80156113cd575060008381526018602052604090205460ff16155b80156113e8575060008281526018602052604090205460ff16155b8015611403575060008181526018602052604090205460ff16155b1561149057600085815260186020526040808220805460ff19908116600190811790925587845282842080548216831790558684528284208054821683179055858452828420805482168317905584845291909220805490911690911790556114748a61146f600b5490565b612fdd565b611482600b80546001019055565b61148d600188613f63565b96505b505050505080806114a09061402c565b915050610fd4565b5080600e546114b79190613fae565b600e555050505050565b600a546001600160a01b031633146114eb5760405162461bcd60e51b8152600401610b4190613dc1565b600091825260186020526040909120805460ff1916911515919091179055565b6040805180820190915260008152606060208201526017546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b15801561156657600080fd5b505afa15801561157a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159e9190613b43565b905060006040518060400160405280600081526020018367ffffffffffffffff8111156115cd576115cd6140b3565b6040519080825280602002602001820160405280156115f6578160200160208202803683370190505b509052905060005b828110156116f557601754604051632f745c5960e01b81526001600160a01b038781166004830152602482018490526000921690632f745c599060440160206040518083038186803b15801561165357600080fd5b505afa158015611667573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168b9190613b43565b60008181526018602052604090205490915060ff166116e2578083602001518460000151815181106116bf576116bf61409d565b6020026020010181815250506001836000018181516116de9190613f63565b9052505b50806116ed8161402c565b9150506115fe565b509392505050565b610c7783838360405180602001604052806000815250612755565b606060006117258361193a565b905060008167ffffffffffffffff811115611742576117426140b3565b60405190808252806020026020018201604052801561176b578160200160208202803683370190505b50905060005b828110156116f5576117838582610df8565b8282815181106117955761179561409d565b6020908102919091010152806117aa8161402c565b915050611771565b60006117bd60085490565b82106118205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b41565b600882815481106118335761183361409d565b90600052602060002001549050919050565b600a546001600160a01b0316331461186f5760405162461bcd60e51b8152600401610b4190613dc1565b600c805460ff1916911515919091179055565b600a546001600160a01b031633146118ac5760405162461bcd60e51b8152600401610b4190613dc1565b80516118bf90601190602084019061365f565b5050565b6000818152600260205260408120546001600160a01b031680610a345760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610b41565b60006001600160a01b0382166119a55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610b41565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146119eb5760405162461bcd60e51b8152600401610b4190613dc1565b6119f56000612ff7565b565b600a546001600160a01b03163314611a215760405162461bcd60e51b8152600401610b4190613dc1565b6000611a2e600247613f7b565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050611a6157600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050611a9357600080fd5b50565b600a546001600160a01b03163314611ac05760405162461bcd60e51b8152600401610b4190613dc1565b600c8054911515620100000262ff000019909216919091179055565b600c54339060ff16611b435760405162461bcd60e51b815260206004820152602a60248201527f6375727365642076656769656d6f6e2075706772616465206861736e277420736044820152691d185c9d1959081e595d60b21b6064820152608401610b41565b6016546001600160a01b0316611b6b5760405162461bcd60e51b8152600401610b4190613d7c565b60175460405163e985e9c560e01b81526001600160a01b0383811660048301523060248301529091169063e985e9c59060440160206040518083038186803b158015611bb657600080fd5b505afa158015611bca573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bee9190613a8a565b611c4d5760405162461bcd60e51b815260206004820152602a60248201527f76656769656d6f6e20636f6e74726163742061646472657373206e65656420626044820152691948105c1c1c9bdd995960b21b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018790526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611c9357600080fd5b505afa158015611ca7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ccb91906137df565b6001600160a01b031614611d315760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e312074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018690526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611d7757600080fd5b505afa158015611d8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611daf91906137df565b6001600160a01b031614611e155760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e322074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b6017546040516331a9108f60e11b8152600481018590526001600160a01b03838116921690636352211e9060240160206040518083038186803b158015611e5b57600080fd5b505afa158015611e6f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e9391906137df565b6001600160a01b031614611ef95760405162461bcd60e51b815260206004820152602760248201527f76656769656d6f6e3a20757365206f6620746f6b656e332074686174206973206044820152663737ba1037bbb760c91b6064820152608401610b41565b806001600160a01b0316611f0c836118c3565b6001600160a01b031614611f795760405162461bcd60e51b815260206004820152602e60248201527f6375727365642076656769656d6f6e3a20757365206f6620746f6b656e33207460448201526d3430ba1034b9903737ba1037bbb760911b6064820152608401610b41565b838514158015611f895750828514155b8015611f955750828414155b611fe15760405162461bcd60e51b815260206004820152601b60248201527f76656769656d6f6e20696473206e65656420626520756e6971756500000000006044820152606401610b41565b60008281526019602052604090205460ff16156120665760405162461bcd60e51b815260206004820152603a60248201527f6375727365642076656769656d6f6e206d75737420626520746865206f6e652060448201527f74686174206861736e2774206265656e2075706772616465642e0000000000006064820152608401610b41565b6120708186612096565b61207a8185612096565b6120848184612096565b61208f826001610d27565b5050505050565b600a546001600160a01b031633146120c05760405162461bcd60e51b8152600401610b4190613dc1565b6017546015546040516323b872dd60e01b81526001600160a01b0385811660048301529182166024820152604481018490529116906323b872dd90606401600060405180830381600087803b15801561211857600080fd5b505af115801561212c573d6000803e3d6000fd5b505050505050565b606060018054610a4990613ff1565b600c5462010000900460ff166121ab5760405162461bcd60e51b815260206004820152602760248201527f6375727365642076656769656d6f6e2073616c65206861736e277420737461726044820152661d1959081e595d60ca1b6064820152608401610b41565b600081600f546121bb9190613fae565b10156121d95760405162461bcd60e51b8152600401610b4190613d45565b80600d546121e79190613f8f565b3410156122295760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610b41565b600a8111156122885760405162461bcd60e51b815260206004820152602560248201527f596f752063616e74206d696e74206d6f7265207468616e2031302061742061206044820152643a34b6b29760d91b6064820152608401610b41565b600081116122a85760405162461bcd60e51b8152600401610b4190613df6565b60005b818110156122e0576122c03361146f600b5490565b6122ce600b80546001019055565b806122d88161402c565b9150506122ab565b5080600f546122ef9190613fae565b600f5550565b600a546001600160a01b0316331461231f5760405162461bcd60e51b8152600401610b4190613dc1565b600d55565b600a546001600160a01b0316331461234e5760405162461bcd60e51b8152600401610b4190613dc1565b80516118bf90601290602084019061365f565b60165433906001600160a01b031661238b5760405162461bcd60e51b8152600401610b4190613d7c565b600c54610100900460ff166123b25760405162461bcd60e51b8152600401610b4190613cfe565b60006123bd8261150b565b90506123ca836005613f8f565b815110156124265760405162461bcd60e51b815260206004820152602360248201527f76656769656d6f6e20746f6b656e73206e6f7420656e6f75676820746f206d696044820152626e742160e81b6064820152608401610b41565b600083600e546124369190613fae565b10156124545760405162461bcd60e51b8152600401610b4190613d45565b60148311156124755760405162461bcd60e51b8152600401610b4190613ea4565b600083116124955760405162461bcd60e51b8152600401610b4190613df6565b6000805b84811015612678576124ac816005613f8f565b9150600160186000856020015185815181106124ca576124ca61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000856020015185600161250f9190613f63565b8151811061251f5761251f61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600085602001518560026125649190613f63565b815181106125745761257461409d565b6020026020010151815260200190815260200160002060006101000a81548160ff02191690831515021790555060016018600085602001518560036125b99190613f63565b815181106125c9576125c961409d565b6020026020010151815260200190815260200160002060006101000a81548160ff021916908315150217905550600160186000856020015185600461260e9190613f63565b8151811061261e5761261e61409d565b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506126588461146f600b5490565b612666600b80546001019055565b806126708161402c565b915050612499565b5083600e546126879190613fae565b600e5550505050565b6001600160a01b0382163314156126e95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b41565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61275f3383612d3b565b61277b5760405162461bcd60e51b8152600401610b4190613e53565b61278784848484613049565b50505050565b6000818152600260205260409020546060906001600160a01b031661280c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b41565b60008281526019602052604081205460ff1661282f5761282a61307c565b6128bb565b6012805461283c90613ff1565b80601f016020809104026020016040519081016040528092919081815260200182805461286890613ff1565b80156128b55780601f1061288a576101008083540402835291602001916128b5565b820191906000526020600020905b81548152906001019060200180831161289857829003601f168201915b50505050505b905060008151116128db5760405180602001604052806000815250612906565b806128e58461308b565b6040516020016128f6929190613c1a565b6040516020818303038152906040525b9392505050565b6000805b8251811015612a0857600083828151811061292e5761292e61409d565b6020908102919091018101516000818152601890925260409091205490915060ff161515600114806129e557506017546040516331a9108f60e11b8152600481018390526001600160a01b03878116921690636352211e9060240160206040518083038186803b1580156129a157600080fd5b505afa1580156129b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129d991906137df565b6001600160a01b031614155b156129f557600092505050610a34565b5080612a008161402c565b915050612911565b5060019392505050565b600a546001600160a01b03163314612a3c5760405162461bcd60e51b8152600401610b4190613dc1565b600f54811115612a8e5760405162461bcd60e51b815260206004820152601c60248201527f657863656564732072657365727665642073616c6520737570706c79000000006044820152606401610b41565b601054811115612ae05760405162461bcd60e51b815260206004820181905260248201527f6578636565647320726573657276656420676976656177617920737570706c796044820152606401610b41565b60008111612b245760405162461bcd60e51b815260206004820152601160248201527033b4bb32a0bbb0bc903737ba3434b7339760791b6044820152606401610b41565b60005b81811015612b67576000612b3a600b5490565b9050612b468482612fdd565b612b54600b80546001019055565b5080612b5f8161402c565b915050612b27565b5080601054612b769190613fae565b601055600f54612b87908290613fae565b600f555050565b600a546001600160a01b03163314612bb85760405162461bcd60e51b8152600401610b4190613dc1565b600c80549115156101000261ff0019909216919091179055565b600a546001600160a01b03163314612bfc5760405162461bcd60e51b8152600401610b4190613dc1565b6001600160a01b038116612c615760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b41565b611a9381612ff7565b5490565b80546001019055565b3b151590565b60006001600160e01b031982166380ac58cd60e01b1480612cae57506001600160e01b03198216635b5e139f60e01b145b80610a3457506301ffc9a760e01b6001600160e01b0319831614610a34565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612d02826118c3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612db45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610b41565b6000612dbf836118c3565b9050806001600160a01b0316846001600160a01b03161480612dfa5750836001600160a01b0316612def84610acc565b6001600160a01b0316145b80612e2a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612e45826118c3565b6001600160a01b031614612ead5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610b41565b6001600160a01b038216612f0f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b41565b612f1a838383613189565b612f25600082612ccd565b6001600160a01b0383166000908152600360205260408120805460019290612f4e908490613fae565b90915550506001600160a01b0382166000908152600360205260408120805460019290612f7c908490613f63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118bf828260405180602001604052806000815250613241565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613054848484612e32565b61306084848484613274565b6127875760405162461bcd60e51b8152600401610b4190613cac565b606060118054610a4990613ff1565b6060816130af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130d957806130c38161402c565b91506130d29050600a83613f7b565b91506130b3565b60008167ffffffffffffffff8111156130f4576130f46140b3565b6040519080825280601f01601f19166020018201604052801561311e576020820181803683370190505b5090505b8415612e2a57613133600183613fae565b9150613140600a86614047565b61314b906030613f63565b60f81b8183815181106131605761316061409d565b60200101906001600160f81b031916908160001a905350613182600a86613f7b565b9450613122565b6001600160a01b0383166131e4576131df81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b613207565b816001600160a01b0316836001600160a01b031614613207576132078382613381565b6001600160a01b03821661321e57610c778161341e565b826001600160a01b0316826001600160a01b031614610c7757610c7782826134cd565b61324b8383613511565b6132586000848484613274565b610c775760405162461bcd60e51b8152600401610b4190613cac565b60006001600160a01b0384163b1561337657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906132b8903390899088908890600401613c49565b602060405180830381600087803b1580156132d257600080fd5b505af1925050508015613302575060408051601f3d908101601f191682019092526132ff91810190613ac4565b60015b61335c573d808015613330576040519150601f19603f3d011682016040523d82523d6000602084013e613335565b606091505b5080516133545760405162461bcd60e51b8152600401610b4190613cac565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612e2a565b506001949350505050565b6000600161338e8461193a565b6133989190613fae565b6000838152600760205260409020549091508082146133eb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061343090600190613fae565b600083815260096020526040812054600880549394509092849081106134585761345861409d565b9060005260206000200154905080600883815481106134795761347961409d565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806134b1576134b1614087565b6001900381819060005260206000200160009055905550505050565b60006134d88361193a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166135675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b41565b6000818152600260205260409020546001600160a01b0316156135cc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b41565b6135d860008383613189565b6001600160a01b0382166000908152600360205260408120805460019290613601908490613f63565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461366b90613ff1565b90600052602060002090601f01602090048101928261368d57600085556136d3565b82601f106136a657805160ff19168380011785556136d3565b828001600101855582156136d3579182015b828111156136d35782518255916020019190600101906136b8565b506136df9291506136e3565b5090565b5b808211156136df57600081556001016136e4565b600067ffffffffffffffff831115613712576137126140b3565b613725601f8401601f1916602001613f0e565b905082815283838301111561373957600080fd5b828260208301376000602084830101529392505050565b600082601f83011261376157600080fd5b8135602061377661377183613f3f565b613f0e565b80838252828201915082860187848660051b890101111561379657600080fd5b60005b858110156137b557813584529284019290840190600101613799565b5090979650505050505050565b6000602082840312156137d457600080fd5b8135612906816140c9565b6000602082840312156137f157600080fd5b8151612906816140c9565b6000806040838503121561380f57600080fd5b823561381a816140c9565b9150602083013561382a816140c9565b809150509250929050565b60008060006060848603121561384a57600080fd5b8335613855816140c9565b92506020840135613865816140c9565b929592945050506040919091013590565b6000806000806080858703121561388c57600080fd5b8435613897816140c9565b935060208501356138a7816140c9565b925060408501359150606085013567ffffffffffffffff8111156138ca57600080fd5b8501601f810187136138db57600080fd5b6138ea878235602084016136f8565b91505092959194509250565b6000806040838503121561390957600080fd5b8235613914816140c9565b9150602083013567ffffffffffffffff81111561393057600080fd5b61393c85828601613750565b9150509250929050565b6000806040838503121561395957600080fd5b8235613964816140c9565b9150602083013561382a816140de565b6000806040838503121561398757600080fd5b8235613992816140c9565b946020939093013593505050565b6000602082840312156139b257600080fd5b813567ffffffffffffffff8111156139c957600080fd5b612e2a84828501613750565b600060208083850312156139e857600080fd5b825167ffffffffffffffff8111156139ff57600080fd5b8301601f81018513613a1057600080fd5b8051613a1e61377182613f3f565b80828252848201915084840188868560051b8701011115613a3e57600080fd5b600094505b83851015613a61578051835260019490940193918501918501613a43565b50979650505050505050565b600060208284031215613a7f57600080fd5b8135612906816140de565b600060208284031215613a9c57600080fd5b8151612906816140de565b600060208284031215613ab957600080fd5b8135612906816140ec565b600060208284031215613ad657600080fd5b8151612906816140ec565b600060208284031215613af357600080fd5b813567ffffffffffffffff811115613b0a57600080fd5b8201601f81018413613b1b57600080fd5b612e2a848235602084016136f8565b600060208284031215613b3c57600080fd5b5035919050565b600060208284031215613b5557600080fd5b5051919050565b60008060408385031215613b6f57600080fd5b82359150602083013561382a816140de565b60008060008060808587031215613b9757600080fd5b5050823594602084013594506040840135936060013592509050565b600081518084526020808501945080840160005b83811015613be357815187529582019590820190600101613bc7565b509495945050505050565b60008151808452613c06816020860160208601613fc5565b601f01601f19169290920160200192915050565b60008351613c2c818460208801613fc5565b835190830190613c40818360208801613fc5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613c7c90830184613bee565b9695505050505050565b6020815260006129066020830184613bb3565b6020815260006129066020830184613bee565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526027908201527f6375727365642076656769656d6f6e206d696e74206861736e277420737461726040820152661d1959081e595d60ca1b606082015260800190565b6020808252601e908201527f4d6178696d756d20616d6f756e7420616c7265616479206d696e7465642e0000604082015260600190565b60208082526025908201527f76656769656d6f6e20636f6e74726163742061646472657373206e656564206260408201526419481cd95d60da1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526038908201527f6761732066656520666f72206e6f7468696e672c2076656769656d6f6e20646f60408201527f6e277420616363657074207468697320726571756573742e0000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526025908201527f596f752063616e74206d696e74206d6f7265207468616e2032302061742061206040820152643a34b6b29760d91b606082015260800190565b602081528151602082015260006020830151604080840152612e2a6060840182613bb3565b604051601f8201601f1916810167ffffffffffffffff81118282101715613f3757613f376140b3565b604052919050565b600067ffffffffffffffff821115613f5957613f596140b3565b5060051b60200190565b60008219821115613f7657613f7661405b565b500190565b600082613f8a57613f8a614071565b500490565b6000816000190483118215151615613fa957613fa961405b565b500290565b600082821015613fc057613fc061405b565b500390565b60005b83811015613fe0578181015183820152602001613fc8565b838111156127875750506000910152565b600181811c9082168061400557607f821691505b6020821081141561402657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156140405761404061405b565b5060010190565b60008261405657614056614071565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611a9357600080fd5b8015158114611a9357600080fd5b6001600160e01b031981168114611a9357600080fdfea2646970667358221220c2f06f56e06d939c1fdaaec12132114ab7c60a411462d39426acced5ddac45ea64736f6c63430008070033

Deployed Bytecode Sourcemap

47823:13067:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48710:54;;;;;;;;;;-1:-1:-1;48710:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11519:14:1;;11512:22;11494:41;;11482:2;11467:18;48710:54:0;;;;;;;;37988:224;;;;;;;;;;-1:-1:-1;37988:224:0;;;;;:::i;:::-;;:::i;47972:35::-;;;;;;;;;;-1:-1:-1;47972:35:0;;;;;;;;25915:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27474:221::-;;;;;;;;;;-1:-1:-1;27474:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9583:32:1;;;9565:51;;9553:2;9538:18;27474:221:0;9419:203:1;26997:411:0;;;;;;;;;;-1:-1:-1;26997:411:0;;;;;:::i;:::-;;:::i;:::-;;38628:113;;;;;;;;;;-1:-1:-1;38716:10:0;:17;38628:113;;;28069:25:1;;;28057:2;28042:18;38628:113:0;27923:177:1;50032:273:0;;;;;;;;;;-1:-1:-1;50032:273:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;59937:120::-;;;;;;;;;;-1:-1:-1;59937:120:0;;;;;:::i;:::-;;:::i;59477:168::-;;;;;;:::i;:::-;;:::i;49267:83::-;;;;;;;;;;-1:-1:-1;49336:9:0;;49267:83;;28364:339;;;;;;;;;;-1:-1:-1;28364:339:0;;;;;:::i;:::-;;:::i;48178:36::-;;;;;;;;;;;;;;;;38296:256;;;;;;;;;;-1:-1:-1;38296:256:0;;;;;:::i;:::-;;:::i;52942:2075::-;;;;;;;;;;-1:-1:-1;52942:2075:0;;;;;:::i;:::-;;:::i;59817:108::-;;;;;;;;;;-1:-1:-1;59817:108:0;;;;;:::i;:::-;;:::i;50317:609::-;;;;;;;;;;-1:-1:-1;50317:609:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;48135:36::-;;;;;;;;;;;;;;;;28774:185;;;;;;;;;;-1:-1:-1;28774:185:0;;;;;:::i;:::-;;:::i;49677:343::-;;;;;;;;;;-1:-1:-1;49677:343:0;;;;;:::i;:::-;;:::i;49453:91::-;;;;;;;;;;-1:-1:-1;49525:14:0;;49453:91;;38818:233;;;;;;;;;;-1:-1:-1;38818:233:0;;;;;:::i;:::-;;:::i;60275:99::-;;;;;;;;;;-1:-1:-1;60275:99:0;;;;;:::i;:::-;;:::i;60384:94::-;;;;;;;;;;-1:-1:-1;60384:94:0;;;;;:::i;:::-;;:::i;48053:32::-;;;;;;;;;;-1:-1:-1;48053:32:0;;;;;;;;;;;48014;;;;;;;;;;-1:-1:-1;48014:32:0;;;;;;;;;;;25609:239;;;;;;;;;;-1:-1:-1;25609:239:0;;;;;:::i;:::-;;:::i;25339:208::-;;;;;;;;;;-1:-1:-1;25339:208:0;;;;;:::i;:::-;;:::i;13962:94::-;;;;;;;;;;;;;:::i;60699:188::-;;;;;;;;;;;;;:::i;60170:93::-;;;;;;;;;;-1:-1:-1;60170:93:0;;;;;:::i;:::-;;:::i;56710:1426::-;;;;;;;;;;-1:-1:-1;56710:1426:0;;;;;:::i;:::-;;:::i;49553:115::-;;;;;;;;;;-1:-1:-1;49553:115:0;;;;;:::i;:::-;49619:4;49642:18;;;:14;:18;;;;;;;;;49553:115;13311:87;;;;;;;;;;-1:-1:-1;13384:6:0;;-1:-1:-1;;;;;13384:6:0;13311:87;;48579:30;;;;;;;;;;-1:-1:-1;48579:30:0;;;;-1:-1:-1;;;;;48579:30:0;;;59661:148;;;;;;;;;;-1:-1:-1;59661:148:0;;;;;:::i;:::-;;:::i;48616:27::-;;;;;;;;;;-1:-1:-1;48616:27:0;;;;-1:-1:-1;;;;;48616:27:0;;;26084:104;;;;;;;;;;;;;:::i;55057:921::-;;;;;;:::i;:::-;;:::i;60598:89::-;;;;;;;;;;-1:-1:-1;60598:89:0;;;;;:::i;:::-;;:::i;60490:100::-;;;;;;;;;;-1:-1:-1;60490:100:0;;;;;:::i;:::-;;:::i;50962:1546::-;;;;;;;;;;-1:-1:-1;50962:1546:0;;;;;:::i;:::-;;:::i;27767:295::-;;;;;;;;;;-1:-1:-1;27767:295:0;;;;;:::i;:::-;;:::i;49356:91::-;;;;;;;;;;-1:-1:-1;49428:14:0;;49356:91;;29030:328;;;;;;;;;;-1:-1:-1;29030:328:0;;;;;:::i;:::-;;:::i;48221:38::-;;;;;;;;;;;;;;;;58148:359;;;;;;;;;;-1:-1:-1;58148:359:0;;;;;:::i;:::-;;:::i;52520:382::-;;;;;;;;;;-1:-1:-1;52520:382:0;;;;;:::i;:::-;;:::i;56022:645::-;;;;;;;;;;-1:-1:-1;56022:645:0;;;;;:::i;:::-;;:::i;48098:24::-;;;;;;;;;;;;;;;;28133:164;;;;;;;;;;-1:-1:-1;28133:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28254:25:0;;;28230:4;28254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28133:164;60065:93;;;;;;;;;;-1:-1:-1;60065:93:0;;;;;:::i;:::-;;:::i;14211:192::-;;;;;;;;;;-1:-1:-1;14211:192:0;;;;;:::i;:::-;;:::i;48656:47::-;;;;;;;;;;-1:-1:-1;48656:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37988:224;38090:4;-1:-1:-1;;;;;;38114:50:0;;-1:-1:-1;;;38114:50:0;;:90;;;38168:36;38192:11;38168:23;:36::i;:::-;38107:97;37988:224;-1:-1:-1;;37988:224:0:o;25915:100::-;25969:13;26002:5;25995:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25915:100;:::o;27474:221::-;27550:7;30957:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30957:16:0;27570:73;;;;-1:-1:-1;;;27570:73:0;;20556:2:1;27570:73:0;;;20538:21:1;20595:2;20575:18;;;20568:30;20634:34;20614:18;;;20607:62;-1:-1:-1;;;20685:18:1;;;20678:42;20737:19;;27570:73:0;;;;;;;;;-1:-1:-1;27663:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27663:24:0;;27474:221::o;26997:411::-;27078:13;27094:23;27109:7;27094:14;:23::i;:::-;27078:39;;27142:5;-1:-1:-1;;;;;27136:11:0;:2;-1:-1:-1;;;;;27136:11:0;;;27128:57;;;;-1:-1:-1;;;27128:57:0;;23688:2:1;27128:57:0;;;23670:21:1;23727:2;23707:18;;;23700:30;23766:34;23746:18;;;23739:62;-1:-1:-1;;;23817:18:1;;;23810:31;23858:19;;27128:57:0;23486:397:1;27128:57:0;2771:10;-1:-1:-1;;;;;27220:21:0;;;;:62;;-1:-1:-1;27245:37:0;27262:5;2771:10;28133:164;:::i;27245:37::-;27198:168;;;;-1:-1:-1;;;27198:168:0;;16954:2:1;27198:168:0;;;16936:21:1;16993:2;16973:18;;;16966:30;17032:34;17012:18;;;17005:62;17103:26;17083:18;;;17076:54;17147:19;;27198:168:0;16752:420:1;27198:168:0;27379:21;27388:2;27392:7;27379:8;:21::i;:::-;27067:341;26997:411;;:::o;50032:273::-;50142:15;;50100:16;;-1:-1:-1;;;;;50142:15:0;50134:112;;;;-1:-1:-1;;;50134:112:0;;;;;;;:::i;:::-;50264:11;;:33;;-1:-1:-1;;;50264:33:0;;-1:-1:-1;;;;;9583:32:1;;;50264:33:0;;;9565:51:1;50264:11:0;;;;:25;;9538:18:1;;50264:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50264:33:0;;;;;;;;;;;;:::i;59937:120::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60018:25:::1;::::0;;;:21:::1;:25;::::0;;;;;:31;;-1:-1:-1;;60018:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59937:120::o;59477:168::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;59559:15:::1;:26:::0;;-1:-1:-1;;;;;59559:26:0;;::::1;-1:-1:-1::0;;;;;;59559:26:0;;::::1;::::0;::::1;::::0;;;59596:11:::1;:41:::0;;;;::::1;;::::0;;59477:168::o;28364:339::-;28559:41;2771:10;28592:7;28559:18;:41::i;:::-;28551:103;;;;-1:-1:-1;;;28551:103:0;;;;;;;:::i;:::-;28667:28;28677:4;28683:2;28687:7;28667:9;:28::i;38296:256::-;38393:7;38429:23;38446:5;38429:16;:23::i;:::-;38421:5;:31;38413:87;;;;-1:-1:-1;;;38413:87:0;;12605:2:1;38413:87:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683:34;12663:18;;;12656:62;-1:-1:-1;;;12734:18:1;;;12727:41;12785:19;;38413:87:0;12403:407:1;38413:87:0;-1:-1:-1;;;;;;38518:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38296:256::o;52942:2075::-;53046:15;;53017:10;;-1:-1:-1;;;;;53046:15:0;53038:112;;;;-1:-1:-1;;;53038:112:0;;;;;;;:::i;:::-;53169:12;;;;;;;53161:114;;;;-1:-1:-1;;;53161:114:0;;;;;;;:::i;:::-;53286:18;53320:1;53307:3;:10;:14;;;;:::i;:::-;53286:35;;53374:1;53357:13;53340:14;;:30;;;;:::i;:::-;:35;;53332:105;;;;-1:-1:-1;;;53332:105:0;;;;;;;:::i;:::-;53473:2;53456:13;:19;;53448:112;;;;-1:-1:-1;;;53448:112:0;;;;;;;:::i;:::-;53595:1;53579:13;:17;53571:131;;;;-1:-1:-1;;;53571:131:0;;;;;;;:::i;:::-;53741:27;53758:4;53764:3;53741:16;:27::i;:::-;53733:122;;;;-1:-1:-1;;;53733:122:0;;18608:2:1;53733:122:0;;;18590:21:1;18647:2;18627:18;;;18620:30;18686:34;18666:18;;;18659:62;-1:-1:-1;;;18737:18:1;;;18730:45;18792:19;;53733:122:0;18406:411:1;53733:122:0;53876:13;53904;53936:6;53932:1026;53952:13;53948:1;:17;53932:1026;;;54004:5;:1;54008;54004:5;:::i;:::-;53996:13;;54024:10;54037:3;54041:5;54037:10;;;;;;;;:::i;:::-;;;;;;;54024:23;;54062:10;54075:3;54079:5;54087:1;54079:9;;;;:::i;:::-;54075:14;;;;;;;;:::i;:::-;;;;;;;54062:27;;54104:10;54117:3;54121:5;54129:1;54121:9;;;;:::i;:::-;54117:14;;;;;;;;:::i;:::-;;;;;;;54104:27;;54146:10;54159:3;54163:5;54171:1;54163:9;;;;:::i;:::-;54159:14;;;;;;;;:::i;:::-;;;;;;;54146:27;;54188:10;54201:3;54205:5;54213:1;54205:9;;;;:::i;:::-;54201:14;;;;;;;;:::i;:::-;;;;;;;;;;;54233:11;;:23;;-1:-1:-1;;;54233:23:0;;;;;28069:25:1;;;54201:14:0;;-1:-1:-1;;;;;;54233:31:0;;;;:11;;;:19;;28042:18:1;;54233:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54233:31:0;;:66;;;;-1:-1:-1;54268:11:0;;:23;;-1:-1:-1;;;54268:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;54268:31:0;;;;:11;;:19;;28042:18:1;;54268:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54268:31:0;;54233:66;:101;;;;-1:-1:-1;54303:11:0;;:23;;-1:-1:-1;;;54303:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;54303:31:0;;;;:11;;:19;;28042:18:1;;54303:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54303:31:0;;54233:101;:136;;;;-1:-1:-1;54338:11:0;;:23;;-1:-1:-1;;;54338:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;54338:31:0;;;;:11;;:19;;28042:18:1;;54338:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54338:31:0;;54233:136;:171;;;;-1:-1:-1;54373:11:0;;:23;;-1:-1:-1;;;54373:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;54373:31:0;;;;:11;;:19;;28042:18:1;;54373:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;54373:31:0;;54233:171;:215;;;;-1:-1:-1;54421:18:0;;;;:14;:18;;;;;;;;:27;54233:215;:246;;;;-1:-1:-1;54452:18:0;;;;:14;:18;;;;;;;;:27;54233:246;:277;;;;-1:-1:-1;54483:18:0;;;;:14;:18;;;;;;;;:27;54233:277;:308;;;;-1:-1:-1;54514:18:0;;;;:14;:18;;;;;;;;:27;54233:308;:339;;;;-1:-1:-1;54545:18:0;;;;:14;:18;;;;;;;;:27;54233:339;54230:717;;;54606:18;;;;:14;:18;;;;;;:25;;-1:-1:-1;;54606:25:0;;;54627:4;54606:25;;;;;;54650:18;;;;;;:25;;;;;;;;54694:18;;;;;;:25;;;;;;;;54738:18;;;;;;:25;;;;;;;;54782:18;;;;;;;:25;;;;;;;;;;54826:36;54836:4;54842:19;:9;11847:14;;11755:114;54842:19;54826:9;:36::i;:::-;54881:21;:9;11966:19;;11984:1;11966:19;;;11877:127;54881:21;54921:10;54930:1;54921:10;;:::i;:::-;;;54230:717;53981:977;;;;;53967:3;;;;;:::i;:::-;;;;53932:1026;;;;55004:5;54987:14;;:22;;;;:::i;:::-;54970:14;:39;-1:-1:-1;;;;;52942:2075:0:o;59817:108::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;59893:18:::1;::::0;;;:14:::1;:18;::::0;;;;;:24;;-1:-1:-1;;59893:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59817:108::o;50317:609::-;-1:-1:-1;;;;;;;;;;;;;;;;;50440:11:0;;:29;;-1:-1:-1;;;50440:29:0;;-1:-1:-1;;;;;9583:32:1;;;50440:29:0;;;9565:51:1;50427:10:0;;50440:11;;:21;;9538:18:1;;50440:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50427:42;;50480:28;50511:36;;;;;;;;50526:1;50511:36;;;;50543:2;50529:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50529:17:0;-1:-1:-1;50511:36:0;;50480:67;-1:-1:-1;50564:9:0;50560:333;50579:2;50575:1;:6;50560:333;;;50631:11;;:42;;-1:-1:-1;;;50631:42:0;;-1:-1:-1;;;;;11001:32:1;;;50631:42:0;;;10983:51:1;11050:18;;;11043:34;;;50613:15:0;;50631:11;;:31;;10956:18:1;;50631:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50691:23;;;;:14;:23;;;;;;50613:60;;-1:-1:-1;50691:23:0;;50688:194;;50810:7;50757:6;:23;;;50781:6;:25;;;50757:50;;;;;;;;:::i;:::-;;;;;;:60;;;;;50865:1;50836:6;:25;;:30;;;;;;;:::i;:::-;;;-1:-1:-1;50688:194:0;-1:-1:-1;50583:3:0;;;;:::i;:::-;;;;50560:333;;;-1:-1:-1;50912:6:0;50317:609;-1:-1:-1;;;50317:609:0:o;28774:185::-;28912:39;28929:4;28935:2;28939:7;28912:39;;;;;;;;;;;;:16;:39::i;49677:343::-;49736:16;49765:18;49786:17;49796:6;49786:9;:17::i;:::-;49765:38;;49816:25;49858:10;49844:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49844:25:0;;49816:53;;49884:9;49880:107;49899:10;49895:1;:14;49880:107;;;49945:30;49965:6;49973:1;49945:19;:30::i;:::-;49931:8;49940:1;49931:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49911:3;;;;:::i;:::-;;;;49880:107;;38818:233;38893:7;38929:30;38716:10;:17;;38628:113;38929:30;38921:5;:38;38913:95;;;;-1:-1:-1;;;38913:95:0;;25262:2:1;38913:95:0;;;25244:21:1;25301:2;25281:18;;;25274:30;25340:34;25320:18;;;25313:62;-1:-1:-1;;;25391:18:1;;;25384:42;25443:19;;38913:95:0;25060:408:1;38913:95:0;39026:10;39037:5;39026:17;;;;;;;;:::i;:::-;;;;;;;;;39019:24;;38818:233;;;:::o;60275:99::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60345:15:::1;:21:::0;;-1:-1:-1;;60345:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60275:99::o;60384:94::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60457:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;60384:94:::0;:::o;25609:239::-;25681:7;25717:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25717:16:0;25752:19;25744:73;;;;-1:-1:-1;;;25744:73:0;;18198:2:1;25744:73:0;;;18180:21:1;18237:2;18217:18;;;18210:30;18276:34;18256:18;;;18249:62;-1:-1:-1;;;18327:18:1;;;18320:39;18376:19;;25744:73:0;17996:405:1;25339:208:0;25411:7;-1:-1:-1;;;;;25439:19:0;;25431:74;;;;-1:-1:-1;;;25431:74:0;;17787:2:1;25431:74:0;;;17769:21:1;17826:2;17806:18;;;17799:30;17865:34;17845:18;;;17838:62;-1:-1:-1;;;17916:18:1;;;17909:40;17966:19;;25431:74:0;17585:406:1;25431:74:0;-1:-1:-1;;;;;;25523:16:0;;;;;:9;:16;;;;;;;25339:208::o;13962:94::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;14027:21:::1;14045:1;14027:9;:21::i;:::-;13962:94::o:0;60699:188::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60752:13:::1;60768:25;60792:1;60768:21;:25;:::i;:::-;60820:2;::::0;60812:23:::1;::::0;60752:41;;-1:-1:-1;;;;;;60820:2:0::1;::::0;60812:23;::::1;;;::::0;60752:41;;60820:2:::1;60812:23:::0;60820:2;60812:23;60752:41;60820:2;60812:23;::::1;;;;;;60804:32;;;::::0;::::1;;60863:2;::::0;60855:23:::1;::::0;-1:-1:-1;;;;;60863:2:0;;::::1;::::0;60855:23;::::1;;;::::0;60872:5;;60863:2:::1;60855:23:::0;60863:2;60855:23;60872:5;60863:2;60855:23;::::1;;;;;;60847:32;;;::::0;::::1;;60741:146;60699:188::o:0;60170:93::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60237:12:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;60237:18:0;;::::1;::::0;;;::::1;::::0;;60170:93::o;56710:1426::-;56843:15;;56814:10;;56843:15;;56835:116;;;;-1:-1:-1;;;56835:116:0;;26451:2:1;56835:116:0;;;26433:21:1;26490:2;26470:18;;;26463:30;26529:34;26509:18;;;26502:62;-1:-1:-1;;;26580:18:1;;;26573:40;26630:19;;56835:116:0;26249:406:1;56835:116:0;56970:15;;-1:-1:-1;;;;;56970:15:0;56962:112;;;;-1:-1:-1;;;56962:112:0;;;;;;;:::i;:::-;57093:11;;:49;;-1:-1:-1;;;57093:49:0;;-1:-1:-1;;;;;9857:15:1;;;57093:49:0;;;9839:34:1;57136:4:0;9889:18:1;;;9882:43;57093:11:0;;;;:28;;9774:18:1;;57093:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57085:117;;;;-1:-1:-1;;;57085:117:0;;14200:2:1;57085:117:0;;;14182:21:1;14239:2;14219:18;;;14212:30;14278:34;14258:18;;;14251:62;-1:-1:-1;;;14329:18:1;;;14322:40;14379:19;;57085:117:0;13998:406:1;57085:117:0;57221:11;;:23;;-1:-1:-1;;;57221:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;57221:31:0;;;;:11;;:19;;28042:18:1;;57221:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57221:31:0;;57213:114;;;;-1:-1:-1;;;57213:114:0;;24090:2:1;57213:114:0;;;24072:21:1;24129:2;24109:18;;;24102:30;24168:34;24148:18;;;24141:62;-1:-1:-1;;;24219:18:1;;;24212:37;24266:19;;57213:114:0;23888:403:1;57213:114:0;57346:11;;:23;;-1:-1:-1;;;57346:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;57346:31:0;;;;:11;;:19;;28042:18:1;;57346:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57346:31:0;;57338:114;;;;-1:-1:-1;;;57338:114:0;;12197:2:1;57338:114:0;;;12179:21:1;12236:2;12216:18;;;12209:30;12275:34;12255:18;;;12248:62;-1:-1:-1;;;12326:18:1;;;12319:37;12373:19;;57338:114:0;11995:403:1;57338:114:0;57471:11;;:23;;-1:-1:-1;;;57471:23:0;;;;;28069:25:1;;;-1:-1:-1;;;;;57471:31:0;;;;:11;;:19;;28042:18:1;;57471:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;57471:31:0;;57463:114;;;;-1:-1:-1;;;57463:114:0;;17379:2:1;57463:114:0;;;17361:21:1;17418:2;17398:18;;;17391:30;17457:34;17437:18;;;17430:62;-1:-1:-1;;;17508:18:1;;;17501:37;17555:19;;57463:114:0;17177:403:1;57463:114:0;57612:4;-1:-1:-1;;;;;57596:20:0;:12;57604:3;57596:7;:12::i;:::-;-1:-1:-1;;;;;57596:20:0;;57588:121;;;;-1:-1:-1;;;57588:121:0;;26036:2:1;57588:121:0;;;26018:21:1;26075:2;26055:18;;;26048:30;26114:34;26094:18;;;26087:62;-1:-1:-1;;;26165:18:1;;;26158:44;26219:19;;57588:121:0;25834:410:1;57588:121:0;57734:2;57728;:8;;:20;;;;;57746:2;57740;:8;;57728:20;:32;;;;;57758:2;57752;:8;;57728:32;57720:102;;;;-1:-1:-1;;;57720:102:0;;22926:2:1;57720:102:0;;;22908:21:1;22965:2;22945:18;;;22938:30;23004:29;22984:18;;;22977:57;23051:18;;57720:102:0;22724:351:1;57720:102:0;57841:26;;;;:21;:26;;;;;;;;:35;57833:133;;;;-1:-1:-1;;;57833:133:0;;26862:2:1;57833:133:0;;;26844:21:1;26901:2;26881:18;;;26874:30;26940:34;26920:18;;;26913:62;27011:28;26991:18;;;26984:56;27057:19;;57833:133:0;26660:422:1;57833:133:0;57987:22;58000:4;58006:2;57987:12;:22::i;:::-;58020;58033:4;58039:2;58020:12;:22::i;:::-;58053;58066:4;58072:2;58053:12;:22::i;:::-;58096:32;58118:3;58123:4;58096:21;:32::i;:::-;56788:1348;56710:1426;;;;:::o;59661:148::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;59748:11:::1;::::0;59779::::1;::::0;59748:53:::1;::::0;-1:-1:-1;;;59748:53:0;;-1:-1:-1;;;;;10194:15:1;;;59748:53:0::1;::::0;::::1;10176:34:1::0;59779:11:0;;::::1;10226:18:1::0;;;10219:43;10278:18;;;10271:34;;;59748:11:0;::::1;::::0;:24:::1;::::0;10111:18:1;;59748:53:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;59661:148:::0;;:::o;26084:104::-;26140:13;26173:7;26166:14;;;;;:::i;55057:921::-;55139:12;;;;;;;55131:110;;;;-1:-1:-1;;;55131:110:0;;20148:2:1;55131:110:0;;;20130:21:1;20187:2;20167:18;;;20160:30;20226:34;20206:18;;;20199:62;-1:-1:-1;;;20277:18:1;;;20270:37;20324:19;;55131:110:0;19946:403:1;55131:110:0;55294:1;55277:13;55260:14;;:30;;;;:::i;:::-;:35;;55252:101;;;;-1:-1:-1;;;55252:101:0;;;;;;;:::i;:::-;55397:13;55385:9;;:25;;;;:::i;:::-;55372:9;:38;;55364:87;;;;-1:-1:-1;;;55364:87:0;;22165:2:1;55364:87:0;;;22147:21:1;22204:2;22184:18;;;22177:30;-1:-1:-1;;;22223:18:1;;;22216:46;22279:18;;55364:87:0;21963:340:1;55364:87:0;55487:2;55470:13;:19;;55462:108;;;;-1:-1:-1;;;55462:108:0;;23282:2:1;55462:108:0;;;23264:21:1;23321:2;23301:18;;;23294:30;23360:34;23340:18;;;23333:62;-1:-1:-1;;;23411:18:1;;;23404:35;23456:19;;55462:108:0;23080:401:1;55462:108:0;55605:1;55589:13;:17;55581:127;;;;-1:-1:-1;;;55581:127:0;;;;;;;:::i;:::-;55753:6;55749:154;55769:13;55765:1;:17;55749:154;;;55813:42;55823:10;55835:19;:9;11847:14;;11755:114;55813:42;55870:21;:9;11966:19;;11984:1;11966:19;;;11877:127;55870:21;55784:3;;;;:::i;:::-;;;;55749:154;;;;55957:13;55940:14;;:30;;;;:::i;:::-;55923:14;:47;-1:-1:-1;55057:921:0:o;60598:89::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60664:9:::1;:18:::0;60598:89::o;60490:100::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60566:16;;::::1;::::0;:10:::1;::::0;:16:::1;::::0;::::1;::::0;::::1;:::i;50962:1546::-:0;51063:15;;51034:10;;-1:-1:-1;;;;;51063:15:0;51055:112;;;;-1:-1:-1;;;51055:112:0;;;;;;;:::i;:::-;51186:12;;;;;;;51178:114;;;;-1:-1:-1;;;51178:114:0;;;;;;;:::i;:::-;51303:25;51331:30;51356:4;51331:24;:30::i;:::-;51303:58;-1:-1:-1;51406:17:0;:13;51422:1;51406:17;:::i;:::-;51380:22;;:43;;51372:110;;;;-1:-1:-1;;;51372:110:0;;16191:2:1;51372:110:0;;;16173:21:1;16230:2;16210:18;;;16203:30;16269:34;16249:18;;;16242:62;-1:-1:-1;;;16320:18:1;;;16313:33;16363:19;;51372:110:0;15989:399:1;51372:110:0;51535:1;51518:13;51501:14;;:30;;;;:::i;:::-;:35;;51493:105;;;;-1:-1:-1;;;51493:105:0;;;;;;;:::i;:::-;51634:2;51617:13;:19;;51609:112;;;;-1:-1:-1;;;51609:112:0;;;;;;;:::i;:::-;51756:1;51740:13;:17;51732:131;;;;-1:-1:-1;;;51732:131:0;;;;;;;:::i;:::-;51896:10;51925:6;51921:520;51941:13;51937:1;:17;51921:520;;;51993:5;:1;51997;51993:5;:::i;:::-;51985:13;;52060:4;52013:14;:44;52028:3;:20;;;52049:5;52028:28;;;;;;;;:::i;:::-;;;;;;;52013:44;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;52129:4;52079:14;:47;52094:3;:20;;;52115:5;52123:1;52115:9;;;;:::i;:::-;52094:31;;;;;;;;:::i;:::-;;;;;;;52079:47;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;52198:4;52148:14;:47;52163:3;:20;;;52184:5;52192:1;52184:9;;;;:::i;:::-;52163:31;;;;;;;;:::i;:::-;;;;;;;52148:47;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;52267:4;52217:14;:47;52232:3;:20;;;52253:5;52261:1;52253:9;;;;:::i;:::-;52232:31;;;;;;;;:::i;:::-;;;;;;;52217:47;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;52336:4;52286:14;:47;52301:3;:20;;;52322:5;52330:1;52322:9;;;;:::i;:::-;52301:31;;;;;;;;:::i;:::-;;;;;;;52286:47;;;;;;;;;;;;:54;;;;;;;;;;;;;;;;;;52357:36;52367:4;52373:19;:9;11847:14;;11755:114;52357:36;52408:21;:9;11966:19;;11984:1;11966:19;;;11877:127;52408:21;51956:3;;;;:::i;:::-;;;;51921:520;;;;52487:13;52470:14;;:30;;;;:::i;:::-;52453:14;:47;-1:-1:-1;;;;50962:1546:0:o;27767:295::-;-1:-1:-1;;;;;27870:24:0;;2771:10;27870:24;;27862:62;;;;-1:-1:-1;;;27862:62:0;;15016:2:1;27862:62:0;;;14998:21:1;15055:2;15035:18;;;15028:30;15094:27;15074:18;;;15067:55;15139:18;;27862:62:0;14814:349:1;27862:62:0;2771:10;27937:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27937:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27937:53:0;;;;;;;;;;28006:48;;11494:41:1;;;27937:42:0;;2771:10;28006:48;;11467:18:1;28006:48:0;;;;;;;27767:295;;:::o;29030:328::-;29205:41;2771:10;29238:7;29205:18;:41::i;:::-;29197:103;;;;-1:-1:-1;;;29197:103:0;;;;;;;:::i;:::-;29311:39;29325:4;29331:2;29335:7;29344:5;29311:13;:39::i;:::-;29030:328;;;;:::o;58148:359::-;30933:4;30957:16;;;:7;:16;;;;;;58213:13;;-1:-1:-1;;;;;30957:16:0;58239:76;;;;-1:-1:-1;;;58239:76:0;;22510:2:1;58239:76:0;;;22492:21:1;22549:2;22529:18;;;22522:30;22588:34;22568:18;;;22561:62;-1:-1:-1;;;22639:18:1;;;22632:45;22694:19;;58239:76:0;22308:411:1;58239:76:0;58328:17;58348:30;;;:21;:30;;;;;;;;:56;;58394:10;:8;:10::i;:::-;58348:56;;;58381:10;58348:56;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58328:76;;58442:1;58428:3;58422:17;:21;:77;;;;;;;;;;;;;;;;;58470:3;58475:17;58484:7;58475:8;:17::i;:::-;58453:40;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58422:77;58415:84;58148:359;-1:-1:-1;;;58148:359:0:o;52520:382::-;52602:4;52628:9;52624:247;52643:3;:10;52639:1;:14;52624:247;;;52685:15;52703:3;52707:1;52703:6;;;;;;;;:::i;:::-;;;;;;;;;;;;52727:23;;;;:14;:23;;;;;;;;52703:6;;-1:-1:-1;52727:23:0;;:31;;:23;:31;;:71;;-1:-1:-1;52762:11:0;;:28;;-1:-1:-1;;;52762:28:0;;;;;28069:25:1;;;-1:-1:-1;;;;;52762:36:0;;;;:11;;:19;;28042:18:1;;52762:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;52762:36:0;;;52727:71;52724:136;;;52839:5;52832:12;;;;;;52724:136;-1:-1:-1;52655:3:0;;;;:::i;:::-;;;;52624:247;;;-1:-1:-1;52890:4:0;;52520:382;-1:-1:-1;;;52520:382:0:o;56022:645::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;56122:14:::1;;56111:7;:25;;56103:75;;;::::0;-1:-1:-1;;;56103:75:0;;19024:2:1;56103:75:0::1;::::0;::::1;19006:21:1::0;19063:2;19043:18;;;19036:30;19102;19082:18;;;19075:58;19150:18;;56103:75:0::1;18822:352:1::0;56103:75:0::1;56208:18;;56197:7;:29;;56189:79;;;::::0;-1:-1:-1;;;56189:79:0;;25675:2:1;56189:79:0::1;::::0;::::1;25657:21:1::0;;;25694:18;;;25687:30;25753:34;25733:18;;;25726:62;25805:18;;56189:79:0::1;25473:356:1::0;56189:79:0::1;56297:1;56287:7;:11;56279:64;;;::::0;-1:-1:-1;;;56279:64:0;;24916:2:1;56279:64:0::1;::::0;::::1;24898:21:1::0;24955:2;24935:18;;;24928:30;-1:-1:-1;;;24974:18:1;;;24967:47;25031:18;;56279:64:0::1;24714:341:1::0;56279:64:0::1;56368:9;56364:184;56383:7;56379:1;:11;56364:184;;;56421:17;56441:19;:9;11847:14:::0;;11755:114;56441:19:::1;56421:39;;56475:25;56485:3;56490:9;56475;:25::i;:::-;56515:21;:9;11966:19:::0;;11984:1;11966:19;;;11877:127;56515:21:::1;-1:-1:-1::0;56392:3:0;::::1;::::0;::::1;:::i;:::-;;;;56364:184;;;;56600:7;56579:18;;:28;;;;:::i;:::-;56558:18;:49:::0;56635:14:::1;::::0;:24:::1;::::0;56652:7;;56635:24:::1;:::i;:::-;56618:14;:41:::0;-1:-1:-1;;56022:645:0:o;60065:93::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;60132:12:::1;:18:::0;;;::::1;;;;-1:-1:-1::0;;60132:18:0;;::::1;::::0;;;::::1;::::0;;60065:93::o;14211:192::-;13384:6;;-1:-1:-1;;;;;13384:6:0;2771:10;13531:23;13523:68;;;;-1:-1:-1;;;13523:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14300:22:0;::::1;14292:73;;;::::0;-1:-1:-1;;;14292:73:0;;13436:2:1;14292:73:0::1;::::0;::::1;13418:21:1::0;13475:2;13455:18;;;13448:30;13514:34;13494:18;;;13487:62;-1:-1:-1;;;13565:18:1;;;13558:36;13611:19;;14292:73:0::1;13234:402:1::0;14292:73:0::1;14376:19;14386:8;14376:9;:19::i;11755:114::-:0;11847:14;;11755:114::o;11877:127::-;11966:19;;11984:1;11966:19;;;11877:127::o;3640:387::-;3963:20;4011:8;;;3640:387::o;24970:305::-;25072:4;-1:-1:-1;;;;;;25109:40:0;;-1:-1:-1;;;25109:40:0;;:105;;-1:-1:-1;;;;;;;25166:48:0;;-1:-1:-1;;;25166:48:0;25109:105;:158;;;-1:-1:-1;;;;;;;;;;22932:40:0;;;25231:36;22823:157;34850:174;34925:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34925:29:0;-1:-1:-1;;;;;34925:29:0;;;;;;;;:24;;34979:23;34925:24;34979:14;:23::i;:::-;-1:-1:-1;;;;;34970:46:0;;;;;;;;;;;34850:174;;:::o;31162:348::-;31255:4;30957:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30957:16:0;31272:73;;;;-1:-1:-1;;;31272:73:0;;15778:2:1;31272:73:0;;;15760:21:1;15817:2;15797:18;;;15790:30;15856:34;15836:18;;;15829:62;-1:-1:-1;;;15907:18:1;;;15900:42;15959:19;;31272:73:0;15576:408:1;31272:73:0;31356:13;31372:23;31387:7;31372:14;:23::i;:::-;31356:39;;31425:5;-1:-1:-1;;;;;31414:16:0;:7;-1:-1:-1;;;;;31414:16:0;;:51;;;;31458:7;-1:-1:-1;;;;;31434:31:0;:20;31446:7;31434:11;:20::i;:::-;-1:-1:-1;;;;;31434:31:0;;31414:51;:87;;;-1:-1:-1;;;;;;28254:25:0;;;28230:4;28254:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31469:32;31406:96;31162:348;-1:-1:-1;;;;31162:348:0:o;34154:578::-;34313:4;-1:-1:-1;;;;;34286:31:0;:23;34301:7;34286:14;:23::i;:::-;-1:-1:-1;;;;;34286:31:0;;34278:85;;;;-1:-1:-1;;;34278:85:0;;21755:2:1;34278:85:0;;;21737:21:1;21794:2;21774:18;;;21767:30;21833:34;21813:18;;;21806:62;-1:-1:-1;;;21884:18:1;;;21877:39;21933:19;;34278:85:0;21553:405:1;34278:85:0;-1:-1:-1;;;;;34382:16:0;;34374:65;;;;-1:-1:-1;;;34374:65:0;;14611:2:1;34374:65:0;;;14593:21:1;14650:2;14630:18;;;14623:30;14689:34;14669:18;;;14662:62;-1:-1:-1;;;14740:18:1;;;14733:34;14784:19;;34374:65:0;14409:400:1;34374:65:0;34452:39;34473:4;34479:2;34483:7;34452:20;:39::i;:::-;34556:29;34573:1;34577:7;34556:8;:29::i;:::-;-1:-1:-1;;;;;34598:15:0;;;;;;:9;:15;;;;;:20;;34617:1;;34598:15;:20;;34617:1;;34598:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34629:13:0;;;;;;:9;:13;;;;;:18;;34646:1;;34629:13;:18;;34646:1;;34629:18;:::i;:::-;;;;-1:-1:-1;;34658:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34658:21:0;-1:-1:-1;;;;;34658:21:0;;;;;;;;;34697:27;;34658:16;;34697:27;;;;;;;34154:578;;;:::o;31852:110::-;31928:26;31938:2;31942:7;31928:26;;;;;;;;;;;;:9;:26::i;14411:173::-;14486:6;;;-1:-1:-1;;;;;14503:17:0;;;-1:-1:-1;;;;;;14503:17:0;;;;;;;14536:40;;14486:6;;;14503:17;14486:6;;14536:40;;14467:16;;14536:40;14456:128;14411:173;:::o;30240:315::-;30397:28;30407:4;30413:2;30417:7;30397:9;:28::i;:::-;30444:48;30467:4;30473:2;30477:7;30486:5;30444:22;:48::i;:::-;30436:111;;;;-1:-1:-1;;;30436:111:0;;;;;;;:::i;58515:106::-;58567:13;58606:7;58599:14;;;;;:::i;58731:723::-;58787:13;59008:10;59004:53;;-1:-1:-1;;59035:10:0;;;;;;;;;;;;-1:-1:-1;;;59035:10:0;;;;;58731:723::o;59004:53::-;59082:5;59067:12;59123:78;59130:9;;59123:78;;59156:8;;;;:::i;:::-;;-1:-1:-1;59179:10:0;;-1:-1:-1;59187:2:0;59179:10;;:::i;:::-;;;59123:78;;;59211:19;59243:6;59233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59233:17:0;;59211:39;;59261:154;59268:10;;59261:154;;59295:11;59305:1;59295:11;;:::i;:::-;;-1:-1:-1;59364:10:0;59372:2;59364:5;:10;:::i;:::-;59351:24;;:2;:24;:::i;:::-;59338:39;;59321:6;59328;59321:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;59321:56:0;;;;;;;;-1:-1:-1;59392:11:0;59401:2;59392:11;;:::i;:::-;;;59261:154;;39664:589;-1:-1:-1;;;;;39870:18:0;;39866:187;;39905:40;39937:7;41080:10;:17;;41053:24;;;;:15;:24;;;;;:44;;;41108:24;;;;;;;;;;;;40976:164;39905:40;39866:187;;;39975:2;-1:-1:-1;;;;;39967:10:0;:4;-1:-1:-1;;;;;39967:10:0;;39963:90;;39994:47;40027:4;40033:7;39994:32;:47::i;:::-;-1:-1:-1;;;;;40067:16:0;;40063:183;;40100:45;40137:7;40100:36;:45::i;40063:183::-;40173:4;-1:-1:-1;;;;;40167:10:0;:2;-1:-1:-1;;;;;40167:10:0;;40163:83;;40194:40;40222:2;40226:7;40194:27;:40::i;32189:321::-;32319:18;32325:2;32329:7;32319:5;:18::i;:::-;32370:54;32401:1;32405:2;32409:7;32418:5;32370:22;:54::i;:::-;32348:154;;;;-1:-1:-1;;;32348:154:0;;;;;;;:::i;35589:799::-;35744:4;-1:-1:-1;;;;;35765:13:0;;3963:20;4011:8;35761:620;;35801:72;;-1:-1:-1;;;35801:72:0;;-1:-1:-1;;;;;35801:36:0;;;;;:72;;2771:10;;35852:4;;35858:7;;35867:5;;35801:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35801:72:0;;;;;;;;-1:-1:-1;;35801:72:0;;;;;;;;;;;;:::i;:::-;;;35797:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36043:13:0;;36039:272;;36086:60;;-1:-1:-1;;;36086:60:0;;;;;;;:::i;36039:272::-;36261:6;36255:13;36246:6;36242:2;36238:15;36231:38;35797:529;-1:-1:-1;;;;;;35924:51:0;-1:-1:-1;;;35924:51:0;;-1:-1:-1;35917:58:0;;35761:620;-1:-1:-1;36365:4:0;35589:799;;;;;;:::o;41767:988::-;42033:22;42083:1;42058:22;42075:4;42058:16;:22::i;:::-;:26;;;;:::i;:::-;42095:18;42116:26;;;:17;:26;;;;;;42033:51;;-1:-1:-1;42249:28:0;;;42245:328;;-1:-1:-1;;;;;42316:18:0;;42294:19;42316:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42367:30;;;;;;:44;;;42484:30;;:17;:30;;;;;:43;;;42245:328;-1:-1:-1;42669:26:0;;;;:17;:26;;;;;;;;42662:33;;;-1:-1:-1;;;;;42713:18:0;;;;;:12;:18;;;;;:34;;;;;;;42706:41;41767:988::o;43050:1079::-;43328:10;:17;43303:22;;43328:21;;43348:1;;43328:21;:::i;:::-;43360:18;43381:24;;;:15;:24;;;;;;43754:10;:26;;43303:46;;-1:-1:-1;43381:24:0;;43303:46;;43754:26;;;;;;:::i;:::-;;;;;;;;;43732:48;;43818:11;43793:10;43804;43793:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43898:28;;;:15;:28;;;;;;;:41;;;44070:24;;;;;44063:31;44105:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43121:1008;;;43050:1079;:::o;40554:221::-;40639:14;40656:20;40673:2;40656:16;:20::i;:::-;-1:-1:-1;;;;;40687:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40732:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40554:221:0:o;32846:382::-;-1:-1:-1;;;;;32926:16:0;;32918:61;;;;-1:-1:-1;;;32918:61:0;;19787:2:1;32918:61:0;;;19769:21:1;;;19806:18;;;19799:30;19865:34;19845:18;;;19838:62;19917:18;;32918:61:0;19585:356:1;32918:61:0;30933:4;30957:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30957:16:0;:30;32990:58;;;;-1:-1:-1;;;32990:58:0;;13843:2:1;32990:58:0;;;13825:21:1;13882:2;13862:18;;;13855:30;13921;13901:18;;;13894:58;13969:18;;32990:58:0;13641:352:1;32990:58:0;33061:45;33090:1;33094:2;33098:7;33061:20;:45::i;:::-;-1:-1:-1;;;;;33119:13:0;;;;;;:9;:13;;;;;:18;;33136:1;;33119:13;:18;;33136:1;;33119:18;:::i;:::-;;;;-1:-1:-1;;33148:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33148:21:0;-1:-1:-1;;;;;33148:21:0;;;;;;;;33187:33;;33148:16;;;33187:33;;33148:16;;33187:33;32846:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:673::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;636:60;652:43;692:2;652:43;:::i;:::-;636:60;:::i;:::-;718:3;742:2;737:3;730:15;770:2;765:3;761:12;754:19;;805:2;797:6;793:15;857:3;852:2;846;843:1;839:10;831:6;827:23;823:32;820:41;817:61;;;874:1;871;864:12;817:61;896:1;906:163;920:2;917:1;914:9;906:163;;;977:17;;965:30;;1015:12;;;;1047;;;;938:1;931:9;906:163;;;-1:-1:-1;1087:5:1;;425:673;-1:-1:-1;;;;;;;425:673:1:o;1103:247::-;1162:6;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1270:9;1257:23;1289:31;1314:5;1289:31;:::i;1355:251::-;1425:6;1478:2;1466:9;1457:7;1453:23;1449:32;1446:52;;;1494:1;1491;1484:12;1446:52;1526:9;1520:16;1545:31;1570:5;1545:31;:::i;1611:388::-;1679:6;1687;1740:2;1728:9;1719:7;1715:23;1711:32;1708:52;;;1756:1;1753;1746:12;1708:52;1795:9;1782:23;1814:31;1839:5;1814:31;:::i;:::-;1864:5;-1:-1:-1;1921:2:1;1906:18;;1893:32;1934:33;1893:32;1934:33;:::i;:::-;1986:7;1976:17;;;1611:388;;;;;:::o;2004:456::-;2081:6;2089;2097;2150:2;2138:9;2129:7;2125:23;2121:32;2118:52;;;2166:1;2163;2156:12;2118:52;2205:9;2192:23;2224:31;2249:5;2224:31;:::i;:::-;2274:5;-1:-1:-1;2331:2:1;2316:18;;2303:32;2344:33;2303:32;2344:33;:::i;:::-;2004:456;;2396:7;;-1:-1:-1;;;2450:2:1;2435:18;;;;2422:32;;2004:456::o;2465:794::-;2560:6;2568;2576;2584;2637:3;2625:9;2616:7;2612:23;2608:33;2605:53;;;2654:1;2651;2644:12;2605:53;2693:9;2680:23;2712:31;2737:5;2712:31;:::i;:::-;2762:5;-1:-1:-1;2819:2:1;2804:18;;2791:32;2832:33;2791:32;2832:33;:::i;:::-;2884:7;-1:-1:-1;2938:2:1;2923:18;;2910:32;;-1:-1:-1;2993:2:1;2978:18;;2965:32;3020:18;3009:30;;3006:50;;;3052:1;3049;3042:12;3006:50;3075:22;;3128:4;3120:13;;3116:27;-1:-1:-1;3106:55:1;;3157:1;3154;3147:12;3106:55;3180:73;3245:7;3240:2;3227:16;3222:2;3218;3214:11;3180:73;:::i;:::-;3170:83;;;2465:794;;;;;;;:::o;3264:483::-;3357:6;3365;3418:2;3406:9;3397:7;3393:23;3389:32;3386:52;;;3434:1;3431;3424:12;3386:52;3473:9;3460:23;3492:31;3517:5;3492:31;:::i;:::-;3542:5;-1:-1:-1;3598:2:1;3583:18;;3570:32;3625:18;3614:30;;3611:50;;;3657:1;3654;3647:12;3611:50;3680:61;3733:7;3724:6;3713:9;3709:22;3680:61;:::i;:::-;3670:71;;;3264:483;;;;;:::o;3752:382::-;3817:6;3825;3878:2;3866:9;3857:7;3853:23;3849:32;3846:52;;;3894:1;3891;3884:12;3846:52;3933:9;3920:23;3952:31;3977:5;3952:31;:::i;:::-;4002:5;-1:-1:-1;4059:2:1;4044:18;;4031:32;4072:30;4031:32;4072:30;:::i;4139:315::-;4207:6;4215;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4323:9;4310:23;4342:31;4367:5;4342:31;:::i;:::-;4392:5;4444:2;4429:18;;;;4416:32;;-1:-1:-1;;;4139:315:1:o;4459:348::-;4543:6;4596:2;4584:9;4575:7;4571:23;4567:32;4564:52;;;4612:1;4609;4602:12;4564:52;4652:9;4639:23;4685:18;4677:6;4674:30;4671:50;;;4717:1;4714;4707:12;4671:50;4740:61;4793:7;4784:6;4773:9;4769:22;4740:61;:::i;4812:892::-;4907:6;4938:2;4981;4969:9;4960:7;4956:23;4952:32;4949:52;;;4997:1;4994;4987:12;4949:52;5030:9;5024:16;5063:18;5055:6;5052:30;5049:50;;;5095:1;5092;5085:12;5049:50;5118:22;;5171:4;5163:13;;5159:27;-1:-1:-1;5149:55:1;;5200:1;5197;5190:12;5149:55;5229:2;5223:9;5252:60;5268:43;5308:2;5268:43;:::i;5252:60::-;5334:3;5358:2;5353:3;5346:15;5386:2;5381:3;5377:12;5370:19;;5417:2;5413;5409:11;5465:7;5460:2;5454;5451:1;5447:10;5443:2;5439:19;5435:28;5432:41;5429:61;;;5486:1;5483;5476:12;5429:61;5508:1;5499:10;;5518:156;5532:2;5529:1;5526:9;5518:156;;;5589:10;;5577:23;;5550:1;5543:9;;;;;5620:12;;;;5652;;5518:156;;;-1:-1:-1;5693:5:1;4812:892;-1:-1:-1;;;;;;;4812:892:1:o;5709:241::-;5765:6;5818:2;5806:9;5797:7;5793:23;5789:32;5786:52;;;5834:1;5831;5824:12;5786:52;5873:9;5860:23;5892:28;5914:5;5892:28;:::i;5955:245::-;6022:6;6075:2;6063:9;6054:7;6050:23;6046:32;6043:52;;;6091:1;6088;6081:12;6043:52;6123:9;6117:16;6142:28;6164:5;6142:28;:::i;6205:245::-;6263:6;6316:2;6304:9;6295:7;6291:23;6287:32;6284:52;;;6332:1;6329;6322:12;6284:52;6371:9;6358:23;6390:30;6414:5;6390:30;:::i;6455:249::-;6524:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:52;;;6593:1;6590;6583:12;6545:52;6625:9;6619:16;6644:30;6668:5;6644:30;:::i;6709:450::-;6778:6;6831:2;6819:9;6810:7;6806:23;6802:32;6799:52;;;6847:1;6844;6837:12;6799:52;6887:9;6874:23;6920:18;6912:6;6909:30;6906:50;;;6952:1;6949;6942:12;6906:50;6975:22;;7028:4;7020:13;;7016:27;-1:-1:-1;7006:55:1;;7057:1;7054;7047:12;7006:55;7080:73;7145:7;7140:2;7127:16;7122:2;7118;7114:11;7080:73;:::i;7164:180::-;7223:6;7276:2;7264:9;7255:7;7251:23;7247:32;7244:52;;;7292:1;7289;7282:12;7244:52;-1:-1:-1;7315:23:1;;7164:180;-1:-1:-1;7164:180:1:o;7349:184::-;7419:6;7472:2;7460:9;7451:7;7447:23;7443:32;7440:52;;;7488:1;7485;7478:12;7440:52;-1:-1:-1;7511:16:1;;7349:184;-1:-1:-1;7349:184:1:o;7538:309::-;7603:6;7611;7664:2;7652:9;7643:7;7639:23;7635:32;7632:52;;;7680:1;7677;7670:12;7632:52;7716:9;7703:23;7693:33;;7776:2;7765:9;7761:18;7748:32;7789:28;7811:5;7789:28;:::i;7852:385::-;7938:6;7946;7954;7962;8015:3;8003:9;7994:7;7990:23;7986:33;7983:53;;;8032:1;8029;8022:12;7983:53;-1:-1:-1;;8055:23:1;;;8125:2;8110:18;;8097:32;;-1:-1:-1;8176:2:1;8161:18;;8148:32;;8227:2;8212:18;8199:32;;-1:-1:-1;7852:385:1;-1:-1:-1;7852:385:1:o;8242:435::-;8295:3;8333:5;8327:12;8360:6;8355:3;8348:19;8386:4;8415:2;8410:3;8406:12;8399:19;;8452:2;8445:5;8441:14;8473:1;8483:169;8497:6;8494:1;8491:13;8483:169;;;8558:13;;8546:26;;8592:12;;;;8627:15;;;;8519:1;8512:9;8483:169;;;-1:-1:-1;8668:3:1;;8242:435;-1:-1:-1;;;;;8242:435:1:o;8682:257::-;8723:3;8761:5;8755:12;8788:6;8783:3;8776:19;8804:63;8860:6;8853:4;8848:3;8844:14;8837:4;8830:5;8826:16;8804:63;:::i;:::-;8921:2;8900:15;-1:-1:-1;;8896:29:1;8887:39;;;;8928:4;8883:50;;8682:257;-1:-1:-1;;8682:257:1:o;8944:470::-;9123:3;9161:6;9155:13;9177:53;9223:6;9218:3;9211:4;9203:6;9199:17;9177:53;:::i;:::-;9293:13;;9252:16;;;;9315:57;9293:13;9252:16;9349:4;9337:17;;9315:57;:::i;:::-;9388:20;;8944:470;-1:-1:-1;;;;8944:470:1:o;10316:488::-;-1:-1:-1;;;;;10585:15:1;;;10567:34;;10637:15;;10632:2;10617:18;;10610:43;10684:2;10669:18;;10662:34;;;10732:3;10727:2;10712:18;;10705:31;;;10510:4;;10753:45;;10778:19;;10770:6;10753:45;:::i;:::-;10745:53;10316:488;-1:-1:-1;;;;;;10316:488:1:o;11088:261::-;11267:2;11256:9;11249:21;11230:4;11287:56;11339:2;11328:9;11324:18;11316:6;11287:56;:::i;11771:219::-;11920:2;11909:9;11902:21;11883:4;11940:44;11980:2;11969:9;11965:18;11957:6;11940:44;:::i;12815:414::-;13017:2;12999:21;;;13056:2;13036:18;;;13029:30;13095:34;13090:2;13075:18;;13068:62;-1:-1:-1;;;13161:2:1;13146:18;;13139:48;13219:3;13204:19;;12815:414::o;15168:403::-;15370:2;15352:21;;;15409:2;15389:18;;;15382:30;15448:34;15443:2;15428:18;;15421:62;-1:-1:-1;;;15514:2:1;15499:18;;15492:37;15561:3;15546:19;;15168:403::o;16393:354::-;16595:2;16577:21;;;16634:2;16614:18;;;16607:30;16673:32;16668:2;16653:18;;16646:60;16738:2;16723:18;;16393:354::o;19179:401::-;19381:2;19363:21;;;19420:2;19400:18;;;19393:30;19459:34;19454:2;19439:18;;19432:62;-1:-1:-1;;;19525:2:1;19510:18;;19503:35;19570:3;19555:19;;19179:401::o;20767:356::-;20969:2;20951:21;;;20988:18;;;20981:30;21047:34;21042:2;21027:18;;21020:62;21114:2;21099:18;;20767:356::o;21128:420::-;21330:2;21312:21;;;21369:2;21349:18;;;21342:30;21408:34;21403:2;21388:18;;21381:62;21479:26;21474:2;21459:18;;21452:54;21538:3;21523:19;;21128:420::o;24296:413::-;24498:2;24480:21;;;24537:2;24517:18;;;24510:30;24576:34;24571:2;24556:18;;24549:62;-1:-1:-1;;;24642:2:1;24627:18;;24620:47;24699:3;24684:19;;24296:413::o;27087:401::-;27289:2;27271:21;;;27328:2;27308:18;;;27301:30;27367:34;27362:2;27347:18;;27340:62;-1:-1:-1;;;27433:2:1;27418:18;;27411:35;27478:3;27463:19;;27087:401::o;27493:425::-;27686:2;27675:9;27668:21;27731:6;27725:13;27720:2;27709:9;27705:18;27698:41;27649:4;27786:2;27778:6;27774:15;27768:22;27828:4;27821;27810:9;27806:20;27799:34;27850:62;27908:2;27897:9;27893:18;27879:12;27850:62;:::i;28105:275::-;28176:2;28170:9;28241:2;28222:13;;-1:-1:-1;;28218:27:1;28206:40;;28276:18;28261:34;;28297:22;;;28258:62;28255:88;;;28323:18;;:::i;:::-;28359:2;28352:22;28105:275;;-1:-1:-1;28105:275:1:o;28385:183::-;28445:4;28478:18;28470:6;28467:30;28464:56;;;28500:18;;:::i;:::-;-1:-1:-1;28545:1:1;28541:14;28557:4;28537:25;;28385:183::o;28573:128::-;28613:3;28644:1;28640:6;28637:1;28634:13;28631:39;;;28650:18;;:::i;:::-;-1:-1:-1;28686:9:1;;28573:128::o;28706:120::-;28746:1;28772;28762:35;;28777:18;;:::i;:::-;-1:-1:-1;28811:9:1;;28706:120::o;28831:168::-;28871:7;28937:1;28933;28929:6;28925:14;28922:1;28919:21;28914:1;28907:9;28900:17;28896:45;28893:71;;;28944:18;;:::i;:::-;-1:-1:-1;28984:9:1;;28831:168::o;29004:125::-;29044:4;29072:1;29069;29066:8;29063:34;;;29077:18;;:::i;:::-;-1:-1:-1;29114:9:1;;29004:125::o;29134:258::-;29206:1;29216:113;29230:6;29227:1;29224:13;29216:113;;;29306:11;;;29300:18;29287:11;;;29280:39;29252:2;29245:10;29216:113;;;29347:6;29344:1;29341:13;29338:48;;;-1:-1:-1;;29382:1:1;29364:16;;29357:27;29134:258::o;29397:380::-;29476:1;29472:12;;;;29519;;;29540:61;;29594:4;29586:6;29582:17;29572:27;;29540:61;29647:2;29639:6;29636:14;29616:18;29613:38;29610:161;;;29693:10;29688:3;29684:20;29681:1;29674:31;29728:4;29725:1;29718:15;29756:4;29753:1;29746:15;29610:161;;29397:380;;;:::o;29782:135::-;29821:3;-1:-1:-1;;29842:17:1;;29839:43;;;29862:18;;:::i;:::-;-1:-1:-1;29909:1:1;29898:13;;29782:135::o;29922:112::-;29954:1;29980;29970:35;;29985:18;;:::i;:::-;-1:-1:-1;30019:9:1;;29922:112::o;30039:127::-;30100:10;30095:3;30091:20;30088:1;30081:31;30131:4;30128:1;30121:15;30155:4;30152:1;30145:15;30171:127;30232:10;30227:3;30223:20;30220:1;30213:31;30263:4;30260:1;30253:15;30287:4;30284:1;30277:15;30303:127;30364:10;30359:3;30355:20;30352:1;30345:31;30395:4;30392:1;30385:15;30419:4;30416:1;30409:15;30435:127;30496:10;30491:3;30487:20;30484:1;30477:31;30527:4;30524:1;30517:15;30551:4;30548:1;30541:15;30567:127;30628:10;30623:3;30619:20;30616:1;30609:31;30659:4;30656:1;30649:15;30683:4;30680:1;30673:15;30699:131;-1:-1:-1;;;;;30774:31:1;;30764:42;;30754:70;;30820:1;30817;30810:12;30835:118;30921:5;30914:13;30907:21;30900:5;30897:32;30887:60;;30943:1;30940;30933:12;30958:131;-1:-1:-1;;;;;;31032:32:1;;31022:43;;31012:71;;31079:1;31076;31069:12

Swarm Source

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