ETH Price: $3,498.50 (-0.14%)
Gas: 3 Gwei

Token

Loot (for IRL) (LOOT4IRL)
 

Overview

Max Total Supply

200 LOOT4IRL

Holders

96

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
twicecollector.eth
Balance
2 LOOT4IRL
0x39f2fcfdd65573d4c1e6dc2d16c161d160e1e5e6
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:
LootForIRL

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-30
*/

// SPDX-License-Identifier: UNLICENSED AND MIT

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


pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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 payable) {
        return msg.sender;
    }

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

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


pragma solidity >=0.6.0 <0.8.0;

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

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


pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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


pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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


pragma solidity >=0.6.0 <0.8.0;

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

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


pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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


pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity >=0.6.2 <0.8.0;

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

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

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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


pragma solidity >=0.6.0 <0.8.0;

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

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

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

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

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

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

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

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

            bytes32 lastvalue = set._values[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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

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


pragma solidity >=0.6.0 <0.8.0;

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

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

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

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

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

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

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

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

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

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

            MapEntry storage lastEntry = map._entries[lastIndex];

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

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

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

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

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

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

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

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

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

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

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

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

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

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

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

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


pragma solidity >=0.6.0 <0.8.0;

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

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

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


pragma solidity >=0.6.0 <0.8.0;












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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

    // Base URI
    string private _baseURI;

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) public {
        _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);
    }

    function _approve(address to, uint256 tokenId) private {
        _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: contracts/MyLoot.sol

pragma solidity ^0.6.0;



/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE =
        "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
                )
                out := shl(8, out)
                out := add(
                    out,
                    and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
                )
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

contract LootForIRL is ERC721("Loot (for IRL)", "LOOT4IRL") {
    mapping(uint256 => string) public weaponText;
    mapping(uint256 => string) public chestText;
    mapping(uint256 => string) public headText;
    mapping(uint256 => string) public waistText;
    mapping(uint256 => string) public footText;
    mapping(uint256 => string) public handText;
    mapping(uint256 => string) public neckText;
    mapping(uint256 => string) public ringText;
    address public lootTokenAddress;

    uint256 public lastMintedId;

    constructor(address _lootTokenAddress) public {
        lootTokenAddress = _lootTokenAddress;
    }

    function mint(
        string memory _weaponText,
        string memory _chestText,
        string memory _headText,
        string memory _waistText,
        string memory _footText,
        string memory _handText,
        string memory _neckText,
        string memory _ringText
    ) public {
        IERC721 loot = IERC721(lootTokenAddress);
        require(loot.balanceOf(msg.sender) >= 1, "must own loot");

        uint256 newTokenId = lastMintedId + 1;
        lastMintedId = newTokenId;
        require(newTokenId <= 200, "max mint reached");

        weaponText[newTokenId] = _weaponText;
        chestText[newTokenId] = _chestText;
        headText[newTokenId] = _headText;
        waistText[newTokenId] = _waistText;
        footText[newTokenId] = _footText;
        handText[newTokenId] = _handText;
        neckText[newTokenId] = _neckText;
        ringText[newTokenId] = _ringText;

        _mint(msg.sender, newTokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        string[17] memory parts;
        parts[
            0
        ] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';

        parts[1] = weaponText[tokenId];

        parts[2] = '</text><text x="10" y="40" class="base">';

        parts[3] = chestText[tokenId];

        parts[4] = '</text><text x="10" y="60" class="base">';

        parts[5] = headText[tokenId];

        parts[6] = '</text><text x="10" y="80" class="base">';

        parts[7] = waistText[tokenId];

        parts[8] = '</text><text x="10" y="100" class="base">';

        parts[9] = footText[tokenId];

        parts[10] = '</text><text x="10" y="120" class="base">';

        parts[11] = handText[tokenId];

        parts[12] = '</text><text x="10" y="140" class="base">';

        parts[13] = neckText[tokenId];

        parts[14] = '</text><text x="10" y="160" class="base">';

        parts[15] = ringText[tokenId];

        parts[16] = "</text></svg>";

        string memory output = string(
            abi.encodePacked(
                parts[0],
                parts[1],
                parts[2],
                parts[3],
                parts[4],
                parts[5],
                parts[6],
                parts[7],
                parts[8]
            )
        );
        output = string(
            abi.encodePacked(
                output,
                parts[9],
                parts[10],
                parts[11],
                parts[12],
                parts[13],
                parts[14],
                parts[15],
                parts[16]
            )
        );

        string memory json = Base64.encode(
            bytes(
                string(
                    abi.encodePacked(
                        '{"name": "Loot (for IRL) #',
                        Strings.toString(tokenId),
                        '", "image": "data:image/svg+xml;base64,',
                        Base64.encode(bytes(output)),
                        '"}'
                    )
                )
            )
        );
        output = string(
            abi.encodePacked("data:application/json;base64,", json)
        );

        return output;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_lootTokenAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"chestText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"footText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"handText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"headText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastMintedId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_weaponText","type":"string"},{"internalType":"string","name":"_chestText","type":"string"},{"internalType":"string","name":"_headText","type":"string"},{"internalType":"string","name":"_waistText","type":"string"},{"internalType":"string","name":"_footText","type":"string"},{"internalType":"string","name":"_handText","type":"string"},{"internalType":"string","name":"_neckText","type":"string"},{"internalType":"string","name":"_ringText","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"neckText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ringText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"waistText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"weaponText","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620052df380380620052df833981810160405260208110156200003757600080fd5b81019080805190602001909291905050506040518060400160405280600e81526020017f4c6f6f742028666f722049524c290000000000000000000000000000000000008152506040518060400160405280600881526020017f4c4f4f543449524c000000000000000000000000000000000000000000000000815250620000cc6301ffc9a760e01b6200019060201b60201c565b8160069080519060200190620000e492919062000299565b508060079080519060200190620000fd92919062000299565b50620001166380ac58cd60e01b6200019060201b60201c565b6200012e635b5e139f60e01b6200019060201b60201c565b6200014663780e9d6360e01b6200019060201b60201c565b505080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550506200033f565b63ffffffff60e01b817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614156200022d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433136353a20696e76616c696420696e746572666163652069640000000081525060200191505060405180910390fd5b6001600080837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002dc57805160ff19168380011785556200030d565b828001600101855582156200030d579182015b828111156200030c578251825591602001919060010190620002ef565b5b5090506200031c919062000320565b5090565b5b808211156200033b57600081600090555060010162000321565b5090565b614f90806200034f6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063c87b56dd11610071578063c87b56dd14610ce1578063e985e9c514610d88578063fb88680414610e02578063feffacdf146112df576101c4565b8063b88d4fde14610a8e578063c2fa2d6014610b93578063c62404eb14610c3a576101c4565b806370a08231116100d357806370a08231146108bc57806371b950811461091457806395d89b41146109bb578063a22cb46514610a3e576101c4565b80636352211e1461073a578063662db079146107925780636c0360eb14610839576101c4565b8063338bb12b116101665780634f6ccce7116101405780634f6ccce71461058c5780635459bbe7146105ce5780636062599414610675578063620a23581461071c576101c4565b8063338bb12b1461044357806342842e0e146104775780634bf8cd6c146104e5576101c4565b8063095ea7b3116101a2578063095ea7b31461030757806318160ddd1461035557806323b872dd146103735780632f745c59146103e1576101c4565b806301ffc9a7146101c957806306fdde031461022c578063081812fc146102af575b600080fd5b610214600480360360208110156101df57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611386565b60405180821515815260200191505060405180910390f35b6102346113ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102db600480360360208110156102c557600080fd5b810190808035906020019092919050505061148f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103536004803603604081101561031d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152a565b005b61035d61166e565b6040518082815260200191505060405180910390f35b6103df6004803603606081101561038957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061167f565b005b61042d600480360360408110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116f5565b6040518082815260200191505060405180910390f35b61044b611750565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e36004803603606081101561048d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611776565b005b610511600480360360208110156104fb57600080fd5b8101908080359060200190929190505050611796565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610551578082015181840152602081019050610536565b50505050905090810190601f16801561057e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b8600480360360208110156105a257600080fd5b8101908080359060200190929190505050611846565b6040518082815260200191505060405180910390f35b6105fa600480360360208110156105e457600080fd5b8101908080359060200190929190505050611869565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063a57808201518184015260208101905061061f565b50505050905090810190601f1680156106675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106a16004803603602081101561068b57600080fd5b8101908080359060200190929190505050611919565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106e15780820151818401526020810190506106c6565b50505050905090810190601f16801561070e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107246119c9565b6040518082815260200191505060405180910390f35b6107666004803603602081101561075057600080fd5b81019080803590602001909291905050506119cf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107be600480360360208110156107a857600080fd5b8101908080359060200190929190505050611a06565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107fe5780820151818401526020810190506107e3565b50505050905090810190601f16801561082b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610841611ab6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610881578082015181840152602081019050610866565b50505050905090810190601f1680156108ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108fe600480360360208110156108d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b58565b6040518082815260200191505060405180910390f35b6109406004803603602081101561092a57600080fd5b8101908080359060200190929190505050611c2d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610980578082015181840152602081019050610965565b50505050905090810190601f1680156109ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109c3611cdd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a035780820151818401526020810190506109e8565b50505050905090810190601f168015610a305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a8c60048036036040811015610a5457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d7f565b005b610b9160048036036080811015610aa457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b0b57600080fd5b820183602082011115610b1d57600080fd5b80359060200191846001830284011164010000000083111715610b3f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f35565b005b610bbf60048036036020811015610ba957600080fd5b8101908080359060200190929190505050611fad565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bff578082015181840152602081019050610be4565b50505050905090810190601f168015610c2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c6660048036036020811015610c5057600080fd5b810190808035906020019092919050505061205d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ca6578082015181840152602081019050610c8b565b50505050905090810190601f168015610cd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d0d60048036036020811015610cf757600080fd5b810190808035906020019092919050505061210d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d4d578082015181840152602081019050610d32565b50505050905090810190601f168015610d7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610dea60048036036040811015610d9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131dd565b60405180821515815260200191505060405180910390f35b6112dd6004803603610100811015610e1957600080fd5b8101908080359060200190640100000000811115610e3657600080fd5b820183602082011115610e4857600080fd5b80359060200191846001830284011164010000000083111715610e6a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610ecd57600080fd5b820183602082011115610edf57600080fd5b80359060200191846001830284011164010000000083111715610f0157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610f6457600080fd5b820183602082011115610f7657600080fd5b80359060200191846001830284011164010000000083111715610f9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610ffb57600080fd5b82018360208201111561100d57600080fd5b8035906020019184600183028401116401000000008311171561102f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561109257600080fd5b8201836020820111156110a457600080fd5b803590602001918460018302840111640100000000831117156110c657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561112957600080fd5b82018360208201111561113b57600080fd5b8035906020019184600183028401116401000000008311171561115d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156111c057600080fd5b8201836020820111156111d257600080fd5b803590602001918460018302840111640100000000831117156111f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561125757600080fd5b82018360208201111561126957600080fd5b8035906020019184600183028401116401000000008311171561128b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613271565b005b61130b600480360360208110156112f557600080fd5b810190808035906020019092919050505061358e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561134b578082015181840152602081019050611330565b50505050905090810190601f1680156113785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114855780601f1061145a57610100808354040283529160200191611485565b820191906000526020600020905b81548152906001019060200180831161146857829003601f168201915b5050505050905090565b600061149a8261363e565b6114ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614e65602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611535826119cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ee16021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115db61365b565b73ffffffffffffffffffffffffffffffffffffffff16148061160a57506116098161160461365b565b6131dd565b5b61165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614c526038913960400191505060405180910390fd5b6116698383613663565b505050565b600061167a600261371c565b905090565b61169061168a61365b565b82613731565b6116e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614f026031913960400191505060405180910390fd5b6116f0838383613825565b505050565b600061174882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613a6890919063ffffffff16565b905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179183838360405180602001604052806000815250611f35565b505050565b600b6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b60008061185d836002613a8290919063ffffffff16565b50905080915050919050565b60106020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119115780601f106118e657610100808354040283529160200191611911565b820191906000526020600020905b8154815290600101906020018083116118f457829003601f168201915b505050505081565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119c15780601f10611996576101008083540402835291602001916119c1565b820191906000526020600020905b8154815290600101906020018083116119a457829003601f168201915b505050505081565b60135481565b60006119ff82604051806060016040528060298152602001614db1602991396002613aae9092919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aae5780601f10611a8357610100808354040283529160200191611aae565b820191906000526020600020905b815481529060010190602001808311611a9157829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b4e5780601f10611b2357610100808354040283529160200191611b4e565b820191906000526020600020905b815481529060010190602001808311611b3157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614d87602a913960400191505060405180910390fd5b611c26600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613acd565b9050919050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b505050505081565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050905090565b611d8761365b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000611e3561365b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ee261365b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611f46611f4061365b565b83613731565b611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614f026031913960400191505060405180910390fd5b611fa784848484613ae2565b50505050565b600a6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120555780601f1061202a57610100808354040283529160200191612055565b820191906000526020600020905b81548152906001019060200180831161203857829003601f168201915b505050505081565b600f6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121055780601f106120da57610100808354040283529160200191612105565b820191906000526020600020905b8154815290600101906020018083116120e857829003601f168201915b505050505081565b60606121176149f7565b60405180610120016040528060fd8152602001614c8a60fd91398160006011811061213e57fe5b6020020181905250600a60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121ed5780601f106121c2576101008083540402835291602001916121ed565b820191906000526020600020905b8154815290600101906020018083116121d057829003601f168201915b5050505050816001601181106121ff57fe5b6020020181905250604051806060016040528060288152602001614f33602891398160026011811061222d57fe5b6020020181905250600b60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122dc5780601f106122b1576101008083540402835291602001916122dc565b820191906000526020600020905b8154815290600101906020018083116122bf57829003601f168201915b5050505050816003601181106122ee57fe5b6020020181905250604051806060016040528060288152602001614adf602891398160046011811061231c57fe5b6020020181905250600c60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123cb5780601f106123a0576101008083540402835291602001916123cb565b820191906000526020600020905b8154815290600101906020018083116123ae57829003601f168201915b5050505050816005601181106123dd57fe5b6020020181905250604051806060016040528060288152602001614c01602891398160066011811061240b57fe5b6020020181905250600d60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124ba5780601f1061248f576101008083540402835291602001916124ba565b820191906000526020600020905b81548152906001019060200180831161249d57829003601f168201915b5050505050816007601181106124cc57fe5b6020020181905250604051806060016040528060298152602001614c2960299139816008601181106124fa57fe5b6020020181905250600e60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125a95780601f1061257e576101008083540402835291602001916125a9565b820191906000526020600020905b81548152906001019060200180831161258c57829003601f168201915b5050505050816009601181106125bb57fe5b6020020181905250604051806060016040528060298152602001614b866029913981600a601181106125e957fe5b6020020181905250600f60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126985780601f1061266d57610100808354040283529160200191612698565b820191906000526020600020905b81548152906001019060200180831161267b57829003601f168201915b505050505081600b601181106126aa57fe5b6020020181905250604051806060016040528060298152602001614dda6029913981600c601181106126d857fe5b6020020181905250601060008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127875780601f1061275c57610100808354040283529160200191612787565b820191906000526020600020905b81548152906001019060200180831161276a57829003601f168201915b505050505081600d6011811061279957fe5b6020020181905250604051806060016040528060298152602001614b5d6029913981600e601181106127c757fe5b6020020181905250601160008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128765780601f1061284b57610100808354040283529160200191612876565b820191906000526020600020905b81548152906001019060200180831161285957829003601f168201915b505050505081600f6011811061288857fe5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816010601181106128d357fe5b60200201819052506060816000601181106128ea57fe5b6020020151826001601181106128fc57fe5b60200201518360026011811061290e57fe5b60200201518460036011811061292057fe5b60200201518560046011811061293257fe5b60200201518660056011811061294457fe5b60200201518760066011811061295657fe5b60200201518860076011811061296857fe5b60200201518960086011811061297a57fe5b6020020151604051602001808a805190602001908083835b602083106129b55780518252602082019150602081019050602083039250612992565b6001836020036101000a03801982511681845116808217855250505050505090500189805190602001908083835b60208310612a0657805182526020820191506020810190506020830392506129e3565b6001836020036101000a03801982511681845116808217855250505050505090500188805190602001908083835b60208310612a575780518252602082019150602081019050602083039250612a34565b6001836020036101000a03801982511681845116808217855250505050505090500187805190602001908083835b60208310612aa85780518252602082019150602081019050602083039250612a85565b6001836020036101000a03801982511681845116808217855250505050505090500186805190602001908083835b60208310612af95780518252602082019150602081019050602083039250612ad6565b6001836020036101000a03801982511681845116808217855250505050505090500185805190602001908083835b60208310612b4a5780518252602082019150602081019050602083039250612b27565b6001836020036101000a03801982511681845116808217855250505050505090500184805190602001908083835b60208310612b9b5780518252602082019150602081019050602083039250612b78565b6001836020036101000a03801982511681845116808217855250505050505090500183805190602001908083835b60208310612bec5780518252602082019150602081019050602083039250612bc9565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612c3d5780518252602082019150602081019050602083039250612c1a565b6001836020036101000a038019825116818451168082178552505050505050905001995050505050505050505060405160208183030381529060405290508082600960118110612c8957fe5b602002015183600a60118110612c9b57fe5b602002015184600b60118110612cad57fe5b602002015185600c60118110612cbf57fe5b602002015186600d60118110612cd157fe5b602002015187600e60118110612ce357fe5b602002015188600f60118110612cf557fe5b602002015189601060118110612d0757fe5b6020020151604051602001808a805190602001908083835b60208310612d425780518252602082019150602081019050602083039250612d1f565b6001836020036101000a03801982511681845116808217855250505050505090500189805190602001908083835b60208310612d935780518252602082019150602081019050602083039250612d70565b6001836020036101000a03801982511681845116808217855250505050505090500188805190602001908083835b60208310612de45780518252602082019150602081019050602083039250612dc1565b6001836020036101000a03801982511681845116808217855250505050505090500187805190602001908083835b60208310612e355780518252602082019150602081019050602083039250612e12565b6001836020036101000a03801982511681845116808217855250505050505090500186805190602001908083835b60208310612e865780518252602082019150602081019050602083039250612e63565b6001836020036101000a03801982511681845116808217855250505050505090500185805190602001908083835b60208310612ed75780518252602082019150602081019050602083039250612eb4565b6001836020036101000a03801982511681845116808217855250505050505090500184805190602001908083835b60208310612f285780518252602082019150602081019050602083039250612f05565b6001836020036101000a03801982511681845116808217855250505050505090500183805190602001908083835b60208310612f795780518252602082019150602081019050602083039250612f56565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612fca5780518252602082019150602081019050602083039250612fa7565b6001836020036101000a03801982511681845116808217855250505050505090500199505050505050505050506040516020818303038152906040529050606061313b61301686613b54565b61301f84613c9b565b60405160200180807f7b226e616d65223a20224c6f6f742028666f722049524c292023000000000000815250601a0183805190602001908083835b6020831061307d578051825260208201915060208101905060208303925061305a565b6001836020036101000a03801982511681845116808217855250505050505090500180614eba6027913960270182805190602001908083835b602083106130d957805182526020820191506020810190506020830392506130b6565b6001836020036101000a038019825116818451168082178552505050505050905001807f227d00000000000000000000000000000000000000000000000000000000000081525060020192505050604051602081830303815290604052613c9b565b90508060405160200180807f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815250601d0182805190602001908083835b6020831061319c5780518252602082019150602081019050602083039250613179565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060018173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561330157600080fd5b505afa158015613315573d6000803e3d6000fd5b505050506040513d602081101561332b57600080fd5b810190808051906020019092919050505010156133b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d757374206f776e206c6f6f740000000000000000000000000000000000000081525060200191505060405180910390fd5b600060016013540190508060138190555060c8811115613438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6d6178206d696e7420726561636865640000000000000000000000000000000081525060200191505060405180910390fd5b89600a6000838152602001908152602001600020908051906020019061345f929190614a1f565b5088600b60008381526020019081526020016000209080519060200190613487929190614a1f565b5087600c600083815260200190815260200160002090805190602001906134af929190614a1f565b5086600d600083815260200190815260200160002090805190602001906134d7929190614a1f565b5085600e600083815260200190815260200160002090805190602001906134ff929190614a1f565b5084600f60008381526020019081526020016000209080519060200190613527929190614a1f565b508360106000838152602001908152602001600020908051906020019061354f929190614a1f565b5082601160008381526020019081526020016000209080519060200190613577929190614a1f565b506135823382613e14565b50505050505050505050565b60116020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136365780601f1061360b57610100808354040283529160200191613636565b820191906000526020600020905b81548152906001019060200180831161361957829003601f168201915b505050505081565b600061365482600261400890919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166136d6836119cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061372a82600001614022565b9050919050565b600061373c8261363e565b613791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614bd5602c913960400191505060405180910390fd5b600061379c836119cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061380b57508373ffffffffffffffffffffffffffffffffffffffff166137f38461148f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061381c575061381b81856131dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613845826119cf565b73ffffffffffffffffffffffffffffffffffffffff16146138b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614e916029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613937576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b396024913960400191505060405180910390fd5b613942838383614033565b61394d600082613663565b61399e81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061403890919063ffffffff16565b506139f081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061405290919063ffffffff16565b50613a078183600261406c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613a7783600001836140a1565b60001c905092915050565b600080600080613a958660000186614124565b915091508160001c8160001c9350935050509250929050565b6000613ac1846000018460001b846141bd565b60001c90509392505050565b6000613adb826000016142b3565b9050919050565b613aed848484613825565b613af9848484846142c4565b613b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614b076032913960400191505060405180910390fd5b50505050565b60606000821415613b9c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c96565b600082905060005b60008214613bc6578080600101915050600a8281613bbe57fe5b049150613ba4565b60608167ffffffffffffffff81118015613bdf57600080fd5b506040519080825280601f01601f191660200182016040528015613c125781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613c8e57600a8481613c3357fe5b0660300160f81b82828060019003935081518110613c4d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613c8657fe5b049350613c21565b819450505050505b919050565b60606000825190506000811415613cc45760405180602001604052806000815250915050613e0f565b600060036002830181613cd357fe5b04600402905060606020820167ffffffffffffffff81118015613cf557600080fd5b506040519080825280601f01601f191660200182016040528015613d285781602001600182028036833780820191505090505b5090506060604051806060016040528060408152602001614e03604091399050600181016020830160005b86811015613dcc5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613d53565b506003860660018114613de65760028114613df657613e01565b613d3d60f01b6002830352613e01565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613ec08161363e565b15613f33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613f3f60008383614033565b613f9081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061405290919063ffffffff16565b50613fa78183600261406c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061401a836000018360001b6144dd565b905092915050565b600081600001805490509050919050565b505050565b600061404a836000018360001b614500565b905092915050565b6000614064836000018360001b6145e8565b905092915050565b6000614098846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614658565b90509392505050565b600081836000018054905011614102576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614abd6022913960400191505060405180910390fd5b82600001828154811061411157fe5b9060005260206000200154905092915050565b60008082846000018054905011614186576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e436022913960400191505060405180910390fd5b600084600001848154811061419757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561424957808201518184015260208101905061422e565b50505050905090810190601f1680156142765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061429757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006142e58473ffffffffffffffffffffffffffffffffffffffff16614734565b6142f257600190506144d5565b606061445c63150b7a0260e01b61430761365b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561438b578082015181840152602081019050614370565b50505050905090810190601f1680156143b85780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b07603291398773ffffffffffffffffffffffffffffffffffffffff166147479092919063ffffffff16565b9050600081806020019051602081101561447557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146145dc576000600182039050600060018660000180549050039050600086600001828154811061454b57fe5b906000526020600020015490508087600001848154811061456857fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806145a057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506145e2565b60009150505b92915050565b60006145f4838361475f565b61464d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614652565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156146ff5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061472d565b8285600001600183038154811061471257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606147568484600085614782565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156147dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614baf6026913960400191505060405180910390fd5b6147e685614734565b614858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106148a85780518252602082019150602081019050602083039250614885565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461490a576040519150601f19603f3d011682016040523d82523d6000602084013e61490f565b606091505b509150915061491f82828661492b565b92505050949350505050565b6060831561493b578290506149f0565b60008351111561494e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149b557808201518184015260208101905061499a565b50505050905090810190601f1680156149e25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6040518061022001604052806011905b6060815260200190600190039081614a075790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a6057805160ff1916838001178555614a8e565b82800160010185558215614a8e579182015b82811115614a8d578251825591602001919060010190614a72565b5b509050614a9b9190614a9f565b5090565b5b80821115614ab8576000816000905550600101614aa0565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64733c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573733c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665643c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212206f2e5db73896a14db3e765bbe133dd7d589df7e1dc102b683c439de8c7bad65764736f6c634300060c0033000000000000000000000000ff9c1b15b16263c61d017ee9f65c50e4ae0113d7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636352211e116100f9578063b88d4fde11610097578063c87b56dd11610071578063c87b56dd14610ce1578063e985e9c514610d88578063fb88680414610e02578063feffacdf146112df576101c4565b8063b88d4fde14610a8e578063c2fa2d6014610b93578063c62404eb14610c3a576101c4565b806370a08231116100d357806370a08231146108bc57806371b950811461091457806395d89b41146109bb578063a22cb46514610a3e576101c4565b80636352211e1461073a578063662db079146107925780636c0360eb14610839576101c4565b8063338bb12b116101665780634f6ccce7116101405780634f6ccce71461058c5780635459bbe7146105ce5780636062599414610675578063620a23581461071c576101c4565b8063338bb12b1461044357806342842e0e146104775780634bf8cd6c146104e5576101c4565b8063095ea7b3116101a2578063095ea7b31461030757806318160ddd1461035557806323b872dd146103735780632f745c59146103e1576101c4565b806301ffc9a7146101c957806306fdde031461022c578063081812fc146102af575b600080fd5b610214600480360360208110156101df57600080fd5b8101908080357bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19169060200190929190505050611386565b60405180821515815260200191505060405180910390f35b6102346113ed565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610274578082015181840152602081019050610259565b50505050905090810190601f1680156102a15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102db600480360360208110156102c557600080fd5b810190808035906020019092919050505061148f565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103536004803603604081101561031d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061152a565b005b61035d61166e565b6040518082815260200191505060405180910390f35b6103df6004803603606081101561038957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061167f565b005b61042d600480360360408110156103f757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116f5565b6040518082815260200191505060405180910390f35b61044b611750565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104e36004803603606081101561048d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611776565b005b610511600480360360208110156104fb57600080fd5b8101908080359060200190929190505050611796565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610551578082015181840152602081019050610536565b50505050905090810190601f16801561057e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6105b8600480360360208110156105a257600080fd5b8101908080359060200190929190505050611846565b6040518082815260200191505060405180910390f35b6105fa600480360360208110156105e457600080fd5b8101908080359060200190929190505050611869565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561063a57808201518184015260208101905061061f565b50505050905090810190601f1680156106675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106a16004803603602081101561068b57600080fd5b8101908080359060200190929190505050611919565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156106e15780820151818401526020810190506106c6565b50505050905090810190601f16801561070e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6107246119c9565b6040518082815260200191505060405180910390f35b6107666004803603602081101561075057600080fd5b81019080803590602001909291905050506119cf565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107be600480360360208110156107a857600080fd5b8101908080359060200190929190505050611a06565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107fe5780820151818401526020810190506107e3565b50505050905090810190601f16801561082b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610841611ab6565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610881578082015181840152602081019050610866565b50505050905090810190601f1680156108ae5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6108fe600480360360208110156108d257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b58565b6040518082815260200191505060405180910390f35b6109406004803603602081101561092a57600080fd5b8101908080359060200190929190505050611c2d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610980578082015181840152602081019050610965565b50505050905090810190601f1680156109ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6109c3611cdd565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610a035780820151818401526020810190506109e8565b50505050905090810190601f168015610a305780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610a8c60048036036040811015610a5457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803515159060200190929190505050611d7f565b005b610b9160048036036080811015610aa457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610b0b57600080fd5b820183602082011115610b1d57600080fd5b80359060200191846001830284011164010000000083111715610b3f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611f35565b005b610bbf60048036036020811015610ba957600080fd5b8101908080359060200190929190505050611fad565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610bff578082015181840152602081019050610be4565b50505050905090810190601f168015610c2c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610c6660048036036020811015610c5057600080fd5b810190808035906020019092919050505061205d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610ca6578082015181840152602081019050610c8b565b50505050905090810190601f168015610cd35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610d0d60048036036020811015610cf757600080fd5b810190808035906020019092919050505061210d565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610d4d578082015181840152602081019050610d32565b50505050905090810190601f168015610d7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610dea60048036036040811015610d9e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506131dd565b60405180821515815260200191505060405180910390f35b6112dd6004803603610100811015610e1957600080fd5b8101908080359060200190640100000000811115610e3657600080fd5b820183602082011115610e4857600080fd5b80359060200191846001830284011164010000000083111715610e6a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610ecd57600080fd5b820183602082011115610edf57600080fd5b80359060200191846001830284011164010000000083111715610f0157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610f6457600080fd5b820183602082011115610f7657600080fd5b80359060200191846001830284011164010000000083111715610f9857600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190640100000000811115610ffb57600080fd5b82018360208201111561100d57600080fd5b8035906020019184600183028401116401000000008311171561102f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561109257600080fd5b8201836020820111156110a457600080fd5b803590602001918460018302840111640100000000831117156110c657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561112957600080fd5b82018360208201111561113b57600080fd5b8035906020019184600183028401116401000000008311171561115d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290803590602001906401000000008111156111c057600080fd5b8201836020820111156111d257600080fd5b803590602001918460018302840111640100000000831117156111f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192908035906020019064010000000081111561125757600080fd5b82018360208201111561126957600080fd5b8035906020019184600183028401116401000000008311171561128b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050613271565b005b61130b600480360360208110156112f557600080fd5b810190808035906020019092919050505061358e565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561134b578082015181840152602081019050611330565b50505050905090810190601f1680156113785780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6000806000837bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19167bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916815260200190815260200160002060009054906101000a900460ff169050919050565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156114855780601f1061145a57610100808354040283529160200191611485565b820191906000526020600020905b81548152906001019060200180831161146857829003601f168201915b5050505050905090565b600061149a8261363e565b6114ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614e65602c913960400191505060405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000611535826119cf565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115bc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614ee16021913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115db61365b565b73ffffffffffffffffffffffffffffffffffffffff16148061160a57506116098161160461365b565b6131dd565b5b61165f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526038815260200180614c526038913960400191505060405180910390fd5b6116698383613663565b505050565b600061167a600261371c565b905090565b61169061168a61365b565b82613731565b6116e5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614f026031913960400191505060405180910390fd5b6116f0838383613825565b505050565b600061174882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613a6890919063ffffffff16565b905092915050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179183838360405180602001604052806000815250611f35565b505050565b600b6020528060005260406000206000915090508054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561183e5780601f106118135761010080835404028352916020019161183e565b820191906000526020600020905b81548152906001019060200180831161182157829003601f168201915b505050505081565b60008061185d836002613a8290919063ffffffff16565b50905080915050919050565b60106020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119115780601f106118e657610100808354040283529160200191611911565b820191906000526020600020905b8154815290600101906020018083116118f457829003601f168201915b505050505081565b600d6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156119c15780601f10611996576101008083540402835291602001916119c1565b820191906000526020600020905b8154815290600101906020018083116119a457829003601f168201915b505050505081565b60135481565b60006119ff82604051806060016040528060298152602001614db1602991396002613aae9092919063ffffffff16565b9050919050565b600c6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611aae5780601f10611a8357610100808354040283529160200191611aae565b820191906000526020600020905b815481529060010190602001808311611a9157829003601f168201915b505050505081565b606060098054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611b4e5780601f10611b2357610100808354040283529160200191611b4e565b820191906000526020600020905b815481529060010190602001808311611b3157829003601f168201915b5050505050905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bdf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180614d87602a913960400191505060405180910390fd5b611c26600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020613acd565b9050919050565b600e6020528060005260406000206000915090508054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611cd55780601f10611caa57610100808354040283529160200191611cd5565b820191906000526020600020905b815481529060010190602001808311611cb857829003601f168201915b505050505081565b606060078054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611d755780601f10611d4a57610100808354040283529160200191611d75565b820191906000526020600020905b815481529060010190602001808311611d5857829003601f168201915b5050505050905090565b611d8761365b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f4552433732313a20617070726f766520746f2063616c6c65720000000000000081525060200191505060405180910390fd5b8060056000611e3561365b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ee261365b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b611f46611f4061365b565b83613731565b611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614f026031913960400191505060405180910390fd5b611fa784848484613ae2565b50505050565b600a6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156120555780601f1061202a57610100808354040283529160200191612055565b820191906000526020600020905b81548152906001019060200180831161203857829003601f168201915b505050505081565b600f6020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121055780601f106120da57610100808354040283529160200191612105565b820191906000526020600020905b8154815290600101906020018083116120e857829003601f168201915b505050505081565b60606121176149f7565b60405180610120016040528060fd8152602001614c8a60fd91398160006011811061213e57fe5b6020020181905250600a60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156121ed5780601f106121c2576101008083540402835291602001916121ed565b820191906000526020600020905b8154815290600101906020018083116121d057829003601f168201915b5050505050816001601181106121ff57fe5b6020020181905250604051806060016040528060288152602001614f33602891398160026011811061222d57fe5b6020020181905250600b60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156122dc5780601f106122b1576101008083540402835291602001916122dc565b820191906000526020600020905b8154815290600101906020018083116122bf57829003601f168201915b5050505050816003601181106122ee57fe5b6020020181905250604051806060016040528060288152602001614adf602891398160046011811061231c57fe5b6020020181905250600c60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156123cb5780601f106123a0576101008083540402835291602001916123cb565b820191906000526020600020905b8154815290600101906020018083116123ae57829003601f168201915b5050505050816005601181106123dd57fe5b6020020181905250604051806060016040528060288152602001614c01602891398160066011811061240b57fe5b6020020181905250600d60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156124ba5780601f1061248f576101008083540402835291602001916124ba565b820191906000526020600020905b81548152906001019060200180831161249d57829003601f168201915b5050505050816007601181106124cc57fe5b6020020181905250604051806060016040528060298152602001614c2960299139816008601181106124fa57fe5b6020020181905250600e60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156125a95780601f1061257e576101008083540402835291602001916125a9565b820191906000526020600020905b81548152906001019060200180831161258c57829003601f168201915b5050505050816009601181106125bb57fe5b6020020181905250604051806060016040528060298152602001614b866029913981600a601181106125e957fe5b6020020181905250600f60008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156126985780601f1061266d57610100808354040283529160200191612698565b820191906000526020600020905b81548152906001019060200180831161267b57829003601f168201915b505050505081600b601181106126aa57fe5b6020020181905250604051806060016040528060298152602001614dda6029913981600c601181106126d857fe5b6020020181905250601060008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156127875780601f1061275c57610100808354040283529160200191612787565b820191906000526020600020905b81548152906001019060200180831161276a57829003601f168201915b505050505081600d6011811061279957fe5b6020020181905250604051806060016040528060298152602001614b5d6029913981600e601181106127c757fe5b6020020181905250601160008481526020019081526020016000208054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156128765780601f1061284b57610100808354040283529160200191612876565b820191906000526020600020905b81548152906001019060200180831161285957829003601f168201915b505050505081600f6011811061288857fe5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250816010601181106128d357fe5b60200201819052506060816000601181106128ea57fe5b6020020151826001601181106128fc57fe5b60200201518360026011811061290e57fe5b60200201518460036011811061292057fe5b60200201518560046011811061293257fe5b60200201518660056011811061294457fe5b60200201518760066011811061295657fe5b60200201518860076011811061296857fe5b60200201518960086011811061297a57fe5b6020020151604051602001808a805190602001908083835b602083106129b55780518252602082019150602081019050602083039250612992565b6001836020036101000a03801982511681845116808217855250505050505090500189805190602001908083835b60208310612a0657805182526020820191506020810190506020830392506129e3565b6001836020036101000a03801982511681845116808217855250505050505090500188805190602001908083835b60208310612a575780518252602082019150602081019050602083039250612a34565b6001836020036101000a03801982511681845116808217855250505050505090500187805190602001908083835b60208310612aa85780518252602082019150602081019050602083039250612a85565b6001836020036101000a03801982511681845116808217855250505050505090500186805190602001908083835b60208310612af95780518252602082019150602081019050602083039250612ad6565b6001836020036101000a03801982511681845116808217855250505050505090500185805190602001908083835b60208310612b4a5780518252602082019150602081019050602083039250612b27565b6001836020036101000a03801982511681845116808217855250505050505090500184805190602001908083835b60208310612b9b5780518252602082019150602081019050602083039250612b78565b6001836020036101000a03801982511681845116808217855250505050505090500183805190602001908083835b60208310612bec5780518252602082019150602081019050602083039250612bc9565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612c3d5780518252602082019150602081019050602083039250612c1a565b6001836020036101000a038019825116818451168082178552505050505050905001995050505050505050505060405160208183030381529060405290508082600960118110612c8957fe5b602002015183600a60118110612c9b57fe5b602002015184600b60118110612cad57fe5b602002015185600c60118110612cbf57fe5b602002015186600d60118110612cd157fe5b602002015187600e60118110612ce357fe5b602002015188600f60118110612cf557fe5b602002015189601060118110612d0757fe5b6020020151604051602001808a805190602001908083835b60208310612d425780518252602082019150602081019050602083039250612d1f565b6001836020036101000a03801982511681845116808217855250505050505090500189805190602001908083835b60208310612d935780518252602082019150602081019050602083039250612d70565b6001836020036101000a03801982511681845116808217855250505050505090500188805190602001908083835b60208310612de45780518252602082019150602081019050602083039250612dc1565b6001836020036101000a03801982511681845116808217855250505050505090500187805190602001908083835b60208310612e355780518252602082019150602081019050602083039250612e12565b6001836020036101000a03801982511681845116808217855250505050505090500186805190602001908083835b60208310612e865780518252602082019150602081019050602083039250612e63565b6001836020036101000a03801982511681845116808217855250505050505090500185805190602001908083835b60208310612ed75780518252602082019150602081019050602083039250612eb4565b6001836020036101000a03801982511681845116808217855250505050505090500184805190602001908083835b60208310612f285780518252602082019150602081019050602083039250612f05565b6001836020036101000a03801982511681845116808217855250505050505090500183805190602001908083835b60208310612f795780518252602082019150602081019050602083039250612f56565b6001836020036101000a03801982511681845116808217855250505050505090500182805190602001908083835b60208310612fca5780518252602082019150602081019050602083039250612fa7565b6001836020036101000a03801982511681845116808217855250505050505090500199505050505050505050506040516020818303038152906040529050606061313b61301686613b54565b61301f84613c9b565b60405160200180807f7b226e616d65223a20224c6f6f742028666f722049524c292023000000000000815250601a0183805190602001908083835b6020831061307d578051825260208201915060208101905060208303925061305a565b6001836020036101000a03801982511681845116808217855250505050505090500180614eba6027913960270182805190602001908083835b602083106130d957805182526020820191506020810190506020830392506130b6565b6001836020036101000a038019825116818451168082178552505050505050905001807f227d00000000000000000000000000000000000000000000000000000000000081525060020192505050604051602081830303815290604052613c9b565b90508060405160200180807f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815250601d0182805190602001908083835b6020831061319c5780518252602082019150602081019050602083039250613179565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040516020818303038152906040529150819350505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060018173ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b15801561330157600080fd5b505afa158015613315573d6000803e3d6000fd5b505050506040513d602081101561332b57600080fd5b810190808051906020019092919050505010156133b0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6d757374206f776e206c6f6f740000000000000000000000000000000000000081525060200191505060405180910390fd5b600060016013540190508060138190555060c8811115613438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f6d6178206d696e7420726561636865640000000000000000000000000000000081525060200191505060405180910390fd5b89600a6000838152602001908152602001600020908051906020019061345f929190614a1f565b5088600b60008381526020019081526020016000209080519060200190613487929190614a1f565b5087600c600083815260200190815260200160002090805190602001906134af929190614a1f565b5086600d600083815260200190815260200160002090805190602001906134d7929190614a1f565b5085600e600083815260200190815260200160002090805190602001906134ff929190614a1f565b5084600f60008381526020019081526020016000209080519060200190613527929190614a1f565b508360106000838152602001908152602001600020908051906020019061354f929190614a1f565b5082601160008381526020019081526020016000209080519060200190613577929190614a1f565b506135823382613e14565b50505050505050505050565b60116020528060005260406000206000915090508054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156136365780601f1061360b57610100808354040283529160200191613636565b820191906000526020600020905b81548152906001019060200180831161361957829003601f168201915b505050505081565b600061365482600261400890919063ffffffff16565b9050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166136d6836119cf565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061372a82600001614022565b9050919050565b600061373c8261363e565b613791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c815260200180614bd5602c913960400191505060405180910390fd5b600061379c836119cf565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061380b57508373ffffffffffffffffffffffffffffffffffffffff166137f38461148f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061381c575061381b81856131dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16613845826119cf565b73ffffffffffffffffffffffffffffffffffffffff16146138b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526029815260200180614e916029913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613937576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614b396024913960400191505060405180910390fd5b613942838383614033565b61394d600082613663565b61399e81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061403890919063ffffffff16565b506139f081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061405290919063ffffffff16565b50613a078183600261406c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000613a7783600001836140a1565b60001c905092915050565b600080600080613a958660000186614124565b915091508160001c8160001c9350935050509250929050565b6000613ac1846000018460001b846141bd565b60001c90509392505050565b6000613adb826000016142b3565b9050919050565b613aed848484613825565b613af9848484846142c4565b613b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526032815260200180614b076032913960400191505060405180910390fd5b50505050565b60606000821415613b9c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c96565b600082905060005b60008214613bc6578080600101915050600a8281613bbe57fe5b049150613ba4565b60608167ffffffffffffffff81118015613bdf57600080fd5b506040519080825280601f01601f191660200182016040528015613c125781602001600182028036833780820191505090505b50905060006001830390508593505b60008414613c8e57600a8481613c3357fe5b0660300160f81b82828060019003935081518110613c4d57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8481613c8657fe5b049350613c21565b819450505050505b919050565b60606000825190506000811415613cc45760405180602001604052806000815250915050613e0f565b600060036002830181613cd357fe5b04600402905060606020820167ffffffffffffffff81118015613cf557600080fd5b506040519080825280601f01601f191660200182016040528015613d285781602001600182028036833780820191505090505b5090506060604051806060016040528060408152602001614e03604091399050600181016020830160005b86811015613dcc5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613d53565b506003860660018114613de65760028114613df657613e01565b613d3d60f01b6002830352613e01565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613eb7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433732313a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b613ec08161363e565b15613f33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081525060200191505060405180910390fd5b613f3f60008383614033565b613f9081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002061405290919063ffffffff16565b50613fa78183600261406c9092919063ffffffff16565b50808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061401a836000018360001b6144dd565b905092915050565b600081600001805490509050919050565b505050565b600061404a836000018360001b614500565b905092915050565b6000614064836000018360001b6145e8565b905092915050565b6000614098846000018460001b8473ffffffffffffffffffffffffffffffffffffffff1660001b614658565b90509392505050565b600081836000018054905011614102576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614abd6022913960400191505060405180910390fd5b82600001828154811061411157fe5b9060005260206000200154905092915050565b60008082846000018054905011614186576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614e436022913960400191505060405180910390fd5b600084600001848154811061419757fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b60008084600101600085815260200190815260200160002054905060008114158390614284576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561424957808201518184015260208101905061422e565b50505050905090810190601f1680156142765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5084600001600182038154811061429757fe5b9060005260206000209060020201600101549150509392505050565b600081600001805490509050919050565b60006142e58473ffffffffffffffffffffffffffffffffffffffff16614734565b6142f257600190506144d5565b606061445c63150b7a0260e01b61430761365b565b888787604051602401808573ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561438b578082015181840152602081019050614370565b50505050905090810190601f1680156143b85780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051806060016040528060328152602001614b07603291398773ffffffffffffffffffffffffffffffffffffffff166147479092919063ffffffff16565b9050600081806020019051602081101561447557600080fd5b8101908080519060200190929190505050905063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614925050505b949350505050565b600080836001016000848152602001908152602001600020541415905092915050565b600080836001016000848152602001908152602001600020549050600081146145dc576000600182039050600060018660000180549050039050600086600001828154811061454b57fe5b906000526020600020015490508087600001848154811061456857fe5b90600052602060002001819055506001830187600101600083815260200190815260200160002081905550866000018054806145a057fe5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506145e2565b60009150505b92915050565b60006145f4838361475f565b61464d578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050614652565b600090505b92915050565b60008084600101600085815260200190815260200160002054905060008114156146ff5784600001604051806040016040528086815260200185815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101555050846000018054905085600101600086815260200190815260200160002081905550600191505061472d565b8285600001600183038154811061471257fe5b90600052602060002090600202016001018190555060009150505b9392505050565b600080823b905060008111915050919050565b60606147568484600085614782565b90509392505050565b600080836001016000848152602001908152602001600020541415905092915050565b6060824710156147dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614baf6026913960400191505060405180910390fd5b6147e685614734565b614858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106148a85780518252602082019150602081019050602083039250614885565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d806000811461490a576040519150601f19603f3d011682016040523d82523d6000602084013e61490f565b606091505b509150915061491f82828661492b565b92505050949350505050565b6060831561493b578290506149f0565b60008351111561494e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156149b557808201518184015260208101905061499a565b50505050905090810190601f1680156149e25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6040518061022001604052806011905b6060815260200190600190039081614a075790505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614a6057805160ff1916838001178555614a8e565b82800160010185558215614a8e579182015b82811115614a8d578251825591602001919060010190614a72565b5b509050614a9b9190614a9f565b5090565b5b80821115614ab8576000816000905550600101614aa0565b509056fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64733c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a207472616e7366657220746f20746865207a65726f20616464726573733c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736536342c4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665643c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212206f2e5db73896a14db3e765bbe133dd7d589df7e1dc102b683c439de8c7bad65764736f6c634300060c0033

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

000000000000000000000000ff9c1b15b16263c61d017ee9f65c50e4ae0113d7

-----Decoded View---------------
Arg [0] : _lootTokenAddress (address): 0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff9c1b15b16263c61d017ee9f65c50e4ae0113d7


Deployed Bytecode Sourcemap

66578:4203:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10240:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;51532:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54318:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;53848:404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53326:211;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55208:305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53088:162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;67041:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;55584:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66696:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53614:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66943:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66795:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67081:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51288:177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66746:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52907:97;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51005:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;66845:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51701:104;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54611:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55806:285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66645:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66894:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68204:2574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54977:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;67226:970;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;66992:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10240:150;10325:4;10349:20;:33;10370:11;10349:33;;;;;;;;;;;;;;;;;;;;;;;;;;;10342:40;;10240:150;;;:::o;51532:100::-;51586:13;51619:5;51612:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51532:100;:::o;54318:221::-;54394:7;54422:16;54430:7;54422;:16::i;:::-;54414:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54507:15;:24;54523:7;54507:24;;;;;;;;;;;;;;;;;;;;;54500:31;;54318:221;;;:::o;53848:404::-;53929:13;53945:23;53960:7;53945:14;:23::i;:::-;53929:39;;53993:5;53987:11;;:2;:11;;;;53979:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54073:5;54057:21;;:12;:10;:12::i;:::-;:21;;;:69;;;;54082:44;54106:5;54113:12;:10;:12::i;:::-;54082:23;:44::i;:::-;54057:69;54049:161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54223:21;54232:2;54236:7;54223:8;:21::i;:::-;53848:404;;;:::o;53326:211::-;53387:7;53508:21;:12;:19;:21::i;:::-;53501:28;;53326:211;:::o;55208:305::-;55369:41;55388:12;:10;:12::i;:::-;55402:7;55369:18;:41::i;:::-;55361:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55477:28;55487:4;55493:2;55497:7;55477:9;:28::i;:::-;55208:305;;;:::o;53088:162::-;53185:7;53212:30;53236:5;53212:13;:20;53226:5;53212:20;;;;;;;;;;;;;;;:23;;:30;;;;:::i;:::-;53205:37;;53088:162;;;;:::o;67041:31::-;;;;;;;;;;;;;:::o;55584:151::-;55688:39;55705:4;55711:2;55715:7;55688:39;;;;;;;;;;;;:16;:39::i;:::-;55584:151;;;:::o;66696:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53614:172::-;53689:7;53710:15;53731:22;53747:5;53731:12;:15;;:22;;;;:::i;:::-;53709:44;;;53771:7;53764:14;;;53614:172;;;:::o;66943:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66795:43::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67081:27::-;;;;:::o;51288:177::-;51360:7;51387:70;51404:7;51387:70;;;;;;;;;;;;;;;;;:12;:16;;:70;;;;;:::i;:::-;51380:77;;51288:177;;;:::o;66746:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52907:97::-;52955:13;52988:8;52981:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52907:97;:::o;51005:221::-;51077:7;51122:1;51105:19;;:5;:19;;;;51097:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51189:29;:13;:20;51203:5;51189:20;;;;;;;;;;;;;;;:27;:29::i;:::-;51182:36;;51005:221;;;:::o;66845:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51701:104::-;51757:13;51790:7;51783:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51701:104;:::o;54611:295::-;54726:12;:10;:12::i;:::-;54714:24;;:8;:24;;;;54706:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54826:8;54781:18;:32;54800:12;:10;:12::i;:::-;54781:32;;;;;;;;;;;;;;;:42;54814:8;54781:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;54879:8;54850:48;;54865:12;:10;:12::i;:::-;54850:48;;;54889:8;54850:48;;;;;;;;;;;;;;;;;;;;54611:295;;:::o;55806:285::-;55938:41;55957:12;:10;:12::i;:::-;55971:7;55938:18;:41::i;:::-;55930:103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56044:39;56058:4;56064:2;56068:7;56077:5;56044:13;:39::i;:::-;55806:285;;;;:::o;66645:44::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66894:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68204:2574::-;68305:13;68336:23;;:::i;:::-;68370:290;;;;;;;;;;;;;;;;;:5;68390:1;68370:32;;;;;;;;;;:290;;;;68684:10;:19;68695:7;68684:19;;;;;;;;;;;68673:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;68679:1;68673:8;;;;;;;;;;:30;;;;68716:53;;;;;;;;;;;;;;;;;:5;68722:1;68716:8;;;;;;;;;;:53;;;;68793:9;:18;68803:7;68793:18;;;;;;;;;;;68782:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;68788:1;68782:8;;;;;;;;;;:29;;;;68824:53;;;;;;;;;;;;;;;;;:5;68830:1;68824:8;;;;;;;;;;:53;;;;68901:8;:17;68910:7;68901:17;;;;;;;;;;;68890:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;68896:1;68890:8;;;;;;;;;;:28;;;;68931:53;;;;;;;;;;;;;;;;;:5;68937:1;68931:8;;;;;;;;;;:53;;;;69008:9;:18;69018:7;69008:18;;;;;;;;;;;68997:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;69003:1;68997:8;;;;;;;;;;:29;;;;69039:54;;;;;;;;;;;;;;;;;:5;69045:1;69039:8;;;;;;;;;;:54;;;;69117:8;:17;69126:7;69117:17;;;;;;;;;;;69106:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;69112:1;69106:8;;;;;;;;;;:28;;;;69147:55;;;;;;;;;;;;;;;;;:5;69153:2;69147:9;;;;;;;;;;:55;;;;69227:8;:17;69236:7;69227:17;;;;;;;;;;;69215:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;69221:2;69215:9;;;;;;;;;;:29;;;;69257:55;;;;;;;;;;;;;;;;;:5;69263:2;69257:9;;;;;;;;;;:55;;;;69337:8;:17;69346:7;69337:17;;;;;;;;;;;69325:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;69331:2;69325:9;;;;;;;;;;:29;;;;69367:55;;;;;;;;;;;;;;;;;:5;69373:2;69367:9;;;;;;;;;;:55;;;;69447:8;:17;69456:7;69447:17;;;;;;;;;;;69435:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:5;69441:2;69435:9;;;;;;;;;;:29;;;;69477:27;;;;;;;;;;;;;;;;;:5;69483:2;69477:9;;;;;;;;;;:27;;;;69517:20;69596:5;69602:1;69596:8;;;;;;;;;;;69623:5;69629:1;69623:8;;;;;;;;;;;69650:5;69656:1;69650:8;;;;;;;;;;;69677:5;69683:1;69677:8;;;;;;;;;;;69704:5;69710:1;69704:8;;;;;;;;;;;69731:5;69737:1;69731:8;;;;;;;;;;;69758:5;69764:1;69758:8;;;;;;;;;;;69785:5;69791:1;69785:8;;;;;;;;;;;69812:5;69818:1;69812:8;;;;;;;;;;;69561:274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69517:329;;69922:6;69947:5;69953:1;69947:8;;;;;;;;;;;69974:5;69980:2;69974:9;;;;;;;;;;;70002:5;70008:2;70002:9;;;;;;;;;;;70030:5;70036:2;70030:9;;;;;;;;;;;70058:5;70064:2;70058:9;;;;;;;;;;;70086:5;70092:2;70086:9;;;;;;;;;;;70114:5;70120:2;70114:9;;;;;;;;;;;70142:5;70148:2;70142:9;;;;;;;;;;;69887:279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69857:320;;70190:18;70211:426;70390:25;70407:7;70390:16;:25::i;:::-;70510:28;70530:6;70510:13;:28::i;:::-;70292:300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70211:13;:426::i;:::-;70190:447;;70728:4;70678:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70648:96;;70764:6;70757:13;;;;;68204:2574;;;:::o;54977:164::-;55074:4;55098:18;:25;55117:5;55098:25;;;;;;;;;;;;;;;:35;55124:8;55098:35;;;;;;;;;;;;;;;;;;;;;;;;;55091:42;;54977:164;;;;:::o;67226:970::-;67541:12;67564:16;;;;;;;;;;;67541:40;;67630:1;67600:4;:14;;;67615:10;67600:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;;67592:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67662:18;67698:1;67683:12;;:16;67662:37;;67725:10;67710:12;:25;;;;67768:3;67754:10;:17;;67746:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67830:11;67805:10;:22;67816:10;67805:22;;;;;;;;;;;:36;;;;;;;;;;;;:::i;:::-;;67876:10;67852:9;:21;67862:10;67852:21;;;;;;;;;;;:34;;;;;;;;;;;;:::i;:::-;;67920:9;67897:8;:20;67906:10;67897:20;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;67964:10;67940:9;:21;67950:10;67940:21;;;;;;;;;;;:34;;;;;;;;;;;;:::i;:::-;;68008:9;67985:8;:20;67994:10;67985:20;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;68051:9;68028:8;:20;68037:10;68028:20;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;68094:9;68071:8;:20;68080:10;68071:20;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;68137:9;68114:8;:20;68123:10;68114:20;;;;;;;;;;;:32;;;;;;;;;;;;:::i;:::-;;68159:29;68165:10;68177;68159:5;:29::i;:::-;67226:970;;;;;;;;;;:::o;66992:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57558:127::-;57623:4;57647:30;57669:7;57647:12;:21;;:30;;;;:::i;:::-;57640:37;;57558:127;;;:::o;684:106::-;737:15;772:10;765:17;;684:106;:::o;63465:183::-;63558:2;63531:15;:24;63547:7;63531:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;63614:7;63610:2;63576:46;;63585:23;63600:7;63585:14;:23::i;:::-;63576:46;;;;;;;;;;;;63465:183;;:::o;44275:123::-;44344:7;44371:19;44379:3;:10;;44371:7;:19::i;:::-;44364:26;;44275:123;;;:::o;57852:355::-;57945:4;57970:16;57978:7;57970;:16::i;:::-;57962:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58046:13;58062:23;58077:7;58062:14;:23::i;:::-;58046:39;;58115:5;58104:16;;:7;:16;;;:51;;;;58148:7;58124:31;;:20;58136:7;58124:11;:20::i;:::-;:31;;;58104:51;:94;;;;58159:39;58183:5;58190:7;58159:23;:39::i;:::-;58104:94;58096:103;;;57852:355;;;;:::o;60988:599::-;61113:4;61086:31;;:23;61101:7;61086:14;:23::i;:::-;:31;;;61078:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61214:1;61200:16;;:2;:16;;;;61192:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61270:39;61291:4;61297:2;61301:7;61270:20;:39::i;:::-;61374:29;61391:1;61395:7;61374:8;:29::i;:::-;61416:35;61443:7;61416:13;:19;61430:4;61416:19;;;;;;;;;;;;;;;:26;;:35;;;;:::i;:::-;;61462:30;61484:7;61462:13;:17;61476:2;61462:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;61505:29;61522:7;61531:2;61505:12;:16;;:29;;;;;:::i;:::-;;61571:7;61567:2;61552:27;;61561:4;61552:27;;;;;;;;;;;;60988:599;;;:::o;36068:137::-;36139:7;36174:22;36178:3;:10;;36190:5;36174:3;:22::i;:::-;36166:31;;36159:38;;36068:137;;;;:::o;44737:236::-;44817:7;44826;44847:11;44860:13;44877:22;44881:3;:10;;44893:5;44877:3;:22::i;:::-;44846:53;;;;44926:3;44918:12;;44956:5;44948:14;;44910:55;;;;;;44737:236;;;;;:::o;46023:213::-;46130:7;46181:44;46186:3;:10;;46206:3;46198:12;;46212;46181:4;:44::i;:::-;46173:53;;46150:78;;46023:213;;;;;:::o;35610:114::-;35670:7;35697:19;35705:3;:10;;35697:7;:19::i;:::-;35690:26;;35610:114;;;:::o;56973:272::-;57087:28;57097:4;57103:2;57107:7;57087:9;:28::i;:::-;57134:48;57157:4;57163:2;57167:7;57176:5;57134:22;:48::i;:::-;57126:111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56973:272;;;;:::o;46485:746::-;46541:13;46771:1;46762:5;:10;46758:53;;;46789:10;;;;;;;;;;;;;;;;;;;;;46758:53;46821:12;46836:5;46821:20;;46852:14;46877:78;46892:1;46884:4;:9;46877:78;;46910:8;;;;;;;46941:2;46933:10;;;;;;;;;46877:78;;;46965:19;46997:6;46987:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46965:39;;47015:13;47040:1;47031:6;:10;47015:26;;47059:5;47052:12;;47075:117;47090:1;47082:4;:9;47075:117;;47151:2;47144:4;:9;;;;;;47139:2;:14;47126:29;;47108:6;47115:7;;;;;;;47108:15;;;;;;;;;;;:47;;;;;;;;;;;47178:2;47170:10;;;;;;;;;47075:117;;;47216:6;47202:21;;;;;;46485:746;;;;:::o;64781:1790::-;64839:13;64865:11;64879:4;:11;64865:25;;64912:1;64905:3;:8;64901:23;;;64915:9;;;;;;;;;;;;;;;;;64901:23;64976:18;65014:1;65009;65003:3;:7;65002:13;;;;;;64997:1;:19;64976:40;;65074:19;65119:2;65106:10;:15;65096:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65074:48;;65135:18;65156:5;;;;;;;;;;;;;;;;;65135:26;;65225:1;65218:5;65214:13;65270:2;65262:6;65258:15;65321:1;65289:960;65344:3;65341:1;65338:10;65289:960;;;65399:1;65396;65392:9;65387:14;;65457:8;65452:1;65446:4;65442:12;65436:19;65432:34;65537:4;65529:5;65525:2;65521:14;65517:25;65507:8;65503:40;65497:47;65576:3;65573:1;65569:11;65562:18;;65710:4;65701;65693:5;65689:2;65685:14;65681:25;65671:8;65667:40;65661:47;65657:58;65631:3;65605:129;65598:136;;65766:3;65763:1;65759:11;65752:18;;65899:4;65890;65882:5;65879:1;65875:13;65871:24;65861:8;65857:39;65851:46;65847:57;65821:3;65795:128;65788:135;;65955:3;65952:1;65948:11;65941:18;;66080:4;66071;66064:5;66060:16;66050:8;66046:31;66040:38;66036:49;66010:3;65984:120;65977:127;;66138:3;66133;66129:13;66122:20;;66180:3;66169:9;66162:22;66232:1;66221:9;66217:17;66204:30;;65368:881;;65289:960;;;65293:44;66281:1;66276:3;66272:11;66302:1;66297:84;;;;66400:1;66395:82;;;;66265:212;;66297:84;66358:6;66353:3;66349:16;66345:1;66334:9;66330:17;66323:43;66297:84;;66395:82;66456:4;66451:3;66447:14;66443:1;66432:9;66428:17;66421:41;66265:212;;66508:10;66500:6;66493:26;65183:1347;;66556:6;66542:21;;;;;;64781:1790;;;;:::o;59473:404::-;59567:1;59553:16;;:2;:16;;;;59545:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59626:16;59634:7;59626;:16::i;:::-;59625:17;59617:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59688:45;59717:1;59721:2;59725:7;59688:20;:45::i;:::-;59746:30;59768:7;59746:13;:17;59760:2;59746:17;;;;;;;;;;;;;;;:21;;:30;;;;:::i;:::-;;59789:29;59806:7;59815:2;59789:12;:16;;:29;;;;;:::i;:::-;;59861:7;59857:2;59836:33;;59853:1;59836:33;;;;;;;;;;;;59473:404;;:::o;44036:151::-;44120:4;44144:35;44154:3;:10;;44174:3;44166:12;;44144:9;:35::i;:::-;44137:42;;44036:151;;;;:::o;40854:110::-;40910:7;40937:3;:12;;:19;;;;40930:26;;40854:110;;;:::o;64261:93::-;;;;:::o;35155:137::-;35225:4;35249:35;35257:3;:10;;35277:5;35269:14;;35249:7;:35::i;:::-;35242:42;;35155:137;;;;:::o;34848:131::-;34915:4;34939:32;34944:3;:10;;34964:5;34956:14;;34939:4;:32::i;:::-;34932:39;;34848:131;;;;:::o;43459:185::-;43548:4;43572:64;43577:3;:10;;43597:3;43589:12;;43627:5;43611:23;;43603:32;;43572:4;:64::i;:::-;43565:71;;43459:185;;;;;:::o;31106:204::-;31173:7;31222:5;31201:3;:11;;:18;;;;:26;31193:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31284:3;:11;;31296:5;31284:18;;;;;;;;;;;;;;;;31277:25;;31106:204;;;;:::o;41319:279::-;41386:7;41395;41445:5;41423:3;:12;;:19;;;;:27;41415:74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41502:22;41527:3;:12;;41540:5;41527:19;;;;;;;;;;;;;;;;;;41502:44;;41565:5;:10;;;41577:5;:12;;;41557:33;;;;;41319:279;;;;;:::o;42816:319::-;42910:7;42930:16;42949:3;:12;;:17;42962:3;42949:17;;;;;;;;;;;;42930:36;;42997:1;42985:8;:13;;43000:12;42977:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43067:3;:12;;43091:1;43080:8;:12;43067:26;;;;;;;;;;;;;;;;;;:33;;;43060:40;;;42816:319;;;;;:::o;30653:109::-;30709:7;30736:3;:11;;:18;;;;30729:25;;30653:109;;;:::o;62853:604::-;62974:4;63001:15;:2;:13;;;:15::i;:::-;62996:60;;63040:4;63033:11;;;;62996:60;63066:23;63092:252;63145:45;;;63205:12;:10;:12::i;:::-;63232:4;63251:7;63273:5;63108:181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63092:252;;;;;;;;;;;;;;;;;:2;:15;;;;:252;;;;;:::i;:::-;63066:278;;63355:13;63382:10;63371:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63355:48;;48002:10;63432:16;;63422:26;;;:6;:26;;;;63414:35;;;;62853:604;;;;;;;:::o;40634:125::-;40705:4;40750:1;40729:3;:12;;:17;40742:3;40729:17;;;;;;;;;;;;:22;;40722:29;;40634:125;;;;:::o;28808:1544::-;28874:4;28992:18;29013:3;:12;;:19;29026:5;29013:19;;;;;;;;;;;;28992:40;;29063:1;29049:10;:15;29045:1300;;29411:21;29448:1;29435:10;:14;29411:38;;29464:17;29505:1;29484:3;:11;;:18;;;;:22;29464:42;;29751:17;29771:3;:11;;29783:9;29771:22;;;;;;;;;;;;;;;;29751:42;;29917:9;29888:3;:11;;29900:13;29888:26;;;;;;;;;;;;;;;:38;;;;30036:1;30020:13;:17;29994:3;:12;;:23;30007:9;29994:23;;;;;;;;;;;:43;;;;30146:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;30241:3;:12;;:19;30254:5;30241:19;;;;;;;;;;;30234:26;;;30284:4;30277:11;;;;;;;;29045:1300;30328:5;30321:12;;;28808:1544;;;;;:::o;28218:414::-;28281:4;28303:21;28313:3;28318:5;28303:9;:21::i;:::-;28298:327;;28341:3;:11;;28358:5;28341:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28524:3;:11;;:18;;;;28502:3;:12;;:19;28515:5;28502:19;;;;;;;;;;;:40;;;;28564:4;28557:11;;;;28298:327;28608:5;28601:12;;28218:414;;;;;:::o;38134:692::-;38210:4;38326:16;38345:3;:12;;:17;38358:3;38345:17;;;;;;;;;;;;38326:36;;38391:1;38379:8;:13;38375:444;;;38446:3;:12;;38464:38;;;;;;;;38481:3;38464:38;;;;38494:5;38464:38;;;38446:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38661:3;:12;;:19;;;;38641:3;:12;;:17;38654:3;38641:17;;;;;;;;;;;:39;;;;38702:4;38695:11;;;;;38375:444;38775:5;38739:3;:12;;38763:1;38752:8;:12;38739:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38802:5;38795:12;;;38134:692;;;;;;:::o;19239:422::-;19299:4;19507:12;19618:7;19606:20;19598:28;;19652:1;19645:4;:8;19638:15;;;19239:422;;;:::o;22157:195::-;22260:12;22292:52;22314:6;22322:4;22328:1;22331:12;22292:21;:52::i;:::-;22285:59;;22157:195;;;;;:::o;30438:129::-;30511:4;30558:1;30535:3;:12;;:19;30548:5;30535:19;;;;;;;;;;;;:24;;30528:31;;30438:129;;;;:::o;23209:530::-;23336:12;23394:5;23369:21;:30;;23361:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23461:18;23472:6;23461:10;:18::i;:::-;23453:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23587:12;23601:23;23628:6;:11;;23648:5;23656:4;23628:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23586:75;;;;23679:52;23697:7;23706:10;23718:12;23679:17;:52::i;:::-;23672:59;;;;23209:530;;;;;;:::o;25749:742::-;25864:12;25893:7;25889:595;;;25924:10;25917:17;;;;25889:595;26058:1;26038:10;:17;:21;26034:439;;;26301:10;26295:17;26362:15;26349:10;26345:2;26341:19;26334:44;26249:148;26444:12;26437:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25749:742;;;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o

Swarm Source

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