ETH Price: $2,524.36 (-1.91%)

Token

WOM Chosen One Land (WOMC1L)
 

Overview

Max Total Supply

79 WOMC1L

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
27 WOMC1L
0x0a0c9517af8d3899de982c41a6c53e201acfaaa1
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:
ClaimWOMC1Land

Compiler Version
v0.7.4+commit.3f05b770

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-13
*/

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/*
 ___       __            ______________   _______________   ______  ___    _____       _________                                  
__ |     / /_______________  /_____  /   __  __ \__  __/   ___   |/  /______  /______ __  ____/___________ ___________           
__ | /| / /_  __ \_  ___/_  /_  __  /    _  / / /_  /_     __  /|_/ /_  _ \  __/  __ `/  / __ _  _ \_  __ `__ \_  ___/           
__ |/ |/ / / /_/ /  /   _  / / /_/ /     / /_/ /_  __/     _  /  / / /  __/ /_ / /_/ // /_/ / /  __/  / / / / /(__  )            
____/|__/  \____//_/    /_/  \__,_/      \____/ /_/        /_/  /_/  \___/\__/ \__,_/ \____/  \___//_/ /_/ /_//____/             
                                                                                                                                 
______              _________                  __________                  _______                         ______        ______  
___  /______  __    __  ____/_________________ __  /___(_)__   ______      ___    |____________________    ___  / ______ ___  /_ 
__  __ \_  / / /    _  /    __  ___/  _ \  __ `/  __/_  /__ | / /  _ \     __  /| |__  __ \  _ \_  ___/    __  /  _  __ `/_  __ \
_  /_/ /  /_/ /     / /___  _  /   /  __/ /_/ // /_ _  / __ |/ //  __/     _  ___ |_  /_/ /  __/(__  )     _  /___/ /_/ /_  /_/ /
/_.___/_\__, /      \____/  /_/    \___/\__,_/ \__/ /_/  _____/ \___/      /_/  |_|  .___/\___//____/      /_____/\__,_/ /_.___/ 
       /____/    
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <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/IERC721Enumerable.sol



pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor ()  {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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



pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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



pragma solidity >=0.6.0 <0.8.0;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
       return string(abi.encodePacked(base, tokenId.toString(), ".json"));
    }


    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }
   

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

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

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

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(tokenId);

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

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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



pragma solidity >=0.6.0 <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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 ___       __            ______________   _______________   ______  ___    _____       _________                                  
__ |     / /_______________  /_____  /   __  __ \__  __/   ___   |/  /______  /______ __  ____/___________ ___________           
__ | /| / /_  __ \_  ___/_  /_  __  /    _  / / /_  /_     __  /|_/ /_  _ \  __/  __ `/  / __ _  _ \_  __ `__ \_  ___/           
__ |/ |/ / / /_/ /  /   _  / / /_/ /     / /_/ /_  __/     _  /  / / /  __/ /_ / /_/ // /_/ / /  __/  / / / / /(__  )            
____/|__/  \____//_/    /_/  \__,_/      \____/ /_/        /_/  /_/  \___/\__/ \__,_/ \____/  \___//_/ /_/ /_//____/             
                                                                                                                                 
______              _________                  __________                  _______                         ______        ______  
___  /______  __    __  ____/_________________ __  /___(_)__   ______      ___    |____________________    ___  / ______ ___  /_ 
__  __ \_  / / /    _  /    __  ___/  _ \  __ `/  __/_  /__ | / /  _ \     __  /| |__  __ \  _ \_  ___/    __  /  _  __ `/_  __ \
_  /_/ /  /_/ /     / /___  _  /   /  __/ /_/ // /_ _  / __ |/ //  __/     _  ___ |_  /_/ /  __/(__  )     _  /___/ /_/ /_  /_/ /
/_.___/_\__, /      \____/  /_/    \___/\__,_/ \__/ /_/  _____/ \___/      /_/  |_|  .___/\___//____/      /_____/\__,_/ /_.___/ 
       /____/    
 */

pragma solidity ^0.7.0;

contract ClaimWOMC1Land is ERC721, Ownable {
    using SafeMath for uint256;

  
uint256 public MAX_COLLECTION;

    IERC721 public METAGEMS;
    
    mapping(uint256=>bool) public METAGEMS_USED;

    constructor(IERC721 metagemsGenesis) ERC721("WOM Chosen One Land", "WOMC1L")  {
        MAX_COLLECTION = 777;
        METAGEMS = metagemsGenesis;
        
     
    }
    
  function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    
    }

       function withdraw() public payable onlyOwner {
    
    uint256 socialBalance = address(this).balance * 20 / 100;  
    uint256 bankBalance = address(this).balance * 30 / 100;  
    
           (bool socialNexus, ) = payable(0x7cb0699dB6ff4BccC9BAd16D5156fB6EC52a9212).call{value: socialBalance}("");
    require(socialNexus);

     (bool Artiste1L, ) = payable(0xa7EdeC871A0FFd6B59a3934A7FDe2246F95D520C).call{value: bankBalance * 25 / 1000}("");
    require(Artiste1L);
    (bool Artiste2M, ) = payable(0xf6B861f72519b3b886bfb77B69102C6B8BF407d1).call{value: bankBalance * 25 / 1000}("");
    require(Artiste2M);
    (bool Artiste3A, ) = payable(0xd0F97bbdA331e59BDFF98BC52Aa450D6c47A2B72).call{value: bankBalance * 25 / 1000}("");
    require(Artiste3A);
    (bool Artiste4J, ) = payable(0x1Aa530bB0596f8Eee9Ebe1EFfcC6F27E1C34615D).call{value: bankBalance * 25 / 1000}("");
    require(Artiste4J);
    (bool Artiste5Y, ) = payable(0xabcDF05C0Aef28CeD80b3d6CD107E89647A02954).call{value: bankBalance * 25 / 1000}("");
    require(Artiste5Y);
      (bool Artiste6Al, ) = payable(0xdf64D15e99df3d6f705511EBa0efc210C6F961b7).call{value: bankBalance * 25 / 1000}("");
    require(Artiste6Al);
    (bool Tech1M, ) = payable(0x1203047241969b34fc6fafd67bE790223D620Fe0).call{value: bankBalance * 25 / 1000}("");
    require(Tech1M);
    (bool Tech2L, ) = payable(0x43a191060D906b44686DD747fF4b796D11ABC4a2).call{value: bankBalance * 25 / 1000}("");
    require(Tech2L);
    (bool Dev1, ) = payable(0x01656D41e041b50fc7c1eb270f7d891021937436).call{value: bankBalance * 25 / 1000}("");
    require(Dev1);


    //Metabank
    (bool metaversebank, ) = payable(0xf8EeD691DFB6Ae167B9284Aa7501BAe753E9263a).call{value: bankBalance}("");
    require(metaversebank);
 
    //founder
    uint256 founderBalance = address(this).balance;  
    (bool founder1, ) = payable(0x6e49117CceF4B1bDBd3cE5118910f3D17D953843).call{value: founderBalance * 4875 / 10000}("");
    require(founder1);
    (bool founder2, ) = payable(0xA58ee9834F6D52cF936e538908449E60D9e4A6Bf).call{value: founderBalance * 4875 / 10000}("");
    require(founder2);
    (bool collabYan, ) = payable(0x69abC6eAE2362aCEe665Db1c6790Cc0F90C5c397).call{value: founderBalance * 125 / 10000}("");
    require(collabYan);
    (bool collabVincent, ) = payable(0x5D2C8ad99F2714884B638e684D50792654bc1f25).call{value: founderBalance * 125 / 10000}("");
    require(collabVincent);
  

    }
 
  
 
  


    /* 
    @dev Minting in the claim period
    @dev Only METAGEMS holders can mint
    @param number of tokens to be minted
    @param array of tokenIds of METAGEMS that are going to be used
     */
    function ownerMetaGemsMint(uint numberOfTokens, uint[] memory tokenIds) external payable {
        require(totalSupply().add(numberOfTokens) <= MAX_COLLECTION, "Purchase would exceed max supply");
        require(msg.value == 0.00 ether * numberOfTokens, "Msg Value should be 0.00 ETH per NFT");
        require(numberOfTokens!=0 && tokenIds.length == numberOfTokens, "Send correct tokenId array");
        payable(owner()).transfer(msg.value);
        for(uint256 i=0; i<numberOfTokens; i++){
            require(METAGEMS_USED[tokenIds[i]] == false, "Token Id is already used");
            require(METAGEMS.ownerOf(tokenIds[i]) == msg.sender, "You are not Owner of the METAGEMS");
            METAGEMS_USED[tokenIds[i]] = true;
            uint mintIndex = totalSupply().add(1);
            if (totalSupply() < MAX_COLLECTION) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
 



    function checkMetaGemsUsed(uint256 tokenID) public view returns(bool){
        return METAGEMS_USED[tokenID];
    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC721","name":"metagemsGenesis","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":[],"name":"MAX_COLLECTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METAGEMS","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"METAGEMS_USED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"checkMetaGemsUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"ownerMetaGemsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040523480156200001157600080fd5b50604051620046f5380380620046f5833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280601381526020017f574f4d2043686f73656e204f6e65204c616e64000000000000000000000000008152506040518060400160405280600681526020017f574f4d43314c0000000000000000000000000000000000000000000000000000815250620000cc6301ffc9a760e01b6200024a60201b60201c565b8160069080519060200190620000e49291906200035b565b508060079080519060200190620000fd9291906200035b565b50620001166380ac58cd60e01b6200024a60201b60201c565b6200012e635b5e139f60e01b6200024a60201b60201c565b6200014663780e9d6360e01b6200024a60201b60201c565b505060006200015a6200035360201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350610309600b8190555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000411565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161415620002e7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003935760008555620003df565b82601f10620003ae57805160ff1916838001178555620003df565b82800160010185558215620003df579182015b82811115620003de578251825591602001919060010190620003c1565b5b509050620003ee9190620003f2565b5090565b5b808211156200040d576000816000905550600101620003f3565b5090565b6142d480620004216000396000f3fe60806040526004361061019c5760003560e01c806355f804b3116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610ad1578063e985e9c514610b85578063f2fde38b14610c0c578063fb1aa6ff14610c5d5761019c565b806395d89b41146108d2578063a22cb46514610962578063b88d4fde146109bf5761019c565b806370a08231116100c657806370a08231146107c4578063715018a6146108295780638c789076146108405780638da5cb5b146108915761019c565b806355f804b3146106075780636352211e146106cf5780636c0360eb146107345761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146104e257806342842e0e146104ec5780634f6ccce7146105675780634f9f7bbc146105b65761019c565b806318160ddd146103cd57806323b872dd146103f85780632f745c59146104735761019c565b806301ffc9a7146101a157806306fdde0314610211578063081812fc146102a1578063095ea7b3146103065780630c105eab14610361578063156e4b5a1461038c575b600080fd5b3480156101ad57600080fd5b506101f9600480360360208110156101c457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d1f565b60405180821515815260200191505060405180910390f35b34801561021d57600080fd5b50610226610d86565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026657808201518184015260208101905061024b565b50505050905090810190601f1680156102935780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ad57600080fd5b506102da600480360360208110156102c457600080fd5b8101908080359060200190929190505050610e28565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561031257600080fd5b5061035f6004803603604081101561032957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec3565b005b34801561036d57600080fd5b50610376611007565b6040518082815260200191505060405180910390f35b34801561039857600080fd5b506103a161100d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103d957600080fd5b506103e2611033565b6040518082815260200191505060405180910390f35b34801561040457600080fd5b506104716004803603606081101561041b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611044565b005b34801561047f57600080fd5b506104cc6004803603604081101561049657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110ba565b6040518082815260200191505060405180910390f35b6104ea611115565b005b3480156104f857600080fd5b506105656004803603606081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa2565b005b34801561057357600080fd5b506105a06004803603602081101561058a57600080fd5b8101908080359060200190929190505050611ac2565b6040518082815260200191505060405180910390f35b3480156105c257600080fd5b506105ef600480360360208110156105d957600080fd5b8101908080359060200190929190505050611ae5565b60405180821515815260200191505060405180910390f35b34801561061357600080fd5b506106cd6004803603602081101561062a57600080fd5b810190808035906020019064010000000081111561064757600080fd5b82018360208201111561065957600080fd5b8035906020019184600183028401116401000000008311171561067b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b0f565b005b3480156106db57600080fd5b50610708600480360360208110156106f257600080fd5b8101908080359060200190929190505050611bca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074057600080fd5b50610749611c01565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078957808201518184015260208101905061076e565b50505050905090810190601f1680156107b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107d057600080fd5b50610813600480360360208110156107e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca3565b6040518082815260200191505060405180910390f35b34801561083557600080fd5b5061083e611d78565b005b34801561084c57600080fd5b506108796004803603602081101561086357600080fd5b8101908080359060200190929190505050611ee8565b60405180821515815260200191505060405180910390f35b34801561089d57600080fd5b506108a6611f08565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108de57600080fd5b506108e7611f32565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092757808201518184015260208101905061090c565b50505050905090810190601f1680156109545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096e57600080fd5b506109bd6004803603604081101561098557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611fd4565b005b3480156109cb57600080fd5b50610acf600480360360808110156109e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610a4957600080fd5b820183602082011115610a5b57600080fd5b80359060200191846001830284011164010000000083111715610a7d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061218a565b005b348015610add57600080fd5b50610b0a60048036036020811015610af457600080fd5b8101908080359060200190929190505050612202565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b4a578082015181840152602081019050610b2f565b50505050905090810190601f168015610b775780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b9157600080fd5b50610bf460048036036040811015610ba857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124fb565b60405180821515815260200191505060405180910390f35b348015610c1857600080fd5b50610c5b60048036036020811015610c2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061258f565b005b610d1d60048036036040811015610c7357600080fd5b810190808035906020019092919080359060200190640100000000811115610c9a57600080fd5b820183602082011115610cac57600080fd5b80359060200191846020830284011164010000000083111715610cce57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612784565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b6000610e3382612bca565b610e88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614184602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ece82611bca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061422c6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f74612be7565b73ffffffffffffffffffffffffffffffffffffffff161480610fa35750610fa281610f9d612be7565b6124fb565b5b610ff8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140d76038913960400191505060405180910390fd5b6110028383612bef565b505050565b600b5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103f6002612ca8565b905090565b61105561104f612be7565b82612cbd565b6110aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061424d6031913960400191505060405180910390fd5b6110b5838383612db1565b505050565b600061110d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ff490919063ffffffff16565b905092915050565b61111d612be7565b73ffffffffffffffffffffffffffffffffffffffff1661113b611f08565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000606460144702816111d357fe5b04905060006064601e4702816111e557fe5b0490506000737cb0699db6ff4bccc9bad16d5156fb6ec52a921273ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d806000811461125c576040519150601f19603f3d011682016040523d82523d6000602084013e611261565b606091505b505090508061126f57600080fd5b600073a7edec871a0ffd6b59a3934a7fde2246f95d520c73ffffffffffffffffffffffffffffffffffffffff166103e860198502816112aa57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146112f1576040519150601f19603f3d011682016040523d82523d6000602084013e6112f6565b606091505b505090508061130457600080fd5b600073f6b861f72519b3b886bfb77b69102c6b8bf407d173ffffffffffffffffffffffffffffffffffffffff166103e8601986028161133f57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611386576040519150601f19603f3d011682016040523d82523d6000602084013e61138b565b606091505b505090508061139957600080fd5b600073d0f97bbda331e59bdff98bc52aa450d6c47a2b7273ffffffffffffffffffffffffffffffffffffffff166103e860198702816113d457fe5b0460405180600001905060006040518083038185875af1925050503d806000811461141b576040519150601f19603f3d011682016040523d82523d6000602084013e611420565b606091505b505090508061142e57600080fd5b6000731aa530bb0596f8eee9ebe1effcc6f27e1c34615d73ffffffffffffffffffffffffffffffffffffffff166103e8601988028161146957fe5b0460405180600001905060006040518083038185875af1925050503d80600081146114b0576040519150601f19603f3d011682016040523d82523d6000602084013e6114b5565b606091505b50509050806114c357600080fd5b600073abcdf05c0aef28ced80b3d6cd107e89647a0295473ffffffffffffffffffffffffffffffffffffffff166103e860198902816114fe57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611545576040519150601f19603f3d011682016040523d82523d6000602084013e61154a565b606091505b505090508061155857600080fd5b600073df64d15e99df3d6f705511eba0efc210c6f961b773ffffffffffffffffffffffffffffffffffffffff166103e860198a028161159357fe5b0460405180600001905060006040518083038185875af1925050503d80600081146115da576040519150601f19603f3d011682016040523d82523d6000602084013e6115df565b606091505b50509050806115ed57600080fd5b6000731203047241969b34fc6fafd67be790223d620fe073ffffffffffffffffffffffffffffffffffffffff166103e860198b028161162857fe5b0460405180600001905060006040518083038185875af1925050503d806000811461166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b505090508061168257600080fd5b60007343a191060d906b44686dd747ff4b796d11abc4a273ffffffffffffffffffffffffffffffffffffffff166103e860198c02816116bd57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611704576040519150601f19603f3d011682016040523d82523d6000602084013e611709565b606091505b505090508061171757600080fd5b60007301656d41e041b50fc7c1eb270f7d89102193743673ffffffffffffffffffffffffffffffffffffffff166103e860198d028161175257fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b50509050806117ac57600080fd5b600073f8eed691dfb6ae167b9284aa7501bae753e9263a73ffffffffffffffffffffffffffffffffffffffff168c60405180600001905060006040518083038185875af1925050503d8060008114611820576040519150601f19603f3d011682016040523d82523d6000602084013e611825565b606091505b505090508061183357600080fd5b60004790506000736e49117ccef4b1bdbd3ce5118910f3d17d95384373ffffffffffffffffffffffffffffffffffffffff1661271061130b84028161187457fe5b0460405180600001905060006040518083038185875af1925050503d80600081146118bb576040519150601f19603f3d011682016040523d82523d6000602084013e6118c0565b606091505b50509050806118ce57600080fd5b600073a58ee9834f6d52cf936e538908449e60d9e4a6bf73ffffffffffffffffffffffffffffffffffffffff1661271061130b85028161190a57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611951576040519150601f19603f3d011682016040523d82523d6000602084013e611956565b606091505b505090508061196457600080fd5b60007369abc6eae2362acee665db1c6790cc0f90c5c39773ffffffffffffffffffffffffffffffffffffffff16612710607d86028161199f57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b50509050806119f957600080fd5b6000735d2c8ad99f2714884b638e684d50792654bc1f2573ffffffffffffffffffffffffffffffffffffffff16612710607d870281611a3457fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b5050905080611a8e57600080fd5b505050505050505050505050505050505050565b611abd8383836040518060200160405280600081525061218a565b505050565b600080611ad983600261300e90919063ffffffff16565b50905080915050919050565b6000600d600083815260200190815260200160002060009054906101000a900460ff169050919050565b611b17612be7565b73ffffffffffffffffffffffffffffffffffffffff16611b35611f08565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bc78161303a565b50565b6000611bfa826040518060600160405280602981526020016141396029913960026130549092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061410f602a913960400191505060405180910390fd5b611d71600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613073565b9050919050565b611d80612be7565b73ffffffffffffffffffffffffffffffffffffffff16611d9e611f08565b73ffffffffffffffffffffffffffffffffffffffff1614611e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fca5780601f10611f9f57610100808354040283529160200191611fca565b820191906000526020600020905b815481529060010190602001808311611fad57829003601f168201915b5050505050905090565b611fdc612be7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806005600061208a612be7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612137612be7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61219b612195612be7565b83612cbd565b6121f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061424d6031913960400191505060405180910390fd5b6121fc84848484613088565b50505050565b606061220d82612bca565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806141d9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561230b5780601f106122e05761010080835404028352916020019161230b565b820191906000526020600020905b8154815290600101906020018083116122ee57829003601f168201915b50505050509050606061231c611c01565b90506000815114156123325781925050506124f6565b6000825111156124035780826040516020018083805190602001908083835b602083106123745780518252602082019150602081019050602083039250612351565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106123c557805182526020820191506020810190506020830392506123a2565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506124f6565b8061240d856130fa565b6040516020018083805190602001908083835b602083106124435780518252602082019150602081019050602083039250612420565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106124945780518252602082019150602081019050602083039250612471565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612597612be7565b73ffffffffffffffffffffffffffffffffffffffff166125b5611f08565b73ffffffffffffffffffffffffffffffffffffffff161461263e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061403b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b546127a183612793611033565b61324190919063ffffffff16565b1115612815576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507572636861736520776f756c6420657863656564206d617820737570706c7981525060200191505060405180910390fd5b816000023414612870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806142086024913960400191505060405180910390fd5b600082141580156128815750818151145b6128f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f53656e6420636f727265637420746f6b656e496420617272617900000000000081525060200191505060405180910390fd5b6128fb611f08565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015612940573d6000803e3d6000fd5b5060005b82811015612bc55760001515600d600084848151811061296057fe5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f546f6b656e20496420697320616c72656164792075736564000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110612a5a57fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a9657600080fd5b505afa158015612aaa573d6000803e3d6000fd5b505050506040513d6020811015612ac057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614612b3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061427e6021913960400191505060405180910390fd5b6001600d6000848481518110612b4f57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506000612b996001612b8b611033565b61324190919063ffffffff16565b9050600b54612ba6611033565b1015612bb757612bb633826132c9565b5b508080600101915050612944565b505050565b6000612be08260026132e790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c6283611bca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cb682600001613301565b9050919050565b6000612cc882612bca565b612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140ab602c913960400191505060405180910390fd5b6000612d2883611bca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9757508373ffffffffffffffffffffffffffffffffffffffff16612d7f84610e28565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da85750612da781856124fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd182611bca565b73ffffffffffffffffffffffffffffffffffffffff1614612e3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141b06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ec3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140616024913960400191505060405180910390fd5b612ece838383613312565b612ed9600082612bef565b612f2a81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061331790919063ffffffff16565b50612f7c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061333190919063ffffffff16565b50612f938183600261334b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006130038360000183613380565b60001c905092915050565b6000806000806130218660000186613403565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190613050929190613f3b565b5050565b6000613067846000018460001b8461349c565b60001c90509392505050565b600061308182600001613592565b9050919050565b613093848484612db1565b61309f848484846135a3565b6130f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806140096032913960400191505060405180910390fd5b50505050565b60606000821415613142576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061323c565b600082905060005b6000821461316c578080600101915050600a828161316457fe5b04915061314a565b60608167ffffffffffffffff8111801561318557600080fd5b506040519080825280601f01601f1916602001820160405280156131b85781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461323457600a84816131d957fe5b0660300160f81b828280600190039350815181106131f357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161322c57fe5b0493506131c7565b819450505050505b919050565b6000808284019050838110156132bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6132e38282604051806020016040528060008152506137bc565b5050565b60006132f9836000018360001b61382d565b905092915050565b600081600001805490509050919050565b505050565b6000613329836000018360001b613850565b905092915050565b6000613343836000018360001b613938565b905092915050565b6000613377846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6139a8565b90509392505050565b6000818360000180549050116133e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613fe76022913960400191505060405180910390fd5b8260000182815481106133f057fe5b9060005260206000200154905092915050565b60008082846000018054905011613465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141626022913960400191505060405180910390fd5b600084600001848154811061347657fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613563576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561352857808201518184015260208101905061350d565b50505050905090810190601f1680156135555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061357657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006135c48473ffffffffffffffffffffffffffffffffffffffff16613a84565b6135d157600190506137b4565b606061373b63150b7a0260e01b6135e6612be7565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561366a57808201518184015260208101905061364f565b50505050905090810190601f1680156136975780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614009603291398773ffffffffffffffffffffffffffffffffffffffff16613a979092919063ffffffff16565b9050600081806020019051602081101561375457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6137c68383613aaf565b6137d360008484846135a3565b613828576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806140096032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461392c576000600182039050600060018660000180549050039050600086600001828154811061389b57fe5b90600052602060002001549050808760000184815481106138b857fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806138f057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613932565b60009150505b92915050565b60006139448383613ca3565b61399d5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506139a2565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613a4f57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613a7d565b82856000016001830381548110613a6257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613aa68484600085613cc6565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613b5b81612bca565b15613bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613bda60008383613312565b613c2b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061333190919063ffffffff16565b50613c428183600261334b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140856026913960400191505060405180910390fd5b613d2a85613a84565b613d9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613dec5780518252602082019150602081019050602083039250613dc9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613e4e576040519150601f19603f3d011682016040523d82523d6000602084013e613e53565b606091505b5091509150613e63828286613e6f565b92505050949350505050565b60608315613e7f57829050613f34565b600083511115613e925782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ef9578082015181840152602081019050613ede565b50505050905090810190601f168015613f265780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613f715760008555613fb8565b82601f10613f8a57805160ff1916838001178555613fb8565b82800160010185558215613fb8579182015b82811115613fb7578251825591602001919060010190613f9c565b5b509050613fc59190613fc9565b5090565b5b80821115613fe2576000816000905550600101613fca565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4d73672056616c75652073686f756c6420626520302e30302045544820706572204e46544552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564596f7520617265206e6f74204f776e6572206f6620746865204d45544147454d53a2646970667358221220776f00b4da315806088519334b328790e7eadd14baae4d1b41edca6769366cd764736f6c6343000704003300000000000000000000000044cc59bde0dea5f928bc25c71a3191a0693670aa

Deployed Bytecode

0x60806040526004361061019c5760003560e01c806355f804b3116100ec57806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610ad1578063e985e9c514610b85578063f2fde38b14610c0c578063fb1aa6ff14610c5d5761019c565b806395d89b41146108d2578063a22cb46514610962578063b88d4fde146109bf5761019c565b806370a08231116100c657806370a08231146107c4578063715018a6146108295780638c789076146108405780638da5cb5b146108915761019c565b806355f804b3146106075780636352211e146106cf5780636c0360eb146107345761019c565b806318160ddd116101595780633ccfd60b116101335780633ccfd60b146104e257806342842e0e146104ec5780634f6ccce7146105675780634f9f7bbc146105b65761019c565b806318160ddd146103cd57806323b872dd146103f85780632f745c59146104735761019c565b806301ffc9a7146101a157806306fdde0314610211578063081812fc146102a1578063095ea7b3146103065780630c105eab14610361578063156e4b5a1461038c575b600080fd5b3480156101ad57600080fd5b506101f9600480360360208110156101c457600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050610d1f565b60405180821515815260200191505060405180910390f35b34801561021d57600080fd5b50610226610d86565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561026657808201518184015260208101905061024b565b50505050905090810190601f1680156102935780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ad57600080fd5b506102da600480360360208110156102c457600080fd5b8101908080359060200190929190505050610e28565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561031257600080fd5b5061035f6004803603604081101561032957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ec3565b005b34801561036d57600080fd5b50610376611007565b6040518082815260200191505060405180910390f35b34801561039857600080fd5b506103a161100d565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156103d957600080fd5b506103e2611033565b6040518082815260200191505060405180910390f35b34801561040457600080fd5b506104716004803603606081101561041b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611044565b005b34801561047f57600080fd5b506104cc6004803603604081101561049657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110ba565b6040518082815260200191505060405180910390f35b6104ea611115565b005b3480156104f857600080fd5b506105656004803603606081101561050f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611aa2565b005b34801561057357600080fd5b506105a06004803603602081101561058a57600080fd5b8101908080359060200190929190505050611ac2565b6040518082815260200191505060405180910390f35b3480156105c257600080fd5b506105ef600480360360208110156105d957600080fd5b8101908080359060200190929190505050611ae5565b60405180821515815260200191505060405180910390f35b34801561061357600080fd5b506106cd6004803603602081101561062a57600080fd5b810190808035906020019064010000000081111561064757600080fd5b82018360208201111561065957600080fd5b8035906020019184600183028401116401000000008311171561067b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611b0f565b005b3480156106db57600080fd5b50610708600480360360208110156106f257600080fd5b8101908080359060200190929190505050611bca565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074057600080fd5b50610749611c01565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561078957808201518184015260208101905061076e565b50505050905090810190601f1680156107b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107d057600080fd5b50610813600480360360208110156107e757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ca3565b6040518082815260200191505060405180910390f35b34801561083557600080fd5b5061083e611d78565b005b34801561084c57600080fd5b506108796004803603602081101561086357600080fd5b8101908080359060200190929190505050611ee8565b60405180821515815260200191505060405180910390f35b34801561089d57600080fd5b506108a6611f08565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108de57600080fd5b506108e7611f32565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092757808201518184015260208101905061090c565b50505050905090810190601f1680156109545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096e57600080fd5b506109bd6004803603604081101561098557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611fd4565b005b3480156109cb57600080fd5b50610acf600480360360808110156109e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610a4957600080fd5b820183602082011115610a5b57600080fd5b80359060200191846001830284011164010000000083111715610a7d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061218a565b005b348015610add57600080fd5b50610b0a60048036036020811015610af457600080fd5b8101908080359060200190929190505050612202565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610b4a578082015181840152602081019050610b2f565b50505050905090810190601f168015610b775780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b348015610b9157600080fd5b50610bf460048036036040811015610ba857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506124fb565b60405180821515815260200191505060405180910390f35b348015610c1857600080fd5b50610c5b60048036036020811015610c2f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061258f565b005b610d1d60048036036040811015610c7357600080fd5b810190808035906020019092919080359060200190640100000000811115610c9a57600080fd5b820183602082011115610cac57600080fd5b80359060200191846020830284011164010000000083111715610cce57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050612784565b005b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610e1e5780601f10610df357610100808354040283529160200191610e1e565b820191906000526020600020905b815481529060010190602001808311610e0157829003601f168201915b5050505050905090565b6000610e3382612bca565b610e88576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614184602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ece82611bca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061422c6021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f74612be7565b73ffffffffffffffffffffffffffffffffffffffff161480610fa35750610fa281610f9d612be7565b6124fb565b5b610ff8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806140d76038913960400191505060405180910390fd5b6110028383612bef565b505050565b600b5481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061103f6002612ca8565b905090565b61105561104f612be7565b82612cbd565b6110aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061424d6031913960400191505060405180910390fd5b6110b5838383612db1565b505050565b600061110d82600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020612ff490919063ffffffff16565b905092915050565b61111d612be7565b73ffffffffffffffffffffffffffffffffffffffff1661113b611f08565b73ffffffffffffffffffffffffffffffffffffffff16146111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6000606460144702816111d357fe5b04905060006064601e4702816111e557fe5b0490506000737cb0699db6ff4bccc9bad16d5156fb6ec52a921273ffffffffffffffffffffffffffffffffffffffff168360405180600001905060006040518083038185875af1925050503d806000811461125c576040519150601f19603f3d011682016040523d82523d6000602084013e611261565b606091505b505090508061126f57600080fd5b600073a7edec871a0ffd6b59a3934a7fde2246f95d520c73ffffffffffffffffffffffffffffffffffffffff166103e860198502816112aa57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146112f1576040519150601f19603f3d011682016040523d82523d6000602084013e6112f6565b606091505b505090508061130457600080fd5b600073f6b861f72519b3b886bfb77b69102c6b8bf407d173ffffffffffffffffffffffffffffffffffffffff166103e8601986028161133f57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611386576040519150601f19603f3d011682016040523d82523d6000602084013e61138b565b606091505b505090508061139957600080fd5b600073d0f97bbda331e59bdff98bc52aa450d6c47a2b7273ffffffffffffffffffffffffffffffffffffffff166103e860198702816113d457fe5b0460405180600001905060006040518083038185875af1925050503d806000811461141b576040519150601f19603f3d011682016040523d82523d6000602084013e611420565b606091505b505090508061142e57600080fd5b6000731aa530bb0596f8eee9ebe1effcc6f27e1c34615d73ffffffffffffffffffffffffffffffffffffffff166103e8601988028161146957fe5b0460405180600001905060006040518083038185875af1925050503d80600081146114b0576040519150601f19603f3d011682016040523d82523d6000602084013e6114b5565b606091505b50509050806114c357600080fd5b600073abcdf05c0aef28ced80b3d6cd107e89647a0295473ffffffffffffffffffffffffffffffffffffffff166103e860198902816114fe57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611545576040519150601f19603f3d011682016040523d82523d6000602084013e61154a565b606091505b505090508061155857600080fd5b600073df64d15e99df3d6f705511eba0efc210c6f961b773ffffffffffffffffffffffffffffffffffffffff166103e860198a028161159357fe5b0460405180600001905060006040518083038185875af1925050503d80600081146115da576040519150601f19603f3d011682016040523d82523d6000602084013e6115df565b606091505b50509050806115ed57600080fd5b6000731203047241969b34fc6fafd67be790223d620fe073ffffffffffffffffffffffffffffffffffffffff166103e860198b028161162857fe5b0460405180600001905060006040518083038185875af1925050503d806000811461166f576040519150601f19603f3d011682016040523d82523d6000602084013e611674565b606091505b505090508061168257600080fd5b60007343a191060d906b44686dd747ff4b796d11abc4a273ffffffffffffffffffffffffffffffffffffffff166103e860198c02816116bd57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611704576040519150601f19603f3d011682016040523d82523d6000602084013e611709565b606091505b505090508061171757600080fd5b60007301656d41e041b50fc7c1eb270f7d89102193743673ffffffffffffffffffffffffffffffffffffffff166103e860198d028161175257fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611799576040519150601f19603f3d011682016040523d82523d6000602084013e61179e565b606091505b50509050806117ac57600080fd5b600073f8eed691dfb6ae167b9284aa7501bae753e9263a73ffffffffffffffffffffffffffffffffffffffff168c60405180600001905060006040518083038185875af1925050503d8060008114611820576040519150601f19603f3d011682016040523d82523d6000602084013e611825565b606091505b505090508061183357600080fd5b60004790506000736e49117ccef4b1bdbd3ce5118910f3d17d95384373ffffffffffffffffffffffffffffffffffffffff1661271061130b84028161187457fe5b0460405180600001905060006040518083038185875af1925050503d80600081146118bb576040519150601f19603f3d011682016040523d82523d6000602084013e6118c0565b606091505b50509050806118ce57600080fd5b600073a58ee9834f6d52cf936e538908449e60d9e4a6bf73ffffffffffffffffffffffffffffffffffffffff1661271061130b85028161190a57fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611951576040519150601f19603f3d011682016040523d82523d6000602084013e611956565b606091505b505090508061196457600080fd5b60007369abc6eae2362acee665db1c6790cc0f90c5c39773ffffffffffffffffffffffffffffffffffffffff16612710607d86028161199f57fe5b0460405180600001905060006040518083038185875af1925050503d80600081146119e6576040519150601f19603f3d011682016040523d82523d6000602084013e6119eb565b606091505b50509050806119f957600080fd5b6000735d2c8ad99f2714884b638e684d50792654bc1f2573ffffffffffffffffffffffffffffffffffffffff16612710607d870281611a3457fe5b0460405180600001905060006040518083038185875af1925050503d8060008114611a7b576040519150601f19603f3d011682016040523d82523d6000602084013e611a80565b606091505b5050905080611a8e57600080fd5b505050505050505050505050505050505050565b611abd8383836040518060200160405280600081525061218a565b505050565b600080611ad983600261300e90919063ffffffff16565b50905080915050919050565b6000600d600083815260200190815260200160002060009054906101000a900460ff169050919050565b611b17612be7565b73ffffffffffffffffffffffffffffffffffffffff16611b35611f08565b73ffffffffffffffffffffffffffffffffffffffff1614611bbe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b611bc78161303a565b50565b6000611bfa826040518060600160405280602981526020016141396029913960026130549092919063ffffffff16565b9050919050565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611c995780601f10611c6e57610100808354040283529160200191611c99565b820191906000526020600020905b815481529060010190602001808311611c7c57829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d2a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a81526020018061410f602a913960400191505060405180910390fd5b611d71600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613073565b9050919050565b611d80612be7565b73ffffffffffffffffffffffffffffffffffffffff16611d9e611f08565b73ffffffffffffffffffffffffffffffffffffffff1614611e27576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611fca5780601f10611f9f57610100808354040283529160200191611fca565b820191906000526020600020905b815481529060010190602001808311611fad57829003601f168201915b5050505050905090565b611fdc612be7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b806005600061208a612be7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612137612be7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b61219b612195612be7565b83612cbd565b6121f0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061424d6031913960400191505060405180910390fd5b6121fc84848484613088565b50505050565b606061220d82612bca565b612262576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806141d9602f913960400191505060405180910390fd5b6060600860008481526020019081526020016000208054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561230b5780601f106122e05761010080835404028352916020019161230b565b820191906000526020600020905b8154815290600101906020018083116122ee57829003601f168201915b50505050509050606061231c611c01565b90506000815114156123325781925050506124f6565b6000825111156124035780826040516020018083805190602001908083835b602083106123745780518252602082019150602081019050602083039250612351565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106123c557805182526020820191506020810190506020830392506123a2565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506124f6565b8061240d856130fa565b6040516020018083805190602001908083835b602083106124435780518252602082019150602081019050602083039250612420565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b602083106124945780518252602082019150602081019050602083039250612471565b6001836020036101000a038019825116818451168082178552505050505050905001807f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060050192505050604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612597612be7565b73ffffffffffffffffffffffffffffffffffffffff166125b5611f08565b73ffffffffffffffffffffffffffffffffffffffff161461263e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126c4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061403b6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b546127a183612793611033565b61324190919063ffffffff16565b1115612815576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f507572636861736520776f756c6420657863656564206d617820737570706c7981525060200191505060405180910390fd5b816000023414612870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806142086024913960400191505060405180910390fd5b600082141580156128815750818151145b6128f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f53656e6420636f727265637420746f6b656e496420617272617900000000000081525060200191505060405180910390fd5b6128fb611f08565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015612940573d6000803e3d6000fd5b5060005b82811015612bc55760001515600d600084848151811061296057fe5b6020026020010151815260200190815260200160002060009054906101000a900460ff161515146129f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260188152602001807f546f6b656e20496420697320616c72656164792075736564000000000000000081525060200191505060405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e848481518110612a5a57fe5b60200260200101516040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015612a9657600080fd5b505afa158015612aaa573d6000803e3d6000fd5b505050506040513d6020811015612ac057600080fd5b810190808051906020019092919050505073ffffffffffffffffffffffffffffffffffffffff1614612b3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061427e6021913960400191505060405180910390fd5b6001600d6000848481518110612b4f57fe5b6020026020010151815260200190815260200160002060006101000a81548160ff0219169083151502179055506000612b996001612b8b611033565b61324190919063ffffffff16565b9050600b54612ba6611033565b1015612bb757612bb633826132c9565b5b508080600101915050612944565b505050565b6000612be08260026132e790919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c6283611bca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612cb682600001613301565b9050919050565b6000612cc882612bca565b612d1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c8152602001806140ab602c913960400191505060405180910390fd5b6000612d2883611bca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d9757508373ffffffffffffffffffffffffffffffffffffffff16612d7f84610e28565b73ffffffffffffffffffffffffffffffffffffffff16145b80612da85750612da781856124fb565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612dd182611bca565b73ffffffffffffffffffffffffffffffffffffffff1614612e3d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806141b06029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ec3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806140616024913960400191505060405180910390fd5b612ece838383613312565b612ed9600082612bef565b612f2a81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061331790919063ffffffff16565b50612f7c81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061333190919063ffffffff16565b50612f938183600261334b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006130038360000183613380565b60001c905092915050565b6000806000806130218660000186613403565b915091508160001c8160001c9350935050509250929050565b8060099080519060200190613050929190613f3b565b5050565b6000613067846000018460001b8461349c565b60001c90509392505050565b600061308182600001613592565b9050919050565b613093848484612db1565b61309f848484846135a3565b6130f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806140096032913960400191505060405180910390fd5b50505050565b60606000821415613142576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061323c565b600082905060005b6000821461316c578080600101915050600a828161316457fe5b04915061314a565b60608167ffffffffffffffff8111801561318557600080fd5b506040519080825280601f01601f1916602001820160405280156131b85781602001600182028036833780820191505090505b50905060006001830390508593505b6000841461323457600a84816131d957fe5b0660300160f81b828280600190039350815181106131f357fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a848161322c57fe5b0493506131c7565b819450505050505b919050565b6000808284019050838110156132bf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6132e38282604051806020016040528060008152506137bc565b5050565b60006132f9836000018360001b61382d565b905092915050565b600081600001805490509050919050565b505050565b6000613329836000018360001b613850565b905092915050565b6000613343836000018360001b613938565b905092915050565b6000613377846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b6139a8565b90509392505050565b6000818360000180549050116133e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180613fe76022913960400191505060405180910390fd5b8260000182815481106133f057fe5b9060005260206000200154905092915050565b60008082846000018054905011613465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806141626022913960400191505060405180910390fd5b600084600001848154811061347657fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390613563576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561352857808201518184015260208101905061350d565b50505050905090810190601f1680156135555780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061357657fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006135c48473ffffffffffffffffffffffffffffffffffffffff16613a84565b6135d157600190506137b4565b606061373b63150b7a0260e01b6135e6612be7565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561366a57808201518184015260208101905061364f565b50505050905090810190601f1680156136975780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614009603291398773ffffffffffffffffffffffffffffffffffffffff16613a979092919063ffffffff16565b9050600081806020019051602081101561375457600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b6137c68383613aaf565b6137d360008484846135a3565b613828576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806140096032913960400191505060405180910390fd5b505050565b600080836001016000848152602001908152602001600020541415905092915050565b6000808360010160008481526020019081526020016000205490506000811461392c576000600182039050600060018660000180549050039050600086600001828154811061389b57fe5b90600052602060002001549050808760000184815481106138b857fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806138f057fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613932565b60009150505b92915050565b60006139448383613ca3565b61399d5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506139a2565b600090505b92915050565b6000808460010160008581526020019081526020016000205490506000811415613a4f57846000016040518060400160405280868152602001858152509080600181540180825580915050600190039060005260206000209060020201600090919091909150600082015181600001556020820151816001015550508460000180549050856001016000868152602001908152602001600020819055506001915050613a7d565b82856000016001830381548110613a6257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b6060613aa68484600085613cc6565b90509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613b5b81612bca565b15613bce576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613bda60008383613312565b613c2b81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061333190919063ffffffff16565b50613c428183600261334b9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080836001016000848152602001908152602001600020541415905092915050565b606082471015613d21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806140856026913960400191505060405180910390fd5b613d2a85613a84565b613d9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b60208310613dec5780518252602082019150602081019050602083039250613dc9565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613e4e576040519150601f19603f3d011682016040523d82523d6000602084013e613e53565b606091505b5091509150613e63828286613e6f565b92505050949350505050565b60608315613e7f57829050613f34565b600083511115613e925782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613ef9578082015181840152602081019050613ede565b50505050905090810190601f168015613f265780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282613f715760008555613fb8565b82601f10613f8a57805160ff1916838001178555613fb8565b82800160010185558215613fb8579182015b82811115613fb7578251825591602001919060010190613f9c565b5b509050613fc59190613fc9565b5090565b5b80821115613fe2576000816000905550600101613fca565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4d73672056616c75652073686f756c6420626520302e30302045544820706572204e46544552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564596f7520617265206e6f74204f776e6572206f6620746865204d45544147454d53a2646970667358221220776f00b4da315806088519334b328790e7eadd14baae4d1b41edca6769366cd764736f6c63430007040033

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

00000000000000000000000044cc59bde0dea5f928bc25c71a3191a0693670aa

-----Decoded View---------------
Arg [0] : metagemsGenesis (address): 0x44cc59bDe0deA5f928bc25C71a3191A0693670aa

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000044cc59bde0dea5f928bc25c71a3191a0693670aa


Deployed Bytecode Sourcemap

69257:4279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11187:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52485:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55286:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54816:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;69342:29;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69380:23;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54294:211;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;56176:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54056:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;69765:2475;;;:::i;:::-;;56552:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54582:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;73410:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;69649:105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52241:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53870:97;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51958:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67203:148;;;;;;;;;;;;;:::i;:::-;;69416:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66552:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52654:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55579:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56774:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;52829:800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55945:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67506:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;72471:924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;11187:150;11272:4;11296:20;:33;11317:11;11296:33;;;;;;;;;;;;;;;;;;;;;;;;;;;11289:40;;11187:150;;;:::o;52485:100::-;52539:13;52572:5;52565:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52485:100;:::o;55286:221::-;55362:7;55390:16;55398:7;55390;:16::i;:::-;55382:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55475:15;:24;55491:7;55475:24;;;;;;;;;;;;;;;;;;;;;55468:31;;55286:221;;;:::o;54816:404::-;54897:13;54913:23;54928:7;54913:14;:23::i;:::-;54897:39;;54961:5;54955:11;;:2;:11;;;;54947:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55041:5;55025:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;55050:44;55074:5;55081:12;:10;:12::i;:::-;55050:23;:44::i;:::-;55025:69;55017:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55191:21;55200:2;55204:7;55191:8;:21::i;:::-;54816:404;;;:::o;69342:29::-;;;;:::o;69380:23::-;;;;;;;;;;;;;:::o;54294:211::-;54355:7;54476:21;:12;:19;:21::i;:::-;54469:28;;54294:211;:::o;56176:305::-;56337:41;56356:12;:10;:12::i;:::-;56370:7;56337:18;:41::i;:::-;56329:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56445:28;56455:4;56461:2;56465:7;56445:9;:28::i;:::-;56176:305;;;:::o;54056:162::-;54153:7;54180:30;54204:5;54180:13;:20;54194:5;54180:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;54173:37;;54056:162;;;;:::o;69765:2475::-;66783:12;:10;:12::i;:::-;66772:23;;:7;:5;:7::i;:::-;:23;;;66764:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69823:21:::1;69876:3;69871:2;69847:21;:26;:32;;;;;;69823:56;;69888:19;69939:3;69934:2;69910:21;:26;:32;;;;;;69888:54;;69965:16;69995:42;69987:56;;70051:13;69987:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69964:105;;;70084:11;70076:20;;;::::0;::::1;;70107:14;70135:42;70127:56;;70210:4;70205:2;70191:11;:16;:23;;;;;;70127:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70106:113;;;70234:9;70226:18;;;::::0;::::1;;70252:14;70280:42;70272:56;;70355:4;70350:2;70336:11;:16;:23;;;;;;70272:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70251:113;;;70379:9;70371:18;;;::::0;::::1;;70397:14;70425:42;70417:56;;70500:4;70495:2;70481:11;:16;:23;;;;;;70417:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70396:113;;;70524:9;70516:18;;;::::0;::::1;;70542:14;70570:42;70562:56;;70645:4;70640:2;70626:11;:16;:23;;;;;;70562:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70541:113;;;70669:9;70661:18;;;::::0;::::1;;70687:14;70715:42;70707:56;;70790:4;70785:2;70771:11;:16;:23;;;;;;70707:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70686:113;;;70814:9;70806:18;;;::::0;::::1;;70834:15;70863:42;70855:56;;70938:4;70933:2;70919:11;:16;:23;;;;;;70855:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70833:114;;;70962:10;70954:19;;;::::0;::::1;;70981:11;71006:42;70998:56;;71081:4;71076:2;71062:11;:16;:23;;;;;;70998:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70980:110;;;71105:6;71097:15;;;::::0;::::1;;71120:11;71145:42;71137:56;;71220:4;71215:2;71201:11;:16;:23;;;;;;71137:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71119:110;;;71244:6;71236:15;;;::::0;::::1;;71259:9;71282:42;71274:56;;71357:4;71352:2;71338:11;:16;:23;;;;;;71274:92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71258:108;;;71381:4;71373:13;;;::::0;::::1;;71414:18;71446:42;71438:56;;71502:11;71438:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71413:105;;;71533:13;71525:22;;;::::0;::::1;;71572;71597:21;71572:46;;71628:13;71655:42;71647:56;;71735:5;71728:4;71711:14;:21;:29;;;;;;71647:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71627:118;;;71760:8;71752:17;;;::::0;::::1;;71777:13;71804:42;71796:56;;71884:5;71877:4;71860:14;:21;:29;;;;;;71796:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71776:118;;;71909:8;71901:17;;;::::0;::::1;;71926:14;71954:42;71946:56;;72033:5;72027:3;72010:14;:20;:28;;;;;;71946:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71925:118;;;72058:9;72050:18;;;::::0;::::1;;72076;72108:42;72100:56;;72187:5;72181:3;72164:14;:20;:28;;;;;;72100:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72075:122;;;72212:13;72204:22;;;::::0;::::1;;66843:1;;;;;;;;;;;;;;;;;;69765:2475::o:0;56552:151::-;56656:39;56673:4;56679:2;56683:7;56656:39;;;;;;;;;;;;:16;:39::i;:::-;56552:151;;;:::o;54582:172::-;54657:7;54678:15;54699:22;54715:5;54699:12;:15;;:22;;;;:::i;:::-;54677:44;;;54739:7;54732:14;;;54582:172;;;:::o;73410:117::-;73474:4;73497:13;:22;73511:7;73497:22;;;;;;;;;;;;;;;;;;;;;73490:29;;73410:117;;;:::o;69649:105::-;66783:12;:10;:12::i;:::-;66772:23;;:7;:5;:7::i;:::-;:23;;;66764:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69720:20:::1;69732:7;69720:11;:20::i;:::-;69649:105:::0;:::o;52241:177::-;52313:7;52340:70;52357:7;52340:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;52333:77;;52241:177;;;:::o;53870:97::-;53918:13;53951:8;53944:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53870:97;:::o;51958:221::-;52030:7;52075:1;52058:19;;:5;:19;;;;52050:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52142:29;:13;:20;52156:5;52142:20;;;;;;;;;;;;;;;:27;:29::i;:::-;52135:36;;51958:221;;;:::o;67203:148::-;66783:12;:10;:12::i;:::-;66772:23;;:7;:5;:7::i;:::-;:23;;;66764:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67310:1:::1;67273:40;;67294:6;;;;;;;;;;;67273:40;;;;;;;;;;;;67341:1;67324:6;;:19;;;;;;;;;;;;;;;;;;67203:148::o:0;69416:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;66552:87::-;66598:7;66625:6;;;;;;;;;;;66618:13;;66552:87;:::o;52654:104::-;52710:13;52743:7;52736:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52654:104;:::o;55579:295::-;55694:12;:10;:12::i;:::-;55682:24;;:8;:24;;;;55674:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55794:8;55749:18;:32;55768:12;:10;:12::i;:::-;55749:32;;;;;;;;;;;;;;;:42;55782:8;55749:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;55847:8;55818:48;;55833:12;:10;:12::i;:::-;55818:48;;;55857:8;55818:48;;;;;;;;;;;;;;;;;;;;55579:295;;:::o;56774:285::-;56906:41;56925:12;:10;:12::i;:::-;56939:7;56906:18;:41::i;:::-;56898:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57012:39;57026:4;57032:2;57036:7;57045:5;57012:13;:39::i;:::-;56774:285;;;;:::o;52829:800::-;52902:13;52936:16;52944:7;52936;:16::i;:::-;52928:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53017:23;53043:10;:19;53054:7;53043:19;;;;;;;;;;;53017:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53073:18;53094:9;:7;:9::i;:::-;53073:30;;53201:1;53185:4;53179:18;:23;53175:72;;;53226:9;53219:16;;;;;;53175:72;53377:1;53357:9;53351:23;:27;53347:108;;;53426:4;53432:9;53409:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53395:48;;;;;;53347:108;53586:4;53592:18;:7;:16;:18::i;:::-;53569:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53555:66;;;;52829:800;;;;:::o;55945:164::-;56042:4;56066:18;:25;56085:5;56066:25;;;;;;;;;;;;;;;:35;56092:8;56066:35;;;;;;;;;;;;;;;;;;;;;;;;;56059:42;;55945:164;;;;:::o;67506:244::-;66783:12;:10;:12::i;:::-;66772:23;;:7;:5;:7::i;:::-;:23;;;66764:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67615:1:::1;67595:22;;:8;:22;;;;67587:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67705:8;67676:38;;67697:6;;;;;;;;;;;67676:38;;;;;;;;;;;;67734:8;67725:6;;:17;;;;;;;;;;;;;;;;;;67506:244:::0;:::o;72471:924::-;72616:14;;72579:33;72597:14;72579:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:51;;72571:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72712:14;72699:10;:27;72686:9;:40;72678:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72802:1;72786:14;:17;;:54;;;;;72826:14;72807:8;:15;:33;72786:54;72778:93;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72890:7;:5;:7::i;:::-;72882:25;;:36;72908:9;72882:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72933:9;72929:459;72948:14;72946:1;:16;72929:459;;;73021:5;72991:35;;:13;:26;73005:8;73014:1;73005:11;;;;;;;;;;;;;;72991:26;;;;;;;;;;;;;;;;;;;;;:35;;;72983:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73111:10;73078:43;;:8;;;;;;;;;;;:16;;;73095:8;73104:1;73095:11;;;;;;;;;;;;;;73078:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;73070:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73203:4;73174:13;:26;73188:8;73197:1;73188:11;;;;;;;;;;;;;;73174:26;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;73222:14;73239:20;73257:1;73239:13;:11;:13::i;:::-;:17;;:20;;;;:::i;:::-;73222:37;;73294:14;;73278:13;:11;:13::i;:::-;:30;73274:103;;;73329:32;73339:10;73351:9;73329;:32::i;:::-;73274:103;72929:459;72964:3;;;;;;;72929:459;;;;72471:924;;:::o;58526:127::-;58591:4;58615:30;58637:7;58615:12;:21;;:30;;;;:::i;:::-;58608:37;;58526:127;;;:::o;1627:106::-;1680:15;1715:10;1708:17;;1627:106;:::o;64544:192::-;64646:2;64619:15;:24;64635:7;64619:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;64702:7;64698:2;64664:46;;64673:23;64688:7;64673:14;:23::i;:::-;64664:46;;;;;;;;;;;;64544:192;;:::o;45230:123::-;45299:7;45326:19;45334:3;:10;;45326:7;:19::i;:::-;45319:26;;45230:123;;;:::o;58820:355::-;58913:4;58938:16;58946:7;58938;:16::i;:::-;58930:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59014:13;59030:23;59045:7;59030:14;:23::i;:::-;59014:39;;59083:5;59072:16;;:7;:16;;;:51;;;;59116:7;59092:31;;:20;59104:7;59092:11;:20::i;:::-;:31;;;59072:51;:94;;;;59127:39;59151:5;59158:7;59127:23;:39::i;:::-;59072:94;59064:103;;;58820:355;;;;:::o;61956:599::-;62081:4;62054:31;;:23;62069:7;62054:14;:23::i;:::-;:31;;;62046:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62182:1;62168:16;;:2;:16;;;;62160:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62238:39;62259:4;62265:2;62269:7;62238:20;:39::i;:::-;62342:29;62359:1;62363:7;62342:8;:29::i;:::-;62384:35;62411:7;62384:13;:19;62398:4;62384:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;62430:30;62452:7;62430:13;:17;62444:2;62430:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;62473:29;62490:7;62499:2;62473:12;:16;;:29;;;;;:::i;:::-;;62539:7;62535:2;62520:27;;62529:4;62520:27;;;;;;;;;;;;61956:599;;;:::o;37021:137::-;37092:7;37127:22;37131:3;:10;;37143:5;37127:3;:22::i;:::-;37119:31;;37112:38;;37021:137;;;;:::o;45692:236::-;45772:7;45781;45802:11;45815:13;45832:22;45836:3;:10;;45848:5;45832:3;:22::i;:::-;45801:53;;;;45881:3;45873:12;;45911:5;45903:14;;45865:55;;;;;;45692:236;;;;;:::o;63156:100::-;63240:8;63229;:19;;;;;;;;;;;;:::i;:::-;;63156:100;:::o;46978:213::-;47085:7;47136:44;47141:3;:10;;47161:3;47153:12;;47167;47136:4;:44::i;:::-;47128:53;;47105:78;;46978:213;;;;;:::o;36563:114::-;36623:7;36650:19;36658:3;:10;;36650:7;:19::i;:::-;36643:26;;36563:114;;;:::o;57941:272::-;58055:28;58065:4;58071:2;58075:7;58055:9;:28::i;:::-;58102:48;58125:4;58131:2;58135:7;58144:5;58102:22;:48::i;:::-;58094:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57941:272;;;;:::o;47442:746::-;47498:13;47728:1;47719:5;:10;47715:53;;;47746:10;;;;;;;;;;;;;;;;;;;;;47715:53;47778:12;47793:5;47778:20;;47809:14;47834:78;47849:1;47841:4;:9;47834:78;;47867:8;;;;;;;47898:2;47890:10;;;;;;;;;47834:78;;;47922:19;47954:6;47944:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47922:39;;47972:13;47997:1;47988:6;:10;47972:26;;48016:5;48009:12;;48032:117;48047:1;48039:4;:9;48032:117;;48108:2;48101:4;:9;;;;;;48096:2;:14;48083:29;;48065:6;48072:7;;;;;;;48065:15;;;;;;;;;;;:47;;;;;;;;;;;48135:2;48127:10;;;;;;;;;48032:117;;;48173:6;48159:21;;;;;;47442:746;;;;:::o;14749:179::-;14807:7;14827:9;14843:1;14839;:5;14827:17;;14868:1;14863;:6;;14855:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14919:1;14912:8;;;14749:179;;;;:::o;59518:110::-;59594:26;59604:2;59608:7;59594:26;;;;;;;;;;;;:9;:26::i;:::-;59518:110;;:::o;44991:151::-;45075:4;45099:35;45109:3;:10;;45129:3;45121:12;;45099:9;:35::i;:::-;45092:42;;44991:151;;;;:::o;41809:110::-;41865:7;41892:3;:12;;:19;;;;41885:26;;41809:110;;;:::o;65349:93::-;;;;:::o;36108:137::-;36178:4;36202:35;36210:3;:10;;36230:5;36222:14;;36202:7;:35::i;:::-;36195:42;;36108:137;;;;:::o;35801:131::-;35868:4;35892:32;35897:3;:10;;35917:5;35909:14;;35892:4;:32::i;:::-;35885:39;;35801:131;;;;:::o;44414:185::-;44503:4;44527:64;44532:3;:10;;44552:3;44544:12;;44582:5;44566:23;;44558:32;;44527:4;:64::i;:::-;44520:71;;44414:185;;;;;:::o;32059:204::-;32126:7;32175:5;32154:3;:11;;:18;;;;:26;32146:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32237:3;:11;;32249:5;32237:18;;;;;;;;;;;;;;;;32230:25;;32059:204;;;;:::o;42274:279::-;42341:7;42350;42400:5;42378:3;:12;;:19;;;;:27;42370:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42457:22;42482:3;:12;;42495:5;42482:19;;;;;;;;;;;;;;;;;;42457:44;;42520:5;:10;;;42532:5;:12;;;42512:33;;;;;42274:279;;;;;:::o;43771:319::-;43865:7;43885:16;43904:3;:12;;:17;43917:3;43904:17;;;;;;;;;;;;43885:36;;43952:1;43940:8;:13;;43955:12;43932:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44022:3;:12;;44046:1;44035:8;:12;44022:26;;;;;;;;;;;;;;;;;;:33;;;44015:40;;;43771:319;;;;;:::o;31606:109::-;31662:7;31689:3;:11;;:18;;;;31682:25;;31606:109;;;:::o;63821:604::-;63942:4;63969:15;:2;:13;;;:15::i;:::-;63964:60;;64008:4;64001:11;;;;63964:60;64034:23;64060:252;64113:45;;;64173:12;:10;:12::i;:::-;64200:4;64219:7;64241:5;64076:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64060:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;64034:278;;64323:13;64350:10;64339:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64323:48;;48961:10;64400:16;;64390:26;;;:6;:26;;;;64382:35;;;;63821:604;;;;;;;:::o;59855:250::-;59951:18;59957:2;59961:7;59951:5;:18::i;:::-;59988:54;60019:1;60023:2;60027:7;60036:5;59988:22;:54::i;:::-;59980:117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59855:250;;;:::o;41589:125::-;41660:4;41705:1;41684:3;:12;;:17;41697:3;41684:17;;;;;;;;;;;;:22;;41677:29;;41589:125;;;;:::o;29761:1544::-;29827:4;29945:18;29966:3;:12;;:19;29979:5;29966:19;;;;;;;;;;;;29945:40;;30016:1;30002:10;:15;29998:1300;;30364:21;30401:1;30388:10;:14;30364:38;;30417:17;30458:1;30437:3;:11;;:18;;;;:22;30417:42;;30704:17;30724:3;:11;;30736:9;30724:22;;;;;;;;;;;;;;;;30704:42;;30870:9;30841:3;:11;;30853:13;30841:26;;;;;;;;;;;;;;;:38;;;;30989:1;30973:13;:17;30947:3;:12;;:23;30960:9;30947:23;;;;;;;;;;;:43;;;;31099:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;31194:3;:12;;:19;31207:5;31194:19;;;;;;;;;;;31187:26;;;31237:4;31230:11;;;;;;;;29998:1300;31281:5;31274:12;;;29761:1544;;;;;:::o;29171:414::-;29234:4;29256:21;29266:3;29271:5;29256:9;:21::i;:::-;29251:327;;29294:3;:11;;29311:5;29294:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29477:3;:11;;:18;;;;29455:3;:12;;:19;29468:5;29455:19;;;;;;;;;;;:40;;;;29517:4;29510:11;;;;29251:327;29561:5;29554:12;;29171:414;;;;;:::o;39089:692::-;39165:4;39281:16;39300:3;:12;;:17;39313:3;39300:17;;;;;;;;;;;;39281:36;;39346:1;39334:8;:13;39330:444;;;39401:3;:12;;39419:38;;;;;;;;39436:3;39419:38;;;;39449:5;39419:38;;;39401:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39616:3;:12;;:19;;;;39596:3;:12;;:17;39609:3;39596:17;;;;;;;;;;;:39;;;;39657:4;39650:11;;;;;39330:444;39730:5;39694:3;:12;;39718:1;39707:8;:12;39694:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39757:5;39750:12;;;39089:692;;;;;;:::o;20190:422::-;20250:4;20458:12;20569:7;20557:20;20549:28;;20603:1;20596:4;:8;20589:15;;;20190:422;;;:::o;23108:195::-;23211:12;23243:52;23265:6;23273:4;23279:1;23282:12;23243:21;:52::i;:::-;23236:59;;23108:195;;;;;:::o;60441:404::-;60535:1;60521:16;;:2;:16;;;;60513:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60594:16;60602:7;60594;:16::i;:::-;60593:17;60585:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60656:45;60685:1;60689:2;60693:7;60656:20;:45::i;:::-;60714:30;60736:7;60714:13;:17;60728:2;60714:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;60757:29;60774:7;60783:2;60757:12;:16;;:29;;;;;:::i;:::-;;60829:7;60825:2;60804:33;;60821:1;60804:33;;;;;;;;;;;;60441:404;;:::o;31391:129::-;31464:4;31511:1;31488:3;:12;;:19;31501:5;31488:19;;;;;;;;;;;;:24;;31481:31;;31391:129;;;;:::o;24160:530::-;24287:12;24345:5;24320:21;:30;;24312:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24412:18;24423:6;24412:10;:18::i;:::-;24404:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24538:12;24552:23;24579:6;:11;;24599:5;24607:4;24579:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:75;;;;24630:52;24648:7;24657:10;24669:12;24630:17;:52::i;:::-;24623:59;;;;24160:530;;;;;;:::o;26700:742::-;26815:12;26844:7;26840:595;;;26875:10;26868:17;;;;26840:595;27009:1;26989:10;:17;:21;26985:439;;;27252:10;27246:17;27313:15;27300:10;27296:2;27292:19;27285:44;27200:148;27395:12;27388:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26700:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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