ETH Price: $3,261.95 (-0.67%)
Gas: 1 Gwei

Token

DoodlinTown (DOODT)
 

Overview

Max Total Supply

188 DOODT

Holders

16

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 DOODT
0x6bb5cddd9f384df74f016555d833d55cd5beb723
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:
DoodlinTown

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// 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.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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: contracts/erc721.sol


pragma solidity ^0.8.9;




// @author codingwithdidem
// @contact [email protected]


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

contract DoodlinTown is 
    ERC721, 
    Ownable, 
    ReentrancyGuard
{
    using Strings for uint256;
    using Counters for Counters.Counter;
    bytes32 public root;
    
    address proxyRegistryAddress;
    uint256 public maxSupply = 9999;
    string public baseURI; 
    string public notRevealedUri = "https://ipfs.io/ipfs/QmSMREUk38XB9Td161fXieX1bVjQWwNBfCua4M6GnzMuwN";
    string public baseExtension = ".json";
    bool public paused = false;
    bool public revealed = false;
    bool public presaleM = false;
    bool public publicM = false;
    uint256 presaleAmountLimit = 3;
    mapping(address => uint256) public _presaleClaimed;
    uint256 public _price = 0.049 ether; // 0.01 ETH
    Counters.Counter private _tokenIds;
    
    constructor(string memory uri, address _proxyRegistryAddress)
        ERC721("DoodlinTown", "DOODT")
        
        ReentrancyGuard() // A modifier that can prevent reentrancy during certain functions
    {
        
        proxyRegistryAddress = _proxyRegistryAddress;
        setBaseURI(uri);
    }
    function setBaseURI(string memory _tokenBaseURI) public onlyOwner {
        baseURI = _tokenBaseURI;
    }
    
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }
    function reveal() public onlyOwner {
        revealed = true;
    }
   
    modifier onlyAccounts () {
        require(msg.sender == tx.origin, "Not allowed origin");
        _;
    }
    
    function togglePause() public onlyOwner {
        paused = !paused;
    }

    function setPrice(uint _amount) external onlyOwner{
        _price = _amount;
    }

    function togglePresale() public onlyOwner {
        presaleM = !presaleM;
    }
    function togglePublicSale() public onlyOwner {
        publicM = !publicM;
    }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }

    function publicSaleMint(uint256 _amount) 
    external 
    payable
    onlyAccounts
    {
        require(publicM,                        "Doodlin Town: PublicSale is OFF");
        require(!paused, "Doodlin Town: Contract is paused");
        require(_amount > 0, "Doodlin Town: zero amount");
        uint current = _tokenIds.current();
        require(
            current + _amount <= maxSupply,
            "Doodlin Town: Max supply exceeded"
        );
        require(
            _price * _amount <= msg.value,
            "Doodlin Town: Not enough ethers sent"
        );
        
        
        for (uint i = 0; i < _amount; i++) {
            mintInternal();
        }
    }
    function mintInternal() internal nonReentrant {
        _tokenIds.increment();
        uint256 tokenId = _tokenIds.current();
        _safeMint(msg.sender, tokenId);
    }
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
    
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }
    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }
    function totalSupply() public view returns (uint) {
        return _tokenIds.current();
    }
    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}
/**
  @title An OpenSea delegate proxy contract which we include for whitelisting.
  @author OpenSea
*/
contract OwnableDelegateProxy {}
/**
  @title An OpenSea proxy registry contract which we include for whitelisting.
  @author OpenSea
*/
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"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":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicM","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSale","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261270f600a556040518060800160405280604381526020016200459960439139600c90805190602001906200003b92919062000410565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200008992919062000410565b506000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055506000600e60026101000a81548160ff0219169083151502179055506000600e60036101000a81548160ff0219169083151502179055506003600f5566ae153d89fe80006011553480156200011357600080fd5b50604051620045dc380380620045dc8339818101604052810190620001399190620006c2565b6040518060400160405280600b81526020017f446f6f646c696e546f776e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f444f4f44540000000000000000000000000000000000000000000000000000008152508160009080519060200190620001bd92919062000410565b508060019080519060200190620001d692919062000410565b505050620001f9620001ed6200025b60201b60201c565b6200026360201b60201c565b600160078190555080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000253826200032960201b60201c565b505062000810565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003396200035560201b60201c565b80600b90805190602001906200035192919062000410565b5050565b620003656200025b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200038b620003e660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003db9062000789565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200041e90620007da565b90600052602060002090601f0160209004810192826200044257600085556200048e565b82601f106200045d57805160ff19168380011785556200048e565b828001600101855582156200048e579182015b828111156200048d57825182559160200191906001019062000470565b5b5090506200049d9190620004a1565b5090565b5b80821115620004bc576000816000905550600101620004a2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200052982620004de565b810181811067ffffffffffffffff821117156200054b576200054a620004ef565b5b80604052505050565b600062000560620004c0565b90506200056e82826200051e565b919050565b600067ffffffffffffffff821115620005915762000590620004ef565b5b6200059c82620004de565b9050602081019050919050565b60005b83811015620005c9578082015181840152602081019050620005ac565b83811115620005d9576000848401525b50505050565b6000620005f6620005f08462000573565b62000554565b905082815260208101848484011115620006155762000614620004d9565b5b62000622848285620005a9565b509392505050565b600082601f830112620006425762000641620004d4565b5b815162000654848260208601620005df565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200068a826200065d565b9050919050565b6200069c816200067d565b8114620006a857600080fd5b50565b600081519050620006bc8162000691565b92915050565b60008060408385031215620006dc57620006db620004ca565b5b600083015167ffffffffffffffff811115620006fd57620006fc620004cf565b5b6200070b858286016200062a565b92505060206200071e85828601620006ab565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200077160208362000728565b91506200077e8262000739565b602082019050919050565b60006020820190508181036000830152620007a48162000762565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007f357607f821691505b602082108114156200080a5762000809620007ab565b5b50919050565b613d7980620008206000396000f3fe6080604052600436106102255760003560e01c80638cc4de1911610123578063c4ae3168116100ab578063e222c7f91161006f578063e222c7f91461079e578063e985e9c5146107b5578063ebf0c717146107f2578063f2c4ce1e1461081d578063f2fde38b1461084657610225565b8063c4ae3168146106cb578063c6682862146106e2578063c87b56dd1461070d578063d5abeb011461074a578063da3ef23f1461077557610225565b8063a22cb465116100f2578063a22cb4651461061b578063a45063c014610644578063a475b5dd1461066f578063b3ab66b014610686578063b88d4fde146106a257610225565b80638cc4de191461055f5780638da5cb5b1461059c57806391b7f5ed146105c757806395d89b41146105f057610225565b806334393743116101b15780635c975abb116101755780635c975abb146104785780636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a61461054857610225565b806334393743146103cd5780633ccfd60b146103e457806342842e0e146103fb578063518302271461042457806355f804b31461044f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780631798d58b1461032357806318160ddd1461034e578063235b6ea11461037957806323b872dd146103a457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612784565b61086f565b60405161025e91906127cc565b60405180910390f35b34801561027357600080fd5b5061027c610951565b6040516102899190612880565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906128d8565b6109e3565b6040516102c69190612946565b60405180910390f35b3480156102db57600080fd5b506102e4610a29565b6040516102f19190612880565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061298d565b610ab7565b005b34801561032f57600080fd5b50610338610bcf565b60405161034591906127cc565b60405180910390f35b34801561035a57600080fd5b50610363610be2565b60405161037091906129dc565b60405180910390f35b34801561038557600080fd5b5061038e610bf3565b60405161039b91906129dc565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906129f7565b610bf9565b005b3480156103d957600080fd5b506103e2610c59565b005b3480156103f057600080fd5b506103f9610c8d565b005b34801561040757600080fd5b50610422600480360381019061041d91906129f7565b610cf5565b005b34801561043057600080fd5b50610439610d15565b60405161044691906127cc565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612b7f565b610d28565b005b34801561048457600080fd5b5061048d610d4a565b60405161049a91906127cc565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906128d8565b610d5d565b6040516104d79190612946565b60405180910390f35b3480156104ec57600080fd5b506104f5610e0f565b6040516105029190612880565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612bc8565b610e9d565b60405161053f91906129dc565b60405180910390f35b34801561055457600080fd5b5061055d610f55565b005b34801561056b57600080fd5b5061058660048036038101906105819190612bc8565b610f69565b60405161059391906129dc565b60405180910390f35b3480156105a857600080fd5b506105b1610f81565b6040516105be9190612946565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906128d8565b610fab565b005b3480156105fc57600080fd5b50610605610fbd565b6040516106129190612880565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612c21565b61104f565b005b34801561065057600080fd5b50610659611065565b60405161066691906127cc565b60405180910390f35b34801561067b57600080fd5b50610684611078565b005b6106a0600480360381019061069b91906128d8565b61109d565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612d02565b6112c6565b005b3480156106d757600080fd5b506106e0611328565b005b3480156106ee57600080fd5b506106f761135c565b6040516107049190612880565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906128d8565b6113ea565b6040516107419190612880565b60405180910390f35b34801561075657600080fd5b5061075f611543565b60405161076c91906129dc565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612b7f565b611549565b005b3480156107aa57600080fd5b506107b361156b565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190612d85565b61159f565b6040516107e991906127cc565b60405180910390f35b3480156107fe57600080fd5b506108076116a1565b6040516108149190612dde565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612b7f565b6116a7565b005b34801561085257600080fd5b5061086d60048036038101906108689190612bc8565b6116c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261174d565b5b9050919050565b60606000805461096090612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90612e28565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60006109ee826117b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610a3690612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612e28565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b505050505081565b6000610ac282610d5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612ecc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b52611802565b73ffffffffffffffffffffffffffffffffffffffff161480610b815750610b8081610b7b611802565b61159f565b5b610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790612f5e565b60405180910390fd5b610bca838361180a565b505050565b600e60029054906101000a900460ff1681565b6000610bee60126118c3565b905090565b60115481565b610c0a610c04611802565b826118d1565b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612ff0565b60405180910390fd5b610c54838383611966565b505050565b610c61611bcd565b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b610c95611bcd565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610cf2573d6000803e3d6000fd5b50565b610d10838383604051806020016040528060008152506112c6565b505050565b600e60019054906101000a900460ff1681565b610d30611bcd565b80600b9080519060200190610d46929190612675565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061305c565b60405180910390fd5b80915050919050565b600b8054610e1c90612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890612e28565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906130ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5d611bcd565b610f676000611c4b565b565b60106020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fb3611bcd565b8060118190555050565b606060018054610fcc90612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff890612e28565b80156110455780601f1061101a57610100808354040283529160200191611045565b820191906000526020600020905b81548152906001019060200180831161102857829003601f168201915b5050505050905090565b61106161105a611802565b8383611d11565b5050565b600e60039054906101000a900460ff1681565b611080611bcd565b6001600e60016101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111029061315a565b60405180910390fd5b600e60039054906101000a900460ff1661115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906131c6565b60405180910390fd5b600e60009054906101000a900460ff16156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613232565b60405180910390fd5b600081116111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e49061329e565b60405180910390fd5b60006111f960126118c3565b9050600a54828261120a91906132ed565b111561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906133b5565b60405180910390fd5b348260115461125a91906133d5565b111561129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906134a1565b60405180910390fd5b60005b828110156112c1576112ae611e7e565b80806112b9906134c1565b91505061129e565b505050565b6112d76112d1611802565b836118d1565b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612ff0565b60405180910390fd5b61132284848484611ef9565b50505050565b611330611bcd565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600d805461136990612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461139590612e28565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60606113f582611f55565b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061357c565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114e257600c805461145d90612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461148990612e28565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b5050505050905061153e565b60006114ec611fc1565b9050600081511161150c576040518060200160405280600081525061153a565b8061151684612053565b600d60405160200161152a9392919061366c565b6040516020818303038152906040525b9150505b919050565b600a5481565b611551611bcd565b80600d9080519060200190611567929190612675565b5050565b611573611bcd565b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016116179190612946565b60206040518083038186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166791906136db565b73ffffffffffffffffffffffffffffffffffffffff16141561168d57600191505061169b565b61169784846121b4565b9150505b92915050565b60085481565b6116af611bcd565b80600c90805190602001906116c5929190612675565b5050565b6116d1611bcd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117389061377a565b60405180910390fd5b61174a81611c4b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117c081611f55565b6117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061305c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187d83610d5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806118dd83610d5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061191f575061191e818561159f565b5b8061195d57508373ffffffffffffffffffffffffffffffffffffffff16611945846109e3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198682610d5d565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061380c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061389e565b60405180910390fd5b611a57838383612248565b611a6260008261180a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab291906138be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0991906132ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bc883838361224d565b505050565b611bd5611802565b73ffffffffffffffffffffffffffffffffffffffff16611bf3610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c409061393e565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906139aa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7191906127cc565b60405180910390a3505050565b60026007541415611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613a16565b60405180910390fd5b6002600781905550611ed66012612252565b6000611ee260126118c3565b9050611eee3382612268565b506001600781905550565b611f04848484611966565b611f1084848484612286565b611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613aa8565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611fd090612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffc90612e28565b80156120495780601f1061201e57610100808354040283529160200191612049565b820191906000526020600020905b81548152906001019060200180831161202c57829003601f168201915b5050505050905090565b6060600082141561209b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121af565b600082905060005b600082146120cd5780806120b6906134c1565b915050600a826120c69190613af7565b91506120a3565b60008167ffffffffffffffff8111156120e9576120e8612a54565b5b6040519080825280601f01601f19166020018201604052801561211b5781602001600182028036833780820191505090505b5090505b600085146121a85760018261213491906138be565b9150600a856121439190613b28565b603061214f91906132ed565b60f81b81838151811061216557612164613b59565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a19190613af7565b945061211f565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b6001816000016000828254019250508190555050565b61228282826040518060200160405280600081525061241d565b5050565b60006122a78473ffffffffffffffffffffffffffffffffffffffff16612478565b15612410578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d0611802565b8786866040518563ffffffff1660e01b81526004016122f29493929190613bdd565b602060405180830381600087803b15801561230c57600080fd5b505af192505050801561233d57506040513d601f19601f8201168201806040525081019061233a9190613c3e565b60015b6123c0573d806000811461236d576040519150601f19603f3d011682016040523d82523d6000602084013e612372565b606091505b506000815114156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90613aa8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612415565b600190505b949350505050565b612427838361249b565b6124346000848484612286565b612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90613aa8565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250290613cb7565b60405180910390fd5b61251481611f55565b15612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613d23565b60405180910390fd5b61256060008383612248565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b091906132ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126716000838361224d565b5050565b82805461268190612e28565b90600052602060002090601f0160209004810192826126a357600085556126ea565b82601f106126bc57805160ff19168380011785556126ea565b828001600101855582156126ea579182015b828111156126e95782518255916020019190600101906126ce565b5b5090506126f791906126fb565b5090565b5b808211156127145760008160009055506001016126fc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127618161272c565b811461276c57600080fd5b50565b60008135905061277e81612758565b92915050565b60006020828403121561279a57612799612722565b5b60006127a88482850161276f565b91505092915050565b60008115159050919050565b6127c6816127b1565b82525050565b60006020820190506127e160008301846127bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612821578082015181840152602081019050612806565b83811115612830576000848401525b50505050565b6000601f19601f8301169050919050565b6000612852826127e7565b61285c81856127f2565b935061286c818560208601612803565b61287581612836565b840191505092915050565b6000602082019050818103600083015261289a8184612847565b905092915050565b6000819050919050565b6128b5816128a2565b81146128c057600080fd5b50565b6000813590506128d2816128ac565b92915050565b6000602082840312156128ee576128ed612722565b5b60006128fc848285016128c3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061293082612905565b9050919050565b61294081612925565b82525050565b600060208201905061295b6000830184612937565b92915050565b61296a81612925565b811461297557600080fd5b50565b60008135905061298781612961565b92915050565b600080604083850312156129a4576129a3612722565b5b60006129b285828601612978565b92505060206129c3858286016128c3565b9150509250929050565b6129d6816128a2565b82525050565b60006020820190506129f160008301846129cd565b92915050565b600080600060608486031215612a1057612a0f612722565b5b6000612a1e86828701612978565b9350506020612a2f86828701612978565b9250506040612a40868287016128c3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8c82612836565b810181811067ffffffffffffffff82111715612aab57612aaa612a54565b5b80604052505050565b6000612abe612718565b9050612aca8282612a83565b919050565b600067ffffffffffffffff821115612aea57612ae9612a54565b5b612af382612836565b9050602081019050919050565b82818337600083830152505050565b6000612b22612b1d84612acf565b612ab4565b905082815260208101848484011115612b3e57612b3d612a4f565b5b612b49848285612b00565b509392505050565b600082601f830112612b6657612b65612a4a565b5b8135612b76848260208601612b0f565b91505092915050565b600060208284031215612b9557612b94612722565b5b600082013567ffffffffffffffff811115612bb357612bb2612727565b5b612bbf84828501612b51565b91505092915050565b600060208284031215612bde57612bdd612722565b5b6000612bec84828501612978565b91505092915050565b612bfe816127b1565b8114612c0957600080fd5b50565b600081359050612c1b81612bf5565b92915050565b60008060408385031215612c3857612c37612722565b5b6000612c4685828601612978565b9250506020612c5785828601612c0c565b9150509250929050565b600067ffffffffffffffff821115612c7c57612c7b612a54565b5b612c8582612836565b9050602081019050919050565b6000612ca5612ca084612c61565b612ab4565b905082815260208101848484011115612cc157612cc0612a4f565b5b612ccc848285612b00565b509392505050565b600082601f830112612ce957612ce8612a4a565b5b8135612cf9848260208601612c92565b91505092915050565b60008060008060808587031215612d1c57612d1b612722565b5b6000612d2a87828801612978565b9450506020612d3b87828801612978565b9350506040612d4c878288016128c3565b925050606085013567ffffffffffffffff811115612d6d57612d6c612727565b5b612d7987828801612cd4565b91505092959194509250565b60008060408385031215612d9c57612d9b612722565b5b6000612daa85828601612978565b9250506020612dbb85828601612978565b9150509250929050565b6000819050919050565b612dd881612dc5565b82525050565b6000602082019050612df36000830184612dcf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4057607f821691505b60208210811415612e5457612e53612df9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eb66021836127f2565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f48603e836127f2565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612fda602e836127f2565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006130466018836127f2565b915061305182613010565b602082019050919050565b6000602082019050818103600083015261307581613039565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006130d86029836127f2565b91506130e38261307c565b604082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b60006131446012836127f2565b915061314f8261310e565b602082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f446f6f646c696e20546f776e3a205075626c696353616c65206973204f464600600082015250565b60006131b0601f836127f2565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f446f6f646c696e20546f776e3a20436f6e747261637420697320706175736564600082015250565b600061321c6020836127f2565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f446f6f646c696e20546f776e3a207a65726f20616d6f756e7400000000000000600082015250565b60006132886019836127f2565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f8826128a2565b9150613303836128a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613338576133376132be565b5b828201905092915050565b7f446f6f646c696e20546f776e3a204d617820737570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061339f6021836127f2565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b60006133e0826128a2565b91506133eb836128a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613424576134236132be565b5b828202905092915050565b7f446f6f646c696e20546f776e3a204e6f7420656e6f756768206574686572732060008201527f73656e7400000000000000000000000000000000000000000000000000000000602082015250565b600061348b6024836127f2565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b60006134cc826128a2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134ff576134fe6132be565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613566602f836127f2565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b600081905092915050565b60006135b2826127e7565b6135bc818561359c565b93506135cc818560208601612803565b80840191505092915050565b60008190508160005260206000209050919050565b600081546135fa81612e28565b613604818661359c565b9450600182166000811461361f576001811461363057613663565b60ff19831686528186019350613663565b613639856135d8565b60005b8381101561365b5781548189015260018201915060208101905061363c565b838801955050505b50505092915050565b600061367882866135a7565b915061368482856135a7565b915061369082846135ed565b9150819050949350505050565b60006136a882612925565b9050919050565b6136b88161369d565b81146136c357600080fd5b50565b6000815190506136d5816136af565b92915050565b6000602082840312156136f1576136f0612722565b5b60006136ff848285016136c6565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137646026836127f2565b915061376f82613708565b604082019050919050565b6000602082019050818103600083015261379381613757565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006137f66025836127f2565b91506138018261379a565b604082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138886024836127f2565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b60006138c9826128a2565b91506138d4836128a2565b9250828210156138e7576138e66132be565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139286020836127f2565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139946019836127f2565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a00601f836127f2565b9150613a0b826139ca565b602082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a926032836127f2565b9150613a9d82613a36565b604082019050919050565b60006020820190508181036000830152613ac181613a85565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b02826128a2565b9150613b0d836128a2565b925082613b1d57613b1c613ac8565b5b828204905092915050565b6000613b33826128a2565b9150613b3e836128a2565b925082613b4e57613b4d613ac8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613baf82613b88565b613bb98185613b93565b9350613bc9818560208601612803565b613bd281612836565b840191505092915050565b6000608082019050613bf26000830187612937565b613bff6020830186612937565b613c0c60408301856129cd565b8181036060830152613c1e8184613ba4565b905095945050505050565b600081519050613c3881612758565b92915050565b600060208284031215613c5457613c53612722565b5b6000613c6284828501613c29565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca16020836127f2565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d0d601c836127f2565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b905091905056fea2646970667358221220400e1eb90aa42c6bad5bddd8bec9f3d057ecf451591aed64a86242985669859064736f6c6343000809003368747470733a2f2f697066732e696f2f697066732f516d534d5245556b3338584239546431363166586965583162566a5157774e4266437561344d36476e7a4d75774e0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d534d5245556b3338584239546431363166586965583162566a5157774e4266437561344d36476e7a4d75774e0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c80638cc4de1911610123578063c4ae3168116100ab578063e222c7f91161006f578063e222c7f91461079e578063e985e9c5146107b5578063ebf0c717146107f2578063f2c4ce1e1461081d578063f2fde38b1461084657610225565b8063c4ae3168146106cb578063c6682862146106e2578063c87b56dd1461070d578063d5abeb011461074a578063da3ef23f1461077557610225565b8063a22cb465116100f2578063a22cb4651461061b578063a45063c014610644578063a475b5dd1461066f578063b3ab66b014610686578063b88d4fde146106a257610225565b80638cc4de191461055f5780638da5cb5b1461059c57806391b7f5ed146105c757806395d89b41146105f057610225565b806334393743116101b15780635c975abb116101755780635c975abb146104785780636352211e146104a35780636c0360eb146104e057806370a082311461050b578063715018a61461054857610225565b806334393743146103cd5780633ccfd60b146103e457806342842e0e146103fb578063518302271461042457806355f804b31461044f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780631798d58b1461032357806318160ddd1461034e578063235b6ea11461037957806323b872dd146103a457610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612784565b61086f565b60405161025e91906127cc565b60405180910390f35b34801561027357600080fd5b5061027c610951565b6040516102899190612880565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906128d8565b6109e3565b6040516102c69190612946565b60405180910390f35b3480156102db57600080fd5b506102e4610a29565b6040516102f19190612880565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061298d565b610ab7565b005b34801561032f57600080fd5b50610338610bcf565b60405161034591906127cc565b60405180910390f35b34801561035a57600080fd5b50610363610be2565b60405161037091906129dc565b60405180910390f35b34801561038557600080fd5b5061038e610bf3565b60405161039b91906129dc565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906129f7565b610bf9565b005b3480156103d957600080fd5b506103e2610c59565b005b3480156103f057600080fd5b506103f9610c8d565b005b34801561040757600080fd5b50610422600480360381019061041d91906129f7565b610cf5565b005b34801561043057600080fd5b50610439610d15565b60405161044691906127cc565b60405180910390f35b34801561045b57600080fd5b5061047660048036038101906104719190612b7f565b610d28565b005b34801561048457600080fd5b5061048d610d4a565b60405161049a91906127cc565b60405180910390f35b3480156104af57600080fd5b506104ca60048036038101906104c591906128d8565b610d5d565b6040516104d79190612946565b60405180910390f35b3480156104ec57600080fd5b506104f5610e0f565b6040516105029190612880565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612bc8565b610e9d565b60405161053f91906129dc565b60405180910390f35b34801561055457600080fd5b5061055d610f55565b005b34801561056b57600080fd5b5061058660048036038101906105819190612bc8565b610f69565b60405161059391906129dc565b60405180910390f35b3480156105a857600080fd5b506105b1610f81565b6040516105be9190612946565b60405180910390f35b3480156105d357600080fd5b506105ee60048036038101906105e991906128d8565b610fab565b005b3480156105fc57600080fd5b50610605610fbd565b6040516106129190612880565b60405180910390f35b34801561062757600080fd5b50610642600480360381019061063d9190612c21565b61104f565b005b34801561065057600080fd5b50610659611065565b60405161066691906127cc565b60405180910390f35b34801561067b57600080fd5b50610684611078565b005b6106a0600480360381019061069b91906128d8565b61109d565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190612d02565b6112c6565b005b3480156106d757600080fd5b506106e0611328565b005b3480156106ee57600080fd5b506106f761135c565b6040516107049190612880565b60405180910390f35b34801561071957600080fd5b50610734600480360381019061072f91906128d8565b6113ea565b6040516107419190612880565b60405180910390f35b34801561075657600080fd5b5061075f611543565b60405161076c91906129dc565b60405180910390f35b34801561078157600080fd5b5061079c60048036038101906107979190612b7f565b611549565b005b3480156107aa57600080fd5b506107b361156b565b005b3480156107c157600080fd5b506107dc60048036038101906107d79190612d85565b61159f565b6040516107e991906127cc565b60405180910390f35b3480156107fe57600080fd5b506108076116a1565b6040516108149190612dde565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190612b7f565b6116a7565b005b34801561085257600080fd5b5061086d60048036038101906108689190612bc8565b6116c9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094a57506109498261174d565b5b9050919050565b60606000805461096090612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461098c90612e28565b80156109d95780601f106109ae576101008083540402835291602001916109d9565b820191906000526020600020905b8154815290600101906020018083116109bc57829003601f168201915b5050505050905090565b60006109ee826117b7565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610a3690612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612e28565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b505050505081565b6000610ac282610d5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a90612ecc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b52611802565b73ffffffffffffffffffffffffffffffffffffffff161480610b815750610b8081610b7b611802565b61159f565b5b610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb790612f5e565b60405180910390fd5b610bca838361180a565b505050565b600e60029054906101000a900460ff1681565b6000610bee60126118c3565b905090565b60115481565b610c0a610c04611802565b826118d1565b610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612ff0565b60405180910390fd5b610c54838383611966565b505050565b610c61611bcd565b600e60029054906101000a900460ff1615600e60026101000a81548160ff021916908315150217905550565b610c95611bcd565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015610cf2573d6000803e3d6000fd5b50565b610d10838383604051806020016040528060008152506112c6565b505050565b600e60019054906101000a900460ff1681565b610d30611bcd565b80600b9080519060200190610d46929190612675565b5050565b600e60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfd9061305c565b60405180910390fd5b80915050919050565b600b8054610e1c90612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4890612e28565b8015610e955780601f10610e6a57610100808354040283529160200191610e95565b820191906000526020600020905b815481529060010190602001808311610e7857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f05906130ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f5d611bcd565b610f676000611c4b565b565b60106020528060005260406000206000915090505481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fb3611bcd565b8060118190555050565b606060018054610fcc90612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff890612e28565b80156110455780601f1061101a57610100808354040283529160200191611045565b820191906000526020600020905b81548152906001019060200180831161102857829003601f168201915b5050505050905090565b61106161105a611802565b8383611d11565b5050565b600e60039054906101000a900460ff1681565b611080611bcd565b6001600e60016101000a81548160ff021916908315150217905550565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461110b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111029061315a565b60405180910390fd5b600e60039054906101000a900460ff1661115a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611151906131c6565b60405180910390fd5b600e60009054906101000a900460ff16156111aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a190613232565b60405180910390fd5b600081116111ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e49061329e565b60405180910390fd5b60006111f960126118c3565b9050600a54828261120a91906132ed565b111561124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906133b5565b60405180910390fd5b348260115461125a91906133d5565b111561129b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611292906134a1565b60405180910390fd5b60005b828110156112c1576112ae611e7e565b80806112b9906134c1565b91505061129e565b505050565b6112d76112d1611802565b836118d1565b611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90612ff0565b60405180910390fd5b61132284848484611ef9565b50505050565b611330611bcd565b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600d805461136990612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461139590612e28565b80156113e25780601f106113b7576101008083540402835291602001916113e2565b820191906000526020600020905b8154815290600101906020018083116113c557829003601f168201915b505050505081565b60606113f582611f55565b611434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142b9061357c565b60405180910390fd5b60001515600e60019054906101000a900460ff16151514156114e257600c805461145d90612e28565b80601f016020809104026020016040519081016040528092919081815260200182805461148990612e28565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b5050505050905061153e565b60006114ec611fc1565b9050600081511161150c576040518060200160405280600081525061153a565b8061151684612053565b600d60405160200161152a9392919061366c565b6040516020818303038152906040525b9150505b919050565b600a5481565b611551611bcd565b80600d9080519060200190611567929190612675565b5050565b611573611bcd565b600e60039054906101000a900460ff1615600e60036101000a81548160ff021916908315150217905550565b600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016116179190612946565b60206040518083038186803b15801561162f57600080fd5b505afa158015611643573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166791906136db565b73ffffffffffffffffffffffffffffffffffffffff16141561168d57600191505061169b565b61169784846121b4565b9150505b92915050565b60085481565b6116af611bcd565b80600c90805190602001906116c5929190612675565b5050565b6116d1611bcd565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611741576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117389061377a565b60405180910390fd5b61174a81611c4b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6117c081611f55565b6117ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f69061305c565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661187d83610d5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000806118dd83610d5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061191f575061191e818561159f565b5b8061195d57508373ffffffffffffffffffffffffffffffffffffffff16611945846109e3565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661198682610d5d565b73ffffffffffffffffffffffffffffffffffffffff16146119dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d39061380c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a439061389e565b60405180910390fd5b611a57838383612248565b611a6260008261180a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ab291906138be565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0991906132ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611bc883838361224d565b505050565b611bd5611802565b73ffffffffffffffffffffffffffffffffffffffff16611bf3610f81565b73ffffffffffffffffffffffffffffffffffffffff1614611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c409061393e565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d77906139aa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611e7191906127cc565b60405180910390a3505050565b60026007541415611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb90613a16565b60405180910390fd5b6002600781905550611ed66012612252565b6000611ee260126118c3565b9050611eee3382612268565b506001600781905550565b611f04848484611966565b611f1084848484612286565b611f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4690613aa8565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b8054611fd090612e28565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffc90612e28565b80156120495780601f1061201e57610100808354040283529160200191612049565b820191906000526020600020905b81548152906001019060200180831161202c57829003601f168201915b5050505050905090565b6060600082141561209b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121af565b600082905060005b600082146120cd5780806120b6906134c1565b915050600a826120c69190613af7565b91506120a3565b60008167ffffffffffffffff8111156120e9576120e8612a54565b5b6040519080825280601f01601f19166020018201604052801561211b5781602001600182028036833780820191505090505b5090505b600085146121a85760018261213491906138be565b9150600a856121439190613b28565b603061214f91906132ed565b60f81b81838151811061216557612164613b59565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121a19190613af7565b945061211f565b8093505050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b505050565b505050565b6001816000016000828254019250508190555050565b61228282826040518060200160405280600081525061241d565b5050565b60006122a78473ffffffffffffffffffffffffffffffffffffffff16612478565b15612410578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122d0611802565b8786866040518563ffffffff1660e01b81526004016122f29493929190613bdd565b602060405180830381600087803b15801561230c57600080fd5b505af192505050801561233d57506040513d601f19601f8201168201806040525081019061233a9190613c3e565b60015b6123c0573d806000811461236d576040519150601f19603f3d011682016040523d82523d6000602084013e612372565b606091505b506000815114156123b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123af90613aa8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612415565b600190505b949350505050565b612427838361249b565b6124346000848484612286565b612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90613aa8565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250290613cb7565b60405180910390fd5b61251481611f55565b15612554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254b90613d23565b60405180910390fd5b61256060008383612248565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125b091906132ed565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126716000838361224d565b5050565b82805461268190612e28565b90600052602060002090601f0160209004810192826126a357600085556126ea565b82601f106126bc57805160ff19168380011785556126ea565b828001600101855582156126ea579182015b828111156126e95782518255916020019190600101906126ce565b5b5090506126f791906126fb565b5090565b5b808211156127145760008160009055506001016126fc565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127618161272c565b811461276c57600080fd5b50565b60008135905061277e81612758565b92915050565b60006020828403121561279a57612799612722565b5b60006127a88482850161276f565b91505092915050565b60008115159050919050565b6127c6816127b1565b82525050565b60006020820190506127e160008301846127bd565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612821578082015181840152602081019050612806565b83811115612830576000848401525b50505050565b6000601f19601f8301169050919050565b6000612852826127e7565b61285c81856127f2565b935061286c818560208601612803565b61287581612836565b840191505092915050565b6000602082019050818103600083015261289a8184612847565b905092915050565b6000819050919050565b6128b5816128a2565b81146128c057600080fd5b50565b6000813590506128d2816128ac565b92915050565b6000602082840312156128ee576128ed612722565b5b60006128fc848285016128c3565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061293082612905565b9050919050565b61294081612925565b82525050565b600060208201905061295b6000830184612937565b92915050565b61296a81612925565b811461297557600080fd5b50565b60008135905061298781612961565b92915050565b600080604083850312156129a4576129a3612722565b5b60006129b285828601612978565b92505060206129c3858286016128c3565b9150509250929050565b6129d6816128a2565b82525050565b60006020820190506129f160008301846129cd565b92915050565b600080600060608486031215612a1057612a0f612722565b5b6000612a1e86828701612978565b9350506020612a2f86828701612978565b9250506040612a40868287016128c3565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612a8c82612836565b810181811067ffffffffffffffff82111715612aab57612aaa612a54565b5b80604052505050565b6000612abe612718565b9050612aca8282612a83565b919050565b600067ffffffffffffffff821115612aea57612ae9612a54565b5b612af382612836565b9050602081019050919050565b82818337600083830152505050565b6000612b22612b1d84612acf565b612ab4565b905082815260208101848484011115612b3e57612b3d612a4f565b5b612b49848285612b00565b509392505050565b600082601f830112612b6657612b65612a4a565b5b8135612b76848260208601612b0f565b91505092915050565b600060208284031215612b9557612b94612722565b5b600082013567ffffffffffffffff811115612bb357612bb2612727565b5b612bbf84828501612b51565b91505092915050565b600060208284031215612bde57612bdd612722565b5b6000612bec84828501612978565b91505092915050565b612bfe816127b1565b8114612c0957600080fd5b50565b600081359050612c1b81612bf5565b92915050565b60008060408385031215612c3857612c37612722565b5b6000612c4685828601612978565b9250506020612c5785828601612c0c565b9150509250929050565b600067ffffffffffffffff821115612c7c57612c7b612a54565b5b612c8582612836565b9050602081019050919050565b6000612ca5612ca084612c61565b612ab4565b905082815260208101848484011115612cc157612cc0612a4f565b5b612ccc848285612b00565b509392505050565b600082601f830112612ce957612ce8612a4a565b5b8135612cf9848260208601612c92565b91505092915050565b60008060008060808587031215612d1c57612d1b612722565b5b6000612d2a87828801612978565b9450506020612d3b87828801612978565b9350506040612d4c878288016128c3565b925050606085013567ffffffffffffffff811115612d6d57612d6c612727565b5b612d7987828801612cd4565b91505092959194509250565b60008060408385031215612d9c57612d9b612722565b5b6000612daa85828601612978565b9250506020612dbb85828601612978565b9150509250929050565b6000819050919050565b612dd881612dc5565b82525050565b6000602082019050612df36000830184612dcf565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e4057607f821691505b60208210811415612e5457612e53612df9565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612eb66021836127f2565b9150612ec182612e5a565b604082019050919050565b60006020820190508181036000830152612ee581612ea9565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612f48603e836127f2565b9150612f5382612eec565b604082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612fda602e836127f2565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b60006130466018836127f2565b915061305182613010565b602082019050919050565b6000602082019050818103600083015261307581613039565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006130d86029836127f2565b91506130e38261307c565b604082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b7f4e6f7420616c6c6f776564206f726967696e0000000000000000000000000000600082015250565b60006131446012836127f2565b915061314f8261310e565b602082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f446f6f646c696e20546f776e3a205075626c696353616c65206973204f464600600082015250565b60006131b0601f836127f2565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f446f6f646c696e20546f776e3a20436f6e747261637420697320706175736564600082015250565b600061321c6020836127f2565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f446f6f646c696e20546f776e3a207a65726f20616d6f756e7400000000000000600082015250565b60006132886019836127f2565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132f8826128a2565b9150613303836128a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613338576133376132be565b5b828201905092915050565b7f446f6f646c696e20546f776e3a204d617820737570706c79206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b600061339f6021836127f2565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b9050919050565b60006133e0826128a2565b91506133eb836128a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613424576134236132be565b5b828202905092915050565b7f446f6f646c696e20546f776e3a204e6f7420656e6f756768206574686572732060008201527f73656e7400000000000000000000000000000000000000000000000000000000602082015250565b600061348b6024836127f2565b91506134968261342f565b604082019050919050565b600060208201905081810360008301526134ba8161347e565b9050919050565b60006134cc826128a2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134ff576134fe6132be565b5b600182019050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613566602f836127f2565b91506135718261350a565b604082019050919050565b6000602082019050818103600083015261359581613559565b9050919050565b600081905092915050565b60006135b2826127e7565b6135bc818561359c565b93506135cc818560208601612803565b80840191505092915050565b60008190508160005260206000209050919050565b600081546135fa81612e28565b613604818661359c565b9450600182166000811461361f576001811461363057613663565b60ff19831686528186019350613663565b613639856135d8565b60005b8381101561365b5781548189015260018201915060208101905061363c565b838801955050505b50505092915050565b600061367882866135a7565b915061368482856135a7565b915061369082846135ed565b9150819050949350505050565b60006136a882612925565b9050919050565b6136b88161369d565b81146136c357600080fd5b50565b6000815190506136d5816136af565b92915050565b6000602082840312156136f1576136f0612722565b5b60006136ff848285016136c6565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006137646026836127f2565b915061376f82613708565b604082019050919050565b6000602082019050818103600083015261379381613757565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b60006137f66025836127f2565b91506138018261379a565b604082019050919050565b60006020820190508181036000830152613825816137e9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006138886024836127f2565b91506138938261382c565b604082019050919050565b600060208201905081810360008301526138b78161387b565b9050919050565b60006138c9826128a2565b91506138d4836128a2565b9250828210156138e7576138e66132be565b5b828203905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139286020836127f2565b9150613933826138f2565b602082019050919050565b600060208201905081810360008301526139578161391b565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006139946019836127f2565b915061399f8261395e565b602082019050919050565b600060208201905081810360008301526139c381613987565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000613a00601f836127f2565b9150613a0b826139ca565b602082019050919050565b60006020820190508181036000830152613a2f816139f3565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613a926032836127f2565b9150613a9d82613a36565b604082019050919050565b60006020820190508181036000830152613ac181613a85565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613b02826128a2565b9150613b0d836128a2565b925082613b1d57613b1c613ac8565b5b828204905092915050565b6000613b33826128a2565b9150613b3e836128a2565b925082613b4e57613b4d613ac8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613baf82613b88565b613bb98185613b93565b9350613bc9818560208601612803565b613bd281612836565b840191505092915050565b6000608082019050613bf26000830187612937565b613bff6020830186612937565b613c0c60408301856129cd565b8181036060830152613c1e8184613ba4565b905095945050505050565b600081519050613c3881612758565b92915050565b600060208284031215613c5457613c53612722565b5b6000613c6284828501613c29565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ca16020836127f2565b9150613cac82613c6b565b602082019050919050565b60006020820190508181036000830152613cd081613c94565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613d0d601c836127f2565b9150613d1882613cd7565b602082019050919050565b60006020820190508181036000830152613d3c81613d00565b905091905056fea2646970667358221220400e1eb90aa42c6bad5bddd8bec9f3d057ecf451591aed64a86242985669859064736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d534d5245556b3338584239546431363166586965583162566a5157774e4266437561344d36476e7a4d75774e0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri (string): https://ipfs.io/ipfs/QmSMREUk38XB9Td161fXieX1bVjQWwNBfCua4M6GnzMuwN
Arg [1] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 68747470733a2f2f697066732e696f2f697066732f516d534d5245556b333858
Arg [4] : 4239546431363166586965583162566a5157774e4266437561344d36476e7a4d
Arg [5] : 75774e0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

41892:4591:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27567:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28494:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30007:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42183:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29524:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42402:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45812:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42565:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30707:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43586:81;;;;;;;;;;;;;:::i;:::-;;43767:118;;;;;;;;;;;;;:::i;:::-;;31114:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42367:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42982:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42334:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28205:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42154:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27936:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8103:103;;;;;;;;;;;;;:::i;:::-;;42508:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7455:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43493:85;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28663:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30250:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42437:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43208:69;;;;;;;;;;;;;:::i;:::-;;43893:710;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31370:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43410:75;;;;;;;;;;;;;:::i;:::-;;42290:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44790:727;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42116:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45523:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43673:82;;;;;;;;;;;;;:::i;:::-;;46037:443;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42049:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45680:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8361:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27567:305;27669:4;27721:25;27706:40;;;:11;:40;;;;:105;;;;27778:33;27763:48;;;:11;:48;;;;27706:105;:158;;;;27828:36;27852:11;27828:23;:36::i;:::-;27706:158;27686:178;;27567:305;;;:::o;28494:100::-;28548:13;28581:5;28574:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28494:100;:::o;30007:171::-;30083:7;30103:23;30118:7;30103:14;:23::i;:::-;30146:15;:24;30162:7;30146:24;;;;;;;;;;;;;;;;;;;;;30139:31;;30007:171;;;:::o;42183:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29524:417::-;29605:13;29621:23;29636:7;29621:14;:23::i;:::-;29605:39;;29669:5;29663:11;;:2;:11;;;;29655:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29763:5;29747:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29772:37;29789:5;29796:12;:10;:12::i;:::-;29772:16;:37::i;:::-;29747:62;29725:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;29912:21;29921:2;29925:7;29912:8;:21::i;:::-;29594:347;29524:417;;:::o;42402:28::-;;;;;;;;;;;;;:::o;45812:95::-;45856:4;45880:19;:9;:17;:19::i;:::-;45873:26;;45812:95;:::o;42565:35::-;;;;:::o;30707:336::-;30902:41;30921:12;:10;:12::i;:::-;30935:7;30902:18;:41::i;:::-;30894:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:28;31017:4;31023:2;31027:7;31007:9;:28::i;:::-;30707:336;;;:::o;43586:81::-;7341:13;:11;:13::i;:::-;43651:8:::1;;;;;;;;;;;43650:9;43639:8;;:20;;;;;;;;;;;;;;;;;;43586:81::o:0;43767:118::-;7341:13;:11;:13::i;:::-;43825:10:::1;43817:28;;:60;43862:4;43846:30;;;43817:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43767:118::o:0;31114:185::-;31252:39;31269:4;31275:2;31279:7;31252:39;;;;;;;;;;;;:16;:39::i;:::-;31114:185;;;:::o;42367:28::-;;;;;;;;;;;;;:::o;42982:108::-;7341:13;:11;:13::i;:::-;43069::::1;43059:7;:23;;;;;;;;;;;;:::i;:::-;;42982:108:::0;:::o;42334:26::-;;;;;;;;;;;;;:::o;28205:222::-;28277:7;28297:13;28313:7;:16;28321:7;28313:16;;;;;;;;;;;;;;;;;;;;;28297:32;;28365:1;28348:19;;:5;:19;;;;28340:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;28414:5;28407:12;;;28205:222;;;:::o;42154:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27936:207::-;28008:7;28053:1;28036:19;;:5;:19;;;;28028:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28119:9;:16;28129:5;28119:16;;;;;;;;;;;;;;;;28112:23;;27936:207;;;:::o;8103:103::-;7341:13;:11;:13::i;:::-;8168:30:::1;8195:1;8168:18;:30::i;:::-;8103:103::o:0;42508:50::-;;;;;;;;;;;;;;;;;:::o;7455:87::-;7501:7;7528:6;;;;;;;;;;;7521:13;;7455:87;:::o;43493:85::-;7341:13;:11;:13::i;:::-;43563:7:::1;43554:6;:16;;;;43493:85:::0;:::o;28663:104::-;28719:13;28752:7;28745:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28663:104;:::o;30250:155::-;30345:52;30364:12;:10;:12::i;:::-;30378:8;30388;30345:18;:52::i;:::-;30250:155;;:::o;42437:27::-;;;;;;;;;;;;;:::o;43208:69::-;7341:13;:11;:13::i;:::-;43265:4:::1;43254:8;;:15;;;;;;;;;;;;;;;;;;43208:69::o:0;43893:710::-;43346:9;43332:23;;:10;:23;;;43324:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;44005:7:::1;;;;;;;;;;;43997:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;44091:6;;;;;;;;;;;44090:7;44082:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;44163:1;44153:7;:11;44145:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;44205:12;44220:19;:9;:17;:19::i;:::-;44205:34;;44293:9;;44282:7;44272;:17;;;;:::i;:::-;:30;;44250:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;44416:9;44405:7;44396:6;;:16;;;;:::i;:::-;:29;;44374:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;44525:6;44520:76;44541:7;44537:1;:11;44520:76;;;44570:14;:12;:14::i;:::-;44550:3;;;;;:::i;:::-;;;;44520:76;;;;43986:617;43893:710:::0;:::o;31370:323::-;31544:41;31563:12;:10;:12::i;:::-;31577:7;31544:18;:41::i;:::-;31536:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;31647:38;31661:4;31667:2;31671:7;31680:4;31647:13;:38::i;:::-;31370:323;;;;:::o;43410:75::-;7341:13;:11;:13::i;:::-;43471:6:::1;;;;;;;;;;;43470:7;43461:6;;:16;;;;;;;;;;;;;;;;;;43410:75::o:0;42290:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44790:727::-;44908:13;44961:16;44969:7;44961;:16::i;:::-;44939:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;45079:5;45067:17;;:8;;;;;;;;;;;:17;;;45063:71;;;45108:14;45101:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45063:71;45144:28;45175:10;:8;:10::i;:::-;45144:41;;45253:1;45228:14;45222:28;:32;:287;;;;;;;;;;;;;;;;;45346:14;45387:18;:7;:16;:18::i;:::-;45432:13;45303:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45222:287;45202:307;;;44790:727;;;;:::o;42116:31::-;;;;:::o;45523:151::-;7341:13;:11;:13::i;:::-;45649:17:::1;45633:13;:33;;;;;;;;;;;;:::i;:::-;;45523:151:::0;:::o;43673:82::-;7341:13;:11;:13::i;:::-;43740:7:::1;;;;;;;;;;;43739:8;43729:7;;:18;;;;;;;;;;;;;;;;;;43673:82::o:0;46037:443::-;46162:4;46247:27;46291:20;;;;;;;;;;;46247:65;;46368:8;46327:49;;46335:13;:21;;;46357:5;46335:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46327:49;;;46323:93;;;46400:4;46393:11;;;;;46323:93;46433:39;46456:5;46463:8;46433:22;:39::i;:::-;46426:46;;;46037:443;;;;;:::o;42049:19::-;;;;:::o;45680:126::-;7341:13;:11;:13::i;:::-;45783:15:::1;45766:14;:32;;;;;;;;;;;;:::i;:::-;;45680:126:::0;:::o;8361:201::-;7341:13;:11;:13::i;:::-;8470:1:::1;8450:22;;:8;:22;;;;8442:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8526:28;8545:8;8526:18;:28::i;:::-;8361:201:::0;:::o;20309:157::-;20394:4;20433:25;20418:40;;;:11;:40;;;;20411:47;;20309:157;;;:::o;37982:135::-;38064:16;38072:7;38064;:16::i;:::-;38056:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;37982:135;:::o;6006:98::-;6059:7;6086:10;6079:17;;6006:98;:::o;37261:174::-;37363:2;37336:15;:24;37352:7;37336:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37419:7;37415:2;37381:46;;37390:23;37405:7;37390:14;:23::i;:::-;37381:46;;;;;;;;;;;;37261:174;;:::o;41299:114::-;41364:7;41391;:14;;;41384:21;;41299:114;;;:::o;33494:264::-;33587:4;33604:13;33620:23;33635:7;33620:14;:23::i;:::-;33604:39;;33673:5;33662:16;;:7;:16;;;:52;;;;33682:32;33699:5;33706:7;33682:16;:32::i;:::-;33662:52;:87;;;;33742:7;33718:31;;:20;33730:7;33718:11;:20::i;:::-;:31;;;33662:87;33654:96;;;33494:264;;;;:::o;36517:625::-;36676:4;36649:31;;:23;36664:7;36649:14;:23::i;:::-;:31;;;36641:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;36755:1;36741:16;;:2;:16;;;;36733:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36811:39;36832:4;36838:2;36842:7;36811:20;:39::i;:::-;36915:29;36932:1;36936:7;36915:8;:29::i;:::-;36976:1;36957:9;:15;36967:4;36957:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;37005:1;36988:9;:13;36998:2;36988:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;37036:2;37017:7;:16;37025:7;37017:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;37075:7;37071:2;37056:27;;37065:4;37056:27;;;;;;;;;;;;37096:38;37116:4;37122:2;37126:7;37096:19;:38::i;:::-;36517:625;;;:::o;7620:132::-;7695:12;:10;:12::i;:::-;7684:23;;:7;:5;:7::i;:::-;:23;;;7676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7620:132::o;8722:191::-;8796:16;8815:6;;;;;;;;;;;8796:25;;8841:8;8832:6;;:17;;;;;;;;;;;;;;;;;;8896:8;8865:40;;8886:8;8865:40;;;;;;;;;;;;8785:128;8722:191;:::o;37578:315::-;37733:8;37724:17;;:5;:17;;;;37716:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;37820:8;37782:18;:25;37801:5;37782:25;;;;;;;;;;;;;;;:35;37808:8;37782:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37866:8;37844:41;;37859:5;37844:41;;;37876:8;37844:41;;;;;;:::i;:::-;;;;;;;;37578:315;;;:::o;44609:175::-;1883:1;2481:7;;:19;;2473:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1883:1;2614:7;:18;;;;44666:21:::1;:9;:19;:21::i;:::-;44698:15;44716:19;:9;:17;:19::i;:::-;44698:37;;44746:30;44756:10;44768:7;44746:9;:30::i;:::-;44655:129;1839:1:::0;2793:7;:22;;;;44609:175::o;32574:313::-;32730:28;32740:4;32746:2;32750:7;32730:9;:28::i;:::-;32777:47;32800:4;32806:2;32810:7;32819:4;32777:22;:47::i;:::-;32769:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;32574:313;;;;:::o;33200:127::-;33265:4;33317:1;33289:30;;:7;:16;33297:7;33289:16;;;;;;;;;;;;;;;;;;;;;:30;;;;33282:37;;33200:127;;;:::o;43102:100::-;43154:13;43187:7;43180:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43102:100;:::o;3260:723::-;3316:13;3546:1;3537:5;:10;3533:53;;;3564:10;;;;;;;;;;;;;;;;;;;;;3533:53;3596:12;3611:5;3596:20;;3627:14;3652:78;3667:1;3659:4;:9;3652:78;;3685:8;;;;;:::i;:::-;;;;3716:2;3708:10;;;;;:::i;:::-;;;3652:78;;;3740:19;3772:6;3762:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3740:39;;3790:154;3806:1;3797:5;:10;3790:154;;3834:1;3824:11;;;;;:::i;:::-;;;3901:2;3893:5;:10;;;;:::i;:::-;3880:2;:24;;;;:::i;:::-;3867:39;;3850:6;3857;3850:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3930:2;3921:11;;;;;:::i;:::-;;;3790:154;;;3968:6;3954:21;;;;;3260:723;;;;:::o;30476:164::-;30573:4;30597:18;:25;30616:5;30597:25;;;;;;;;;;;;;;;:35;30623:8;30597:35;;;;;;;;;;;;;;;;;;;;;;;;;30590:42;;30476:164;;;;:::o;40106:126::-;;;;:::o;40617:125::-;;;;:::o;41421:127::-;41528:1;41510:7;:14;;;:19;;;;;;;;;;;41421:127;:::o;34100:110::-;34176:26;34186:2;34190:7;34176:26;;;;;;;;;;;;:9;:26::i;:::-;34100:110;;:::o;38681:853::-;38835:4;38856:15;:2;:13;;;:15::i;:::-;38852:675;;;38908:2;38892:36;;;38929:12;:10;:12::i;:::-;38943:4;38949:7;38958:4;38892:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38888:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39150:1;39133:6;:13;:18;39129:328;;;39176:60;;;;;;;;;;:::i;:::-;;;;;;;;39129:328;39407:6;39401:13;39392:6;39388:2;39384:15;39377:38;38888:584;39024:41;;;39014:51;;;:6;:51;;;;39007:58;;;;;38852:675;39511:4;39504:11;;38681:853;;;;;;;:::o;34437:319::-;34566:18;34572:2;34576:7;34566:5;:18::i;:::-;34617:53;34648:1;34652:2;34656:7;34665:4;34617:22;:53::i;:::-;34595:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;34437:319;;;:::o;10153:326::-;10213:4;10470:1;10448:7;:19;;;:23;10441:30;;10153:326;;;:::o;35092:439::-;35186:1;35172:16;;:2;:16;;;;35164:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;35245:16;35253:7;35245;:16::i;:::-;35244:17;35236:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;35307:45;35336:1;35340:2;35344:7;35307:20;:45::i;:::-;35382:1;35365:9;:13;35375:2;35365:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35413:2;35394:7;:16;35402:7;35394:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35458:7;35454:2;35433:33;;35450:1;35433:33;;;;;;;;;;;;35479:44;35507:1;35511:2;35515:7;35479:19;:44::i;:::-;35092:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:77::-;12158:7;12187:5;12176:16;;12121:77;;;:::o;12204:118::-;12291:24;12309:5;12291:24;:::i;:::-;12286:3;12279:37;12204:118;;:::o;12328:222::-;12421:4;12459:2;12448:9;12444:18;12436:26;;12472:71;12540:1;12529:9;12525:17;12516:6;12472:71;:::i;:::-;12328:222;;;;:::o;12556:180::-;12604:77;12601:1;12594:88;12701:4;12698:1;12691:15;12725:4;12722:1;12715:15;12742:320;12786:6;12823:1;12817:4;12813:12;12803:22;;12870:1;12864:4;12860:12;12891:18;12881:81;;12947:4;12939:6;12935:17;12925:27;;12881:81;13009:2;13001:6;12998:14;12978:18;12975:38;12972:84;;;13028:18;;:::i;:::-;12972:84;12793:269;12742:320;;;:::o;13068:220::-;13208:34;13204:1;13196:6;13192:14;13185:58;13277:3;13272:2;13264:6;13260:15;13253:28;13068:220;:::o;13294:366::-;13436:3;13457:67;13521:2;13516:3;13457:67;:::i;:::-;13450:74;;13533:93;13622:3;13533:93;:::i;:::-;13651:2;13646:3;13642:12;13635:19;;13294:366;;;:::o;13666:419::-;13832:4;13870:2;13859:9;13855:18;13847:26;;13919:9;13913:4;13909:20;13905:1;13894:9;13890:17;13883:47;13947:131;14073:4;13947:131;:::i;:::-;13939:139;;13666:419;;;:::o;14091:249::-;14231:34;14227:1;14219:6;14215:14;14208:58;14300:32;14295:2;14287:6;14283:15;14276:57;14091:249;:::o;14346:366::-;14488:3;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14585:93;14674:3;14585:93;:::i;:::-;14703:2;14698:3;14694:12;14687:19;;14346:366;;;:::o;14718:419::-;14884:4;14922:2;14911:9;14907:18;14899:26;;14971:9;14965:4;14961:20;14957:1;14946:9;14942:17;14935:47;14999:131;15125:4;14999:131;:::i;:::-;14991:139;;14718:419;;;:::o;15143:233::-;15283:34;15279:1;15271:6;15267:14;15260:58;15352:16;15347:2;15339:6;15335:15;15328:41;15143:233;:::o;15382:366::-;15524:3;15545:67;15609:2;15604:3;15545:67;:::i;:::-;15538:74;;15621:93;15710:3;15621:93;:::i;:::-;15739:2;15734:3;15730:12;15723:19;;15382:366;;;:::o;15754:419::-;15920:4;15958:2;15947:9;15943:18;15935:26;;16007:9;16001:4;15997:20;15993:1;15982:9;15978:17;15971:47;16035:131;16161:4;16035:131;:::i;:::-;16027:139;;15754:419;;;:::o;16179:174::-;16319:26;16315:1;16307:6;16303:14;16296:50;16179:174;:::o;16359:366::-;16501:3;16522:67;16586:2;16581:3;16522:67;:::i;:::-;16515:74;;16598:93;16687:3;16598:93;:::i;:::-;16716:2;16711:3;16707:12;16700:19;;16359:366;;;:::o;16731:419::-;16897:4;16935:2;16924:9;16920:18;16912:26;;16984:9;16978:4;16974:20;16970:1;16959:9;16955:17;16948:47;17012:131;17138:4;17012:131;:::i;:::-;17004:139;;16731:419;;;:::o;17156:228::-;17296:34;17292:1;17284:6;17280:14;17273:58;17365:11;17360:2;17352:6;17348:15;17341:36;17156:228;:::o;17390:366::-;17532:3;17553:67;17617:2;17612:3;17553:67;:::i;:::-;17546:74;;17629:93;17718:3;17629:93;:::i;:::-;17747:2;17742:3;17738:12;17731:19;;17390:366;;;:::o;17762:419::-;17928:4;17966:2;17955:9;17951:18;17943:26;;18015:9;18009:4;18005:20;18001:1;17990:9;17986:17;17979:47;18043:131;18169:4;18043:131;:::i;:::-;18035:139;;17762:419;;;:::o;18187:168::-;18327:20;18323:1;18315:6;18311:14;18304:44;18187:168;:::o;18361:366::-;18503:3;18524:67;18588:2;18583:3;18524:67;:::i;:::-;18517:74;;18600:93;18689:3;18600:93;:::i;:::-;18718:2;18713:3;18709:12;18702:19;;18361:366;;;:::o;18733:419::-;18899:4;18937:2;18926:9;18922:18;18914:26;;18986:9;18980:4;18976:20;18972:1;18961:9;18957:17;18950:47;19014:131;19140:4;19014:131;:::i;:::-;19006:139;;18733:419;;;:::o;19158:181::-;19298:33;19294:1;19286:6;19282:14;19275:57;19158:181;:::o;19345:366::-;19487:3;19508:67;19572:2;19567:3;19508:67;:::i;:::-;19501:74;;19584:93;19673:3;19584:93;:::i;:::-;19702:2;19697:3;19693:12;19686:19;;19345:366;;;:::o;19717:419::-;19883:4;19921:2;19910:9;19906:18;19898:26;;19970:9;19964:4;19960:20;19956:1;19945:9;19941:17;19934:47;19998:131;20124:4;19998:131;:::i;:::-;19990:139;;19717:419;;;:::o;20142:182::-;20282:34;20278:1;20270:6;20266:14;20259:58;20142:182;:::o;20330:366::-;20472:3;20493:67;20557:2;20552:3;20493:67;:::i;:::-;20486:74;;20569:93;20658:3;20569:93;:::i;:::-;20687:2;20682:3;20678:12;20671:19;;20330:366;;;:::o;20702:419::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:175::-;21267:27;21263:1;21255:6;21251:14;21244:51;21127:175;:::o;21308:366::-;21450:3;21471:67;21535:2;21530:3;21471:67;:::i;:::-;21464:74;;21547:93;21636:3;21547:93;:::i;:::-;21665:2;21660:3;21656:12;21649:19;;21308:366;;;:::o;21680:419::-;21846:4;21884:2;21873:9;21869:18;21861:26;;21933:9;21927:4;21923:20;21919:1;21908:9;21904:17;21897:47;21961:131;22087:4;21961:131;:::i;:::-;21953:139;;21680:419;;;:::o;22105:180::-;22153:77;22150:1;22143:88;22250:4;22247:1;22240:15;22274:4;22271:1;22264:15;22291:305;22331:3;22350:20;22368:1;22350:20;:::i;:::-;22345:25;;22384:20;22402:1;22384:20;:::i;:::-;22379:25;;22538:1;22470:66;22466:74;22463:1;22460:81;22457:107;;;22544:18;;:::i;:::-;22457:107;22588:1;22585;22581:9;22574:16;;22291:305;;;;:::o;22602:220::-;22742:34;22738:1;22730:6;22726:14;22719:58;22811:3;22806:2;22798:6;22794:15;22787:28;22602:220;:::o;22828:366::-;22970:3;22991:67;23055:2;23050:3;22991:67;:::i;:::-;22984:74;;23067:93;23156:3;23067:93;:::i;:::-;23185:2;23180:3;23176:12;23169:19;;22828:366;;;:::o;23200:419::-;23366:4;23404:2;23393:9;23389:18;23381:26;;23453:9;23447:4;23443:20;23439:1;23428:9;23424:17;23417:47;23481:131;23607:4;23481:131;:::i;:::-;23473:139;;23200:419;;;:::o;23625:348::-;23665:7;23688:20;23706:1;23688:20;:::i;:::-;23683:25;;23722:20;23740:1;23722:20;:::i;:::-;23717:25;;23910:1;23842:66;23838:74;23835:1;23832:81;23827:1;23820:9;23813:17;23809:105;23806:131;;;23917:18;;:::i;:::-;23806:131;23965:1;23962;23958:9;23947:20;;23625:348;;;;:::o;23979:223::-;24119:34;24115:1;24107:6;24103:14;24096:58;24188:6;24183:2;24175:6;24171:15;24164:31;23979:223;:::o;24208:366::-;24350:3;24371:67;24435:2;24430:3;24371:67;:::i;:::-;24364:74;;24447:93;24536:3;24447:93;:::i;:::-;24565:2;24560:3;24556:12;24549:19;;24208:366;;;:::o;24580:419::-;24746:4;24784:2;24773:9;24769:18;24761:26;;24833:9;24827:4;24823:20;24819:1;24808:9;24804:17;24797:47;24861:131;24987:4;24861:131;:::i;:::-;24853:139;;24580:419;;;:::o;25005:233::-;25044:3;25067:24;25085:5;25067:24;:::i;:::-;25058:33;;25113:66;25106:5;25103:77;25100:103;;;25183:18;;:::i;:::-;25100:103;25230:1;25223:5;25219:13;25212:20;;25005:233;;;:::o;25244:234::-;25384:34;25380:1;25372:6;25368:14;25361:58;25453:17;25448:2;25440:6;25436:15;25429:42;25244:234;:::o;25484:366::-;25626:3;25647:67;25711:2;25706:3;25647:67;:::i;:::-;25640:74;;25723:93;25812:3;25723:93;:::i;:::-;25841:2;25836:3;25832:12;25825:19;;25484:366;;;:::o;25856:419::-;26022:4;26060:2;26049:9;26045:18;26037:26;;26109:9;26103:4;26099:20;26095:1;26084:9;26080:17;26073:47;26137:131;26263:4;26137:131;:::i;:::-;26129:139;;25856:419;;;:::o;26281:148::-;26383:11;26420:3;26405:18;;26281:148;;;;:::o;26435:377::-;26541:3;26569:39;26602:5;26569:39;:::i;:::-;26624:89;26706:6;26701:3;26624:89;:::i;:::-;26617:96;;26722:52;26767:6;26762:3;26755:4;26748:5;26744:16;26722:52;:::i;:::-;26799:6;26794:3;26790:16;26783:23;;26545:267;26435:377;;;;:::o;26818:141::-;26867:4;26890:3;26882:11;;26913:3;26910:1;26903:14;26947:4;26944:1;26934:18;26926:26;;26818:141;;;:::o;26989:845::-;27092:3;27129:5;27123:12;27158:36;27184:9;27158:36;:::i;:::-;27210:89;27292:6;27287:3;27210:89;:::i;:::-;27203:96;;27330:1;27319:9;27315:17;27346:1;27341:137;;;;27492:1;27487:341;;;;27308:520;;27341:137;27425:4;27421:9;27410;27406:25;27401:3;27394:38;27461:6;27456:3;27452:16;27445:23;;27341:137;;27487:341;27554:38;27586:5;27554:38;:::i;:::-;27614:1;27628:154;27642:6;27639:1;27636:13;27628:154;;;27716:7;27710:14;27706:1;27701:3;27697:11;27690:35;27766:1;27757:7;27753:15;27742:26;;27664:4;27661:1;27657:12;27652:17;;27628:154;;;27811:6;27806:3;27802:16;27795:23;;27494:334;;27308:520;;27096:738;;26989:845;;;;:::o;27840:589::-;28065:3;28087:95;28178:3;28169:6;28087:95;:::i;:::-;28080:102;;28199:95;28290:3;28281:6;28199:95;:::i;:::-;28192:102;;28311:92;28399:3;28390:6;28311:92;:::i;:::-;28304:99;;28420:3;28413:10;;27840:589;;;;;;:::o;28435:125::-;28501:7;28530:24;28548:5;28530:24;:::i;:::-;28519:35;;28435:125;;;:::o;28566:180::-;28668:53;28715:5;28668:53;:::i;:::-;28661:5;28658:64;28648:92;;28736:1;28733;28726:12;28648:92;28566:180;:::o;28752:201::-;28838:5;28869:6;28863:13;28854:22;;28885:62;28941:5;28885:62;:::i;:::-;28752:201;;;;:::o;28959:409::-;29058:6;29107:2;29095:9;29086:7;29082:23;29078:32;29075:119;;;29113:79;;:::i;:::-;29075:119;29233:1;29258:93;29343:7;29334:6;29323:9;29319:22;29258:93;:::i;:::-;29248:103;;29204:157;28959:409;;;;:::o;29374:225::-;29514:34;29510:1;29502:6;29498:14;29491:58;29583:8;29578:2;29570:6;29566:15;29559:33;29374:225;:::o;29605:366::-;29747:3;29768:67;29832:2;29827:3;29768:67;:::i;:::-;29761:74;;29844:93;29933:3;29844:93;:::i;:::-;29962:2;29957:3;29953:12;29946:19;;29605:366;;;:::o;29977:419::-;30143:4;30181:2;30170:9;30166:18;30158:26;;30230:9;30224:4;30220:20;30216:1;30205:9;30201:17;30194:47;30258:131;30384:4;30258:131;:::i;:::-;30250:139;;29977:419;;;:::o;30402:224::-;30542:34;30538:1;30530:6;30526:14;30519:58;30611:7;30606:2;30598:6;30594:15;30587:32;30402:224;:::o;30632:366::-;30774:3;30795:67;30859:2;30854:3;30795:67;:::i;:::-;30788:74;;30871:93;30960:3;30871:93;:::i;:::-;30989:2;30984:3;30980:12;30973:19;;30632:366;;;:::o;31004:419::-;31170:4;31208:2;31197:9;31193:18;31185:26;;31257:9;31251:4;31247:20;31243:1;31232:9;31228:17;31221:47;31285:131;31411:4;31285:131;:::i;:::-;31277:139;;31004:419;;;:::o;31429:223::-;31569:34;31565:1;31557:6;31553:14;31546:58;31638:6;31633:2;31625:6;31621:15;31614:31;31429:223;:::o;31658:366::-;31800:3;31821:67;31885:2;31880:3;31821:67;:::i;:::-;31814:74;;31897:93;31986:3;31897:93;:::i;:::-;32015:2;32010:3;32006:12;31999:19;;31658:366;;;:::o;32030:419::-;32196:4;32234:2;32223:9;32219:18;32211:26;;32283:9;32277:4;32273:20;32269:1;32258:9;32254:17;32247:47;32311:131;32437:4;32311:131;:::i;:::-;32303:139;;32030:419;;;:::o;32455:191::-;32495:4;32515:20;32533:1;32515:20;:::i;:::-;32510:25;;32549:20;32567:1;32549:20;:::i;:::-;32544:25;;32588:1;32585;32582:8;32579:34;;;32593:18;;:::i;:::-;32579:34;32638:1;32635;32631:9;32623:17;;32455:191;;;;:::o;32652:182::-;32792:34;32788:1;32780:6;32776:14;32769:58;32652:182;:::o;32840:366::-;32982:3;33003:67;33067:2;33062:3;33003:67;:::i;:::-;32996:74;;33079:93;33168:3;33079:93;:::i;:::-;33197:2;33192:3;33188:12;33181:19;;32840:366;;;:::o;33212:419::-;33378:4;33416:2;33405:9;33401:18;33393:26;;33465:9;33459:4;33455:20;33451:1;33440:9;33436:17;33429:47;33493:131;33619:4;33493:131;:::i;:::-;33485:139;;33212:419;;;:::o;33637:175::-;33777:27;33773:1;33765:6;33761:14;33754:51;33637:175;:::o;33818:366::-;33960:3;33981:67;34045:2;34040:3;33981:67;:::i;:::-;33974:74;;34057:93;34146:3;34057:93;:::i;:::-;34175:2;34170:3;34166:12;34159:19;;33818:366;;;:::o;34190:419::-;34356:4;34394:2;34383:9;34379:18;34371:26;;34443:9;34437:4;34433:20;34429:1;34418:9;34414:17;34407:47;34471:131;34597:4;34471:131;:::i;:::-;34463:139;;34190:419;;;:::o;34615:181::-;34755:33;34751:1;34743:6;34739:14;34732:57;34615:181;:::o;34802:366::-;34944:3;34965:67;35029:2;35024:3;34965:67;:::i;:::-;34958:74;;35041:93;35130:3;35041:93;:::i;:::-;35159:2;35154:3;35150:12;35143:19;;34802:366;;;:::o;35174:419::-;35340:4;35378:2;35367:9;35363:18;35355:26;;35427:9;35421:4;35417:20;35413:1;35402:9;35398:17;35391:47;35455:131;35581:4;35455:131;:::i;:::-;35447:139;;35174:419;;;:::o;35599:237::-;35739:34;35735:1;35727:6;35723:14;35716:58;35808:20;35803:2;35795:6;35791:15;35784:45;35599:237;:::o;35842:366::-;35984:3;36005:67;36069:2;36064:3;36005:67;:::i;:::-;35998:74;;36081:93;36170:3;36081:93;:::i;:::-;36199:2;36194:3;36190:12;36183:19;;35842:366;;;:::o;36214:419::-;36380:4;36418:2;36407:9;36403:18;36395:26;;36467:9;36461:4;36457:20;36453:1;36442:9;36438:17;36431:47;36495:131;36621:4;36495:131;:::i;:::-;36487:139;;36214:419;;;:::o;36639:180::-;36687:77;36684:1;36677:88;36784:4;36781:1;36774:15;36808:4;36805:1;36798:15;36825:185;36865:1;36882:20;36900:1;36882:20;:::i;:::-;36877:25;;36916:20;36934:1;36916:20;:::i;:::-;36911:25;;36955:1;36945:35;;36960:18;;:::i;:::-;36945:35;37002:1;36999;36995:9;36990:14;;36825:185;;;;:::o;37016:176::-;37048:1;37065:20;37083:1;37065:20;:::i;:::-;37060:25;;37099:20;37117:1;37099:20;:::i;:::-;37094:25;;37138:1;37128:35;;37143:18;;:::i;:::-;37128:35;37184:1;37181;37177:9;37172:14;;37016:176;;;;:::o;37198:180::-;37246:77;37243:1;37236:88;37343:4;37340:1;37333:15;37367:4;37364:1;37357:15;37384:98;37435:6;37469:5;37463:12;37453:22;;37384:98;;;:::o;37488:168::-;37571:11;37605:6;37600:3;37593:19;37645:4;37640:3;37636:14;37621:29;;37488:168;;;;:::o;37662:360::-;37748:3;37776:38;37808:5;37776:38;:::i;:::-;37830:70;37893:6;37888:3;37830:70;:::i;:::-;37823:77;;37909:52;37954:6;37949:3;37942:4;37935:5;37931:16;37909:52;:::i;:::-;37986:29;38008:6;37986:29;:::i;:::-;37981:3;37977:39;37970:46;;37752:270;37662:360;;;;:::o;38028:640::-;38223:4;38261:3;38250:9;38246:19;38238:27;;38275:71;38343:1;38332:9;38328:17;38319:6;38275:71;:::i;:::-;38356:72;38424:2;38413:9;38409:18;38400:6;38356:72;:::i;:::-;38438;38506:2;38495:9;38491:18;38482:6;38438:72;:::i;:::-;38557:9;38551:4;38547:20;38542:2;38531:9;38527:18;38520:48;38585:76;38656:4;38647:6;38585:76;:::i;:::-;38577:84;;38028:640;;;;;;;:::o;38674:141::-;38730:5;38761:6;38755:13;38746:22;;38777:32;38803:5;38777:32;:::i;:::-;38674:141;;;;:::o;38821:349::-;38890:6;38939:2;38927:9;38918:7;38914:23;38910:32;38907:119;;;38945:79;;:::i;:::-;38907:119;39065:1;39090:63;39145:7;39136:6;39125:9;39121:22;39090:63;:::i;:::-;39080:73;;39036:127;38821:349;;;;:::o;39176:182::-;39316:34;39312:1;39304:6;39300:14;39293:58;39176:182;:::o;39364:366::-;39506:3;39527:67;39591:2;39586:3;39527:67;:::i;:::-;39520:74;;39603:93;39692:3;39603:93;:::i;:::-;39721:2;39716:3;39712:12;39705:19;;39364:366;;;:::o;39736:419::-;39902:4;39940:2;39929:9;39925:18;39917:26;;39989:9;39983:4;39979:20;39975:1;39964:9;39960:17;39953:47;40017:131;40143:4;40017:131;:::i;:::-;40009:139;;39736:419;;;:::o;40161:178::-;40301:30;40297:1;40289:6;40285:14;40278:54;40161:178;:::o;40345:366::-;40487:3;40508:67;40572:2;40567:3;40508:67;:::i;:::-;40501:74;;40584:93;40673:3;40584:93;:::i;:::-;40702:2;40697:3;40693:12;40686:19;;40345:366;;;:::o;40717:419::-;40883:4;40921:2;40910:9;40906:18;40898:26;;40970:9;40964:4;40960:20;40956:1;40945:9;40941:17;40934:47;40998:131;41124:4;40998:131;:::i;:::-;40990:139;;40717:419;;;:::o

Swarm Source

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