ETH Price: $3,290.14 (+1.35%)
Gas: 1 Gwei

Token

YUUNA (Y)
 

Overview

Max Total Supply

1,980 Y

Holders

640

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rengadelinquent.eth
Balance
2 Y
0x7b30324a401724118acf0da60bc07b6ce5078713
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:
Yuuna

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @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/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: Yuuna.sol


pragma solidity >= 0.7.0 < 0.9.0;




contract Yuuna is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    // URIs
    string public uriPrefix = "ipfs://QmW7uaJ8ifcuriMfznd5gpfdJggQDQYc5zaLZS2oZk14ez/";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    // Supplies
    uint256 public maxSupply = 2000;
    uint256 public maxSupplyLimit = 1980;

    // Per Address & TX Limits
    uint256 public nftPublicsalePerAddressLimit = 3;
    uint256 public maxMintAmountPerTx = 3;

    // Stats
    bool public paused = false;
    bool public revealed = false;

    // Minted Balances
    mapping(address => uint256) public addressPublicsaleMintedBalance;

    // Constructor
    constructor() ERC721("YUUNA", "Y") {
        setHiddenMetadataUri("ipfs://Qmaw8VoLTrjxtDZfn1T9ebvTke1ShpcLS9X1973BLGUiFu/");
    }

    // Mint Compliance
    modifier mintCompliance(uint256 _mintAmount) {
        uint256 ownerMintedCount = addressPublicsaleMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPublicsalePerAddressLimit, "MSG: Max NFT per address exceeded for publicsale");

        require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "MSG: Invalid mint amount");
        require(supply.current() + _mintAmount <= maxSupplyLimit, "MSG: Max supply exceeded");
        _;
    }

    // Total Supply
    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    // Mint
    function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
        require(!paused, "MSG: The contract is paused");

        _mintLoop(msg.sender, _mintAmount);
    }

    // Mint Functions
    function ownerMint(uint256 _mintAmount) public onlyOwner {
        require(!paused, "MSG: The contract is paused");

        _mintLoop(msg.sender, _mintAmount);
    }

    function ownerMintSpecific(uint256 _tokenId) public onlyOwner {
        require(!paused, "MSG: The contract is paused");

        _safeMint(msg.sender, _tokenId);
    }
  
    function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
        _mintLoop(_receiver, _mintAmount);
    }

    // Airdrop
    function airdrop(address[] calldata metaMaidOwners) public onlyOwner {
        for(uint256 i = 0; i < metaMaidOwners.length; i++) {
            _mintLoop(metaMaidOwners[i], 2);
        }
    }

    // Wallet Of Owner
    function walletOfOwner(address _owner) public view returns (uint256[] memory) {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);

        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;
                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    // Token URI
    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId), "MSG: URI query for nonexistent token");

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();

        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : "";
    }

    // Set NFT Publicsale Per Address Limit
    function setNFTPublicsalePerAddressLimit(uint256 _cost) public onlyOwner {
        nftPublicsalePerAddressLimit = _cost;
    }

    // Set URI Prefix
    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    // Set URI Suffix
    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    // Set Hidden Metadata URI
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    // Set Paused
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    // Set Revealed
    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    // Withdraw
    function withdraw() public payable {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    // Mint Loop
    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();

            _safeMint(_receiver, supply.current());

            addressPublicsaleMintedBalance[msg.sender]++;
        }
    }

    // Base URI
    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressPublicsaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"metaMaidOwners","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPublicsalePerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"ownerMintSpecific","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setNFTPublicsalePerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260405180606001604052806036815260200162004b6d60369139600890805190602001906200003592919062000371565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008392919062000371565b506107d0600b556107bc600c556003600d556003600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550348015620000dd57600080fd5b506040518060400160405280600581526020017f5955554e410000000000000000000000000000000000000000000000000000008152506040518060400160405280600181526020017f590000000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200016292919062000371565b5080600190805190602001906200017b92919062000371565b5050506200019e62000192620001ce60201b60201c565b620001d660201b60201c565b620001c860405180606001604052806036815260200162004b37603691396200029c60201b60201c565b62000509565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002ac620001ce60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d26200034760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003229062000448565b60405180910390fd5b80600a90805190602001906200034392919062000371565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037f906200047b565b90600052602060002090601f016020900481019282620003a35760008555620003ef565b82601f10620003be57805160ff1916838001178555620003ef565b82800160010185558215620003ef579182015b82811115620003ee578251825591602001919060010190620003d1565b5b509050620003fe919062000402565b5090565b5b808211156200041d57600081600090555060010162000403565b5090565b6000620004306020836200046a565b91506200043d82620004e0565b602082019050919050565b60006020820190508181036000830152620004638162000421565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200049457607f821691505b60208210811415620004ab57620004aa620004b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61461e80620005196000396000f3fe60806040526004361061023b5760003560e01c8063729ad39e1161012e578063b8d988a2116100ab578063e985e9c51161006f578063e985e9c514610841578063eb9541601461087e578063efbd73f4146108a9578063f19e75d4146108d2578063f2fde38b146108fb5761023b565b8063b8d988a21461075c578063c87b56dd14610787578063d5abeb01146107c4578063e08823c5146107ef578063e0a80853146108185761023b565b8063a0712d68116100f2578063a0712d681461069a578063a22cb465146106b6578063a45ba8e7146106df578063ae1373071461070a578063b88d4fde146107335761023b565b8063729ad39e146105c75780637ec4a659146105f05780638da5cb5b1461061957806394354fd01461064457806395d89b411461066f5761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104e057806362b99ad41461050b5780636352211e1461053657806370a0823114610573578063715018a6146105b05761023b565b806342842e0e146103fb578063438b6300146104245780634fdd43cb14610461578063518302271461048a5780635503a0e8146104b55761023b565b806316ba10e01161020357806316ba10e01461034b57806316c38b3c1461037457806318160ddd1461039d57806323b872dd146103c85780633ccfd60b146103f15761023b565b806301ffc9a71461024057806306fdde031461027d57806307b9f56d146102a8578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613272565b610924565b6040516102749190613904565b60405180910390f35b34801561028957600080fd5b50610292610a06565b60405161029f919061391f565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613035565b610a98565b6040516102dc9190613bc1565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613315565b610ab0565b604051610319919061387b565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906131b8565b610b35565b005b34801561035757600080fd5b50610372600480360381019061036d91906132cc565b610c4d565b005b34801561038057600080fd5b5061039b60048036038101906103969190613245565b610ce3565b005b3480156103a957600080fd5b506103b2610d7c565b6040516103bf9190613bc1565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906130a2565b610d8d565b005b6103f9610ded565b005b34801561040757600080fd5b50610422600480360381019061041d91906130a2565b610e6d565b005b34801561043057600080fd5b5061044b60048036038101906104469190613035565b610e8d565b60405161045891906138e2565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906132cc565b610f98565b005b34801561049657600080fd5b5061049f61102e565b6040516104ac9190613904565b60405180910390f35b3480156104c157600080fd5b506104ca611041565b6040516104d7919061391f565b60405180910390f35b3480156104ec57600080fd5b506104f56110cf565b6040516105029190613904565b60405180910390f35b34801561051757600080fd5b506105206110e2565b60405161052d919061391f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613315565b611170565b60405161056a919061387b565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613035565b611222565b6040516105a79190613bc1565b60405180910390f35b3480156105bc57600080fd5b506105c56112da565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906131f8565b611362565b005b3480156105fc57600080fd5b50610617600480360381019061061291906132cc565b611436565b005b34801561062557600080fd5b5061062e6114cc565b60405161063b919061387b565b60405180910390f35b34801561065057600080fd5b506106596114f6565b6040516106669190613bc1565b60405180910390f35b34801561067b57600080fd5b506106846114fc565b604051610691919061391f565b60405180910390f35b6106b460048036038101906106af9190613315565b61158e565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613178565b61172c565b005b3480156106eb57600080fd5b506106f4611742565b604051610701919061391f565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613315565b6117d0565b005b34801561073f57600080fd5b5061075a600480360381019061075591906130f5565b611856565b005b34801561076857600080fd5b506107716118b8565b60405161077e9190613bc1565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a99190613315565b6118be565b6040516107bb919061391f565b60405180910390f35b3480156107d057600080fd5b506107d9611a17565b6040516107e69190613bc1565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613315565b611a1d565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613245565b611af6565b005b34801561084d57600080fd5b5061086860048036038101906108639190613062565b611b8f565b6040516108759190613904565b60405180910390f35b34801561088a57600080fd5b50610893611c23565b6040516108a09190613bc1565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613342565b611c29565b005b3480156108de57600080fd5b506108f960048036038101906108f49190613315565b611df4565b005b34801561090757600080fd5b50610922600480360381019061091d9190613035565b611ecd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe82611fc5565b5b9050919050565b606060008054610a1590613e70565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190613e70565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b60106020528060005260406000206000915090505481565b6000610abb8261202f565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613ac1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4082611170565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613b41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd061209b565b73ffffffffffffffffffffffffffffffffffffffff161480610bff5750610bfe81610bf961209b565b611b8f565b5b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613a41565b60405180910390fd5b610c4883836120a3565b505050565b610c5561209b565b73ffffffffffffffffffffffffffffffffffffffff16610c736114cc565b73ffffffffffffffffffffffffffffffffffffffff1614610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090613ae1565b60405180910390fd5b8060099080519060200190610cdf929190612df3565b5050565b610ceb61209b565b73ffffffffffffffffffffffffffffffffffffffff16610d096114cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ae1565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d88600761215c565b905090565b610d9e610d9861209b565b8261216a565b610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613b61565b60405180910390fd5b610de8838383612248565b505050565b6000610df76114cc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1a90613866565b60006040518083038185875af1925050503d8060008114610e57576040519150601f19603f3d011682016040523d82523d6000602084013e610e5c565b606091505b5050905080610e6a57600080fd5b50565b610e8883838360405180602001604052806000815250611856565b505050565b60606000610e9a83611222565b905060008167ffffffffffffffff811115610eb857610eb7614009565b5b604051908082528060200260200182016040528015610ee65781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f035750600b548211155b15610f8c576000610f1383611170565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f785782848381518110610f5d57610f5c613fda565b5b6020026020010181815250508180610f7490613ed3565b9250505b8280610f8390613ed3565b93505050610ef2565b82945050505050919050565b610fa061209b565b73ffffffffffffffffffffffffffffffffffffffff16610fbe6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613ae1565b60405180910390fd5b80600a908051906020019061102a929190612df3565b5050565b600f60019054906101000a900460ff1681565b6009805461104e90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90613e70565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600880546110ef90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90613e70565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090613a81565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613a61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e261209b565b73ffffffffffffffffffffffffffffffffffffffff166113006114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613ae1565b60405180910390fd5b61136060006124af565b565b61136a61209b565b73ffffffffffffffffffffffffffffffffffffffff166113886114cc565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613ae1565b60405180910390fd5b60005b828290508110156114315761141e83838381811061140257611401613fda565b5b90506020020160208101906114179190613035565b6002612575565b808061142990613ed3565b9150506113e1565b505050565b61143e61209b565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613ae1565b60405180910390fd5b80600890805190602001906114c8929190612df3565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461150b90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461153790613e70565b80156115845780601f1061155957610100808354040283529160200191611584565b820191906000526020600020905b81548152906001019060200180831161156757829003601f168201915b5050505050905090565b806000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826115e29190613cff565b1115611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90613b81565b60405180910390fd5b6000821180156116355750600e548211155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613b01565b60405180910390fd5b600c5482611682600761215c565b61168c9190613cff565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613ba1565b60405180910390fd5b600f60009054906101000a900460ff161561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906139c1565b60405180910390fd5b6117273384612575565b505050565b61173e61173761209b565b838361260a565b5050565b600a805461174f90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461177b90613e70565b80156117c85780601f1061179d576101008083540402835291602001916117c8565b820191906000526020600020905b8154815290600101906020018083116117ab57829003601f168201915b505050505081565b6117d861209b565b73ffffffffffffffffffffffffffffffffffffffff166117f66114cc565b73ffffffffffffffffffffffffffffffffffffffff161461184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613ae1565b60405180910390fd5b80600d8190555050565b61186761186161209b565b8361216a565b6118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613b61565b60405180910390fd5b6118b284848484612777565b50505050565b600d5481565b60606118c98261202f565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b21565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156119b657600a805461193190613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461195d90613e70565b80156119aa5780601f1061197f576101008083540402835291602001916119aa565b820191906000526020600020905b81548152906001019060200180831161198d57829003601f168201915b50505050509050611a12565b60006119c06127d3565b905060008151116119e05760405180602001604052806000815250611a0e565b806119ea84612865565b60096040516020016119fe93929190613835565b6040516020818303038152906040525b9150505b919050565b600b5481565b611a2561209b565b73ffffffffffffffffffffffffffffffffffffffff16611a436114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090613ae1565b60405180910390fd5b600f60009054906101000a900460ff1615611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906139c1565b60405180910390fd5b611af333826129c6565b50565b611afe61209b565b73ffffffffffffffffffffffffffffffffffffffff16611b1c6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990613ae1565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b816000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611c7d9190613cff565b1115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590613b81565b60405180910390fd5b600082118015611cd05750600e548211155b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613b01565b60405180910390fd5b600c5482611d1d600761215c565b611d279190613cff565b1115611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613ba1565b60405180910390fd5b611d7061209b565b73ffffffffffffffffffffffffffffffffffffffff16611d8e6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90613ae1565b60405180910390fd5b611dee8385612575565b50505050565b611dfc61209b565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613ae1565b60405180910390fd5b600f60009054906101000a900460ff1615611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906139c1565b60405180910390fd5b611eca3382612575565b50565b611ed561209b565b73ffffffffffffffffffffffffffffffffffffffff16611ef36114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090613ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090613961565b60405180910390fd5b611fc2816124af565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661211683611170565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121758261202f565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613a21565b60405180910390fd5b60006121bf83611170565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222e57508373ffffffffffffffffffffffffffffffffffffffff1661221684610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061223f575061223e8185611b8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661226882611170565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590613981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906139e1565b60405180910390fd5b6123398383836129e4565b6123446000826120a3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123949190613d86565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123eb9190613cff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124aa8383836129e9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156126055761258a60076129ee565b61259d83612598600761215c565b6129c6565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906125ed90613ed3565b919050555080806125fd90613ed3565b915050612578565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090613a01565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161276a9190613904565b60405180910390a3505050565b612782848484612248565b61278e84848484612a04565b6127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490613941565b60405180910390fd5b50505050565b6060600880546127e290613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461280e90613e70565b801561285b5780601f106128305761010080835404028352916020019161285b565b820191906000526020600020905b81548152906001019060200180831161283e57829003601f168201915b5050505050905090565b606060008214156128ad576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c1565b600082905060005b600082146128df5780806128c890613ed3565b915050600a826128d89190613d55565b91506128b5565b60008167ffffffffffffffff8111156128fb576128fa614009565b5b6040519080825280601f01601f19166020018201604052801561292d5781602001600182028036833780820191505090505b5090505b600085146129ba576001826129469190613d86565b9150600a856129559190613f1c565b60306129619190613cff565b60f81b81838151811061297757612976613fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b39190613d55565b9450612931565b8093505050505b919050565b6129e0828260405180602001604052806000815250612b9b565b5050565b505050565b505050565b6001816000016000828254019250508190555050565b6000612a258473ffffffffffffffffffffffffffffffffffffffff16612bf6565b15612b8e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4e61209b565b8786866040518563ffffffff1660e01b8152600401612a709493929190613896565b602060405180830381600087803b158015612a8a57600080fd5b505af1925050508015612abb57506040513d601f19601f82011682018060405250810190612ab8919061329f565b60015b612b3e573d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b50600081511415612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90613941565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b93565b600190505b949350505050565b612ba58383612c19565b612bb26000848484612a04565b612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be890613941565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090613aa1565b60405180910390fd5b612c928161202f565b15612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc9906139a1565b60405180910390fd5b612cde600083836129e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2e9190613cff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612def600083836129e9565b5050565b828054612dff90613e70565b90600052602060002090601f016020900481019282612e215760008555612e68565b82601f10612e3a57805160ff1916838001178555612e68565b82800160010185558215612e68579182015b82811115612e67578251825591602001919060010190612e4c565b5b509050612e759190612e79565b5090565b5b80821115612e92576000816000905550600101612e7a565b5090565b6000612ea9612ea484613c01565b613bdc565b905082815260208101848484011115612ec557612ec4614047565b5b612ed0848285613e2e565b509392505050565b6000612eeb612ee684613c32565b613bdc565b905082815260208101848484011115612f0757612f06614047565b5b612f12848285613e2e565b509392505050565b600081359050612f298161458c565b92915050565b60008083601f840112612f4557612f4461403d565b5b8235905067ffffffffffffffff811115612f6257612f61614038565b5b602083019150836020820283011115612f7e57612f7d614042565b5b9250929050565b600081359050612f94816145a3565b92915050565b600081359050612fa9816145ba565b92915050565b600081519050612fbe816145ba565b92915050565b600082601f830112612fd957612fd861403d565b5b8135612fe9848260208601612e96565b91505092915050565b600082601f8301126130075761300661403d565b5b8135613017848260208601612ed8565b91505092915050565b60008135905061302f816145d1565b92915050565b60006020828403121561304b5761304a614051565b5b600061305984828501612f1a565b91505092915050565b6000806040838503121561307957613078614051565b5b600061308785828601612f1a565b925050602061309885828601612f1a565b9150509250929050565b6000806000606084860312156130bb576130ba614051565b5b60006130c986828701612f1a565b93505060206130da86828701612f1a565b92505060406130eb86828701613020565b9150509250925092565b6000806000806080858703121561310f5761310e614051565b5b600061311d87828801612f1a565b945050602061312e87828801612f1a565b935050604061313f87828801613020565b925050606085013567ffffffffffffffff8111156131605761315f61404c565b5b61316c87828801612fc4565b91505092959194509250565b6000806040838503121561318f5761318e614051565b5b600061319d85828601612f1a565b92505060206131ae85828601612f85565b9150509250929050565b600080604083850312156131cf576131ce614051565b5b60006131dd85828601612f1a565b92505060206131ee85828601613020565b9150509250929050565b6000806020838503121561320f5761320e614051565b5b600083013567ffffffffffffffff81111561322d5761322c61404c565b5b61323985828601612f2f565b92509250509250929050565b60006020828403121561325b5761325a614051565b5b600061326984828501612f85565b91505092915050565b60006020828403121561328857613287614051565b5b600061329684828501612f9a565b91505092915050565b6000602082840312156132b5576132b4614051565b5b60006132c384828501612faf565b91505092915050565b6000602082840312156132e2576132e1614051565b5b600082013567ffffffffffffffff811115613300576132ff61404c565b5b61330c84828501612ff2565b91505092915050565b60006020828403121561332b5761332a614051565b5b600061333984828501613020565b91505092915050565b6000806040838503121561335957613358614051565b5b600061336785828601613020565b925050602061337885828601612f1a565b9150509250929050565b600061338e8383613817565b60208301905092915050565b6133a381613dba565b82525050565b60006133b482613c88565b6133be8185613cb6565b93506133c983613c63565b8060005b838110156133fa5781516133e18882613382565b97506133ec83613ca9565b9250506001810190506133cd565b5085935050505092915050565b61341081613dcc565b82525050565b600061342182613c93565b61342b8185613cc7565b935061343b818560208601613e3d565b61344481614056565b840191505092915050565b600061345a82613c9e565b6134648185613ce3565b9350613474818560208601613e3d565b61347d81614056565b840191505092915050565b600061349382613c9e565b61349d8185613cf4565b93506134ad818560208601613e3d565b80840191505092915050565b600081546134c681613e70565b6134d08186613cf4565b945060018216600081146134eb57600181146134fc5761352f565b60ff1983168652818601935061352f565b61350585613c73565b60005b8381101561352757815481890152600182019150602081019050613508565b838801955050505b50505092915050565b6000613545603283613ce3565b915061355082614067565b604082019050919050565b6000613568602683613ce3565b9150613573826140b6565b604082019050919050565b600061358b602583613ce3565b915061359682614105565b604082019050919050565b60006135ae601c83613ce3565b91506135b982614154565b602082019050919050565b60006135d1601b83613ce3565b91506135dc8261417d565b602082019050919050565b60006135f4602483613ce3565b91506135ff826141a6565b604082019050919050565b6000613617601983613ce3565b9150613622826141f5565b602082019050919050565b600061363a602c83613ce3565b91506136458261421e565b604082019050919050565b600061365d603883613ce3565b91506136688261426d565b604082019050919050565b6000613680602a83613ce3565b915061368b826142bc565b604082019050919050565b60006136a3602983613ce3565b91506136ae8261430b565b604082019050919050565b60006136c6602083613ce3565b91506136d18261435a565b602082019050919050565b60006136e9602c83613ce3565b91506136f482614383565b604082019050919050565b600061370c602083613ce3565b9150613717826143d2565b602082019050919050565b600061372f601883613ce3565b915061373a826143fb565b602082019050919050565b6000613752602483613ce3565b915061375d82614424565b604082019050919050565b6000613775602183613ce3565b915061378082614473565b604082019050919050565b6000613798600083613cd8565b91506137a3826144c2565b600082019050919050565b60006137bb603183613ce3565b91506137c6826144c5565b604082019050919050565b60006137de603083613ce3565b91506137e982614514565b604082019050919050565b6000613801601883613ce3565b915061380c82614563565b602082019050919050565b61382081613e24565b82525050565b61382f81613e24565b82525050565b60006138418286613488565b915061384d8285613488565b915061385982846134b9565b9150819050949350505050565b60006138718261378b565b9150819050919050565b6000602082019050613890600083018461339a565b92915050565b60006080820190506138ab600083018761339a565b6138b8602083018661339a565b6138c56040830185613826565b81810360608301526138d78184613416565b905095945050505050565b600060208201905081810360008301526138fc81846133a9565b905092915050565b60006020820190506139196000830184613407565b92915050565b60006020820190508181036000830152613939818461344f565b905092915050565b6000602082019050818103600083015261395a81613538565b9050919050565b6000602082019050818103600083015261397a8161355b565b9050919050565b6000602082019050818103600083015261399a8161357e565b9050919050565b600060208201905081810360008301526139ba816135a1565b9050919050565b600060208201905081810360008301526139da816135c4565b9050919050565b600060208201905081810360008301526139fa816135e7565b9050919050565b60006020820190508181036000830152613a1a8161360a565b9050919050565b60006020820190508181036000830152613a3a8161362d565b9050919050565b60006020820190508181036000830152613a5a81613650565b9050919050565b60006020820190508181036000830152613a7a81613673565b9050919050565b60006020820190508181036000830152613a9a81613696565b9050919050565b60006020820190508181036000830152613aba816136b9565b9050919050565b60006020820190508181036000830152613ada816136dc565b9050919050565b60006020820190508181036000830152613afa816136ff565b9050919050565b60006020820190508181036000830152613b1a81613722565b9050919050565b60006020820190508181036000830152613b3a81613745565b9050919050565b60006020820190508181036000830152613b5a81613768565b9050919050565b60006020820190508181036000830152613b7a816137ae565b9050919050565b60006020820190508181036000830152613b9a816137d1565b9050919050565b60006020820190508181036000830152613bba816137f4565b9050919050565b6000602082019050613bd66000830184613826565b92915050565b6000613be6613bf7565b9050613bf28282613ea2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1c57613c1b614009565b5b613c2582614056565b9050602081019050919050565b600067ffffffffffffffff821115613c4d57613c4c614009565b5b613c5682614056565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d0a82613e24565b9150613d1583613e24565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4a57613d49613f4d565b5b828201905092915050565b6000613d6082613e24565b9150613d6b83613e24565b925082613d7b57613d7a613f7c565b5b828204905092915050565b6000613d9182613e24565b9150613d9c83613e24565b925082821015613daf57613dae613f4d565b5b828203905092915050565b6000613dc582613e04565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e5b578082015181840152602081019050613e40565b83811115613e6a576000848401525b50505050565b60006002820490506001821680613e8857607f821691505b60208210811415613e9c57613e9b613fab565b5b50919050565b613eab82614056565b810181811067ffffffffffffffff82111715613eca57613ec9614009565b5b80604052505050565b6000613ede82613e24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1157613f10613f4d565b5b600182019050919050565b6000613f2782613e24565b9150613f3283613e24565b925082613f4257613f41613f7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d53473a2054686520636f6e7472616374206973207061757365640000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d53473a20496e76616c6964206d696e7420616d6f756e740000000000000000600082015250565b7f4d53473a2055524920717565727920666f72206e6f6e6578697374656e74207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d53473a204d6178204e4654207065722061646472657373206578636565646560008201527f6420666f72207075626c696373616c6500000000000000000000000000000000602082015250565b7f4d53473a204d617820737570706c792065786365656465640000000000000000600082015250565b61459581613dba565b81146145a057600080fd5b50565b6145ac81613dcc565b81146145b757600080fd5b50565b6145c381613dd8565b81146145ce57600080fd5b50565b6145da81613e24565b81146145e557600080fd5b5056fea2646970667358221220ddbd584d233f536f562f1e093d9f80cf311c92d0a217d28c5ba39ee9acdcb5ea64736f6c63430008070033697066733a2f2f516d617738566f4c54726a7874445a666e315439656276546b6531536870634c53395831393733424c47556946752f697066733a2f2f516d573775614a386966637572694d667a6e6435677066644a67675144515963357a614c5a53326f5a6b3134657a2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063729ad39e1161012e578063b8d988a2116100ab578063e985e9c51161006f578063e985e9c514610841578063eb9541601461087e578063efbd73f4146108a9578063f19e75d4146108d2578063f2fde38b146108fb5761023b565b8063b8d988a21461075c578063c87b56dd14610787578063d5abeb01146107c4578063e08823c5146107ef578063e0a80853146108185761023b565b8063a0712d68116100f2578063a0712d681461069a578063a22cb465146106b6578063a45ba8e7146106df578063ae1373071461070a578063b88d4fde146107335761023b565b8063729ad39e146105c75780637ec4a659146105f05780638da5cb5b1461061957806394354fd01461064457806395d89b411461066f5761023b565b806342842e0e116101bc5780635c975abb116101805780635c975abb146104e057806362b99ad41461050b5780636352211e1461053657806370a0823114610573578063715018a6146105b05761023b565b806342842e0e146103fb578063438b6300146104245780634fdd43cb14610461578063518302271461048a5780635503a0e8146104b55761023b565b806316ba10e01161020357806316ba10e01461034b57806316c38b3c1461037457806318160ddd1461039d57806323b872dd146103c85780633ccfd60b146103f15761023b565b806301ffc9a71461024057806306fdde031461027d57806307b9f56d146102a8578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613272565b610924565b6040516102749190613904565b60405180910390f35b34801561028957600080fd5b50610292610a06565b60405161029f919061391f565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca9190613035565b610a98565b6040516102dc9190613bc1565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190613315565b610ab0565b604051610319919061387b565b60405180910390f35b34801561032e57600080fd5b50610349600480360381019061034491906131b8565b610b35565b005b34801561035757600080fd5b50610372600480360381019061036d91906132cc565b610c4d565b005b34801561038057600080fd5b5061039b60048036038101906103969190613245565b610ce3565b005b3480156103a957600080fd5b506103b2610d7c565b6040516103bf9190613bc1565b60405180910390f35b3480156103d457600080fd5b506103ef60048036038101906103ea91906130a2565b610d8d565b005b6103f9610ded565b005b34801561040757600080fd5b50610422600480360381019061041d91906130a2565b610e6d565b005b34801561043057600080fd5b5061044b60048036038101906104469190613035565b610e8d565b60405161045891906138e2565b60405180910390f35b34801561046d57600080fd5b50610488600480360381019061048391906132cc565b610f98565b005b34801561049657600080fd5b5061049f61102e565b6040516104ac9190613904565b60405180910390f35b3480156104c157600080fd5b506104ca611041565b6040516104d7919061391f565b60405180910390f35b3480156104ec57600080fd5b506104f56110cf565b6040516105029190613904565b60405180910390f35b34801561051757600080fd5b506105206110e2565b60405161052d919061391f565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613315565b611170565b60405161056a919061387b565b60405180910390f35b34801561057f57600080fd5b5061059a60048036038101906105959190613035565b611222565b6040516105a79190613bc1565b60405180910390f35b3480156105bc57600080fd5b506105c56112da565b005b3480156105d357600080fd5b506105ee60048036038101906105e991906131f8565b611362565b005b3480156105fc57600080fd5b50610617600480360381019061061291906132cc565b611436565b005b34801561062557600080fd5b5061062e6114cc565b60405161063b919061387b565b60405180910390f35b34801561065057600080fd5b506106596114f6565b6040516106669190613bc1565b60405180910390f35b34801561067b57600080fd5b506106846114fc565b604051610691919061391f565b60405180910390f35b6106b460048036038101906106af9190613315565b61158e565b005b3480156106c257600080fd5b506106dd60048036038101906106d89190613178565b61172c565b005b3480156106eb57600080fd5b506106f4611742565b604051610701919061391f565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c9190613315565b6117d0565b005b34801561073f57600080fd5b5061075a600480360381019061075591906130f5565b611856565b005b34801561076857600080fd5b506107716118b8565b60405161077e9190613bc1565b60405180910390f35b34801561079357600080fd5b506107ae60048036038101906107a99190613315565b6118be565b6040516107bb919061391f565b60405180910390f35b3480156107d057600080fd5b506107d9611a17565b6040516107e69190613bc1565b60405180910390f35b3480156107fb57600080fd5b5061081660048036038101906108119190613315565b611a1d565b005b34801561082457600080fd5b5061083f600480360381019061083a9190613245565b611af6565b005b34801561084d57600080fd5b5061086860048036038101906108639190613062565b611b8f565b6040516108759190613904565b60405180910390f35b34801561088a57600080fd5b50610893611c23565b6040516108a09190613bc1565b60405180910390f35b3480156108b557600080fd5b506108d060048036038101906108cb9190613342565b611c29565b005b3480156108de57600080fd5b506108f960048036038101906108f49190613315565b611df4565b005b34801561090757600080fd5b50610922600480360381019061091d9190613035565b611ecd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ef57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ff57506109fe82611fc5565b5b9050919050565b606060008054610a1590613e70565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190613e70565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b60106020528060005260406000206000915090505481565b6000610abb8261202f565b610afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af190613ac1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b4082611170565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890613b41565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd061209b565b73ffffffffffffffffffffffffffffffffffffffff161480610bff5750610bfe81610bf961209b565b611b8f565b5b610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590613a41565b60405180910390fd5b610c4883836120a3565b505050565b610c5561209b565b73ffffffffffffffffffffffffffffffffffffffff16610c736114cc565b73ffffffffffffffffffffffffffffffffffffffff1614610cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc090613ae1565b60405180910390fd5b8060099080519060200190610cdf929190612df3565b5050565b610ceb61209b565b73ffffffffffffffffffffffffffffffffffffffff16610d096114cc565b73ffffffffffffffffffffffffffffffffffffffff1614610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5690613ae1565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610d88600761215c565b905090565b610d9e610d9861209b565b8261216a565b610ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd490613b61565b60405180910390fd5b610de8838383612248565b505050565b6000610df76114cc565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e1a90613866565b60006040518083038185875af1925050503d8060008114610e57576040519150601f19603f3d011682016040523d82523d6000602084013e610e5c565b606091505b5050905080610e6a57600080fd5b50565b610e8883838360405180602001604052806000815250611856565b505050565b60606000610e9a83611222565b905060008167ffffffffffffffff811115610eb857610eb7614009565b5b604051908082528060200260200182016040528015610ee65781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f035750600b548211155b15610f8c576000610f1383611170565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f785782848381518110610f5d57610f5c613fda565b5b6020026020010181815250508180610f7490613ed3565b9250505b8280610f8390613ed3565b93505050610ef2565b82945050505050919050565b610fa061209b565b73ffffffffffffffffffffffffffffffffffffffff16610fbe6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100b90613ae1565b60405180910390fd5b80600a908051906020019061102a929190612df3565b5050565b600f60019054906101000a900460ff1681565b6009805461104e90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461107a90613e70565b80156110c75780601f1061109c576101008083540402835291602001916110c7565b820191906000526020600020905b8154815290600101906020018083116110aa57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600880546110ef90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461111b90613e70565b80156111685780601f1061113d57610100808354040283529160200191611168565b820191906000526020600020905b81548152906001019060200180831161114b57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090613a81565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613a61565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e261209b565b73ffffffffffffffffffffffffffffffffffffffff166113006114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611356576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134d90613ae1565b60405180910390fd5b61136060006124af565b565b61136a61209b565b73ffffffffffffffffffffffffffffffffffffffff166113886114cc565b73ffffffffffffffffffffffffffffffffffffffff16146113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d590613ae1565b60405180910390fd5b60005b828290508110156114315761141e83838381811061140257611401613fda565b5b90506020020160208101906114179190613035565b6002612575565b808061142990613ed3565b9150506113e1565b505050565b61143e61209b565b73ffffffffffffffffffffffffffffffffffffffff1661145c6114cc565b73ffffffffffffffffffffffffffffffffffffffff16146114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a990613ae1565b60405180910390fd5b80600890805190602001906114c8929190612df3565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606001805461150b90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461153790613e70565b80156115845780601f1061155957610100808354040283529160200191611584565b820191906000526020600020905b81548152906001019060200180831161156757829003601f168201915b5050505050905090565b806000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d5482826115e29190613cff565b1115611623576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161a90613b81565b60405180910390fd5b6000821180156116355750600e548211155b611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613b01565b60405180910390fd5b600c5482611682600761215c565b61168c9190613cff565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490613ba1565b60405180910390fd5b600f60009054906101000a900460ff161561171d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611714906139c1565b60405180910390fd5b6117273384612575565b505050565b61173e61173761209b565b838361260a565b5050565b600a805461174f90613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461177b90613e70565b80156117c85780601f1061179d576101008083540402835291602001916117c8565b820191906000526020600020905b8154815290600101906020018083116117ab57829003601f168201915b505050505081565b6117d861209b565b73ffffffffffffffffffffffffffffffffffffffff166117f66114cc565b73ffffffffffffffffffffffffffffffffffffffff161461184c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184390613ae1565b60405180910390fd5b80600d8190555050565b61186761186161209b565b8361216a565b6118a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189d90613b61565b60405180910390fd5b6118b284848484612777565b50505050565b600d5481565b60606118c98261202f565b611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b21565b60405180910390fd5b60001515600f60019054906101000a900460ff16151514156119b657600a805461193190613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461195d90613e70565b80156119aa5780601f1061197f576101008083540402835291602001916119aa565b820191906000526020600020905b81548152906001019060200180831161198d57829003601f168201915b50505050509050611a12565b60006119c06127d3565b905060008151116119e05760405180602001604052806000815250611a0e565b806119ea84612865565b60096040516020016119fe93929190613835565b6040516020818303038152906040525b9150505b919050565b600b5481565b611a2561209b565b73ffffffffffffffffffffffffffffffffffffffff16611a436114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9090613ae1565b60405180910390fd5b600f60009054906101000a900460ff1615611ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae0906139c1565b60405180910390fd5b611af333826129c6565b50565b611afe61209b565b73ffffffffffffffffffffffffffffffffffffffff16611b1c6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6990613ae1565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b816000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611c7d9190613cff565b1115611cbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb590613b81565b60405180910390fd5b600082118015611cd05750600e548211155b611d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0690613b01565b60405180910390fd5b600c5482611d1d600761215c565b611d279190613cff565b1115611d68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5f90613ba1565b60405180910390fd5b611d7061209b565b73ffffffffffffffffffffffffffffffffffffffff16611d8e6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddb90613ae1565b60405180910390fd5b611dee8385612575565b50505050565b611dfc61209b565b73ffffffffffffffffffffffffffffffffffffffff16611e1a6114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611e70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6790613ae1565b60405180910390fd5b600f60009054906101000a900460ff1615611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb7906139c1565b60405180910390fd5b611eca3382612575565b50565b611ed561209b565b73ffffffffffffffffffffffffffffffffffffffff16611ef36114cc565b73ffffffffffffffffffffffffffffffffffffffff1614611f49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4090613ae1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb090613961565b60405180910390fd5b611fc2816124af565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661211683611170565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121758261202f565b6121b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ab90613a21565b60405180910390fd5b60006121bf83611170565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222e57508373ffffffffffffffffffffffffffffffffffffffff1661221684610ab0565b73ffffffffffffffffffffffffffffffffffffffff16145b8061223f575061223e8185611b8f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661226882611170565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590613981565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612325906139e1565b60405180910390fd5b6123398383836129e4565b6123446000826120a3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123949190613d86565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123eb9190613cff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124aa8383836129e9565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b818110156126055761258a60076129ee565b61259d83612598600761215c565b6129c6565b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154809291906125ed90613ed3565b919050555080806125fd90613ed3565b915050612578565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090613a01565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161276a9190613904565b60405180910390a3505050565b612782848484612248565b61278e84848484612a04565b6127cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c490613941565b60405180910390fd5b50505050565b6060600880546127e290613e70565b80601f016020809104026020016040519081016040528092919081815260200182805461280e90613e70565b801561285b5780601f106128305761010080835404028352916020019161285b565b820191906000526020600020905b81548152906001019060200180831161283e57829003601f168201915b5050505050905090565b606060008214156128ad576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129c1565b600082905060005b600082146128df5780806128c890613ed3565b915050600a826128d89190613d55565b91506128b5565b60008167ffffffffffffffff8111156128fb576128fa614009565b5b6040519080825280601f01601f19166020018201604052801561292d5781602001600182028036833780820191505090505b5090505b600085146129ba576001826129469190613d86565b9150600a856129559190613f1c565b60306129619190613cff565b60f81b81838151811061297757612976613fda565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129b39190613d55565b9450612931565b8093505050505b919050565b6129e0828260405180602001604052806000815250612b9b565b5050565b505050565b505050565b6001816000016000828254019250508190555050565b6000612a258473ffffffffffffffffffffffffffffffffffffffff16612bf6565b15612b8e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4e61209b565b8786866040518563ffffffff1660e01b8152600401612a709493929190613896565b602060405180830381600087803b158015612a8a57600080fd5b505af1925050508015612abb57506040513d601f19601f82011682018060405250810190612ab8919061329f565b60015b612b3e573d8060008114612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b50600081511415612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d90613941565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b93565b600190505b949350505050565b612ba58383612c19565b612bb26000848484612a04565b612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be890613941565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8090613aa1565b60405180910390fd5b612c928161202f565b15612cd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc9906139a1565b60405180910390fd5b612cde600083836129e4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d2e9190613cff565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612def600083836129e9565b5050565b828054612dff90613e70565b90600052602060002090601f016020900481019282612e215760008555612e68565b82601f10612e3a57805160ff1916838001178555612e68565b82800160010185558215612e68579182015b82811115612e67578251825591602001919060010190612e4c565b5b509050612e759190612e79565b5090565b5b80821115612e92576000816000905550600101612e7a565b5090565b6000612ea9612ea484613c01565b613bdc565b905082815260208101848484011115612ec557612ec4614047565b5b612ed0848285613e2e565b509392505050565b6000612eeb612ee684613c32565b613bdc565b905082815260208101848484011115612f0757612f06614047565b5b612f12848285613e2e565b509392505050565b600081359050612f298161458c565b92915050565b60008083601f840112612f4557612f4461403d565b5b8235905067ffffffffffffffff811115612f6257612f61614038565b5b602083019150836020820283011115612f7e57612f7d614042565b5b9250929050565b600081359050612f94816145a3565b92915050565b600081359050612fa9816145ba565b92915050565b600081519050612fbe816145ba565b92915050565b600082601f830112612fd957612fd861403d565b5b8135612fe9848260208601612e96565b91505092915050565b600082601f8301126130075761300661403d565b5b8135613017848260208601612ed8565b91505092915050565b60008135905061302f816145d1565b92915050565b60006020828403121561304b5761304a614051565b5b600061305984828501612f1a565b91505092915050565b6000806040838503121561307957613078614051565b5b600061308785828601612f1a565b925050602061309885828601612f1a565b9150509250929050565b6000806000606084860312156130bb576130ba614051565b5b60006130c986828701612f1a565b93505060206130da86828701612f1a565b92505060406130eb86828701613020565b9150509250925092565b6000806000806080858703121561310f5761310e614051565b5b600061311d87828801612f1a565b945050602061312e87828801612f1a565b935050604061313f87828801613020565b925050606085013567ffffffffffffffff8111156131605761315f61404c565b5b61316c87828801612fc4565b91505092959194509250565b6000806040838503121561318f5761318e614051565b5b600061319d85828601612f1a565b92505060206131ae85828601612f85565b9150509250929050565b600080604083850312156131cf576131ce614051565b5b60006131dd85828601612f1a565b92505060206131ee85828601613020565b9150509250929050565b6000806020838503121561320f5761320e614051565b5b600083013567ffffffffffffffff81111561322d5761322c61404c565b5b61323985828601612f2f565b92509250509250929050565b60006020828403121561325b5761325a614051565b5b600061326984828501612f85565b91505092915050565b60006020828403121561328857613287614051565b5b600061329684828501612f9a565b91505092915050565b6000602082840312156132b5576132b4614051565b5b60006132c384828501612faf565b91505092915050565b6000602082840312156132e2576132e1614051565b5b600082013567ffffffffffffffff811115613300576132ff61404c565b5b61330c84828501612ff2565b91505092915050565b60006020828403121561332b5761332a614051565b5b600061333984828501613020565b91505092915050565b6000806040838503121561335957613358614051565b5b600061336785828601613020565b925050602061337885828601612f1a565b9150509250929050565b600061338e8383613817565b60208301905092915050565b6133a381613dba565b82525050565b60006133b482613c88565b6133be8185613cb6565b93506133c983613c63565b8060005b838110156133fa5781516133e18882613382565b97506133ec83613ca9565b9250506001810190506133cd565b5085935050505092915050565b61341081613dcc565b82525050565b600061342182613c93565b61342b8185613cc7565b935061343b818560208601613e3d565b61344481614056565b840191505092915050565b600061345a82613c9e565b6134648185613ce3565b9350613474818560208601613e3d565b61347d81614056565b840191505092915050565b600061349382613c9e565b61349d8185613cf4565b93506134ad818560208601613e3d565b80840191505092915050565b600081546134c681613e70565b6134d08186613cf4565b945060018216600081146134eb57600181146134fc5761352f565b60ff1983168652818601935061352f565b61350585613c73565b60005b8381101561352757815481890152600182019150602081019050613508565b838801955050505b50505092915050565b6000613545603283613ce3565b915061355082614067565b604082019050919050565b6000613568602683613ce3565b9150613573826140b6565b604082019050919050565b600061358b602583613ce3565b915061359682614105565b604082019050919050565b60006135ae601c83613ce3565b91506135b982614154565b602082019050919050565b60006135d1601b83613ce3565b91506135dc8261417d565b602082019050919050565b60006135f4602483613ce3565b91506135ff826141a6565b604082019050919050565b6000613617601983613ce3565b9150613622826141f5565b602082019050919050565b600061363a602c83613ce3565b91506136458261421e565b604082019050919050565b600061365d603883613ce3565b91506136688261426d565b604082019050919050565b6000613680602a83613ce3565b915061368b826142bc565b604082019050919050565b60006136a3602983613ce3565b91506136ae8261430b565b604082019050919050565b60006136c6602083613ce3565b91506136d18261435a565b602082019050919050565b60006136e9602c83613ce3565b91506136f482614383565b604082019050919050565b600061370c602083613ce3565b9150613717826143d2565b602082019050919050565b600061372f601883613ce3565b915061373a826143fb565b602082019050919050565b6000613752602483613ce3565b915061375d82614424565b604082019050919050565b6000613775602183613ce3565b915061378082614473565b604082019050919050565b6000613798600083613cd8565b91506137a3826144c2565b600082019050919050565b60006137bb603183613ce3565b91506137c6826144c5565b604082019050919050565b60006137de603083613ce3565b91506137e982614514565b604082019050919050565b6000613801601883613ce3565b915061380c82614563565b602082019050919050565b61382081613e24565b82525050565b61382f81613e24565b82525050565b60006138418286613488565b915061384d8285613488565b915061385982846134b9565b9150819050949350505050565b60006138718261378b565b9150819050919050565b6000602082019050613890600083018461339a565b92915050565b60006080820190506138ab600083018761339a565b6138b8602083018661339a565b6138c56040830185613826565b81810360608301526138d78184613416565b905095945050505050565b600060208201905081810360008301526138fc81846133a9565b905092915050565b60006020820190506139196000830184613407565b92915050565b60006020820190508181036000830152613939818461344f565b905092915050565b6000602082019050818103600083015261395a81613538565b9050919050565b6000602082019050818103600083015261397a8161355b565b9050919050565b6000602082019050818103600083015261399a8161357e565b9050919050565b600060208201905081810360008301526139ba816135a1565b9050919050565b600060208201905081810360008301526139da816135c4565b9050919050565b600060208201905081810360008301526139fa816135e7565b9050919050565b60006020820190508181036000830152613a1a8161360a565b9050919050565b60006020820190508181036000830152613a3a8161362d565b9050919050565b60006020820190508181036000830152613a5a81613650565b9050919050565b60006020820190508181036000830152613a7a81613673565b9050919050565b60006020820190508181036000830152613a9a81613696565b9050919050565b60006020820190508181036000830152613aba816136b9565b9050919050565b60006020820190508181036000830152613ada816136dc565b9050919050565b60006020820190508181036000830152613afa816136ff565b9050919050565b60006020820190508181036000830152613b1a81613722565b9050919050565b60006020820190508181036000830152613b3a81613745565b9050919050565b60006020820190508181036000830152613b5a81613768565b9050919050565b60006020820190508181036000830152613b7a816137ae565b9050919050565b60006020820190508181036000830152613b9a816137d1565b9050919050565b60006020820190508181036000830152613bba816137f4565b9050919050565b6000602082019050613bd66000830184613826565b92915050565b6000613be6613bf7565b9050613bf28282613ea2565b919050565b6000604051905090565b600067ffffffffffffffff821115613c1c57613c1b614009565b5b613c2582614056565b9050602081019050919050565b600067ffffffffffffffff821115613c4d57613c4c614009565b5b613c5682614056565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d0a82613e24565b9150613d1583613e24565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d4a57613d49613f4d565b5b828201905092915050565b6000613d6082613e24565b9150613d6b83613e24565b925082613d7b57613d7a613f7c565b5b828204905092915050565b6000613d9182613e24565b9150613d9c83613e24565b925082821015613daf57613dae613f4d565b5b828203905092915050565b6000613dc582613e04565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e5b578082015181840152602081019050613e40565b83811115613e6a576000848401525b50505050565b60006002820490506001821680613e8857607f821691505b60208210811415613e9c57613e9b613fab565b5b50919050565b613eab82614056565b810181811067ffffffffffffffff82111715613eca57613ec9614009565b5b80604052505050565b6000613ede82613e24565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1157613f10613f4d565b5b600182019050919050565b6000613f2782613e24565b9150613f3283613e24565b925082613f4257613f41613f7c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d53473a2054686520636f6e7472616374206973207061757365640000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d53473a20496e76616c6964206d696e7420616d6f756e740000000000000000600082015250565b7f4d53473a2055524920717565727920666f72206e6f6e6578697374656e74207460008201527f6f6b656e00000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d53473a204d6178204e4654207065722061646472657373206578636565646560008201527f6420666f72207075626c696373616c6500000000000000000000000000000000602082015250565b7f4d53473a204d617820737570706c792065786365656465640000000000000000600082015250565b61459581613dba565b81146145a057600080fd5b50565b6145ac81613dcc565b81146145b757600080fd5b50565b6145c381613dd8565b81146145ce57600080fd5b50565b6145da81613e24565b81146145e557600080fd5b5056fea2646970667358221220ddbd584d233f536f562f1e093d9f80cf311c92d0a217d28c5ba39ee9acdcb5ea64736f6c63430008070033

Deployed Bytecode Sourcemap

38755:5195:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26519:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39434:65;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28078:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27601:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42817:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43128:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40198:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28828:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43352:145;;;:::i;:::-;;29238:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41309:687;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42963:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39373:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39014:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39340:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38925:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26213:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25943:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:103;;;;;;;;;;;;;:::i;:::-;;41081:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42680:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5544:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39280:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26688:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40314:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28371:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39054:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42521:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29494:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39226:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42022:446;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39111:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40714:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43240:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28597:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39149:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40896:161;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40536:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6453:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25574:305;25676:4;25728:25;25713:40;;;:11;:40;;;;:105;;;;25785:33;25770:48;;;:11;:48;;;;25713:105;:158;;;;25835:36;25859:11;25835:23;:36::i;:::-;25713:158;25693:178;;25574:305;;;:::o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;39434:65::-;;;;;;;;;;;;;;;;;:::o;28078:221::-;28154:7;28182:16;28190:7;28182;:16::i;:::-;28174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28267:15;:24;28283:7;28267:24;;;;;;;;;;;;;;;;;;;;;28260:31;;28078:221;;;:::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;27740:11;;:2;:11;;;;27732:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27840:5;27824:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27849:37;27866:5;27873:12;:10;:12::i;:::-;27849:16;:37::i;:::-;27824:62;27802:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;42817:106::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42905:10:::1;42893:9;:22;;;;;;;;;;;;:::i;:::-;;42817:106:::0;:::o;43128:83::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43197:6:::1;43188;;:15;;;;;;;;;;;;;;;;;;43128:83:::0;:::o;40198:95::-;40242:7;40269:16;:6;:14;:16::i;:::-;40262:23;;40198:95;:::o;28828:339::-;29023:41;29042:12;:10;:12::i;:::-;29056:7;29023:18;:41::i;:::-;29015:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;:::-;28828:339;;;:::o;43352:145::-;43399:7;43420;:5;:7::i;:::-;43412:21;;43441;43412:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43398:69;;;43486:2;43478:11;;;;;;43387:110;43352:145::o;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;:::-;29238:185;;;:::o;41309:687::-;41369:16;41398:23;41424:17;41434:6;41424:9;:17::i;:::-;41398:43;;41452:30;41499:15;41485:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41452:63;;41528:22;41553:1;41528:26;;41565:23;41605:351;41630:15;41612;:33;:64;;;;;41667:9;;41649:14;:27;;41612:64;41605:351;;;41693:25;41721:23;41729:14;41721:7;:23::i;:::-;41693:51;;41786:6;41765:27;;:17;:27;;;41761:151;;;41846:14;41813:13;41827:15;41813:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41879:17;;;;;:::i;:::-;;;;41761:151;41928:16;;;;;:::i;:::-;;;;41678:278;41605:351;;;41975:13;41968:20;;;;;;41309:687;;;:::o;42963:138::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43075:18:::1;43055:17;:38;;;;;;;;;;;;:::i;:::-;;42963:138:::0;:::o;39373:28::-;;;;;;;;;;;;;:::o;39014:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;39340:26::-;;;;;;;;;;;;;:::o;38925:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26213:239::-;26285:7;26305:13;26321:7;:16;26329:7;26321:16;;;;;;;;;;;;;;;;;;;;;26305:32;;26373:1;26356:19;;:5;:19;;;;26348:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26439:5;26432:12;;;26213:239;;;:::o;25943:208::-;26015:7;26060:1;26043:19;;:5;:19;;;;26035:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;26127:9;:16;26137:5;26127:16;;;;;;;;;;;;;;;;26120:23;;25943:208;;;:::o;6195:103::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;41081:196::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41165:9:::1;41161:109;41184:14;;:21;;41180:1;:25;41161:109;;;41227:31;41237:14;;41252:1;41237:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;41256:1;41227:9;:31::i;:::-;41207:3;;;;;:::i;:::-;;;;41161:109;;;;41081:196:::0;;:::o;42680:106::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42768:10:::1;42756:9;:22;;;;;;;;;;;;:::i;:::-;;42680:106:::0;:::o;5544:87::-;5590:7;5617:6;;;;;;;;;;;5610:13;;5544:87;:::o;39280:37::-;;;;:::o;26688:104::-;26744:13;26777:7;26770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26688:104;:::o;40314:191::-;40379:11;39748:24;39775:30;:42;39806:10;39775:42;;;;;;;;;;;;;;;;39748:69;;39870:28;;39855:11;39836:16;:30;;;;:::i;:::-;:62;;39828:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;39986:1;39972:11;:15;:52;;;;;40006:18;;39991:11;:33;;39972:52;39964:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40106:14;;40091:11;40072:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:48;;40064:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;40412:6:::1;;;;;;;;;;;40411:7;40403:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40463:34;40473:10;40485:11;40463:9;:34::i;:::-;39737:432:::0;40314:191;;:::o;28371:155::-;28466:52;28485:12;:10;:12::i;:::-;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;39054:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42521:128::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42636:5:::1;42605:28;:36;;;;42521:128:::0;:::o;29494:328::-;29669:41;29688:12;:10;:12::i;:::-;29702:7;29669:18;:41::i;:::-;29661:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;39226:47::-;;;;:::o;42022:446::-;42096:13;42130:17;42138:8;42130:7;:17::i;:::-;42122:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42217:5;42205:17;;:8;;;;;;;;;;;:17;;;42201:74;;;42246:17;42239:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42201:74;42287:28;42318:10;:8;:10::i;:::-;42287:41;;42379:1;42354:14;42348:28;:32;:112;;;;;;;;;;;;;;;;;42407:14;42423:19;:8;:17;:19::i;:::-;42444:9;42390:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42348:112;42341:119;;;42022:446;;;;:::o;39111:31::-;;;;:::o;40714:172::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40796:6:::1;;;;;;;;;;;40795:7;40787:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40847:31;40857:10;40869:8;40847:9;:31::i;:::-;40714:172:::0;:::o;43240:87::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43313:6:::1;43302:8;;:17;;;;;;;;;;;;;;;;;;43240:87:::0;:::o;28597:164::-;28694:4;28718:18;:25;28737:5;28718:25;;;;;;;;;;;;;;;:35;28744:8;28718:35;;;;;;;;;;;;;;;;;;;;;;;;;28711:42;;28597:164;;;;:::o;39149:36::-;;;;:::o;40896:161::-;40982:11;39748:24;39775:30;:42;39806:10;39775:42;;;;;;;;;;;;;;;;39748:69;;39870:28;;39855:11;39836:16;:30;;;;:::i;:::-;:62;;39828:123;;;;;;;;;;;;:::i;:::-;;;;;;;;;39986:1;39972:11;:15;:52;;;;;40006:18;;39991:11;:33;;39972:52;39964:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40106:14;;40091:11;40072:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:48;;40064:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;5775:12:::1;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41016:33:::2;41026:9;41037:11;41016:9;:33::i;:::-;39737:432:::0;40896:161;;;:::o;40536:170::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40613:6:::1;;;;;;;;;;;40612:7;40604:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40664:34;40674:10;40686:11;40664:9;:34::i;:::-;40536:170:::0;:::o;6453:201::-;5775:12;:10;:12::i;:::-;5764:23;;:7;:5;:7::i;:::-;:23;;;5756:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6562:1:::1;6542:22;;:8;:22;;;;6534:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6618:28;6637:8;6618:18;:28::i;:::-;6453:201:::0;:::o;18328:157::-;18413:4;18452:25;18437:40;;;:11;:40;;;;18430:47;;18328:157;;;:::o;31332:127::-;31397:4;31449:1;31421:30;;:7;:16;31429:7;31421:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31414:37;;31332:127;;;:::o;4268:98::-;4321:7;4348:10;4341:17;;4268:98;:::o;35478:174::-;35580:2;35553:15;:24;35569:7;35553:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35636:7;35632:2;35598:46;;35607:23;35622:7;35607:14;:23::i;:::-;35598:46;;;;;;;;;;;;35478:174;;:::o;872:114::-;937:7;964;:14;;;957:21;;872:114;;;:::o;31626:348::-;31719:4;31744:16;31752:7;31744;:16::i;:::-;31736:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;31878:16;;:7;:16;;;:51;;;;31922:7;31898:31;;:20;31910:7;31898:11;:20::i;:::-;:31;;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31878:87;31870:96;;;31626:348;;;;:::o;34735:625::-;34894:4;34867:31;;:23;34882:7;34867:14;:23::i;:::-;:31;;;34859:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;34973:1;34959:16;;:2;:16;;;;34951:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35029:39;35050:4;35056:2;35060:7;35029:20;:39::i;:::-;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;35194:1;35175:9;:15;35185:4;35175:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35223:1;35206:9;:13;35216:2;35206:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35254:2;35235:7;:16;35243:7;35235:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35293:7;35289:2;35274:27;;35283:4;35274:27;;;;;;;;;;;;35314:38;35334:4;35340:2;35344:7;35314:19;:38::i;:::-;34735:625;;;:::o;6814:191::-;6888:16;6907:6;;;;;;;;;;;6888:25;;6933:8;6924:6;;:17;;;;;;;;;;;;;;;;;;6988:8;6957:40;;6978:8;6957:40;;;;;;;;;;;;6877:128;6814:191;:::o;43523:289::-;43607:9;43602:203;43626:11;43622:1;:15;43602:203;;;43659:18;:6;:16;:18::i;:::-;43694:38;43704:9;43715:16;:6;:14;:16::i;:::-;43694:9;:38::i;:::-;43749:30;:42;43780:10;43749:42;;;;;;;;;;;;;;;;:44;;;;;;;;;:::i;:::-;;;;;;43639:3;;;;;:::i;:::-;;;;43602:203;;;;43523:289;;:::o;35794:315::-;35949:8;35940:17;;:5;:17;;;;35932:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36036:8;35998:18;:25;36017:5;35998:25;;;;;;;;;;;;;;;:35;36024:8;35998:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36082:8;36060:41;;36075:5;36060:41;;;36092:8;36060:41;;;;;;:::i;:::-;;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30704:315;;;;:::o;43837:110::-;43897:13;43930:9;43923:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43837:110;:::o;1830:723::-;1886:13;2116:1;2107:5;:10;2103:53;;;2134:10;;;;;;;;;;;;;;;;;;;;;2103:53;2166:12;2181:5;2166:20;;2197:14;2222:78;2237:1;2229:4;:9;2222:78;;2255:8;;;;;:::i;:::-;;;;2286:2;2278:10;;;;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:39;;2360:154;2376:1;2367:5;:10;2360:154;;2404:1;2394:11;;;;;:::i;:::-;;;2471:2;2463:5;:10;;;;:::i;:::-;2450:2;:24;;;;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2500:2;2491:11;;;;;:::i;:::-;;;2360:154;;;2538:6;2524:21;;;;;1830:723;;;;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;:::-;32316:110;;:::o;38045:126::-;;;;:::o;38556:125::-;;;;:::o;994:127::-;1101:1;1083:7;:14;;;:19;;;;;;;;;;;994:127;:::o;36674:799::-;36829:4;36850:15;:2;:13;;;:15::i;:::-;36846:620;;;36902:2;36886:36;;;36923:12;:10;:12::i;:::-;36937:4;36943:7;36952:5;36886:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37145:1;37128:6;:13;:18;37124:272;;;37171:60;;;;;;;;;;:::i;:::-;;;;;;;;37124:272;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;37019:41;;;37009:51;;;:6;:51;;;;37002:58;;;;;36846:620;37450:4;37443:11;;36674:799;;;;;;;:::o;32653:321::-;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32653:321;;;:::o;8245:326::-;8305:4;8562:1;8540:7;:19;;;:23;8533:30;;8245:326;;;:::o;33310:439::-;33404:1;33390:16;;:2;:16;;;;33382:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33463:16;33471:7;33463;:16::i;:::-;33462:17;33454:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33525:45;33554:1;33558:2;33562:7;33525:20;:45::i;:::-;33600:1;33583:9;:13;33593:2;33583:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33631:2;33612:7;:16;33620:7;33612:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33676:7;33672:2;33651:33;;33668:1;33651:33;;;;;;;;;;;;33697:44;33725:1;33729:2;33733:7;33697:19;:44::i;:::-;33310:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:474::-;8711:6;8719;8768:2;8756:9;8747:7;8743:23;8739:32;8736:119;;;8774:79;;:::i;:::-;8736:119;8894:1;8919:53;8964:7;8955:6;8944:9;8940:22;8919:53;:::i;:::-;8909:63;;8865:117;9021:2;9047:53;9092:7;9083:6;9072:9;9068:22;9047:53;:::i;:::-;9037:63;;8992:118;8643:474;;;;;:::o;9123:179::-;9192:10;9213:46;9255:3;9247:6;9213:46;:::i;:::-;9291:4;9286:3;9282:14;9268:28;;9123:179;;;;:::o;9308:118::-;9395:24;9413:5;9395:24;:::i;:::-;9390:3;9383:37;9308:118;;:::o;9462:732::-;9581:3;9610:54;9658:5;9610:54;:::i;:::-;9680:86;9759:6;9754:3;9680:86;:::i;:::-;9673:93;;9790:56;9840:5;9790:56;:::i;:::-;9869:7;9900:1;9885:284;9910:6;9907:1;9904:13;9885:284;;;9986:6;9980:13;10013:63;10072:3;10057:13;10013:63;:::i;:::-;10006:70;;10099:60;10152:6;10099:60;:::i;:::-;10089:70;;9945:224;9932:1;9929;9925:9;9920:14;;9885:284;;;9889:14;10185:3;10178:10;;9586:608;;;9462:732;;;;:::o;10200:109::-;10281:21;10296:5;10281:21;:::i;:::-;10276:3;10269:34;10200:109;;:::o;10315:360::-;10401:3;10429:38;10461:5;10429:38;:::i;:::-;10483:70;10546:6;10541:3;10483:70;:::i;:::-;10476:77;;10562:52;10607:6;10602:3;10595:4;10588:5;10584:16;10562:52;:::i;:::-;10639:29;10661:6;10639:29;:::i;:::-;10634:3;10630:39;10623:46;;10405:270;10315:360;;;;:::o;10681:364::-;10769:3;10797:39;10830:5;10797:39;:::i;:::-;10852:71;10916:6;10911:3;10852:71;:::i;:::-;10845:78;;10932:52;10977:6;10972:3;10965:4;10958:5;10954:16;10932:52;:::i;:::-;11009:29;11031:6;11009:29;:::i;:::-;11004:3;11000:39;10993:46;;10773:272;10681:364;;;;:::o;11051:377::-;11157:3;11185:39;11218:5;11185:39;:::i;:::-;11240:89;11322:6;11317:3;11240:89;:::i;:::-;11233:96;;11338:52;11383:6;11378:3;11371:4;11364:5;11360:16;11338:52;:::i;:::-;11415:6;11410:3;11406:16;11399:23;;11161:267;11051:377;;;;:::o;11458:845::-;11561:3;11598:5;11592:12;11627:36;11653:9;11627:36;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11799:1;11788:9;11784:17;11815:1;11810:137;;;;11961:1;11956:341;;;;11777:520;;11810:137;11894:4;11890:9;11879;11875:25;11870:3;11863:38;11930:6;11925:3;11921:16;11914:23;;11810:137;;11956:341;12023:38;12055:5;12023:38;:::i;:::-;12083:1;12097:154;12111:6;12108:1;12105:13;12097:154;;;12185:7;12179:14;12175:1;12170:3;12166:11;12159:35;12235:1;12226:7;12222:15;12211:26;;12133:4;12130:1;12126:12;12121:17;;12097:154;;;12280:6;12275:3;12271:16;12264:23;;11963:334;;11777:520;;11565:738;;11458:845;;;;:::o;12309:366::-;12451:3;12472:67;12536:2;12531:3;12472:67;:::i;:::-;12465:74;;12548:93;12637:3;12548:93;:::i;:::-;12666:2;12661:3;12657:12;12650:19;;12309:366;;;:::o;12681:::-;12823:3;12844:67;12908:2;12903:3;12844:67;:::i;:::-;12837:74;;12920:93;13009:3;12920:93;:::i;:::-;13038:2;13033:3;13029:12;13022:19;;12681:366;;;:::o;13053:::-;13195:3;13216:67;13280:2;13275:3;13216:67;:::i;:::-;13209:74;;13292:93;13381:3;13292:93;:::i;:::-;13410:2;13405:3;13401:12;13394:19;;13053:366;;;:::o;13425:::-;13567:3;13588:67;13652:2;13647:3;13588:67;:::i;:::-;13581:74;;13664:93;13753:3;13664:93;:::i;:::-;13782:2;13777:3;13773:12;13766:19;;13425:366;;;:::o;13797:::-;13939:3;13960:67;14024:2;14019:3;13960:67;:::i;:::-;13953:74;;14036:93;14125:3;14036:93;:::i;:::-;14154:2;14149:3;14145:12;14138:19;;13797:366;;;:::o;14169:::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:::-;14683:3;14704:67;14768:2;14763:3;14704:67;:::i;:::-;14697:74;;14780:93;14869:3;14780:93;:::i;:::-;14898:2;14893:3;14889:12;14882:19;;14541:366;;;:::o;14913:::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:::-;15427:3;15448:67;15512:2;15507:3;15448:67;:::i;:::-;15441:74;;15524:93;15613:3;15524:93;:::i;:::-;15642:2;15637:3;15633:12;15626:19;;15285:366;;;:::o;15657:::-;15799:3;15820:67;15884:2;15879:3;15820:67;:::i;:::-;15813:74;;15896:93;15985:3;15896:93;:::i;:::-;16014:2;16009:3;16005:12;15998:19;;15657:366;;;:::o;16029:::-;16171:3;16192:67;16256:2;16251:3;16192:67;:::i;:::-;16185:74;;16268:93;16357:3;16268:93;:::i;:::-;16386:2;16381:3;16377:12;16370:19;;16029:366;;;:::o;16401:::-;16543:3;16564:67;16628:2;16623:3;16564:67;:::i;:::-;16557:74;;16640:93;16729:3;16640:93;:::i;:::-;16758:2;16753:3;16749:12;16742:19;;16401:366;;;:::o;16773:::-;16915:3;16936:67;17000:2;16995:3;16936:67;:::i;:::-;16929:74;;17012:93;17101:3;17012:93;:::i;:::-;17130:2;17125:3;17121:12;17114:19;;16773:366;;;:::o;17145:::-;17287:3;17308:67;17372:2;17367:3;17308:67;:::i;:::-;17301:74;;17384:93;17473:3;17384:93;:::i;:::-;17502:2;17497:3;17493:12;17486:19;;17145:366;;;:::o;17517:::-;17659:3;17680:67;17744:2;17739:3;17680:67;:::i;:::-;17673:74;;17756:93;17845:3;17756:93;:::i;:::-;17874:2;17869:3;17865:12;17858:19;;17517:366;;;:::o;17889:::-;18031:3;18052:67;18116:2;18111:3;18052:67;:::i;:::-;18045:74;;18128:93;18217:3;18128:93;:::i;:::-;18246:2;18241:3;18237:12;18230:19;;17889:366;;;:::o;18261:::-;18403:3;18424:67;18488:2;18483:3;18424:67;:::i;:::-;18417:74;;18500:93;18589:3;18500:93;:::i;:::-;18618:2;18613:3;18609:12;18602:19;;18261:366;;;:::o;18633:398::-;18792:3;18813:83;18894:1;18889:3;18813:83;:::i;:::-;18806:90;;18905:93;18994:3;18905:93;:::i;:::-;19023:1;19018:3;19014:11;19007:18;;18633:398;;;:::o;19037:366::-;19179:3;19200:67;19264:2;19259:3;19200:67;:::i;:::-;19193:74;;19276:93;19365:3;19276:93;:::i;:::-;19394:2;19389:3;19385:12;19378:19;;19037:366;;;:::o;19409:::-;19551:3;19572:67;19636:2;19631:3;19572:67;:::i;:::-;19565:74;;19648:93;19737:3;19648:93;:::i;:::-;19766:2;19761:3;19757:12;19750:19;;19409:366;;;:::o;19781:::-;19923:3;19944:67;20008:2;20003:3;19944:67;:::i;:::-;19937:74;;20020:93;20109:3;20020:93;:::i;:::-;20138:2;20133:3;20129:12;20122:19;;19781:366;;;:::o;20153:108::-;20230:24;20248:5;20230:24;:::i;:::-;20225:3;20218:37;20153:108;;:::o;20267:118::-;20354:24;20372:5;20354:24;:::i;:::-;20349:3;20342:37;20267:118;;:::o;20391:589::-;20616:3;20638:95;20729:3;20720:6;20638:95;:::i;:::-;20631:102;;20750:95;20841:3;20832:6;20750:95;:::i;:::-;20743:102;;20862:92;20950:3;20941:6;20862:92;:::i;:::-;20855:99;;20971:3;20964:10;;20391:589;;;;;;:::o;20986:379::-;21170:3;21192:147;21335:3;21192:147;:::i;:::-;21185:154;;21356:3;21349:10;;20986:379;;;:::o;21371:222::-;21464:4;21502:2;21491:9;21487:18;21479:26;;21515:71;21583:1;21572:9;21568:17;21559:6;21515:71;:::i;:::-;21371:222;;;;:::o;21599:640::-;21794:4;21832:3;21821:9;21817:19;21809:27;;21846:71;21914:1;21903:9;21899:17;21890:6;21846:71;:::i;:::-;21927:72;21995:2;21984:9;21980:18;21971:6;21927:72;:::i;:::-;22009;22077:2;22066:9;22062:18;22053:6;22009:72;:::i;:::-;22128:9;22122:4;22118:20;22113:2;22102:9;22098:18;22091:48;22156:76;22227:4;22218:6;22156:76;:::i;:::-;22148:84;;21599:640;;;;;;;:::o;22245:373::-;22388:4;22426:2;22415:9;22411:18;22403:26;;22475:9;22469:4;22465:20;22461:1;22450:9;22446:17;22439:47;22503:108;22606:4;22597:6;22503:108;:::i;:::-;22495:116;;22245:373;;;;:::o;22624:210::-;22711:4;22749:2;22738:9;22734:18;22726:26;;22762:65;22824:1;22813:9;22809:17;22800:6;22762:65;:::i;:::-;22624:210;;;;:::o;22840:313::-;22953:4;22991:2;22980:9;22976:18;22968:26;;23040:9;23034:4;23030:20;23026:1;23015:9;23011:17;23004:47;23068:78;23141:4;23132:6;23068:78;:::i;:::-;23060:86;;22840:313;;;;:::o;23159:419::-;23325:4;23363:2;23352:9;23348:18;23340:26;;23412:9;23406:4;23402:20;23398:1;23387:9;23383:17;23376:47;23440:131;23566:4;23440:131;:::i;:::-;23432:139;;23159:419;;;:::o;23584:::-;23750:4;23788:2;23777:9;23773:18;23765:26;;23837:9;23831:4;23827:20;23823:1;23812:9;23808:17;23801:47;23865:131;23991:4;23865:131;:::i;:::-;23857:139;;23584:419;;;:::o;24009:::-;24175:4;24213:2;24202:9;24198:18;24190:26;;24262:9;24256:4;24252:20;24248:1;24237:9;24233:17;24226:47;24290:131;24416:4;24290:131;:::i;:::-;24282:139;;24009:419;;;:::o;24434:::-;24600:4;24638:2;24627:9;24623:18;24615:26;;24687:9;24681:4;24677:20;24673:1;24662:9;24658:17;24651:47;24715:131;24841:4;24715:131;:::i;:::-;24707:139;;24434:419;;;:::o;24859:::-;25025:4;25063:2;25052:9;25048:18;25040:26;;25112:9;25106:4;25102:20;25098:1;25087:9;25083:17;25076:47;25140:131;25266:4;25140:131;:::i;:::-;25132:139;;24859:419;;;:::o;25284:::-;25450:4;25488:2;25477:9;25473:18;25465:26;;25537:9;25531:4;25527:20;25523:1;25512:9;25508:17;25501:47;25565:131;25691:4;25565:131;:::i;:::-;25557:139;;25284:419;;;:::o;25709:::-;25875:4;25913:2;25902:9;25898:18;25890:26;;25962:9;25956:4;25952:20;25948:1;25937:9;25933:17;25926:47;25990:131;26116:4;25990:131;:::i;:::-;25982:139;;25709:419;;;:::o;26134:::-;26300:4;26338:2;26327:9;26323:18;26315:26;;26387:9;26381:4;26377:20;26373:1;26362:9;26358:17;26351:47;26415:131;26541:4;26415:131;:::i;:::-;26407:139;;26134:419;;;:::o;26559:::-;26725:4;26763:2;26752:9;26748:18;26740:26;;26812:9;26806:4;26802:20;26798:1;26787:9;26783:17;26776:47;26840:131;26966:4;26840:131;:::i;:::-;26832:139;;26559:419;;;:::o;26984:::-;27150:4;27188:2;27177:9;27173:18;27165:26;;27237:9;27231:4;27227:20;27223:1;27212:9;27208:17;27201:47;27265:131;27391:4;27265:131;:::i;:::-;27257:139;;26984:419;;;:::o;27409:::-;27575:4;27613:2;27602:9;27598:18;27590:26;;27662:9;27656:4;27652:20;27648:1;27637:9;27633:17;27626:47;27690:131;27816:4;27690:131;:::i;:::-;27682:139;;27409:419;;;:::o;27834:::-;28000:4;28038:2;28027:9;28023:18;28015:26;;28087:9;28081:4;28077:20;28073:1;28062:9;28058:17;28051:47;28115:131;28241:4;28115:131;:::i;:::-;28107:139;;27834:419;;;:::o;28259:::-;28425:4;28463:2;28452:9;28448:18;28440:26;;28512:9;28506:4;28502:20;28498:1;28487:9;28483:17;28476:47;28540:131;28666:4;28540:131;:::i;:::-;28532:139;;28259:419;;;:::o;28684:::-;28850:4;28888:2;28877:9;28873:18;28865:26;;28937:9;28931:4;28927:20;28923:1;28912:9;28908:17;28901:47;28965:131;29091:4;28965:131;:::i;:::-;28957:139;;28684:419;;;:::o;29109:::-;29275:4;29313:2;29302:9;29298:18;29290:26;;29362:9;29356:4;29352:20;29348:1;29337:9;29333:17;29326:47;29390:131;29516:4;29390:131;:::i;:::-;29382:139;;29109:419;;;:::o;29534:::-;29700:4;29738:2;29727:9;29723:18;29715:26;;29787:9;29781:4;29777:20;29773:1;29762:9;29758:17;29751:47;29815:131;29941:4;29815:131;:::i;:::-;29807:139;;29534:419;;;:::o;29959:::-;30125:4;30163:2;30152:9;30148:18;30140:26;;30212:9;30206:4;30202:20;30198:1;30187:9;30183:17;30176:47;30240:131;30366:4;30240:131;:::i;:::-;30232:139;;29959:419;;;:::o;30384:::-;30550:4;30588:2;30577:9;30573:18;30565:26;;30637:9;30631:4;30627:20;30623:1;30612:9;30608:17;30601:47;30665:131;30791:4;30665:131;:::i;:::-;30657:139;;30384:419;;;:::o;30809:::-;30975:4;31013:2;31002:9;30998:18;30990:26;;31062:9;31056:4;31052:20;31048:1;31037:9;31033:17;31026:47;31090:131;31216:4;31090:131;:::i;:::-;31082:139;;30809:419;;;:::o;31234:::-;31400:4;31438:2;31427:9;31423:18;31415:26;;31487:9;31481:4;31477:20;31473:1;31462:9;31458:17;31451:47;31515:131;31641:4;31515:131;:::i;:::-;31507:139;;31234:419;;;:::o;31659:222::-;31752:4;31790:2;31779:9;31775:18;31767:26;;31803:71;31871:1;31860:9;31856:17;31847:6;31803:71;:::i;:::-;31659:222;;;;:::o;31887:129::-;31921:6;31948:20;;:::i;:::-;31938:30;;31977:33;32005:4;31997:6;31977:33;:::i;:::-;31887:129;;;:::o;32022:75::-;32055:6;32088:2;32082:9;32072:19;;32022:75;:::o;32103:307::-;32164:4;32254:18;32246:6;32243:30;32240:56;;;32276:18;;:::i;:::-;32240:56;32314:29;32336:6;32314:29;:::i;:::-;32306:37;;32398:4;32392;32388:15;32380:23;;32103:307;;;:::o;32416:308::-;32478:4;32568:18;32560:6;32557:30;32554:56;;;32590:18;;:::i;:::-;32554:56;32628:29;32650:6;32628:29;:::i;:::-;32620:37;;32712:4;32706;32702:15;32694:23;;32416:308;;;:::o;32730:132::-;32797:4;32820:3;32812:11;;32850:4;32845:3;32841:14;32833:22;;32730:132;;;:::o;32868:141::-;32917:4;32940:3;32932:11;;32963:3;32960:1;32953:14;32997:4;32994:1;32984:18;32976:26;;32868:141;;;:::o;33015:114::-;33082:6;33116:5;33110:12;33100:22;;33015:114;;;:::o;33135:98::-;33186:6;33220:5;33214:12;33204:22;;33135:98;;;:::o;33239:99::-;33291:6;33325:5;33319:12;33309:22;;33239:99;;;:::o;33344:113::-;33414:4;33446;33441:3;33437:14;33429:22;;33344:113;;;:::o;33463:184::-;33562:11;33596:6;33591:3;33584:19;33636:4;33631:3;33627:14;33612:29;;33463:184;;;;:::o;33653:168::-;33736:11;33770:6;33765:3;33758:19;33810:4;33805:3;33801:14;33786:29;;33653:168;;;;:::o;33827:147::-;33928:11;33965:3;33950:18;;33827:147;;;;:::o;33980:169::-;34064:11;34098:6;34093:3;34086:19;34138:4;34133:3;34129:14;34114:29;;33980:169;;;;:::o;34155:148::-;34257:11;34294:3;34279:18;;34155:148;;;;:::o;34309:305::-;34349:3;34368:20;34386:1;34368:20;:::i;:::-;34363:25;;34402:20;34420:1;34402:20;:::i;:::-;34397:25;;34556:1;34488:66;34484:74;34481:1;34478:81;34475:107;;;34562:18;;:::i;:::-;34475:107;34606:1;34603;34599:9;34592:16;;34309:305;;;;:::o;34620:185::-;34660:1;34677:20;34695:1;34677:20;:::i;:::-;34672:25;;34711:20;34729:1;34711:20;:::i;:::-;34706:25;;34750:1;34740:35;;34755:18;;:::i;:::-;34740:35;34797:1;34794;34790:9;34785:14;;34620:185;;;;:::o;34811:191::-;34851:4;34871:20;34889:1;34871:20;:::i;:::-;34866:25;;34905:20;34923:1;34905:20;:::i;:::-;34900:25;;34944:1;34941;34938:8;34935:34;;;34949:18;;:::i;:::-;34935:34;34994:1;34991;34987:9;34979:17;;34811:191;;;;:::o;35008:96::-;35045:7;35074:24;35092:5;35074:24;:::i;:::-;35063:35;;35008:96;;;:::o;35110:90::-;35144:7;35187:5;35180:13;35173:21;35162:32;;35110:90;;;:::o;35206:149::-;35242:7;35282:66;35275:5;35271:78;35260:89;;35206:149;;;:::o;35361:126::-;35398:7;35438:42;35431:5;35427:54;35416:65;;35361:126;;;:::o;35493:77::-;35530:7;35559:5;35548:16;;35493:77;;;:::o;35576:154::-;35660:6;35655:3;35650;35637:30;35722:1;35713:6;35708:3;35704:16;35697:27;35576:154;;;:::o;35736:307::-;35804:1;35814:113;35828:6;35825:1;35822:13;35814:113;;;35913:1;35908:3;35904:11;35898:18;35894:1;35889:3;35885:11;35878:39;35850:2;35847:1;35843:10;35838:15;;35814:113;;;35945:6;35942:1;35939:13;35936:101;;;36025:1;36016:6;36011:3;36007:16;36000:27;35936:101;35785:258;35736:307;;;:::o;36049:320::-;36093:6;36130:1;36124:4;36120:12;36110:22;;36177:1;36171:4;36167:12;36198:18;36188:81;;36254:4;36246:6;36242:17;36232:27;;36188:81;36316:2;36308:6;36305:14;36285:18;36282:38;36279:84;;;36335:18;;:::i;:::-;36279:84;36100:269;36049:320;;;:::o;36375:281::-;36458:27;36480:4;36458:27;:::i;:::-;36450:6;36446:40;36588:6;36576:10;36573:22;36552:18;36540:10;36537:34;36534:62;36531:88;;;36599:18;;:::i;:::-;36531:88;36639:10;36635:2;36628:22;36418:238;36375:281;;:::o;36662:233::-;36701:3;36724:24;36742:5;36724:24;:::i;:::-;36715:33;;36770:66;36763:5;36760:77;36757:103;;;36840:18;;:::i;:::-;36757:103;36887:1;36880:5;36876:13;36869:20;;36662:233;;;:::o;36901:176::-;36933:1;36950:20;36968:1;36950:20;:::i;:::-;36945:25;;36984:20;37002:1;36984:20;:::i;:::-;36979:25;;37023:1;37013:35;;37028:18;;:::i;:::-;37013:35;37069:1;37066;37062:9;37057:14;;36901:176;;;;:::o;37083:180::-;37131:77;37128:1;37121:88;37228:4;37225:1;37218:15;37252:4;37249:1;37242:15;37269:180;37317:77;37314:1;37307:88;37414:4;37411:1;37404:15;37438:4;37435:1;37428:15;37455:180;37503:77;37500:1;37493:88;37600:4;37597:1;37590:15;37624:4;37621:1;37614:15;37641:180;37689:77;37686:1;37679:88;37786:4;37783:1;37776:15;37810:4;37807:1;37800:15;37827:180;37875:77;37872:1;37865:88;37972:4;37969:1;37962:15;37996:4;37993:1;37986:15;38013:117;38122:1;38119;38112:12;38136:117;38245:1;38242;38235:12;38259:117;38368:1;38365;38358:12;38382:117;38491:1;38488;38481:12;38505:117;38614:1;38611;38604:12;38628:117;38737:1;38734;38727:12;38751:102;38792:6;38843:2;38839:7;38834:2;38827:5;38823:14;38819:28;38809:38;;38751:102;;;:::o;38859:237::-;38999:34;38995:1;38987:6;38983:14;38976:58;39068:20;39063:2;39055:6;39051:15;39044:45;38859:237;:::o;39102:225::-;39242:34;39238:1;39230:6;39226:14;39219:58;39311:8;39306:2;39298:6;39294:15;39287:33;39102:225;:::o;39333:224::-;39473:34;39469:1;39461:6;39457:14;39450:58;39542:7;39537:2;39529:6;39525:15;39518:32;39333:224;:::o;39563:178::-;39703:30;39699:1;39691:6;39687:14;39680:54;39563:178;:::o;39747:177::-;39887:29;39883:1;39875:6;39871:14;39864:53;39747:177;:::o;39930:223::-;40070:34;40066:1;40058:6;40054:14;40047:58;40139:6;40134:2;40126:6;40122:15;40115:31;39930:223;:::o;40159:175::-;40299:27;40295:1;40287:6;40283:14;40276:51;40159:175;:::o;40340:231::-;40480:34;40476:1;40468:6;40464:14;40457:58;40549:14;40544:2;40536:6;40532:15;40525:39;40340:231;:::o;40577:243::-;40717:34;40713:1;40705:6;40701:14;40694:58;40786:26;40781:2;40773:6;40769:15;40762:51;40577:243;:::o;40826:229::-;40966:34;40962:1;40954:6;40950:14;40943:58;41035:12;41030:2;41022:6;41018:15;41011:37;40826:229;:::o;41061:228::-;41201:34;41197:1;41189:6;41185:14;41178:58;41270:11;41265:2;41257:6;41253:15;41246:36;41061:228;:::o;41295:182::-;41435:34;41431:1;41423:6;41419:14;41412:58;41295:182;:::o;41483:231::-;41623:34;41619:1;41611:6;41607:14;41600:58;41692:14;41687:2;41679:6;41675:15;41668:39;41483:231;:::o;41720:182::-;41860:34;41856:1;41848:6;41844:14;41837:58;41720:182;:::o;41908:174::-;42048:26;42044:1;42036:6;42032:14;42025:50;41908:174;:::o;42088:223::-;42228:34;42224:1;42216:6;42212:14;42205:58;42297:6;42292:2;42284:6;42280:15;42273:31;42088:223;:::o;42317:220::-;42457:34;42453:1;42445:6;42441:14;42434:58;42526:3;42521:2;42513:6;42509:15;42502:28;42317:220;:::o;42543:114::-;;:::o;42663:236::-;42803:34;42799:1;42791:6;42787:14;42780:58;42872:19;42867:2;42859:6;42855:15;42848:44;42663:236;:::o;42905:235::-;43045:34;43041:1;43033:6;43029:14;43022:58;43114:18;43109:2;43101:6;43097:15;43090:43;42905:235;:::o;43146:174::-;43286:26;43282:1;43274:6;43270:14;43263:50;43146:174;:::o;43326:122::-;43399:24;43417:5;43399:24;:::i;:::-;43392:5;43389:35;43379:63;;43438:1;43435;43428:12;43379:63;43326:122;:::o;43454:116::-;43524:21;43539:5;43524:21;:::i;:::-;43517:5;43514:32;43504:60;;43560:1;43557;43550:12;43504:60;43454:116;:::o;43576:120::-;43648:23;43665:5;43648:23;:::i;:::-;43641:5;43638:34;43628:62;;43686:1;43683;43676:12;43628:62;43576:120;:::o;43702:122::-;43775:24;43793:5;43775:24;:::i;:::-;43768:5;43765:35;43755:63;;43814:1;43811;43804:12;43755:63;43702:122;:::o

Swarm Source

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