ETH Price: $2,274.24 (-6.07%)

Token

Mint On Demand (MOD)
 

Overview

Max Total Supply

92 MOD

Holders

21

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
drona.eth
Balance
1 MOD
0xaad5746f55a5e496061f70941835af47841a0948
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:
MintOnDemand

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        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

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


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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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


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

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

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

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


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

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


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

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

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

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

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

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

/**
 * @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);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }
}

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

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

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

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


// File: contracts/MintOnDemand.sol

/**
 * @title MintOnDemand contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract MintOnDemand is ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    bool public saleIsActive;
    bool URIsEnumerable;

    uint256 fullPrice;
    uint256 max_mod_token_supply;
    uint256 max_public_mod_token_supply;
    uint256 max_reserved_mod_token_supply;
    uint256 numReservedTokensMinted;
    uint256 maxToMint;
    uint256 devCommission;
    uint256 affiliateCommissionPercentage;

    address wallet1;// mod payout wallet
    address wallet2;// byt payout wallet

    mapping(address => uint256) affiliateConfirmedRevenue;
    mapping(address => uint256) public affiliateCommissionCount;

    constructor() ERC721("Mint On Demand", "MOD") {
        fullPrice = 100000000000000000; // 0.1 Ether
        max_mod_token_supply = 100000;
        max_public_mod_token_supply = 99000;
        max_reserved_mod_token_supply = 1000;

        wallet1 = 0xe0B27a58ce6A2005C4302933Ccee92e720A636d4;
        wallet2 = 0xD840a372332780CB753A1e0Eaea29b0c59f92943;

        numReservedTokensMinted = 0;
        maxToMint = 10;
        devCommission = 5;
        affiliateCommissionPercentage = 25;
    }

    function getTotalAffiliateCommissionsForWallet(address _affiliate) external view returns (uint256)
    {
        return affiliateConfirmedRevenue[_affiliate].mul(affiliateCommissionPercentage).div(100);
    }

    function setAffiliateCommissionRate(uint256 _percent) external onlyOwner {
        require(_percent < 100, "Affiliate commission is too high");
        affiliateCommissionPercentage = _percent;
    }

    /**
     * Turn on enumerable tokenURIs if ever needed in the future.
     */
    function setMaxToMint(uint256 _count) external onlyOwner {
        maxToMint = _count;
    }

    /**
     * Turn on enumerable tokenURIs if ever needed in the future.
     */
    function setURIsEnumerable() external onlyOwner {
        URIsEnumerable = !URIsEnumerable;
    }

    /**
     * Sets the token's base URI.
     */
    function setSaleActive() external onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /**
     * Changes max supply for the collection
     */
    function setMaxSupply(uint256 _supply) external onlyOwner {
        max_mod_token_supply = _supply;
    }

    /**
     * Turn on enumerable tokenURIs if ever needed in the future.
     */
    function setDevCommission(uint256 _commission) external onlyOwner {
        require(_commission < 100, "Dev commission is too high");
        devCommission = _commission;
    }

    /**
     * Changes the mint price for new tokens.
     */
    function setFullPrice(uint256 _price) external onlyOwner {
        fullPrice = _price;
    }

    /**
     * Sets the token's base URI.
     */
    function setBaseURI(string memory baseURI) external onlyOwner {
        _setBaseURI(baseURI);
    }

    /**
     * Sets the payout wallet.
     */
    function setPayoutWallet1(address _wallet) external onlyOwner {
        wallet1 = _wallet;
    }

    /**
     * Sets the payout wallet.
     */
    function setPayoutWallet2(address _wallet) external onlyOwner {
        wallet2 = _wallet;
    }

    /**
    * Mints tokens
    */
    function mintMODToken(uint256 numberOfTokens, address _affiliate) external payable {
        require(saleIsActive, "Sale must be active to mint");
        require(numberOfTokens <= maxToMint, "Invalid amount to mint at once");
        require(totalSupply().sub(numReservedTokensMinted).add(numberOfTokens) <= max_public_mod_token_supply, "Purchase would exceed max public supply");
        require(fullPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        
        if (numberOfTokens > 1) {
            for(uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = totalSupply().sub(numReservedTokensMinted);
                _safeMint(_msgSender(), tokenId);
            }
        } else {
            uint256 tokenId = totalSupply().sub(numReservedTokensMinted);
            _safeMint(_msgSender(), tokenId);
        }

        if(_affiliate != address(0))
        {
            affiliateConfirmedRevenue[_affiliate] += msg.value;
            affiliateCommissionCount[_affiliate] += numberOfTokens;
        }
    }

     /**
    * Mints tokens
    */
    function fiatMintMODToken(uint256 numberOfTokens, address _affiliate, address _to) external payable {
        require(saleIsActive, "Sale must be active to mint");
        require(numberOfTokens <= maxToMint, "Invalid amount to mint at once");
        require(totalSupply().sub(numReservedTokensMinted).add(numberOfTokens) <= max_public_mod_token_supply, "Purchase would exceed max private supply");
        require(fullPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        
        if (numberOfTokens > 1) {
            for(uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = totalSupply().sub(numReservedTokensMinted);
                _safeMint(_to, tokenId);
            }
        } else {
            uint256 tokenId = totalSupply().sub(numReservedTokensMinted);
            _safeMint(_to, tokenId);
        }

        if(_affiliate != address(0))
        {
            affiliateConfirmedRevenue[_affiliate] += msg.value;
            affiliateCommissionCount[_affiliate] += numberOfTokens;
        }
    }

    /**
     * Reserve mint function (token IDs: 99000 - 99999).
     */
    function teamReserveMint(uint256 numberOfTokens, address _to) external onlyOwner {
        require(totalSupply().add(numberOfTokens) <= max_mod_token_supply, "Purchase would exceed max supply");
        require(numReservedTokensMinted.add(numberOfTokens) <= max_reserved_mod_token_supply, "Purchase would exceed max reserved supply");

        if (numberOfTokens > 1) {
            for(uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = max_public_mod_token_supply.add(numReservedTokensMinted);
                numReservedTokensMinted++;
                _safeMint(_to, tokenId);
            }
        } else {
                uint256 tokenId = max_public_mod_token_supply.add(numReservedTokensMinted);
                numReservedTokensMinted++;
            _safeMint(_to, tokenId);
        }
    }

    /**
     * Backup function in case someone is unable to redeem.
     */
    function emergencyMint(address _to, uint256 tokenId) external onlyOwner {
        require(!_exists(tokenId), "TokenId already exists");
        _safeMint(_to, tokenId);
    }

    /**
    * Returns the full tokenURI.
    */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if(URIsEnumerable){
           return string(abi.encodePacked(baseURI(), tokenId.toString())); 
        }
        return baseURI();
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 walletBalance = balance.mul(100 - devCommission).div(100);
        payable(wallet1).transfer(walletBalance);
        payable(wallet2).transfer(balance.sub(walletBalance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"affiliateCommissionCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"emergencyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"_affiliate","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"fiatMintMODToken","outputs":[],"stateMutability":"payable","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":"_affiliate","type":"address"}],"name":"getTotalAffiliateCommissionsForWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"_affiliate","type":"address"}],"name":"mintMODToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setAffiliateCommissionRate","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":"uint256","name":"_commission","type":"uint256"}],"name":"setDevCommission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setFullPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxToMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setPayoutWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setPayoutWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setURIsEnumerable","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":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"teamReserveMint","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600e81526d135a5b9d0813db8811195b585b9960921b602080830191909152825180840190935260038352621353d160ea1b9083015290620000646301ffc9a760e01b6200018d565b81516200007990600690602085019062000211565b5080516200008f90600790602084019062000211565b50620000a26380ac58cd60e01b6200018d565b620000b4635b5e139f60e01b6200018d565b620000c663780e9d6360e01b6200018d565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35067016345785d8a0000600b55620186a0600c55620182b8600d556103e8600e55601380546001600160a01b031990811673e0b27a58ce6a2005c4302933ccee92e720a636d4179091556014805490911673d840a372332780cb753a1e0eaea29b0c59f929431790556000600f55600a60105560056011556019601255620002f4565b6001600160e01b03198082161415620001ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8280546200021f90620002b7565b90600052602060002090601f0160209004810192826200024357600085556200028e565b82601f106200025e57805160ff19168380011785556200028e565b828001600101855582156200028e579182015b828111156200028e57825182559160200191906001019062000271565b506200029c929150620002a0565b5090565b5b808211156200029c5760008155600101620002a1565b600181811c90821680620002cc57607f821691505b60208210811415620002ee57634e487b7160e01b600052602260045260246000fd5b50919050565b612cc480620003046000396000f3fe6080604052600436106102255760003560e01c8063612f12cf11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610647578063e985e9c514610667578063eb8d2444146106b0578063f2fde38b146106d1578063f6543170146106f157600080fd5b8063a22cb465146105b4578063adcb1e66146105d4578063b73495e2146105f4578063b88d4fde14610614578063be78b71e1461063457600080fd5b80637084b2b7116100f25780637084b2b71461052c57806370a082311461054c578063715018a61461056c5780638da5cb5b1461058157806395d89b411461059f57600080fd5b8063612f12cf146104aa5780636352211e146104d75780636c0360eb146104f75780636f8b44b01461050c57600080fd5b80632f4d7d02116101b157806342842e0e1161017557806342842e0e1461040a57806343785dc91461042a5780634f6ccce71461044a57806355f804b31461046a5780635747e8e81461048a57600080fd5b80632f4d7d02146103805780632f745c59146103a0578063371756bd146103c05780633ccfd60b146103e05780633fcc8405146103f557600080fd5b806318160ddd116101f857806318160ddd146102f55780631df656b01461031857806323b872dd14610338578063261f5a9714610358578063277bc0c81461036d57600080fd5b806301ffc9a71461022a57806306fdde0314610279578063081812fc1461029b578063095ea7b3146102d3575b600080fd5b34801561023657600080fd5b5061026461024536600461281d565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561028557600080fd5b5061028e610711565b60405161027091906129cc565b3480156102a757600080fd5b506102bb6102b63660046128a0565b6107a3565b6040516001600160a01b039091168152602001610270565b3480156102df57600080fd5b506102f36102ee3660046127f3565b610830565b005b34801561030157600080fd5b5061030a610946565b604051908152602001610270565b34801561032457600080fd5b506102f36103333660046128b9565b610957565b34801561034457600080fd5b506102f36103533660046126ff565b610af3565b34801561036457600080fd5b506102f3610b24565b6102f361037b3660046128b9565b610b6f565b34801561038c57600080fd5b506102f361039b3660046128a0565b610dc4565b3480156103ac57600080fd5b5061030a6103bb3660046127f3565b610e43565b3480156103cc57600080fd5b506102f36103db3660046126b1565b610e6e565b3480156103ec57600080fd5b506102f3610eba565b34801561040157600080fd5b506102f3610f8c565b34801561041657600080fd5b506102f36104253660046126ff565b610fd7565b34801561043657600080fd5b506102f36104453660046127f3565b610ff2565b34801561045657600080fd5b5061030a6104653660046128a0565b611075565b34801561047657600080fd5b506102f3610485366004612857565b61108b565b34801561049657600080fd5b506102f36104a53660046126b1565b6110c1565b3480156104b657600080fd5b5061030a6104c53660046126b1565b60166020526000908152604090205481565b3480156104e357600080fd5b506102bb6104f23660046128a0565b61110d565b34801561050357600080fd5b5061028e611135565b34801561051857600080fd5b506102f36105273660046128a0565b611144565b34801561053857600080fd5b506102f36105473660046128a0565b611173565b34801561055857600080fd5b5061030a6105673660046126b1565b6111a2565b34801561057857600080fd5b506102f361122e565b34801561058d57600080fd5b50600a546001600160a01b03166102bb565b3480156105ab57600080fd5b5061028e6112a2565b3480156105c057600080fd5b506102f36105cf3660046127b7565b6112b1565b3480156105e057600080fd5b506102f36105ef3660046128a0565b611376565b34801561060057600080fd5b506102f361060f3660046128a0565b6113a5565b34801561062057600080fd5b506102f361062f36600461273b565b611424565b6102f36106423660046128dc565b61145c565b34801561065357600080fd5b5061028e6106623660046128a0565b6116ad565b34801561067357600080fd5b506102646106823660046126cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106bc57600080fd5b50600a5461026490600160a01b900460ff1681565b3480156106dd57600080fd5b506102f36106ec3660046126b1565b61176e565b3480156106fd57600080fd5b5061030a61070c3660046126b1565b611859565b60606006805461072090612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461074c90612b45565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107ae82611888565b6108145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083b8261110d565b9050806001600160a01b0316836001600160a01b031614156108a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080b565b336001600160a01b03821614806108c557506108c58133610682565b6109375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080b565b6109418383611895565b505050565b60006109526002611903565b905090565b600a546001600160a01b031633146109815760405162461bcd60e51b815260040161080b90612a31565b600c5461099683610990610946565b9061190d565b11156109e45760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161080b565b600e54600f546109f4908461190d565b1115610a545760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820726573657276604482015268656420737570706c7960b81b606482015260840161080b565b6001821115610ab55760005b82811015610941576000610a81600f54600d5461190d90919063ffffffff16565b600f80549192506000610a9383612b80565b9190505550610aa2838261196c565b5080610aad81612b80565b915050610a60565b6000610ace600f54600d5461190d90919063ffffffff16565b600f80549192506000610ae083612b80565b9190505550610941828261196c565b5050565b610afd3382611986565b610b195760405162461bcd60e51b815260040161080b90612a66565b610941838383611a70565b600a546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161080b90612a31565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a54600160a01b900460ff16610bc85760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161080b565b601054821115610c1a5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420616d6f756e7420746f206d696e74206174206f6e63650000604482015260640161080b565b600d54610c3583610990600f54610c2f610946565b90611bf1565b1115610c935760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201526620737570706c7960c81b606482015260840161080b565b600b543490610ca29084611c4d565b1115610cf05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161080b565b6001821115610d3a5760005b82811015610d34576000610d14600f54610c2f610946565b9050610d21335b8261196c565b5080610d2c81612b80565b915050610cfc565b50610d57565b6000610d4a600f54610c2f610946565b9050610d5533610d1b565b505b6001600160a01b03811615610aef576001600160a01b03811660009081526015602052604081208054349290610d8e908490612ab7565b90915550506001600160a01b03811660009081526016602052604081208054849290610dbb908490612ab7565b90915550505050565b600a546001600160a01b03163314610dee5760405162461bcd60e51b815260040161080b90612a31565b60648110610e3e5760405162461bcd60e51b815260206004820152601a60248201527f44657620636f6d6d697373696f6e20697320746f6f2068696768000000000000604482015260640161080b565b601155565b6001600160a01b0382166000908152600160205260408120610e659083611ccc565b90505b92915050565b600a546001600160a01b03163314610e985760405162461bcd60e51b815260040161080b90612a31565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ee45760405162461bcd60e51b815260040161080b90612a31565b60004790506000610f0f6064610f096011546064610f029190612b02565b8590611c4d565b90611cd8565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610f4a573d6000803e3d6000fd5b506014546001600160a01b03166108fc610f648484611bf1565b6040518115909202916000818181858888f19350505050158015610941573d6000803e3d6000fd5b600a546001600160a01b03163314610fb65760405162461bcd60e51b815260040161080b90612a31565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b61094183838360405180602001604052806000815250611424565b600a546001600160a01b0316331461101c5760405162461bcd60e51b815260040161080b90612a31565b61102581611888565b1561106b5760405162461bcd60e51b8152602060048201526016602482015275546f6b656e496420616c72656164792065786973747360501b604482015260640161080b565b610aef828261196c565b600080611083600284611d33565b509392505050565b600a546001600160a01b031633146110b55760405162461bcd60e51b815260040161080b90612a31565b6110be81611d4f565b50565b600a546001600160a01b031633146110eb5760405162461bcd60e51b815260040161080b90612a31565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e6882604051806060016040528060298152602001612c666029913960029190611d62565b60606009805461072090612b45565b600a546001600160a01b0316331461116e5760405162461bcd60e51b815260040161080b90612a31565b600c55565b600a546001600160a01b0316331461119d5760405162461bcd60e51b815260040161080b90612a31565b601055565b60006001600160a01b03821661120d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080b565b6001600160a01b0382166000908152600160205260409020610e6890611903565b600a546001600160a01b031633146112585760405162461bcd60e51b815260040161080b90612a31565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606007805461072090612b45565b6001600160a01b03821633141561130a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113a05760405162461bcd60e51b815260040161080b90612a31565b600b55565b600a546001600160a01b031633146113cf5760405162461bcd60e51b815260040161080b90612a31565b6064811061141f5760405162461bcd60e51b815260206004820181905260248201527f416666696c6961746520636f6d6d697373696f6e20697320746f6f2068696768604482015260640161080b565b601255565b61142e3383611986565b61144a5760405162461bcd60e51b815260040161080b90612a66565b61145684848484611d79565b50505050565b600a54600160a01b900460ff166114b55760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161080b565b6010548311156115075760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420616d6f756e7420746f206d696e74206174206f6e63650000604482015260640161080b565b600d5461151c84610990600f54610c2f610946565b111561157b5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178207072697661746044820152676520737570706c7960c01b606482015260840161080b565b600b54349061158a9085611c4d565b11156115d85760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161080b565b60018311156116215760005b8381101561161b5760006115fc600f54610c2f610946565b9050611608838261196c565b508061161381612b80565b9150506115e4565b5061163f565b6000611631600f54610c2f610946565b905061163d828261196c565b505b6001600160a01b03821615610941576001600160a01b03821660009081526015602052604081208054349290611676908490612ab7565b90915550506001600160a01b038216600090815260166020526040812080548592906116a3908490612ab7565b9091555050505050565b60606116b882611888565b61171c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080b565b600a54600160a81b900460ff161561176657611736611135565b61173f83611dac565b604051602001611750929190612960565b6040516020818303038152906040529050919050565b610e68611135565b600a546001600160a01b031633146117985760405162461bcd60e51b815260040161080b90612a31565b6001600160a01b0381166117fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6012546001600160a01b0382166000908152601560205260408120549091610e6891606491610f099190611c4d565b6000610e68600283611eaa565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ca8261110d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e68825490565b60008061191a8385612ab7565b905083811015610e655760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080b565b610aef828260405180602001604052806000815250611ec2565b600061199182611888565b6119f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080b565b60006119fd8361110d565b9050806001600160a01b0316846001600160a01b03161480611a385750836001600160a01b0316611a2d846107a3565b6001600160a01b0316145b80611a6857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a838261110d565b6001600160a01b031614611aeb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080b565b6001600160a01b038216611b4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b611b58600082611895565b6001600160a01b0383166000908152600160205260409020611b7a9082611ef5565b506001600160a01b0382166000908152600160205260409020611b9d9082611f01565b50611baa60028284611f0d565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082821115611c435760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161080b565b610e658284612b02565b600082611c5c57506000610e68565b6000611c688385612ae3565b905082611c758583612acf565b14610e655760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080b565b6000610e658383611f23565b6000808211611d295760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161080b565b610e658284612acf565b6000808080611d428686611fa9565b9097909650945050505050565b8051610aef906009906020840190612586565b6000611d6f848484612046565b90505b9392505050565b611d84848484611a70565b611d90848484846120af565b6114565760405162461bcd60e51b815260040161080b906129df565b606081611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612b80565b9150611df39050600a83612acf565b9150611dd4565b60008167ffffffffffffffff811115611e1557611e15612c07565b6040519080825280601f01601f191660200182016040528015611e3f576020820181803683370190505b5090505b8415611a6857611e54600183612b02565b9150611e61600a86612b9b565b611e6c906030612ab7565b60f81b818381518110611e8157611e81612bf1565b60200101906001600160f81b031916908160001a905350611ea3600a86612acf565b9450611e43565b60008181526001830160205260408120541515610e65565b611ecc8383612180565b611ed960008484846120af565b6109415760405162461bcd60e51b815260040161080b906129df565b6000610e658383612298565b6000610e65838361238b565b6000611d6f84846001600160a01b0385166123da565b81546000908210611f815760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080b565b826000018281548110611f9657611f96612bf1565b9060005260206000200154905092915050565b8154600090819083106120095760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080b565b600084600001848154811061202057612020612bf1565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816120765760405162461bcd60e51b815260040161080b91906129cc565b5084612083600183612b02565b8154811061209357612093612bf1565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b6120c857506001611a68565b6000612149630a85bd0160e11b338887876040516024016120ec949392919061298f565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612c34603291396001600160a01b038816919061247b565b9050600081806020019051810190612161919061283a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166121d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080b565b6121df81611888565b1561222c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080b565b6001600160a01b038216600090815260016020526040902061224e9082611f01565b5061225b60028284611f0d565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260018301602052604081205480156123815760006122bc600183612b02565b85549091506000906122d090600190612b02565b905060008660000182815481106122e9576122e9612bf1565b906000526020600020015490508087600001848154811061230c5761230c612bf1565b600091825260209091200155612323836001612ab7565b6000828152600189016020526040902055865487908061234557612345612bdb565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e68565b6000915050610e68565b60008181526001830160205260408120546123d257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e68565b506000610e68565b60008281526001840160205260408120548061243f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d72565b828561244c600184612b02565b8154811061245c5761245c612bf1565b9060005260206000209060020201600101819055506000915050611d72565b6060611d6f848460008585843b6124d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161080b565b600080866001600160a01b031685876040516124f09190612944565b60006040518083038185875af1925050503d806000811461252d576040519150601f19603f3d011682016040523d82523d6000602084013e612532565b606091505b509150915061254282828661254d565b979650505050505050565b6060831561255c575081611d72565b82511561256c5782518084602001fd5b8160405162461bcd60e51b815260040161080b91906129cc565b82805461259290612b45565b90600052602060002090601f0160209004810192826125b457600085556125fa565b82601f106125cd57805160ff19168380011785556125fa565b828001600101855582156125fa579182015b828111156125fa5782518255916020019190600101906125df565b5061260692915061260a565b5090565b5b80821115612606576000815560010161260b565b600067ffffffffffffffff8084111561263a5761263a612c07565b604051601f8501601f19908116603f0116810190828211818310171561266257612662612c07565b8160405280935085815286868601111561267b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126ac57600080fd5b919050565b6000602082840312156126c357600080fd5b610e6582612695565b600080604083850312156126df57600080fd5b6126e883612695565b91506126f660208401612695565b90509250929050565b60008060006060848603121561271457600080fd5b61271d84612695565b925061272b60208501612695565b9150604084013590509250925092565b6000806000806080858703121561275157600080fd5b61275a85612695565b935061276860208601612695565b925060408501359150606085013567ffffffffffffffff81111561278b57600080fd5b8501601f8101871361279c57600080fd5b6127ab8782356020840161261f565b91505092959194509250565b600080604083850312156127ca57600080fd5b6127d383612695565b9150602083013580151581146127e857600080fd5b809150509250929050565b6000806040838503121561280657600080fd5b61280f83612695565b946020939093013593505050565b60006020828403121561282f57600080fd5b8135610e6581612c1d565b60006020828403121561284c57600080fd5b8151610e6581612c1d565b60006020828403121561286957600080fd5b813567ffffffffffffffff81111561288057600080fd5b8201601f8101841361289157600080fd5b611a688482356020840161261f565b6000602082840312156128b257600080fd5b5035919050565b600080604083850312156128cc57600080fd5b823591506126f660208401612695565b6000806000606084860312156128f157600080fd5b8335925061290160208501612695565b915061290f60408501612695565b90509250925092565b60008151808452612930816020860160208601612b19565b601f01601f19169290920160200192915050565b60008251612956818460208701612b19565b9190910192915050565b60008351612972818460208801612b19565b835190830190612986818360208801612b19565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129c290830184612918565b9695505050505050565b602081526000610e656020830184612918565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612aca57612aca612baf565b500190565b600082612ade57612ade612bc5565b500490565b6000816000190483118215151615612afd57612afd612baf565b500290565b600082821015612b1457612b14612baf565b500390565b60005b83811015612b34578181015183820152602001612b1c565b838111156114565750506000910152565b600181811c90821680612b5957607f821691505b60208210811415612b7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9457612b94612baf565b5060010190565b600082612baa57612baa612bc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110be57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f7a5f5dd0df284990e198c42e7172a13d21d25176ba236cc2bce538ee87a61fe64736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063612f12cf11610123578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610647578063e985e9c514610667578063eb8d2444146106b0578063f2fde38b146106d1578063f6543170146106f157600080fd5b8063a22cb465146105b4578063adcb1e66146105d4578063b73495e2146105f4578063b88d4fde14610614578063be78b71e1461063457600080fd5b80637084b2b7116100f25780637084b2b71461052c57806370a082311461054c578063715018a61461056c5780638da5cb5b1461058157806395d89b411461059f57600080fd5b8063612f12cf146104aa5780636352211e146104d75780636c0360eb146104f75780636f8b44b01461050c57600080fd5b80632f4d7d02116101b157806342842e0e1161017557806342842e0e1461040a57806343785dc91461042a5780634f6ccce71461044a57806355f804b31461046a5780635747e8e81461048a57600080fd5b80632f4d7d02146103805780632f745c59146103a0578063371756bd146103c05780633ccfd60b146103e05780633fcc8405146103f557600080fd5b806318160ddd116101f857806318160ddd146102f55780631df656b01461031857806323b872dd14610338578063261f5a9714610358578063277bc0c81461036d57600080fd5b806301ffc9a71461022a57806306fdde0314610279578063081812fc1461029b578063095ea7b3146102d3575b600080fd5b34801561023657600080fd5b5061026461024536600461281d565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561028557600080fd5b5061028e610711565b60405161027091906129cc565b3480156102a757600080fd5b506102bb6102b63660046128a0565b6107a3565b6040516001600160a01b039091168152602001610270565b3480156102df57600080fd5b506102f36102ee3660046127f3565b610830565b005b34801561030157600080fd5b5061030a610946565b604051908152602001610270565b34801561032457600080fd5b506102f36103333660046128b9565b610957565b34801561034457600080fd5b506102f36103533660046126ff565b610af3565b34801561036457600080fd5b506102f3610b24565b6102f361037b3660046128b9565b610b6f565b34801561038c57600080fd5b506102f361039b3660046128a0565b610dc4565b3480156103ac57600080fd5b5061030a6103bb3660046127f3565b610e43565b3480156103cc57600080fd5b506102f36103db3660046126b1565b610e6e565b3480156103ec57600080fd5b506102f3610eba565b34801561040157600080fd5b506102f3610f8c565b34801561041657600080fd5b506102f36104253660046126ff565b610fd7565b34801561043657600080fd5b506102f36104453660046127f3565b610ff2565b34801561045657600080fd5b5061030a6104653660046128a0565b611075565b34801561047657600080fd5b506102f3610485366004612857565b61108b565b34801561049657600080fd5b506102f36104a53660046126b1565b6110c1565b3480156104b657600080fd5b5061030a6104c53660046126b1565b60166020526000908152604090205481565b3480156104e357600080fd5b506102bb6104f23660046128a0565b61110d565b34801561050357600080fd5b5061028e611135565b34801561051857600080fd5b506102f36105273660046128a0565b611144565b34801561053857600080fd5b506102f36105473660046128a0565b611173565b34801561055857600080fd5b5061030a6105673660046126b1565b6111a2565b34801561057857600080fd5b506102f361122e565b34801561058d57600080fd5b50600a546001600160a01b03166102bb565b3480156105ab57600080fd5b5061028e6112a2565b3480156105c057600080fd5b506102f36105cf3660046127b7565b6112b1565b3480156105e057600080fd5b506102f36105ef3660046128a0565b611376565b34801561060057600080fd5b506102f361060f3660046128a0565b6113a5565b34801561062057600080fd5b506102f361062f36600461273b565b611424565b6102f36106423660046128dc565b61145c565b34801561065357600080fd5b5061028e6106623660046128a0565b6116ad565b34801561067357600080fd5b506102646106823660046126cc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106bc57600080fd5b50600a5461026490600160a01b900460ff1681565b3480156106dd57600080fd5b506102f36106ec3660046126b1565b61176e565b3480156106fd57600080fd5b5061030a61070c3660046126b1565b611859565b60606006805461072090612b45565b80601f016020809104026020016040519081016040528092919081815260200182805461074c90612b45565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107ae82611888565b6108145760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083b8261110d565b9050806001600160a01b0316836001600160a01b031614156108a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161080b565b336001600160a01b03821614806108c557506108c58133610682565b6109375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161080b565b6109418383611895565b505050565b60006109526002611903565b905090565b600a546001600160a01b031633146109815760405162461bcd60e51b815260040161080b90612a31565b600c5461099683610990610946565b9061190d565b11156109e45760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015260640161080b565b600e54600f546109f4908461190d565b1115610a545760405162461bcd60e51b815260206004820152602960248201527f507572636861736520776f756c6420657863656564206d617820726573657276604482015268656420737570706c7960b81b606482015260840161080b565b6001821115610ab55760005b82811015610941576000610a81600f54600d5461190d90919063ffffffff16565b600f80549192506000610a9383612b80565b9190505550610aa2838261196c565b5080610aad81612b80565b915050610a60565b6000610ace600f54600d5461190d90919063ffffffff16565b600f80549192506000610ae083612b80565b9190505550610941828261196c565b5050565b610afd3382611986565b610b195760405162461bcd60e51b815260040161080b90612a66565b610941838383611a70565b600a546001600160a01b03163314610b4e5760405162461bcd60e51b815260040161080b90612a31565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b600a54600160a01b900460ff16610bc85760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161080b565b601054821115610c1a5760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420616d6f756e7420746f206d696e74206174206f6e63650000604482015260640161080b565b600d54610c3583610990600f54610c2f610946565b90611bf1565b1115610c935760405162461bcd60e51b815260206004820152602760248201527f507572636861736520776f756c6420657863656564206d6178207075626c696360448201526620737570706c7960c81b606482015260840161080b565b600b543490610ca29084611c4d565b1115610cf05760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161080b565b6001821115610d3a5760005b82811015610d34576000610d14600f54610c2f610946565b9050610d21335b8261196c565b5080610d2c81612b80565b915050610cfc565b50610d57565b6000610d4a600f54610c2f610946565b9050610d5533610d1b565b505b6001600160a01b03811615610aef576001600160a01b03811660009081526015602052604081208054349290610d8e908490612ab7565b90915550506001600160a01b03811660009081526016602052604081208054849290610dbb908490612ab7565b90915550505050565b600a546001600160a01b03163314610dee5760405162461bcd60e51b815260040161080b90612a31565b60648110610e3e5760405162461bcd60e51b815260206004820152601a60248201527f44657620636f6d6d697373696f6e20697320746f6f2068696768000000000000604482015260640161080b565b601155565b6001600160a01b0382166000908152600160205260408120610e659083611ccc565b90505b92915050565b600a546001600160a01b03163314610e985760405162461bcd60e51b815260040161080b90612a31565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314610ee45760405162461bcd60e51b815260040161080b90612a31565b60004790506000610f0f6064610f096011546064610f029190612b02565b8590611c4d565b90611cd8565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610f4a573d6000803e3d6000fd5b506014546001600160a01b03166108fc610f648484611bf1565b6040518115909202916000818181858888f19350505050158015610941573d6000803e3d6000fd5b600a546001600160a01b03163314610fb65760405162461bcd60e51b815260040161080b90612a31565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b61094183838360405180602001604052806000815250611424565b600a546001600160a01b0316331461101c5760405162461bcd60e51b815260040161080b90612a31565b61102581611888565b1561106b5760405162461bcd60e51b8152602060048201526016602482015275546f6b656e496420616c72656164792065786973747360501b604482015260640161080b565b610aef828261196c565b600080611083600284611d33565b509392505050565b600a546001600160a01b031633146110b55760405162461bcd60e51b815260040161080b90612a31565b6110be81611d4f565b50565b600a546001600160a01b031633146110eb5760405162461bcd60e51b815260040161080b90612a31565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e6882604051806060016040528060298152602001612c666029913960029190611d62565b60606009805461072090612b45565b600a546001600160a01b0316331461116e5760405162461bcd60e51b815260040161080b90612a31565b600c55565b600a546001600160a01b0316331461119d5760405162461bcd60e51b815260040161080b90612a31565b601055565b60006001600160a01b03821661120d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161080b565b6001600160a01b0382166000908152600160205260409020610e6890611903565b600a546001600160a01b031633146112585760405162461bcd60e51b815260040161080b90612a31565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606007805461072090612b45565b6001600160a01b03821633141561130a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161080b565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146113a05760405162461bcd60e51b815260040161080b90612a31565b600b55565b600a546001600160a01b031633146113cf5760405162461bcd60e51b815260040161080b90612a31565b6064811061141f5760405162461bcd60e51b815260206004820181905260248201527f416666696c6961746520636f6d6d697373696f6e20697320746f6f2068696768604482015260640161080b565b601255565b61142e3383611986565b61144a5760405162461bcd60e51b815260040161080b90612a66565b61145684848484611d79565b50505050565b600a54600160a01b900460ff166114b55760405162461bcd60e51b815260206004820152601b60248201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604482015260640161080b565b6010548311156115075760405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420616d6f756e7420746f206d696e74206174206f6e63650000604482015260640161080b565b600d5461151c84610990600f54610c2f610946565b111561157b5760405162461bcd60e51b815260206004820152602860248201527f507572636861736520776f756c6420657863656564206d6178207072697661746044820152676520737570706c7960c01b606482015260840161080b565b600b54349061158a9085611c4d565b11156115d85760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161080b565b60018311156116215760005b8381101561161b5760006115fc600f54610c2f610946565b9050611608838261196c565b508061161381612b80565b9150506115e4565b5061163f565b6000611631600f54610c2f610946565b905061163d828261196c565b505b6001600160a01b03821615610941576001600160a01b03821660009081526015602052604081208054349290611676908490612ab7565b90915550506001600160a01b038216600090815260166020526040812080548592906116a3908490612ab7565b9091555050505050565b60606116b882611888565b61171c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080b565b600a54600160a81b900460ff161561176657611736611135565b61173f83611dac565b604051602001611750929190612960565b6040516020818303038152906040529050919050565b610e68611135565b600a546001600160a01b031633146117985760405162461bcd60e51b815260040161080b90612a31565b6001600160a01b0381166117fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080b565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6012546001600160a01b0382166000908152601560205260408120549091610e6891606491610f099190611c4d565b6000610e68600283611eaa565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ca8261110d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610e68825490565b60008061191a8385612ab7565b905083811015610e655760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161080b565b610aef828260405180602001604052806000815250611ec2565b600061199182611888565b6119f25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161080b565b60006119fd8361110d565b9050806001600160a01b0316846001600160a01b03161480611a385750836001600160a01b0316611a2d846107a3565b6001600160a01b0316145b80611a6857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a838261110d565b6001600160a01b031614611aeb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161080b565b6001600160a01b038216611b4d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161080b565b611b58600082611895565b6001600160a01b0383166000908152600160205260409020611b7a9082611ef5565b506001600160a01b0382166000908152600160205260409020611b9d9082611f01565b50611baa60028284611f0d565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082821115611c435760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161080b565b610e658284612b02565b600082611c5c57506000610e68565b6000611c688385612ae3565b905082611c758583612acf565b14610e655760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b606482015260840161080b565b6000610e658383611f23565b6000808211611d295760405162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015260640161080b565b610e658284612acf565b6000808080611d428686611fa9565b9097909650945050505050565b8051610aef906009906020840190612586565b6000611d6f848484612046565b90505b9392505050565b611d84848484611a70565b611d90848484846120af565b6114565760405162461bcd60e51b815260040161080b906129df565b606081611dd05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dfa5780611de481612b80565b9150611df39050600a83612acf565b9150611dd4565b60008167ffffffffffffffff811115611e1557611e15612c07565b6040519080825280601f01601f191660200182016040528015611e3f576020820181803683370190505b5090505b8415611a6857611e54600183612b02565b9150611e61600a86612b9b565b611e6c906030612ab7565b60f81b818381518110611e8157611e81612bf1565b60200101906001600160f81b031916908160001a905350611ea3600a86612acf565b9450611e43565b60008181526001830160205260408120541515610e65565b611ecc8383612180565b611ed960008484846120af565b6109415760405162461bcd60e51b815260040161080b906129df565b6000610e658383612298565b6000610e65838361238b565b6000611d6f84846001600160a01b0385166123da565b81546000908210611f815760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080b565b826000018281548110611f9657611f96612bf1565b9060005260206000200154905092915050565b8154600090819083106120095760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080b565b600084600001848154811061202057612020612bf1565b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816120765760405162461bcd60e51b815260040161080b91906129cc565b5084612083600183612b02565b8154811061209357612093612bf1565b9060005260206000209060020201600101549150509392505050565b60006001600160a01b0384163b6120c857506001611a68565b6000612149630a85bd0160e11b338887876040516024016120ec949392919061298f565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612c34603291396001600160a01b038816919061247b565b9050600081806020019051810190612161919061283a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6001600160a01b0382166121d65760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161080b565b6121df81611888565b1561222c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161080b565b6001600160a01b038216600090815260016020526040902061224e9082611f01565b5061225b60028284611f0d565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815260018301602052604081205480156123815760006122bc600183612b02565b85549091506000906122d090600190612b02565b905060008660000182815481106122e9576122e9612bf1565b906000526020600020015490508087600001848154811061230c5761230c612bf1565b600091825260209091200155612323836001612ab7565b6000828152600189016020526040902055865487908061234557612345612bdb565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e68565b6000915050610e68565b60008181526001830160205260408120546123d257508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e68565b506000610e68565b60008281526001840160205260408120548061243f575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611d72565b828561244c600184612b02565b8154811061245c5761245c612bf1565b9060005260206000209060020201600101819055506000915050611d72565b6060611d6f848460008585843b6124d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161080b565b600080866001600160a01b031685876040516124f09190612944565b60006040518083038185875af1925050503d806000811461252d576040519150601f19603f3d011682016040523d82523d6000602084013e612532565b606091505b509150915061254282828661254d565b979650505050505050565b6060831561255c575081611d72565b82511561256c5782518084602001fd5b8160405162461bcd60e51b815260040161080b91906129cc565b82805461259290612b45565b90600052602060002090601f0160209004810192826125b457600085556125fa565b82601f106125cd57805160ff19168380011785556125fa565b828001600101855582156125fa579182015b828111156125fa5782518255916020019190600101906125df565b5061260692915061260a565b5090565b5b80821115612606576000815560010161260b565b600067ffffffffffffffff8084111561263a5761263a612c07565b604051601f8501601f19908116603f0116810190828211818310171561266257612662612c07565b8160405280935085815286868601111561267b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126ac57600080fd5b919050565b6000602082840312156126c357600080fd5b610e6582612695565b600080604083850312156126df57600080fd5b6126e883612695565b91506126f660208401612695565b90509250929050565b60008060006060848603121561271457600080fd5b61271d84612695565b925061272b60208501612695565b9150604084013590509250925092565b6000806000806080858703121561275157600080fd5b61275a85612695565b935061276860208601612695565b925060408501359150606085013567ffffffffffffffff81111561278b57600080fd5b8501601f8101871361279c57600080fd5b6127ab8782356020840161261f565b91505092959194509250565b600080604083850312156127ca57600080fd5b6127d383612695565b9150602083013580151581146127e857600080fd5b809150509250929050565b6000806040838503121561280657600080fd5b61280f83612695565b946020939093013593505050565b60006020828403121561282f57600080fd5b8135610e6581612c1d565b60006020828403121561284c57600080fd5b8151610e6581612c1d565b60006020828403121561286957600080fd5b813567ffffffffffffffff81111561288057600080fd5b8201601f8101841361289157600080fd5b611a688482356020840161261f565b6000602082840312156128b257600080fd5b5035919050565b600080604083850312156128cc57600080fd5b823591506126f660208401612695565b6000806000606084860312156128f157600080fd5b8335925061290160208501612695565b915061290f60408501612695565b90509250925092565b60008151808452612930816020860160208601612b19565b601f01601f19169290920160200192915050565b60008251612956818460208701612b19565b9190910192915050565b60008351612972818460208801612b19565b835190830190612986818360208801612b19565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129c290830184612918565b9695505050505050565b602081526000610e656020830184612918565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612aca57612aca612baf565b500190565b600082612ade57612ade612bc5565b500490565b6000816000190483118215151615612afd57612afd612baf565b500290565b600082821015612b1457612b14612baf565b500390565b60005b83811015612b34578181015183820152602001612b1c565b838111156114565750506000910152565b600181811c90821680612b5957607f821691505b60208210811415612b7a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612b9457612b94612baf565b5060010190565b600082612baa57612baa612bc5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146110be57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f7a5f5dd0df284990e198c42e7172a13d21d25176ba236cc2bce538ee87a61fe64736f6c63430008060033

Deployed Bytecode Sourcemap

66341:7362:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9939:150;;;;;;;;;;-1:-1:-1;9939:150:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10048:33:0;10024:4;10048:33;;;;;;;;;;;;;;9939:150;;;;6517:14:1;;6510:22;6492:41;;6480:2;6465:18;9939:150:0;;;;;;;;50965:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53751:221::-;;;;;;;;;;-1:-1:-1;53751:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5815:32:1;;;5797:51;;5785:2;5770:18;53751:221:0;5752:102:1;53281:404:0;;;;;;;;;;-1:-1:-1;53281:404:0;;;;;:::i;:::-;;:::i;:::-;;52759:211;;;;;;;;;;;;;:::i;:::-;;;19659:25:1;;;19647:2;19632:18;52759:211:0;19614:76:1;71912:837:0;;;;;;;;;;-1:-1:-1;71912:837:0;;;;;:::i;:::-;;:::i;54641:305::-;;;;;;;;;;-1:-1:-1;54641:305:0;;;;;:::i;:::-;;:::i;68386:91::-;;;;;;;;;;;;;:::i;69614:1084::-;;;;;;:::i;:::-;;:::i;68749:179::-;;;;;;;;;;-1:-1:-1;68749:179:0;;;;;:::i;:::-;;:::i;52521:162::-;;;;;;;;;;-1:-1:-1;52521:162:0;;;;;:::i;:::-;;:::i;69471:98::-;;;;;;;;;;-1:-1:-1;69471:98:0;;;;;:::i;:::-;;:::i;73412:288::-;;;;;;;;;;;;;:::i;68226:99::-;;;;;;;;;;;;;:::i;55017:151::-;;;;;;;;;;-1:-1:-1;55017:151:0;;;;;:::i;:::-;;:::i;72836:177::-;;;;;;;;;;-1:-1:-1;72836:177:0;;;;;:::i;:::-;;:::i;53047:172::-;;;;;;;;;;-1:-1:-1;53047:172:0;;;;;:::i;:::-;;:::i;69156:101::-;;;;;;;;;;-1:-1:-1;69156:101:0;;;;;:::i;:::-;;:::i;69315:98::-;;;;;;;;;;-1:-1:-1;69315:98:0;;;;;:::i;:::-;;:::i;66942:59::-;;;;;;;;;;-1:-1:-1;66942:59:0;;;;;:::i;:::-;;;;;;;;;;;;;;50721:177;;;;;;;;;;-1:-1:-1;50721:177:0;;;;;:::i;:::-;;:::i;52340:97::-;;;;;;;;;;;;;:::i;68549:107::-;;;;;;;;;;-1:-1:-1;68549:107:0;;;;;:::i;:::-;;:::i;68039:94::-;;;;;;;;;;-1:-1:-1;68039:94:0;;;;;:::i;:::-;;:::i;50438:221::-;;;;;;;;;;-1:-1:-1;50438:221:0;;;;;:::i;:::-;;:::i;65630:148::-;;;;;;;;;;;;;:::i;64979:87::-;;;;;;;;;;-1:-1:-1;65052:6:0;;-1:-1:-1;;;;;65052:6:0;64979:87;;51134:104;;;;;;;;;;;;;:::i;54044:295::-;;;;;;;;;;-1:-1:-1;54044:295:0;;;;;:::i;:::-;;:::i;69001:94::-;;;;;;;;;;-1:-1:-1;69001:94:0;;;;;:::i;:::-;;:::i;67744:202::-;;;;;;;;;;-1:-1:-1;67744:202:0;;;;;:::i;:::-;;:::i;55239:285::-;;;;;;;;;;-1:-1:-1;55239:285:0;;;;;:::i;:::-;;:::i;70744:1084::-;;;;;;:::i;:::-;;:::i;73072:332::-;;;;;;;;;;-1:-1:-1;73072:332:0;;;;;:::i;:::-;;:::i;54410:164::-;;;;;;;;;;-1:-1:-1;54410:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;54531:25:0;;;54507:4;54531:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54410:164;66456:24;;;;;;;;;;-1:-1:-1;66456:24:0;;;;-1:-1:-1;;;66456:24:0;;;;;;65933:244;;;;;;;;;;-1:-1:-1;65933:244:0;;;;;:::i;:::-;;:::i;67525:211::-;;;;;;;;;;-1:-1:-1;67525:211:0;;;;;:::i;:::-;;:::i;50965:100::-;51019:13;51052:5;51045:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50965:100;:::o;53751:221::-;53827:7;53855:16;53863:7;53855;:16::i;:::-;53847:73;;;;-1:-1:-1;;;53847:73:0;;15758:2:1;53847:73:0;;;15740:21:1;15797:2;15777:18;;;15770:30;15836:34;15816:18;;;15809:62;-1:-1:-1;;;15887:18:1;;;15880:42;15939:19;;53847:73:0;;;;;;;;;-1:-1:-1;53940:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53940:24:0;;53751:221::o;53281:404::-;53362:13;53378:23;53393:7;53378:14;:23::i;:::-;53362:39;;53426:5;-1:-1:-1;;;;;53420:11:0;:2;-1:-1:-1;;;;;53420:11:0;;;53412:57;;;;-1:-1:-1;;;53412:57:0;;17358:2:1;53412:57:0;;;17340:21:1;17397:2;17377:18;;;17370:30;17436:34;17416:18;;;17409:62;-1:-1:-1;;;17487:18:1;;;17480:31;17528:19;;53412:57:0;17330:223:1;53412:57:0;700:10;-1:-1:-1;;;;;53490:21:0;;;;:69;;-1:-1:-1;53515:44:0;53539:5;700:10;54410:164;:::i;53515:44::-;53482:161;;;;-1:-1:-1;;;53482:161:0;;13040:2:1;53482:161:0;;;13022:21:1;13079:2;13059:18;;;13052:30;13118:34;13098:18;;;13091:62;13189:26;13169:18;;;13162:54;13233:19;;53482:161:0;13012:246:1;53482:161:0;53656:21;53665:2;53669:7;53656:8;:21::i;:::-;53351:334;53281:404;;:::o;52759:211::-;52820:7;52941:21;:12;:19;:21::i;:::-;52934:28;;52759:211;:::o;71912:837::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;72049:20:::1;;72012:33;72030:14;72012:13;:11;:13::i;:::-;:17:::0;::::1;:33::i;:::-;:57;;72004:102;;;::::0;-1:-1:-1;;;72004:102:0;;14231:2:1;72004:102:0::1;::::0;::::1;14213:21:1::0;;;14250:18;;;14243:30;14309:34;14289:18;;;14282:62;14361:18;;72004:102:0::1;14203:182:1::0;72004:102:0::1;72172:29;::::0;72125:23:::1;::::0;:43:::1;::::0;72153:14;72125:27:::1;:43::i;:::-;:76;;72117:130;;;::::0;-1:-1:-1;;;72117:130:0;;18168:2:1;72117:130:0::1;::::0;::::1;18150:21:1::0;18207:2;18187:18;;;18180:30;18246:34;18226:18;;;18219:62;-1:-1:-1;;;18297:18:1;;;18290:39;18346:19;;72117:130:0::1;18140:231:1::0;72117:130:0::1;72281:1;72264:14;:18;72260:482;;;72303:9;72299:239;72322:14;72318:1;:18;72299:239;;;72362:15;72380:56;72412:23;;72380:27;;:31;;:56;;;;:::i;:::-;72455:23;:25:::0;;72362:74;;-1:-1:-1;72455:23:0::1;:25;::::0;::::1;:::i;:::-;;;;;;72499:23;72509:3;72514:7;72499:9;:23::i;:::-;-1:-1:-1::0;72338:3:0;::::1;::::0;::::1;:::i;:::-;;;;72299:239;;72260:482;72574:15;72592:56;72624:23;;72592:27;;:31;;:56;;;;:::i;:::-;72667:23;:25:::0;;72574:74;;-1:-1:-1;72667:23:0::1;:25;::::0;::::1;:::i;:::-;;;;;;72707:23;72717:3;72722:7;72707:9;:23::i;72260:482::-;71912:837:::0;;:::o;54641:305::-;54802:41;700:10;54835:7;54802:18;:41::i;:::-;54794:103;;;;-1:-1:-1;;;54794:103:0;;;;;;;:::i;:::-;54910:28;54920:4;54926:2;54930:7;54910:9;:28::i;68386:91::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;68457:12:::1;::::0;;-1:-1:-1;;;;68441:28:0;::::1;-1:-1:-1::0;;;68457:12:0;;;::::1;;;68456:13;68441:28:::0;;::::1;;::::0;;68386:91::o;69614:1084::-;69716:12;;-1:-1:-1;;;69716:12:0;;;;69708:52;;;;-1:-1:-1;;;69708:52:0;;11150:2:1;69708:52:0;;;11132:21:1;11189:2;11169:18;;;11162:30;11228:29;11208:18;;;11201:57;11275:18;;69708:52:0;11122:177:1;69708:52:0;69797:9;;69779:14;:27;;69771:70;;;;-1:-1:-1;;;69771:70:0;;12681:2:1;69771:70:0;;;12663:21:1;12720:2;12700:18;;;12693:30;12759:32;12739:18;;;12732:60;12809:18;;69771:70:0;12653:180:1;69771:70:0;69926:27;;69860:62;69907:14;69860:42;69878:23;;69860:13;:11;:13::i;:::-;:17;;:42::i;:62::-;:93;;69852:145;;;;-1:-1:-1;;;69852:145:0;;17760:2:1;69852:145:0;;;17742:21:1;17799:2;17779:18;;;17772:30;17838:34;17818:18;;;17811:62;-1:-1:-1;;;17889:18:1;;;17882:37;17936:19;;69852:145:0;17732:229:1;69852:145:0;70016:9;;70049;;70016:29;;70030:14;70016:13;:29::i;:::-;:42;;70008:86;;;;-1:-1:-1;;;70008:86:0;;10431:2:1;70008:86:0;;;10413:21:1;10470:2;10450:18;;;10443:30;10509:33;10489:18;;;10482:61;10560:18;;70008:86:0;10403:181:1;70008:86:0;70136:1;70119:14;:18;70115:380;;;70158:9;70154:190;70177:14;70173:1;:18;70154:190;;;70217:15;70235:42;70253:23;;70235:13;:11;:13::i;:42::-;70217:60;-1:-1:-1;70296:32:0;700:10;70306:12;70320:7;70296:9;:32::i;:::-;-1:-1:-1;70193:3:0;;;;:::i;:::-;;;;70154:190;;;;70115:380;;;70376:15;70394:42;70412:23;;70394:13;:11;:13::i;:42::-;70376:60;-1:-1:-1;70451:32:0;700:10;70461:12;620:98;70451:32;70361:134;70115:380;-1:-1:-1;;;;;70510:24:0;;;70507:184;;-1:-1:-1;;;;;70560:37:0;;;;;;:25;:37;;;;;:50;;70601:9;;70560:37;:50;;70601:9;;70560:50;:::i;:::-;;;;-1:-1:-1;;;;;;;70625:36:0;;;;;;:24;:36;;;;;:54;;70665:14;;70625:36;:54;;70665:14;;70625:54;:::i;:::-;;;;-1:-1:-1;;69614:1084:0;;:::o;68749:179::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;68848:3:::1;68834:11;:17;68826:56;;;::::0;-1:-1:-1;;;68826:56:0;;13876:2:1;68826:56:0::1;::::0;::::1;13858:21:1::0;13915:2;13895:18;;;13888:30;13954:28;13934:18;;;13927:56;14000:18;;68826:56:0::1;13848:176:1::0;68826:56:0::1;68893:13;:27:::0;68749:179::o;52521:162::-;-1:-1:-1;;;;;52645:20:0;;52618:7;52645:20;;;:13;:20;;;;;:30;;52669:5;52645:23;:30::i;:::-;52638:37;;52521:162;;;;;:::o;69471:98::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;69544:7:::1;:17:::0;;-1:-1:-1;;;;;;69544:17:0::1;-1:-1:-1::0;;;;;69544:17:0;;;::::1;::::0;;;::::1;::::0;;69471:98::o;73412:288::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;73462:15:::1;73480:21;73462:39;;73512:21;73536:41;73573:3;73536:32;73554:13;;73548:3;:19;;;;:::i;:::-;73536:7:::0;;:11:::1;:32::i;:::-;:36:::0;::::1;:41::i;:::-;73596:7;::::0;73588:40:::1;::::0;73512:65;;-1:-1:-1;;;;;;73596:7:0::1;::::0;73588:40;::::1;;;::::0;73512:65;;73596:7:::1;73588:40:::0;73596:7;73588:40;73512:65;73596:7;73588:40;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;73647:7:0::1;::::0;-1:-1:-1;;;;;73647:7:0::1;73639:53;73665:26;:7:::0;73677:13;73665:11:::1;:26::i;:::-;73639:53;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;68226:99:::0;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;68303:14:::1;::::0;;-1:-1:-1;;;;68285:32:0;::::1;-1:-1:-1::0;;;68303:14:0;;;::::1;;;68302:15;68285:32:::0;;::::1;;::::0;;68226:99::o;55017:151::-;55121:39;55138:4;55144:2;55148:7;55121:39;;;;;;;;;;;;:16;:39::i;72836:177::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;72928:16:::1;72936:7;72928;:16::i;:::-;72927:17;72919:52;;;::::0;-1:-1:-1;;;72919:52:0;;10080:2:1;72919:52:0::1;::::0;::::1;10062:21:1::0;10119:2;10099:18;;;10092:30;-1:-1:-1;;;10138:18:1;;;10131:52;10200:18;;72919:52:0::1;10052:172:1::0;72919:52:0::1;72982:23;72992:3;72997:7;72982:9;:23::i;53047:172::-:0;53122:7;;53164:22;:12;53180:5;53164:15;:22::i;:::-;-1:-1:-1;53142:44:0;53047:172;-1:-1:-1;;;53047:172:0:o;69156:101::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;69229:20:::1;69241:7;69229:11;:20::i;:::-;69156:101:::0;:::o;69315:98::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;69388:7:::1;:17:::0;;-1:-1:-1;;;;;;69388:17:0::1;-1:-1:-1::0;;;;;69388:17:0;;;::::1;::::0;;;::::1;::::0;;69315:98::o;50721:177::-;50793:7;50820:70;50837:7;50820:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52340:97::-;52388:13;52421:8;52414:15;;;;;:::i;68549:107::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;68618:20:::1;:30:::0;68549:107::o;68039:94::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;68107:9:::1;:18:::0;68039:94::o;50438:221::-;50510:7;-1:-1:-1;;;;;50538:19:0;;50530:74;;;;-1:-1:-1;;;50530:74:0;;13465:2:1;50530:74:0;;;13447:21:1;13504:2;13484:18;;;13477:30;13543:34;13523:18;;;13516:62;-1:-1:-1;;;13594:18:1;;;13587:40;13644:19;;50530:74:0;13437:232:1;50530:74:0;-1:-1:-1;;;;;50622:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;65630:148::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;65721:6:::1;::::0;65700:40:::1;::::0;65737:1:::1;::::0;-1:-1:-1;;;;;65721:6:0::1;::::0;65700:40:::1;::::0;65737:1;;65700:40:::1;65751:6;:19:::0;;-1:-1:-1;;;;;;65751:19:0::1;::::0;;65630:148::o;51134:104::-;51190:13;51223:7;51216:14;;;;;:::i;54044:295::-;-1:-1:-1;;;;;54147:24:0;;700:10;54147:24;;54139:62;;;;-1:-1:-1;;;54139:62:0;;9726:2:1;54139:62:0;;;9708:21:1;9765:2;9745:18;;;9738:30;9804:27;9784:18;;;9777:55;9849:18;;54139:62:0;9698:175:1;54139:62:0;700:10;54214:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54214:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;54214:53:0;;;;;;;;;;54283:48;;6492:41:1;;;54214:42:0;;700:10;54283:48;;6465:18:1;54283:48:0;;;;;;;54044:295;;:::o;69001:94::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;69069:9:::1;:18:::0;69001:94::o;67744:202::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;67847:3:::1;67836:8;:14;67828:59;;;::::0;-1:-1:-1;;;67828:59:0;;18578:2:1;67828:59:0::1;::::0;::::1;18560:21:1::0;;;18597:18;;;18590:30;18656:34;18636:18;;;18629:62;18708:18;;67828:59:0::1;18550:182:1::0;67828:59:0::1;67898:29;:40:::0;67744:202::o;55239:285::-;55371:41;700:10;55404:7;55371:18;:41::i;:::-;55363:103;;;;-1:-1:-1;;;55363:103:0;;;;;;;:::i;:::-;55477:39;55491:4;55497:2;55501:7;55510:5;55477:13;:39::i;:::-;55239:285;;;;:::o;70744:1084::-;70863:12;;-1:-1:-1;;;70863:12:0;;;;70855:52;;;;-1:-1:-1;;;70855:52:0;;11150:2:1;70855:52:0;;;11132:21:1;11189:2;11169:18;;;11162:30;11228:29;11208:18;;;11201:57;11275:18;;70855:52:0;11122:177:1;70855:52:0;70944:9;;70926:14;:27;;70918:70;;;;-1:-1:-1;;;70918:70:0;;12681:2:1;70918:70:0;;;12663:21:1;12720:2;12700:18;;;12693:30;12759:32;12739:18;;;12732:60;12809:18;;70918:70:0;12653:180:1;70918:70:0;71073:27;;71007:62;71054:14;71007:42;71025:23;;71007:13;:11;:13::i;:62::-;:93;;70999:146;;;;-1:-1:-1;;;70999:146:0;;7373:2:1;70999:146:0;;;7355:21:1;7412:2;7392:18;;;7385:30;7451:34;7431:18;;;7424:62;-1:-1:-1;;;7502:18:1;;;7495:38;7550:19;;70999:146:0;7345:230:1;70999:146:0;71164:9;;71197;;71164:29;;71178:14;71164:13;:29::i;:::-;:42;;71156:86;;;;-1:-1:-1;;;71156:86:0;;10431:2:1;71156:86:0;;;10413:21:1;10470:2;10450:18;;;10443:30;10509:33;10489:18;;;10482:61;10560:18;;71156:86:0;10403:181:1;71156:86:0;71284:1;71267:14;:18;71263:362;;;71306:9;71302:181;71325:14;71321:1;:18;71302:181;;;71365:15;71383:42;71401:23;;71383:13;:11;:13::i;:42::-;71365:60;;71444:23;71454:3;71459:7;71444:9;:23::i;:::-;-1:-1:-1;71341:3:0;;;;:::i;:::-;;;;71302:181;;;;71263:362;;;71515:15;71533:42;71551:23;;71533:13;:11;:13::i;:42::-;71515:60;;71590:23;71600:3;71605:7;71590:9;:23::i;:::-;71500:125;71263:362;-1:-1:-1;;;;;71640:24:0;;;71637:184;;-1:-1:-1;;;;;71690:37:0;;;;;;:25;:37;;;;;:50;;71731:9;;71690:37;:50;;71731:9;;71690:50;:::i;:::-;;;;-1:-1:-1;;;;;;;71755:36:0;;;;;;:24;:36;;;;;:54;;71795:14;;71755:36;:54;;71795:14;;71755:54;:::i;:::-;;;;-1:-1:-1;;70744:1084:0;;;:::o;73072:332::-;73145:13;73184:16;73192:7;73184;:16::i;:::-;73176:76;;;;-1:-1:-1;;;73176:76:0;;16942:2:1;73176:76:0;;;16924:21:1;16981:2;16961:18;;;16954:30;17020:34;17000:18;;;16993:62;-1:-1:-1;;;17071:18:1;;;17064:45;17126:19;;73176:76:0;16914:237:1;73176:76:0;73266:14;;-1:-1:-1;;;73266:14:0;;;;73263:107;;;73326:9;:7;:9::i;:::-;73337:18;:7;:16;:18::i;:::-;73309:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;73295:62;;73072:332;;;:::o;73263:107::-;73387:9;:7;:9::i;65933:244::-;65052:6;;-1:-1:-1;;;;;65052:6:0;700:10;65199:23;65191:68;;;;-1:-1:-1;;;65191:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66022:22:0;::::1;66014:73;;;::::0;-1:-1:-1;;;66014:73:0;;8201:2:1;66014:73:0::1;::::0;::::1;8183:21:1::0;8240:2;8220:18;;;8213:30;8279:34;8259:18;;;8252:62;-1:-1:-1;;;8330:18:1;;;8323:36;8376:19;;66014:73:0::1;8173:228:1::0;66014:73:0::1;66124:6;::::0;66103:38:::1;::::0;-1:-1:-1;;;;;66103:38:0;;::::1;::::0;66124:6:::1;::::0;66103:38:::1;::::0;66124:6:::1;::::0;66103:38:::1;66152:6;:17:::0;;-1:-1:-1;;;;;;66152:17:0::1;-1:-1:-1::0;;;;;66152:17:0;;;::::1;::::0;;;::::1;::::0;;65933:244::o;67525:211::-;67689:29;;-1:-1:-1;;;;;67647:37:0;;67615:7;67647:37;;;:25;:37;;;;;;67615:7;;67647:81;;67724:3;;67647:72;;:37;:41;:72::i;56991:127::-;57056:4;57080:30;:12;57102:7;57080:21;:30::i;63009:192::-;63084:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63084:29:0;-1:-1:-1;;;;;63084:29:0;;;;;;;;:24;;63138:23;63084:24;63138:14;:23::i;:::-;-1:-1:-1;;;;;63129:46:0;;;;;;;;;;;63009:192;;:::o;43832:123::-;43901:7;43928:19;43936:3;40494:19;;40411:110;13464:179;13522:7;;13554:5;13558:1;13554;:5;:::i;:::-;13542:17;;13583:1;13578;:6;;13570:46;;;;-1:-1:-1;;;13570:46:0;;8965:2:1;13570:46:0;;;8947:21:1;9004:2;8984:18;;;8977:30;9043:29;9023:18;;;9016:57;9090:18;;13570:46:0;8937:177:1;57983:110:0;58059:26;58069:2;58073:7;58059:26;;;;;;;;;;;;:9;:26::i;57285:355::-;57378:4;57403:16;57411:7;57403;:16::i;:::-;57395:73;;;;-1:-1:-1;;;57395:73:0;;11913:2:1;57395:73:0;;;11895:21:1;11952:2;11932:18;;;11925:30;11991:34;11971:18;;;11964:62;-1:-1:-1;;;12042:18:1;;;12035:42;12094:19;;57395:73:0;11885:234:1;57395:73:0;57479:13;57495:23;57510:7;57495:14;:23::i;:::-;57479:39;;57548:5;-1:-1:-1;;;;;57537:16:0;:7;-1:-1:-1;;;;;57537:16:0;;:51;;;;57581:7;-1:-1:-1;;;;;57557:31:0;:20;57569:7;57557:11;:20::i;:::-;-1:-1:-1;;;;;57557:31:0;;57537:51;:94;;;-1:-1:-1;;;;;;54531:25:0;;;54507:4;54531:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57592:39;57529:103;57285:355;-1:-1:-1;;;;57285:355:0:o;60421:599::-;60546:4;-1:-1:-1;;;;;60519:31:0;:23;60534:7;60519:14;:23::i;:::-;-1:-1:-1;;;;;60519:31:0;;60511:85;;;;-1:-1:-1;;;60511:85:0;;16532:2:1;60511:85:0;;;16514:21:1;16571:2;16551:18;;;16544:30;16610:34;16590:18;;;16583:62;-1:-1:-1;;;16661:18:1;;;16654:39;16710:19;;60511:85:0;16504:231:1;60511:85:0;-1:-1:-1;;;;;60633:16:0;;60625:65;;;;-1:-1:-1;;;60625:65:0;;9321:2:1;60625:65:0;;;9303:21:1;9360:2;9340:18;;;9333:30;9399:34;9379:18;;;9372:62;-1:-1:-1;;;9450:18:1;;;9443:34;9494:19;;60625:65:0;9293:226:1;60625:65:0;60807:29;60824:1;60828:7;60807:8;:29::i;:::-;-1:-1:-1;;;;;60849:19:0;;;;;;:13;:19;;;;;:35;;60876:7;60849:26;:35::i;:::-;-1:-1:-1;;;;;;60895:17:0;;;;;;:13;:17;;;;;:30;;60917:7;60895:21;:30::i;:::-;-1:-1:-1;60938:29:0;:12;60955:7;60964:2;60938:16;:29::i;:::-;;61004:7;61000:2;-1:-1:-1;;;;;60985:27:0;60994:4;-1:-1:-1;;;;;60985:27:0;;;;;;;;;;;60421:599;;;:::o;13926:158::-;13984:7;14017:1;14012;:6;;14004:49;;;;-1:-1:-1;;;14004:49:0;;10791:2:1;14004:49:0;;;10773:21:1;10830:2;10810:18;;;10803:30;10869:32;10849:18;;;10842:60;10919:18;;14004:49:0;10763:180:1;14004:49:0;14071:5;14075:1;14071;:5;:::i;14343:220::-;14401:7;14425:6;14421:20;;-1:-1:-1;14440:1:0;14433:8;;14421:20;14452:9;14464:5;14468:1;14464;:5;:::i;:::-;14452:17;-1:-1:-1;14497:1:0;14488:5;14492:1;14452:17;14488:5;:::i;:::-;:10;14480:56;;;;-1:-1:-1;;;14480:56:0;;15356:2:1;14480:56:0;;;15338:21:1;15395:2;15375:18;;;15368:30;15434:34;15414:18;;;15407:62;-1:-1:-1;;;15485:18:1;;;15478:31;15526:19;;14480:56:0;15328:223:1;35660:137:0;35731:7;35766:22;35770:3;35782:5;35766:3;:22::i;15041:153::-;15099:7;15131:1;15127;:5;15119:44;;;;-1:-1:-1;;;15119:44:0;;12326:2:1;15119:44:0;;;12308:21:1;12365:2;12345:18;;;12338:30;12404:28;12384:18;;;12377:56;12450:18;;15119:44:0;12298:176:1;15119:44:0;15181:5;15185:1;15181;:5;:::i;44294:236::-;44374:7;;;;44434:22;44438:3;44450:5;44434:3;:22::i;:::-;44403:53;;;;-1:-1:-1;44294:236:0;-1:-1:-1;;;;;44294:236:0:o;61621:100::-;61694:19;;;;:8;;:19;;;;;:::i;45580:213::-;45687:7;45738:44;45743:3;45763;45769:12;45738:4;:44::i;:::-;45730:53;-1:-1:-1;45580:213:0;;;;;;:::o;56406:272::-;56520:28;56530:4;56536:2;56540:7;56520:9;:28::i;:::-;56567:48;56590:4;56596:2;56600:7;56609:5;56567:22;:48::i;:::-;56559:111;;;;-1:-1:-1;;;56559:111:0;;;;;;;:::i;46007:723::-;46063:13;46284:10;46280:53;;-1:-1:-1;;46311:10:0;;;;;;;;;;;;-1:-1:-1;;;46311:10:0;;;;;46007:723::o;46280:53::-;46358:5;46343:12;46399:78;46406:9;;46399:78;;46432:8;;;;:::i;:::-;;-1:-1:-1;46455:10:0;;-1:-1:-1;46463:2:0;46455:10;;:::i;:::-;;;46399:78;;;46487:19;46519:6;46509:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46509:17:0;;46487:39;;46537:154;46544:10;;46537:154;;46571:11;46581:1;46571:11;;:::i;:::-;;-1:-1:-1;46640:10:0;46648:2;46640:5;:10;:::i;:::-;46627:24;;:2;:24;:::i;:::-;46614:39;;46597:6;46604;46597:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;46597:56:0;;;;;;;;-1:-1:-1;46668:11:0;46677:2;46668:11;;:::i;:::-;;;46537:154;;43593:151;43677:4;40286:17;;;:12;;;:17;;;;;;:22;;43701:35;40191:125;58320:250;58416:18;58422:2;58426:7;58416:5;:18::i;:::-;58453:54;58484:1;58488:2;58492:7;58501:5;58453:22;:54::i;:::-;58445:117;;;;-1:-1:-1;;;58445:117:0;;;;;;;:::i;34747:137::-;34817:4;34841:35;34849:3;34869:5;34841:7;:35::i;34440:131::-;34507:4;34531:32;34536:3;34556:5;34531:4;:32::i;43016:185::-;43105:4;43129:64;43134:3;43154;-1:-1:-1;;;;;43168:23:0;;43129:4;:64::i;30700:204::-;30795:18;;30767:7;;30795:26;-1:-1:-1;30787:73:0;;;;-1:-1:-1;;;30787:73:0;;6970:2:1;30787:73:0;;;6952:21:1;7009:2;6989:18;;;6982:30;7048:34;7028:18;;;7021:62;-1:-1:-1;;;7099:18:1;;;7092:32;7141:19;;30787:73:0;6942:224:1;30787:73:0;30878:3;:11;;30890:5;30878:18;;;;;;;;:::i;:::-;;;;;;;;;30871:25;;30700:204;;;;:::o;40876:279::-;40980:19;;40943:7;;;;40980:27;-1:-1:-1;40972:74:0;;;;-1:-1:-1;;;40972:74:0;;14592:2:1;40972:74:0;;;14574:21:1;14631:2;14611:18;;;14604:30;14670:34;14650:18;;;14643:62;-1:-1:-1;;;14721:18:1;;;14714:32;14763:19;;40972:74:0;14564:224:1;40972:74:0;41059:22;41084:3;:12;;41097:5;41084:19;;;;;;;;:::i;:::-;;;;;;;;;;;41059:44;;41122:5;:10;;;41134:5;:12;;;41114:33;;;;;40876:279;;;;;:::o;42373:319::-;42467:7;42506:17;;;:12;;;:17;;;;;;42557:12;42542:13;42534:36;;;;-1:-1:-1;;;42534:36:0;;;;;;;;:::i;:::-;-1:-1:-1;42624:3:0;42637:12;42648:1;42637:8;:12;:::i;:::-;42624:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;42617:40;;;42373:319;;;;;:::o;62286:604::-;62407:4;-1:-1:-1;;;;;62434:13:0;;19235:20;62429:60;;-1:-1:-1;62473:4:0;62466:11;;62429:60;62499:23;62525:252;-1:-1:-1;;;700:10:0;62665:4;62684:7;62706:5;62541:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62541:181:0;;;;;;;-1:-1:-1;;;;;62541:181:0;;;;;;;;;;;62525:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62525:15:0;;;:252;:15;:252::i;:::-;62499:278;;62788:13;62815:10;62804:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;62855:26:0;-1:-1:-1;;;62855:26:0;;-1:-1:-1;;;62286:604:0;;;;;;:::o;58906:404::-;-1:-1:-1;;;;;58986:16:0;;58978:61;;;;-1:-1:-1;;;58978:61:0;;14995:2:1;58978:61:0;;;14977:21:1;;;15014:18;;;15007:30;15073:34;15053:18;;;15046:62;15125:18;;58978:61:0;14967:182:1;58978:61:0;59059:16;59067:7;59059;:16::i;:::-;59058:17;59050:58;;;;-1:-1:-1;;;59050:58:0;;8608:2:1;59050:58:0;;;8590:21:1;8647:2;8627:18;;;8620:30;8686;8666:18;;;8659:58;8734:18;;59050:58:0;8580:178:1;59050:58:0;-1:-1:-1;;;;;59179:17:0;;;;;;:13;:17;;;;;:30;;59201:7;59179:21;:30::i;:::-;-1:-1:-1;59222:29:0;:12;59239:7;59248:2;59222:16;:29::i;:::-;-1:-1:-1;59269:33:0;;59294:7;;-1:-1:-1;;;;;59269:33:0;;;59286:1;;59269:33;;59286:1;;59269:33;58906:404;;:::o;28402:1544::-;28468:4;28607:19;;;:12;;;:19;;;;;;28643:15;;28639:1300;;29005:21;29029:14;29042:1;29029:10;:14;:::i;:::-;29078:18;;29005:38;;-1:-1:-1;29058:17:0;;29078:22;;29099:1;;29078:22;:::i;:::-;29058:42;;29345:17;29365:3;:11;;29377:9;29365:22;;;;;;;;:::i;:::-;;;;;;;;;29345:42;;29511:9;29482:3;:11;;29494:13;29482:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;29614:17;:13;29630:1;29614:17;:::i;:::-;29588:23;;;;:12;;;:23;;;;;:43;29740:17;;29588:3;;29740:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;29835:3;:12;;:19;29848:5;29835:19;;;;;;;;;;;29828:26;;;29878:4;29871:11;;;;;;;;28639:1300;29922:5;29915:12;;;;;27812:414;27875:4;40286:17;;;:12;;;:17;;;;;;27892:327;;-1:-1:-1;27935:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28118:18;;28096:19;;;:12;;;:19;;;;;;:40;;;;28151:11;;27892:327;-1:-1:-1;28202:5:0;28195:12;;37691:692;37767:4;37902:17;;;:12;;;:17;;;;;;37936:13;37932:444;;-1:-1:-1;;38021:38:0;;;;;;;;;;;;;;;;;;38003:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38218:19;;38198:17;;;:12;;;:17;;;;;;;:39;38252:11;;37932:444;38332:5;38296:3;38309:12;38320:1;38309:8;:12;:::i;:::-;38296:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;38359:5;38352:12;;;;;21786:195;21889:12;21921:52;21943:6;21951:4;21957:1;21960:12;21889;19235:20;;23082:60;;;;-1:-1:-1;;;23082:60:0;;19357:2:1;23082:60:0;;;19339:21:1;19396:2;19376:18;;;19369:30;19435:31;19415:18;;;19408:59;19484:18;;23082:60:0;19329:179:1;23082:60:0;23216:12;23230:23;23257:6;-1:-1:-1;;;;;23257:11:0;23277:5;23285:4;23257:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23215:75;;;;23308:52;23326:7;23335:10;23347:12;23308:17;:52::i;:::-;23301:59;22838:530;-1:-1:-1;;;;;;;22838:530:0:o;25378:742::-;25493:12;25522:7;25518:595;;;-1:-1:-1;25553:10:0;25546:17;;25518:595;25667:17;;:21;25663:439;;25930:10;25924:17;25991:15;25978:10;25974:2;25970:19;25963:44;25663:439;26073:12;26066:20;;-1:-1:-1;;;26066:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:254::-;4111:6;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:2;;;4188:1;4185;4178:12;4140:2;4224:9;4211:23;4201:33;;4253:38;4287:2;4276:9;4272:18;4253:38;:::i;4302:328::-;4379:6;4387;4395;4448:2;4436:9;4427:7;4423:23;4419:32;4416:2;;;4464:1;4461;4454:12;4416:2;4500:9;4487:23;4477:33;;4529:38;4563:2;4552:9;4548:18;4529:38;:::i;:::-;4519:48;;4586:38;4620:2;4609:9;4605:18;4586:38;:::i;:::-;4576:48;;4406:224;;;;;:::o;4635:257::-;4676:3;4714:5;4708:12;4741:6;4736:3;4729:19;4757:63;4813:6;4806:4;4801:3;4797:14;4790:4;4783:5;4779:16;4757:63;:::i;:::-;4874:2;4853:15;-1:-1:-1;;4849:29:1;4840:39;;;;4881:4;4836:50;;4684:208;-1:-1:-1;;4684:208:1:o;4897:274::-;5026:3;5064:6;5058:13;5080:53;5126:6;5121:3;5114:4;5106:6;5102:17;5080:53;:::i;:::-;5149:16;;;;;5034:137;-1:-1:-1;;5034:137:1:o;5176:470::-;5355:3;5393:6;5387:13;5409:53;5455:6;5450:3;5443:4;5435:6;5431:17;5409:53;:::i;:::-;5525:13;;5484:16;;;;5547:57;5525:13;5484:16;5581:4;5569:17;;5547:57;:::i;:::-;5620:20;;5363:283;-1:-1:-1;;;;5363:283:1:o;5859:488::-;-1:-1:-1;;;;;6128:15:1;;;6110:34;;6180:15;;6175:2;6160:18;;6153:43;6227:2;6212:18;;6205:34;;;6275:3;6270:2;6255:18;;6248:31;;;6053:4;;6296:45;;6321:19;;6313:6;6296:45;:::i;:::-;6288:53;6062:285;-1:-1:-1;;;;;;6062:285:1:o;6544:219::-;6693:2;6682:9;6675:21;6656:4;6713:44;6753:2;6742:9;6738:18;6730:6;6713:44;:::i;7580:414::-;7782:2;7764:21;;;7821:2;7801:18;;;7794:30;7860:34;7855:2;7840:18;;7833:62;-1:-1:-1;;;7926:2:1;7911:18;;7904:48;7984:3;7969:19;;7754:240::o;15969:356::-;16171:2;16153:21;;;16190:18;;;16183:30;16249:34;16244:2;16229:18;;16222:62;16316:2;16301:18;;16143:182::o;18737:413::-;18939:2;18921:21;;;18978:2;18958:18;;;18951:30;19017:34;19012:2;18997:18;;18990:62;-1:-1:-1;;;19083:2:1;19068:18;;19061:47;19140:3;19125:19;;18911:239::o;19695:128::-;19735:3;19766:1;19762:6;19759:1;19756:13;19753:2;;;19772:18;;:::i;:::-;-1:-1:-1;19808:9:1;;19743:80::o;19828:120::-;19868:1;19894;19884:2;;19899:18;;:::i;:::-;-1:-1:-1;19933:9:1;;19874:74::o;19953:168::-;19993:7;20059:1;20055;20051:6;20047:14;20044:1;20041:21;20036:1;20029:9;20022:17;20018:45;20015:2;;;20066:18;;:::i;:::-;-1:-1:-1;20106:9:1;;20005:116::o;20126:125::-;20166:4;20194:1;20191;20188:8;20185:2;;;20199:18;;:::i;:::-;-1:-1:-1;20236:9:1;;20175:76::o;20256:258::-;20328:1;20338:113;20352:6;20349:1;20346:13;20338:113;;;20428:11;;;20422:18;20409:11;;;20402:39;20374:2;20367:10;20338:113;;;20469:6;20466:1;20463:13;20460:2;;;-1:-1:-1;;20504:1:1;20486:16;;20479:27;20309:205::o;20519:380::-;20598:1;20594:12;;;;20641;;;20662:2;;20716:4;20708:6;20704:17;20694:27;;20662:2;20769;20761:6;20758:14;20738:18;20735:38;20732:2;;;20815:10;20810:3;20806:20;20803:1;20796:31;20850:4;20847:1;20840:15;20878:4;20875:1;20868:15;20732:2;;20574:325;;;:::o;20904:135::-;20943:3;-1:-1:-1;;20964:17:1;;20961:2;;;20984:18;;:::i;:::-;-1:-1:-1;21031:1:1;21020:13;;20951:88::o;21044:112::-;21076:1;21102;21092:2;;21107:18;;:::i;:::-;-1:-1:-1;21141:9:1;;21082:74::o;21161:127::-;21222:10;21217:3;21213:20;21210:1;21203:31;21253:4;21250:1;21243:15;21277:4;21274:1;21267:15;21293:127;21354:10;21349:3;21345:20;21342:1;21335:31;21385:4;21382:1;21375:15;21409:4;21406:1;21399:15;21425:127;21486:10;21481:3;21477:20;21474:1;21467:31;21517:4;21514:1;21507:15;21541:4;21538:1;21531:15;21557:127;21618:10;21613:3;21609:20;21606:1;21599:31;21649:4;21646:1;21639:15;21673:4;21670:1;21663:15;21689:127;21750:10;21745:3;21741:20;21738:1;21731:31;21781:4;21778:1;21771:15;21805:4;21802:1;21795:15;21821:131;-1:-1:-1;;;;;;21895:32:1;;21885:43;;21875:2;;21942:1;21939;21932:12

Swarm Source

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