ETH Price: $2,930.62 (-3.25%)
Gas: 1 Gwei

Token

Gloot (GLOOT)
 

Overview

Max Total Supply

276 GLOOT

Holders

51

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
darkfingah.eth
Balance
1 GLOOT
0x513aedace44cc9a0724ca276a8ceeee950903576
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:
Gloot

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-04
*/

/**
 *Submitted for verification at Etherscan.io on 2021-07-22
*/

// SPDX-License-Identifier: 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);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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

pragma solidity ^0.7.0;
pragma abicoder v2;

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

    string public GLOOT_PROVENANCE = ""; // IPFS URL WILL BE ADDED WHEN GLOOTS ARE ALL SOLD OUT
    
    string public LICENSE_TEXT = ""; 
    
    bool licenseLocked = false; 

    uint256 public constant glootPrice = 10000000000000000; // 0.01 ETH

    uint public constant maxGlootPurchase = 20;

    uint256 public constant MAX_GLOOTS = 10000;

    bool public saleIsActive = false;
        
    event licenseisLocked(string _licenseText);

    constructor() ERC721("Gloot", "GLOOT") { }
    
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }
    
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        GLOOT_PROVENANCE = provenanceHash;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _setBaseURI(baseURI);
    }

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            // Return an empty array
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }
    
    // Returns the license for tokens
    function tokenLicense(uint _id) public view returns(string memory) {
        require(_id < totalSupply(), "CHOOSE A GLOOT WITHIN RANGE");
        return LICENSE_TEXT;
    }
    
    // Locks the license to prevent further changes 
    function lockLicense() public onlyOwner {
        licenseLocked =  true;
        emit licenseisLocked(LICENSE_TEXT);
    }
    
    // Change the license
    function changeLicense(string memory _license) public onlyOwner {
        require(licenseLocked == false, "License already locked");
        LICENSE_TEXT = _license;
    }
    
    function mintGloot(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint");
        require(numberOfTokens > 0 && numberOfTokens <= maxGlootPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_GLOOTS, "Purchase would exceed max supply of Gloots");
        require(msg.value >= glootPrice.mul(numberOfTokens), "Ether value sent is not correct");
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_GLOOTS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_licenseText","type":"string"}],"name":"licenseisLocked","type":"event"},{"inputs":[],"name":"GLOOT_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LICENSE_TEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_GLOOTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_license","type":"string"}],"name":"changeLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"glootPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockLicense","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxGlootPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintGloot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenLicense","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b91620001ce565b506040805160208101918290526000908190526200003c91600c91620001ce565b50600d805461ffff191690553480156200005557600080fd5b506040518060400160405280600581526020016411db1bdbdd60da1b8152506040518060400160405280600581526020016411d313d3d560da1b815250620000aa6301ffc9a760e01b6200016f60201b60201c565b8151620000bf906006906020850190620001ce565b508051620000d5906007906020840190620001ce565b50620000e86380ac58cd60e01b6200016f565b620000fa635b5e139f60e01b6200016f565b6200010c63780e9d6360e01b6200016f565b50600090506200011b620001ca565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620002b1565b6001600160e01b03198082161415620001a55760405162461bcd60e51b81526004016200019c906200027a565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b61293080620002c16000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056e578063d9b137b21461058e578063e985e9c5146105ae578063eb8d2444146105ce578063f2fde38b146105e357610204565b8063a22cb465146104f9578063b09904b514610519578063b88d4fde14610539578063bf4702fc1461055957610204565b80638462151c116100e75780638462151c1461047a5780638da5cb5b146104a7578063934ef32b146104bc57806395d89b41146104cf5780639c3e72bd146104e457610204565b80636352211e146104105780636c0360eb1461043057806370a0823114610445578063715018a61461046557610204565b806333a381121161019b57806343e9d0871161016a57806343e9d087146103915780634f6ccce7146103a657806355c3a161146103c657806355f804b3146103db5780635bf872ac146103fb57610204565b806333a381121461033257806334918dfd146103475780633ccfd60b1461035c57806342842e0e1461037157610204565b806310969523116101d757806310969523146102b057806318160ddd146102d057806323b872dd146102f25780632f745c591461031257610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc14610261578063095ea7b31461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611f4e565b610603565b60405161023691906120f0565b60405180910390f35b34801561024b57600080fd5b50610254610626565b60405161023691906120fb565b34801561026d57600080fd5b5061028161027c366004611fcc565b6106bc565b604051610236919061205b565b34801561029a57600080fd5b506102ae6102a9366004611f25565b610708565b005b3480156102bc57600080fd5b506102ae6102cb366004611f86565b6107a0565b3480156102dc57600080fd5b506102e56107f6565b6040516102369190612848565b3480156102fe57600080fd5b506102ae61030d366004611e37565b610807565b34801561031e57600080fd5b506102e561032d366004611f25565b61083f565b34801561033e57600080fd5b506102e561086a565b34801561035357600080fd5b506102ae610870565b34801561036857600080fd5b506102ae6108cc565b34801561037d57600080fd5b506102ae61038c366004611e37565b61093a565b34801561039d57600080fd5b506102e5610955565b3480156103b257600080fd5b506102e56103c1366004611fcc565b610960565b3480156103d257600080fd5b506102e5610976565b3480156103e757600080fd5b506102ae6103f6366004611f86565b61097b565b34801561040757600080fd5b506102546109c6565b34801561041c57600080fd5b5061028161042b366004611fcc565b610a54565b34801561043c57600080fd5b50610254610a7c565b34801561045157600080fd5b506102e5610460366004611deb565b610add565b34801561047157600080fd5b506102ae610b26565b34801561048657600080fd5b5061049a610495366004611deb565b610baf565b60405161023691906120ac565b3480156104b357600080fd5b50610281610c5d565b6102ae6104ca366004611fcc565b610c6c565b3480156104db57600080fd5b50610254610d5e565b3480156104f057600080fd5b50610254610dbf565b34801561050557600080fd5b506102ae610514366004611eeb565b610e1a565b34801561052557600080fd5b506102ae610534366004611f86565b610ee8565b34801561054557600080fd5b506102ae610554366004611e72565b610f5d565b34801561056557600080fd5b506102ae610f9c565b34801561057a57600080fd5b50610254610589366004611fcc565b611023565b34801561059a57600080fd5b506102546105a9366004611fcc565b611167565b3480156105ba57600080fd5b506102296105c9366004611e05565b611221565b3480156105da57600080fd5b5061022961124f565b3480156105ef57600080fd5b506102ae6105fe366004611deb565b61125d565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b60006106c78261131e565b6106ec5760405162461bcd60e51b81526004016106e390612636565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071382610a54565b9050806001600160a01b0316836001600160a01b031614156107475760405162461bcd60e51b81526004016106e39061274f565b806001600160a01b031661075961132b565b6001600160a01b031614806107755750610775816105c961132b565b6107915760405162461bcd60e51b81526004016106e3906124d7565b61079b838361132f565b505050565b6107a861132b565b6001600160a01b03166107b9610c5d565b6001600160a01b0316146107df5760405162461bcd60e51b81526004016106e390612682565b80516107f290600b906020840190611ccf565b5050565b6000610802600261139d565b905090565b61081861081261132b565b826113a8565b6108345760405162461bcd60e51b81526004016106e3906127c0565b61079b83838361142d565b6001600160a01b0382166000908152600160205260408120610861908361153b565b90505b92915050565b61271081565b61087861132b565b6001600160a01b0316610889610c5d565b6001600160a01b0316146108af5760405162461bcd60e51b81526004016106e390612682565b600d805461ff001981166101009182900460ff1615909102179055565b6108d461132b565b6001600160a01b03166108e5610c5d565b6001600160a01b03161461090b5760405162461bcd60e51b81526004016106e390612682565b6040514790339082156108fc029083906000818181858888f193505050501580156107f2573d6000803e3d6000fd5b61079b83838360405180602001604052806000815250610f5d565b662386f26fc1000081565b60008061096e600284611547565b509392505050565b601481565b61098361132b565b6001600160a01b0316610994610c5d565b6001600160a01b0316146109ba5760405162461bcd60e51b81526004016106e390612682565b6109c381611563565b50565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b505050505081565b6000610864826040518060600160405280602981526020016128d26029913960029190611576565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b60006001600160a01b038216610b055760405162461bcd60e51b81526004016106e390612534565b6001600160a01b03821660009081526001602052604090206108649061139d565b610b2e61132b565b6001600160a01b0316610b3f610c5d565b6001600160a01b031614610b655760405162461bcd60e51b81526004016106e390612682565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606000610bbc83610add565b905080610bd9575050604080516000815260208101909152610621565b60008167ffffffffffffffff81118015610bf257600080fd5b50604051908082528060200260200182016040528015610c1c578160200160208202803683370190505b50905060005b82811015610c5357610c34858261083f565b828281518110610c4057fe5b6020908102919091010152600101610c22565b5091506106219050565b600a546001600160a01b031690565b600d54610100900460ff16610c935760405162461bcd60e51b81526004016106e3906123c9565b600081118015610ca4575060148111155b610cc05760405162461bcd60e51b81526004016106e390612496565b612710610cd582610ccf6107f6565b9061158d565b1115610cf35760405162461bcd60e51b81526004016106e39061244c565b610d04662386f26fc10000826115b2565b341015610d235760405162461bcd60e51b81526004016106e390612392565b60005b818110156107f2576000610d386107f6565b9050612710610d456107f6565b1015610d5557610d5533826115ec565b50600101610d26565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b610e2261132b565b6001600160a01b0316826001600160a01b03161415610e535760405162461bcd60e51b81526004016106e39061235b565b8060056000610e6061132b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ea461132b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610edc91906120f0565b60405180910390a35050565b610ef061132b565b6001600160a01b0316610f01610c5d565b6001600160a01b031614610f275760405162461bcd60e51b81526004016106e390612682565b600d5460ff1615610f4a5760405162461bcd60e51b81526004016106e390612790565b80516107f290600c906020840190611ccf565b610f6e610f6861132b565b836113a8565b610f8a5760405162461bcd60e51b81526004016106e3906127c0565b610f9684848484611606565b50505050565b610fa461132b565b6001600160a01b0316610fb5610c5d565b6001600160a01b031614610fdb5760405162461bcd60e51b81526004016106e390612682565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b09061101990600c9061210e565b60405180910390a1565b606061102e8261131e565b61104a5760405162461bcd60e51b81526004016106e390612700565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b5050505050905060006110ee610a7c565b905080516000141561110257509050610621565b81511561113457808260405160200161111c92919061202c565b60405160208183030381529060405292505050610621565b8061113e85611639565b60405160200161114f92919061202c565b60405160208183030381529060405292505050919050565b60606111716107f6565b821061118f5760405162461bcd60e51b81526004016106e3906122a9565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b61126561132b565b6001600160a01b0316611276610c5d565b6001600160a01b03161461129c5760405162461bcd60e51b81526004016106e390612682565b6001600160a01b0381166112c25760405162461bcd60e51b81526004016106e39061222c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610864600283611714565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136482610a54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061086482611720565b60006113b38261131e565b6113cf5760405162461bcd60e51b81526004016106e390612400565b60006113da83610a54565b9050806001600160a01b0316846001600160a01b031614806114155750836001600160a01b031661140a846106bc565b6001600160a01b0316145b8061142557506114258185611221565b949350505050565b826001600160a01b031661144082610a54565b6001600160a01b0316146114665760405162461bcd60e51b81526004016106e3906126b7565b6001600160a01b03821661148c5760405162461bcd60e51b81526004016106e390612317565b61149783838361079b565b6114a260008261132f565b6001600160a01b03831660009081526001602052604090206114c49082611724565b506001600160a01b03821660009081526001602052604090206114e79082611730565b506114f46002828461173c565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108618383611752565b60008080806115568686611797565b9097909650945050505050565b80516107f2906009906020840190611ccf565b60006115838484846117f3565b90505b9392505050565b6000828201838110156108615760405162461bcd60e51b81526004016106e3906122e0565b6000826115c157506000610864565b828202828482816115ce57fe5b04146108615760405162461bcd60e51b81526004016106e3906125f5565b6107f2828260405180602001604052806000815250611852565b61161184848461142d565b61161d84848484611885565b610f965760405162461bcd60e51b81526004016106e3906121da565b60608161165e57506040805180820190915260018152600360fc1b6020820152610621565b8160005b811561167657600101600a82049150611662565b60008167ffffffffffffffff8111801561168f57600080fd5b506040519080825280601f01601f1916602001820160405280156116ba576020820181803683370190505b50859350905060001982015b831561170b57600a840660300160f81b828280600190039350815181106116e957fe5b60200101906001600160f81b031916908160001a905350600a840493506116c6565b50949350505050565b60006108618383611964565b5490565b6000610861838361197c565b60006108618383611a42565b600061158384846001600160a01b038516611a8c565b815460009082106117755760405162461bcd60e51b81526004016106e390612198565b82600001828154811061178457fe5b9060005260206000200154905092915050565b8154600090819083106117bc5760405162461bcd60e51b81526004016106e39061257e565b60008460000184815481106117cd57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816118235760405162461bcd60e51b81526004016106e391906120fb565b5084600001600182038154811061183657fe5b9060005260206000209060020201600101549150509392505050565b61185c8383611b23565b6118696000848484611885565b61079b5760405162461bcd60e51b81526004016106e3906121da565b6000611899846001600160a01b0316611be7565b6118a557506001611425565b600061192d630a85bd0160e11b6118ba61132b565b8887876040516024016118d0949392919061206f565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016128a0603291396001600160a01b0388169190611bed565b90506000818060200190518101906119459190611f6a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611a3857835460001980830191908101906000908790839081106119af57fe5b90600052602060002001549050808760000184815481106119cc57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806119fc57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610864565b6000915050610864565b6000611a4e8383611964565b611a8457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610864565b506000610864565b600082815260018401602052604081205480611af1575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611586565b82856000016001830381548110611b0457fe5b9060005260206000209060020201600101819055506000915050611586565b6001600160a01b038216611b495760405162461bcd60e51b81526004016106e3906125c0565b611b528161131e565b15611b6f5760405162461bcd60e51b81526004016106e390612272565b611b7b6000838361079b565b6001600160a01b0382166000908152600160205260409020611b9d9082611730565b50611baa6002828461173c565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611583848460008585611c0185611be7565b611c1d5760405162461bcd60e51b81526004016106e390612811565b600080866001600160a01b03168587604051611c399190612010565b60006040518083038185875af1925050503d8060008114611c76576040519150601f19603f3d011682016040523d82523d6000602084013e611c7b565b606091505b5091509150611c8b828286611c96565b979650505050505050565b60608315611ca5575081611586565b825115611cb55782518084602001fd5b8160405162461bcd60e51b81526004016106e391906120fb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611d055760008555611d4b565b82601f10611d1e57805160ff1916838001178555611d4b565b82800160010185558215611d4b579182015b82811115611d4b578251825591602001919060010190611d30565b50611d57929150611d5b565b5090565b5b80821115611d575760008155600101611d5c565b600067ffffffffffffffff80841115611d8557fe5b604051601f8501601f191681016020018281118282101715611da357fe5b604052848152915081838501861015611dbb57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062157600080fd5b600060208284031215611dfc578081fd5b61086182611dd4565b60008060408385031215611e17578081fd5b611e2083611dd4565b9150611e2e60208401611dd4565b90509250929050565b600080600060608486031215611e4b578081fd5b611e5484611dd4565b9250611e6260208501611dd4565b9150604084013590509250925092565b60008060008060808587031215611e87578081fd5b611e9085611dd4565b9350611e9e60208601611dd4565b925060408501359150606085013567ffffffffffffffff811115611ec0578182fd5b8501601f81018713611ed0578182fd5b611edf87823560208401611d70565b91505092959194509250565b60008060408385031215611efd578182fd5b611f0683611dd4565b915060208301358015158114611f1a578182fd5b809150509250929050565b60008060408385031215611f37578182fd5b611f4083611dd4565b946020939093013593505050565b600060208284031215611f5f578081fd5b813561086181612889565b600060208284031215611f7b578081fd5b815161086181612889565b600060208284031215611f97578081fd5b813567ffffffffffffffff811115611fad578182fd5b8201601f81018413611fbd578182fd5b61142584823560208401611d70565b600060208284031215611fdd578081fd5b5035919050565b60008151808452611ffc81602086016020860161285d565b601f01601f19169290920160200192915050565b6000825161202281846020870161285d565b9190910192915050565b6000835161203e81846020880161285d565b83519083019061205281836020880161285d565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a290830184611fe4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120e4578351835292840192918401916001016120c8565b50909695505050505050565b901515815260200190565b6000602082526108616020830184611fe4565b6000602080830181845282855460018082166000811461213557600181146121535761218b565b60028304607f16855260ff198316604089015260608801935061218b565b600283048086526121638a612851565b885b828110156121815781548b820160400152908401908801612165565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f43484f4f5345204120474c4f4f542057495448494e2052414e47450000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620476c6f6f747360b01b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b83811015612878578181015183820152602001612860565b83811115610f965750506000910152565b6001600160e01b0319811681146109c357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e0048908059e6b774efa00ac178005e7a853c4cf55022e343255e4716eef97f164736f6c63430007060033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056e578063d9b137b21461058e578063e985e9c5146105ae578063eb8d2444146105ce578063f2fde38b146105e357610204565b8063a22cb465146104f9578063b09904b514610519578063b88d4fde14610539578063bf4702fc1461055957610204565b80638462151c116100e75780638462151c1461047a5780638da5cb5b146104a7578063934ef32b146104bc57806395d89b41146104cf5780639c3e72bd146104e457610204565b80636352211e146104105780636c0360eb1461043057806370a0823114610445578063715018a61461046557610204565b806333a381121161019b57806343e9d0871161016a57806343e9d087146103915780634f6ccce7146103a657806355c3a161146103c657806355f804b3146103db5780635bf872ac146103fb57610204565b806333a381121461033257806334918dfd146103475780633ccfd60b1461035c57806342842e0e1461037157610204565b806310969523116101d757806310969523146102b057806318160ddd146102d057806323b872dd146102f25780632f745c591461031257610204565b806301ffc9a71461020957806306fdde031461023f578063081812fc14610261578063095ea7b31461028e575b600080fd5b34801561021557600080fd5b50610229610224366004611f4e565b610603565b60405161023691906120f0565b60405180910390f35b34801561024b57600080fd5b50610254610626565b60405161023691906120fb565b34801561026d57600080fd5b5061028161027c366004611fcc565b6106bc565b604051610236919061205b565b34801561029a57600080fd5b506102ae6102a9366004611f25565b610708565b005b3480156102bc57600080fd5b506102ae6102cb366004611f86565b6107a0565b3480156102dc57600080fd5b506102e56107f6565b6040516102369190612848565b3480156102fe57600080fd5b506102ae61030d366004611e37565b610807565b34801561031e57600080fd5b506102e561032d366004611f25565b61083f565b34801561033e57600080fd5b506102e561086a565b34801561035357600080fd5b506102ae610870565b34801561036857600080fd5b506102ae6108cc565b34801561037d57600080fd5b506102ae61038c366004611e37565b61093a565b34801561039d57600080fd5b506102e5610955565b3480156103b257600080fd5b506102e56103c1366004611fcc565b610960565b3480156103d257600080fd5b506102e5610976565b3480156103e757600080fd5b506102ae6103f6366004611f86565b61097b565b34801561040757600080fd5b506102546109c6565b34801561041c57600080fd5b5061028161042b366004611fcc565b610a54565b34801561043c57600080fd5b50610254610a7c565b34801561045157600080fd5b506102e5610460366004611deb565b610add565b34801561047157600080fd5b506102ae610b26565b34801561048657600080fd5b5061049a610495366004611deb565b610baf565b60405161023691906120ac565b3480156104b357600080fd5b50610281610c5d565b6102ae6104ca366004611fcc565b610c6c565b3480156104db57600080fd5b50610254610d5e565b3480156104f057600080fd5b50610254610dbf565b34801561050557600080fd5b506102ae610514366004611eeb565b610e1a565b34801561052557600080fd5b506102ae610534366004611f86565b610ee8565b34801561054557600080fd5b506102ae610554366004611e72565b610f5d565b34801561056557600080fd5b506102ae610f9c565b34801561057a57600080fd5b50610254610589366004611fcc565b611023565b34801561059a57600080fd5b506102546105a9366004611fcc565b611167565b3480156105ba57600080fd5b506102296105c9366004611e05565b611221565b3480156105da57600080fd5b5061022961124f565b3480156105ef57600080fd5b506102ae6105fe366004611deb565b61125d565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b820191906000526020600020905b81548152906001019060200180831161069557829003601f168201915b5050505050905090565b60006106c78261131e565b6106ec5760405162461bcd60e51b81526004016106e390612636565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071382610a54565b9050806001600160a01b0316836001600160a01b031614156107475760405162461bcd60e51b81526004016106e39061274f565b806001600160a01b031661075961132b565b6001600160a01b031614806107755750610775816105c961132b565b6107915760405162461bcd60e51b81526004016106e3906124d7565b61079b838361132f565b505050565b6107a861132b565b6001600160a01b03166107b9610c5d565b6001600160a01b0316146107df5760405162461bcd60e51b81526004016106e390612682565b80516107f290600b906020840190611ccf565b5050565b6000610802600261139d565b905090565b61081861081261132b565b826113a8565b6108345760405162461bcd60e51b81526004016106e3906127c0565b61079b83838361142d565b6001600160a01b0382166000908152600160205260408120610861908361153b565b90505b92915050565b61271081565b61087861132b565b6001600160a01b0316610889610c5d565b6001600160a01b0316146108af5760405162461bcd60e51b81526004016106e390612682565b600d805461ff001981166101009182900460ff1615909102179055565b6108d461132b565b6001600160a01b03166108e5610c5d565b6001600160a01b03161461090b5760405162461bcd60e51b81526004016106e390612682565b6040514790339082156108fc029083906000818181858888f193505050501580156107f2573d6000803e3d6000fd5b61079b83838360405180602001604052806000815250610f5d565b662386f26fc1000081565b60008061096e600284611547565b509392505050565b601481565b61098361132b565b6001600160a01b0316610994610c5d565b6001600160a01b0316146109ba5760405162461bcd60e51b81526004016106e390612682565b6109c381611563565b50565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b820191906000526020600020905b815481529060010190602001808311610a2f57829003601f168201915b505050505081565b6000610864826040518060600160405280602981526020016128d26029913960029190611576565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b60006001600160a01b038216610b055760405162461bcd60e51b81526004016106e390612534565b6001600160a01b03821660009081526001602052604090206108649061139d565b610b2e61132b565b6001600160a01b0316610b3f610c5d565b6001600160a01b031614610b655760405162461bcd60e51b81526004016106e390612682565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60606000610bbc83610add565b905080610bd9575050604080516000815260208101909152610621565b60008167ffffffffffffffff81118015610bf257600080fd5b50604051908082528060200260200182016040528015610c1c578160200160208202803683370190505b50905060005b82811015610c5357610c34858261083f565b828281518110610c4057fe5b6020908102919091010152600101610c22565b5091506106219050565b600a546001600160a01b031690565b600d54610100900460ff16610c935760405162461bcd60e51b81526004016106e3906123c9565b600081118015610ca4575060148111155b610cc05760405162461bcd60e51b81526004016106e390612496565b612710610cd582610ccf6107f6565b9061158d565b1115610cf35760405162461bcd60e51b81526004016106e39061244c565b610d04662386f26fc10000826115b2565b341015610d235760405162461bcd60e51b81526004016106e390612392565b60005b818110156107f2576000610d386107f6565b9050612710610d456107f6565b1015610d5557610d5533826115ec565b50600101610d26565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106b25780601f10610687576101008083540402835291602001916106b2565b600c805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a4c5780601f10610a2157610100808354040283529160200191610a4c565b610e2261132b565b6001600160a01b0316826001600160a01b03161415610e535760405162461bcd60e51b81526004016106e39061235b565b8060056000610e6061132b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ea461132b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610edc91906120f0565b60405180910390a35050565b610ef061132b565b6001600160a01b0316610f01610c5d565b6001600160a01b031614610f275760405162461bcd60e51b81526004016106e390612682565b600d5460ff1615610f4a5760405162461bcd60e51b81526004016106e390612790565b80516107f290600c906020840190611ccf565b610f6e610f6861132b565b836113a8565b610f8a5760405162461bcd60e51b81526004016106e3906127c0565b610f9684848484611606565b50505050565b610fa461132b565b6001600160a01b0316610fb5610c5d565b6001600160a01b031614610fdb5760405162461bcd60e51b81526004016106e390612682565b600d805460ff191660011790556040517f92423ccd40e13759d50d24569dcbaccb20ade47247f3cf3e3951a9f29d2048b09061101990600c9061210e565b60405180910390a1565b606061102e8261131e565b61104a5760405162461bcd60e51b81526004016106e390612700565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f8101859004850282018501909352828152929091908301828280156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b5050505050905060006110ee610a7c565b905080516000141561110257509050610621565b81511561113457808260405160200161111c92919061202c565b60405160208183030381529060405292505050610621565b8061113e85611639565b60405160200161114f92919061202c565b60405160208183030381529060405292505050919050565b60606111716107f6565b821061118f5760405162461bcd60e51b81526004016106e3906122a9565b600c805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156112155780601f106111ea57610100808354040283529160200191611215565b820191906000526020600020905b8154815290600101906020018083116111f857829003601f168201915b50505050509050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d54610100900460ff1681565b61126561132b565b6001600160a01b0316611276610c5d565b6001600160a01b03161461129c5760405162461bcd60e51b81526004016106e390612682565b6001600160a01b0381166112c25760405162461bcd60e51b81526004016106e39061222c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610864600283611714565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061136482610a54565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061086482611720565b60006113b38261131e565b6113cf5760405162461bcd60e51b81526004016106e390612400565b60006113da83610a54565b9050806001600160a01b0316846001600160a01b031614806114155750836001600160a01b031661140a846106bc565b6001600160a01b0316145b8061142557506114258185611221565b949350505050565b826001600160a01b031661144082610a54565b6001600160a01b0316146114665760405162461bcd60e51b81526004016106e3906126b7565b6001600160a01b03821661148c5760405162461bcd60e51b81526004016106e390612317565b61149783838361079b565b6114a260008261132f565b6001600160a01b03831660009081526001602052604090206114c49082611724565b506001600160a01b03821660009081526001602052604090206114e79082611730565b506114f46002828461173c565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108618383611752565b60008080806115568686611797565b9097909650945050505050565b80516107f2906009906020840190611ccf565b60006115838484846117f3565b90505b9392505050565b6000828201838110156108615760405162461bcd60e51b81526004016106e3906122e0565b6000826115c157506000610864565b828202828482816115ce57fe5b04146108615760405162461bcd60e51b81526004016106e3906125f5565b6107f2828260405180602001604052806000815250611852565b61161184848461142d565b61161d84848484611885565b610f965760405162461bcd60e51b81526004016106e3906121da565b60608161165e57506040805180820190915260018152600360fc1b6020820152610621565b8160005b811561167657600101600a82049150611662565b60008167ffffffffffffffff8111801561168f57600080fd5b506040519080825280601f01601f1916602001820160405280156116ba576020820181803683370190505b50859350905060001982015b831561170b57600a840660300160f81b828280600190039350815181106116e957fe5b60200101906001600160f81b031916908160001a905350600a840493506116c6565b50949350505050565b60006108618383611964565b5490565b6000610861838361197c565b60006108618383611a42565b600061158384846001600160a01b038516611a8c565b815460009082106117755760405162461bcd60e51b81526004016106e390612198565b82600001828154811061178457fe5b9060005260206000200154905092915050565b8154600090819083106117bc5760405162461bcd60e51b81526004016106e39061257e565b60008460000184815481106117cd57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816118235760405162461bcd60e51b81526004016106e391906120fb565b5084600001600182038154811061183657fe5b9060005260206000209060020201600101549150509392505050565b61185c8383611b23565b6118696000848484611885565b61079b5760405162461bcd60e51b81526004016106e3906121da565b6000611899846001600160a01b0316611be7565b6118a557506001611425565b600061192d630a85bd0160e11b6118ba61132b565b8887876040516024016118d0949392919061206f565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016128a0603291396001600160a01b0388169190611bed565b90506000818060200190518101906119459190611f6a565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611a3857835460001980830191908101906000908790839081106119af57fe5b90600052602060002001549050808760000184815481106119cc57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806119fc57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610864565b6000915050610864565b6000611a4e8383611964565b611a8457508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610864565b506000610864565b600082815260018401602052604081205480611af1575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611586565b82856000016001830381548110611b0457fe5b9060005260206000209060020201600101819055506000915050611586565b6001600160a01b038216611b495760405162461bcd60e51b81526004016106e3906125c0565b611b528161131e565b15611b6f5760405162461bcd60e51b81526004016106e390612272565b611b7b6000838361079b565b6001600160a01b0382166000908152600160205260409020611b9d9082611730565b50611baa6002828461173c565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b6060611583848460008585611c0185611be7565b611c1d5760405162461bcd60e51b81526004016106e390612811565b600080866001600160a01b03168587604051611c399190612010565b60006040518083038185875af1925050503d8060008114611c76576040519150601f19603f3d011682016040523d82523d6000602084013e611c7b565b606091505b5091509150611c8b828286611c96565b979650505050505050565b60608315611ca5575081611586565b825115611cb55782518084602001fd5b8160405162461bcd60e51b81526004016106e391906120fb565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282611d055760008555611d4b565b82601f10611d1e57805160ff1916838001178555611d4b565b82800160010185558215611d4b579182015b82811115611d4b578251825591602001919060010190611d30565b50611d57929150611d5b565b5090565b5b80821115611d575760008155600101611d5c565b600067ffffffffffffffff80841115611d8557fe5b604051601f8501601f191681016020018281118282101715611da357fe5b604052848152915081838501861015611dbb57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461062157600080fd5b600060208284031215611dfc578081fd5b61086182611dd4565b60008060408385031215611e17578081fd5b611e2083611dd4565b9150611e2e60208401611dd4565b90509250929050565b600080600060608486031215611e4b578081fd5b611e5484611dd4565b9250611e6260208501611dd4565b9150604084013590509250925092565b60008060008060808587031215611e87578081fd5b611e9085611dd4565b9350611e9e60208601611dd4565b925060408501359150606085013567ffffffffffffffff811115611ec0578182fd5b8501601f81018713611ed0578182fd5b611edf87823560208401611d70565b91505092959194509250565b60008060408385031215611efd578182fd5b611f0683611dd4565b915060208301358015158114611f1a578182fd5b809150509250929050565b60008060408385031215611f37578182fd5b611f4083611dd4565b946020939093013593505050565b600060208284031215611f5f578081fd5b813561086181612889565b600060208284031215611f7b578081fd5b815161086181612889565b600060208284031215611f97578081fd5b813567ffffffffffffffff811115611fad578182fd5b8201601f81018413611fbd578182fd5b61142584823560208401611d70565b600060208284031215611fdd578081fd5b5035919050565b60008151808452611ffc81602086016020860161285d565b601f01601f19169290920160200192915050565b6000825161202281846020870161285d565b9190910192915050565b6000835161203e81846020880161285d565b83519083019061205281836020880161285d565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120a290830184611fe4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156120e4578351835292840192918401916001016120c8565b50909695505050505050565b901515815260200190565b6000602082526108616020830184611fe4565b6000602080830181845282855460018082166000811461213557600181146121535761218b565b60028304607f16855260ff198316604089015260608801935061218b565b600283048086526121638a612851565b885b828110156121815781548b820160400152908401908801612165565b8a01604001955050505b5091979650505050505050565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f43484f4f5345204120474c4f4f542057495448494e2052414e47450000000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620476c6f6f747360b01b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260169082015275131a58d95b9cd948185b1c9958591e481b1bd8dad95960521b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b90815260200190565b60009081526020902090565b60005b83811015612878578181015183820152602001612860565b83811115610f965750506000910152565b6001600160e01b0319811681146109c357600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220e0048908059e6b774efa00ac178005e7a853c4cf55022e343255e4716eef97f164736f6c63430007060033

Deployed Bytecode Sourcemap

66905:2948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10307:150;;;;;;;;;;-1:-1:-1;10307:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51592:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54378:221::-;;;;;;;;;;-1:-1:-1;54378:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53908:404::-;;;;;;;;;;-1:-1:-1;53908:404:0;;;;;:::i;:::-;;:::i;:::-;;67645:126;;;;;;;;;;-1:-1:-1;67645:126:0;;;;;:::i;:::-;;:::i;53386:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;55268:305::-;;;;;;;;;;-1:-1:-1;55268:305:0;;;;;:::i;:::-;;:::i;53148:162::-;;;;;;;;;;-1:-1:-1;53148:162:0;;;;;:::i;:::-;;:::i;67297:42::-;;;;;;;;;;;;;:::i;67886:89::-;;;;;;;;;;;;;:::i;67502:131::-;;;;;;;;;;;;;:::i;55644:151::-;;;;;;;;;;-1:-1:-1;55644:151:0;;;;;:::i;:::-;;:::i;67171:54::-;;;;;;;;;;;;;:::i;53674:172::-;;;;;;;;;;-1:-1:-1;53674:172:0;;;;;:::i;:::-;;:::i;67246:42::-;;;;;;;;;;;;;:::i;67779:99::-;;;;;;;;;;-1:-1:-1;67779:99:0;;;;;:::i;:::-;;:::i;66987:35::-;;;;;;;;;;;;;:::i;51348:177::-;;;;;;;;;;-1:-1:-1;51348:177:0;;;;;:::i;:::-;;:::i;52967:97::-;;;;;;;;;;;;;:::i;51065:221::-;;;;;;;;;;-1:-1:-1;51065:221:0;;;;;:::i;:::-;;:::i;66303:148::-;;;;;;;;;;;;;:::i;67987:540::-;;;;;;;;;;-1:-1:-1;67987:540:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65652:87::-;;;;;;;;;;;;;:::i;69169:681::-;;;;;;:::i;:::-;;:::i;51761:104::-;;;;;;;;;;;;;:::i;67090:31::-;;;;;;;;;;;;;:::i;54671:295::-;;;;;;;;;;-1:-1:-1;54671:295:0;;;;;:::i;:::-;;:::i;68983:174::-;;;;;;;;;;-1:-1:-1;68983:174:0;;;;;:::i;:::-;;:::i;55866:285::-;;;;;;;;;;-1:-1:-1;55866:285:0;;;;;:::i;:::-;;:::i;68819:125::-;;;;;;;;;;;;;:::i;51936:792::-;;;;;;;;;;-1:-1:-1;51936:792:0;;;;;:::i;:::-;;:::i;68578:175::-;;;;;;;;;;-1:-1:-1;68578:175:0;;;;;:::i;:::-;;:::i;55037:164::-;;;;;;;;;;-1:-1:-1;55037:164:0;;;;;:::i;:::-;;:::i;67348:32::-;;;;;;;;;;;;;:::i;66606:244::-;;;;;;;;;;-1:-1:-1;66606:244:0;;;;;:::i;:::-;;:::i;10307:150::-;-1:-1:-1;;;;;;10416:33:0;;10392:4;10416:33;;;;;;;;;;;;;10307:150;;;;:::o;51592:100::-;51679:5;51672:12;;;;;;;;-1:-1:-1;;51672:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51646:13;;51672:12;;51679:5;;51672:12;;51679:5;51672:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51592:100;:::o;54378:221::-;54454:7;54482:16;54490:7;54482;:16::i;:::-;54474:73;;;;-1:-1:-1;;;54474:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54567:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54567:24:0;;54378:221::o;53908:404::-;53989:13;54005:23;54020:7;54005:14;:23::i;:::-;53989:39;;54053:5;-1:-1:-1;;;;;54047:11:0;:2;-1:-1:-1;;;;;54047:11:0;;;54039:57;;;;-1:-1:-1;;;54039:57:0;;;;;;;:::i;:::-;54133:5;-1:-1:-1;;;;;54117:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54117:21:0;;:69;;;;54142:44;54166:5;54173:12;:10;:12::i;54142:44::-;54109:161;;;;-1:-1:-1;;;54109:161:0;;;;;;;:::i;:::-;54283:21;54292:2;54296:7;54283:8;:21::i;:::-;53908:404;;;:::o;67645:126::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;67730:33;;::::1;::::0;:16:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;:::-;;67645:126:::0;:::o;53386:211::-;53447:7;53568:21;:12;:19;:21::i;:::-;53561:28;;53386:211;:::o;55268:305::-;55429:41;55448:12;:10;:12::i;:::-;55462:7;55429:18;:41::i;:::-;55421:103;;;;-1:-1:-1;;;55421:103:0;;;;;;;:::i;:::-;55537:28;55547:4;55553:2;55557:7;55537:9;:28::i;53148:162::-;-1:-1:-1;;;;;53272:20:0;;53245:7;53272:20;;;:13;:20;;;;;:30;;53296:5;53272:23;:30::i;:::-;53265:37;;53148:162;;;;;:::o;67297:42::-;67334:5;67297:42;:::o;67886:89::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;67955:12:::1;::::0;;-1:-1:-1;;67939:28:0;::::1;67955:12;::::0;;;::::1;;;67954:13;67939:28:::0;;::::1;;::::0;;67886:89::o;67502:131::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;67597:28:::1;::::0;67565:21:::1;::::0;67597:10:::1;::::0;:28;::::1;;;::::0;67565:21;;67550:12:::1;67597:28:::0;67550:12;67597:28;67565:21;67597:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;55644:151:::0;55748:39;55765:4;55771:2;55775:7;55748:39;;;;;;;;;;;;:16;:39::i;67171:54::-;67208:17;67171:54;:::o;53674:172::-;53749:7;;53791:22;:12;53807:5;53791:15;:22::i;:::-;-1:-1:-1;53769:44:0;53674:172;-1:-1:-1;;;53674:172:0:o;67246:42::-;67286:2;67246:42;:::o;67779:99::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;67850:20:::1;67862:7;67850:11;:20::i;:::-;67779:99:::0;:::o;66987:35::-;;;;;;;;;;;;;;;-1:-1:-1;;66987:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51348:177::-;51420:7;51447:70;51464:7;51447:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52967:97::-;53048:8;53041:15;;;;;;;;-1:-1:-1;;53041:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53015:13;;53041:15;;53048:8;;53041:15;;53048:8;53041:15;;;;;;;;;;;;;;;;;;;;;;;;51065:221;51137:7;-1:-1:-1;;;;;51165:19:0;;51157:74;;;;-1:-1:-1;;;51157:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51249:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66303:148::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;66394:6:::1;::::0;66373:40:::1;::::0;66410:1:::1;::::0;-1:-1:-1;;;;;66394:6:0::1;::::0;66373:40:::1;::::0;66410:1;;66373:40:::1;66424:6;:19:::0;;-1:-1:-1;;;;;;66424:19:0::1;::::0;;66303:148::o;67987:540::-;68048:16;68078:18;68099:17;68109:6;68099:9;:17::i;:::-;68078:38;-1:-1:-1;68131:15:0;68127:393;;-1:-1:-1;;68208:16:0;;;68222:1;68208:16;;;;;;;;68201:23;;68127:393;68257:23;68297:10;68283:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;68283:25:0;;68257:51;;68323:13;68351:130;68375:10;68367:5;:18;68351:130;;;68431:34;68451:6;68459:5;68431:19;:34::i;:::-;68415:6;68422:5;68415:13;;;;;;;;;;;;;;;;;:50;68387:7;;68351:130;;;-1:-1:-1;68502:6:0;-1:-1:-1;68495:13:0;;-1:-1:-1;68495:13:0;65652:87;65725:6;;-1:-1:-1;;;;;65725:6:0;65652:87;:::o;69169:681::-;69243:12;;;;;;;69235:52;;;;-1:-1:-1;;;69235:52:0;;;;;;;:::i;:::-;69323:1;69306:14;:18;:56;;;;;67286:2;69328:14;:34;;69306:56;69298:102;;;;-1:-1:-1;;;69298:102:0;;;;;;;:::i;:::-;67334:5;69419:33;69437:14;69419:13;:11;:13::i;:::-;:17;;:33::i;:::-;:47;;69411:102;;;;-1:-1:-1;;;69411:102:0;;;;;;;:::i;:::-;69545:30;67208:17;69560:14;69545;:30::i;:::-;69532:9;:43;;69524:87;;;;-1:-1:-1;;;69524:87:0;;;;;;;:::i;:::-;69636:6;69632:211;69652:14;69648:1;:18;69632:211;;;69688:14;69705:13;:11;:13::i;:::-;69688:30;;67334:5;69737:13;:11;:13::i;:::-;:26;69733:99;;;69784:32;69794:10;69806:9;69784;:32::i;:::-;-1:-1:-1;69668:3:0;;69632:211;;51761:104;51850:7;51843:14;;;;;;;;-1:-1:-1;;51843:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51817:13;;51843:14;;51850:7;;51843:14;;51850:7;51843:14;;;;;;;;;;;;;;;;;;;;;;;;67090:31;;;;;;;;;;;;;;;-1:-1:-1;;67090:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54671:295;54786:12;:10;:12::i;:::-;-1:-1:-1;;;;;54774:24:0;:8;-1:-1:-1;;;;;54774:24:0;;;54766:62;;;;-1:-1:-1;;;54766:62:0;;;;;;;:::i;:::-;54886:8;54841:18;:32;54860:12;:10;:12::i;:::-;-1:-1:-1;;;;;54841:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54841:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54841:53:0;;;;;;;;;;;54925:12;:10;:12::i;:::-;-1:-1:-1;;;;;54910:48:0;;54949:8;54910:48;;;;;;:::i;:::-;;;;;;;;54671:295;;:::o;68983:174::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;69066:13:::1;::::0;::::1;;:22;69058:57;;;;-1:-1:-1::0;;;69058:57:0::1;;;;;;;:::i;:::-;69126:23:::0;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;55866:285::-:0;55998:41;56017:12;:10;:12::i;:::-;56031:7;55998:18;:41::i;:::-;55990:103;;;;-1:-1:-1;;;55990:103:0;;;;;;;:::i;:::-;56104:39;56118:4;56124:2;56128:7;56137:5;56104:13;:39::i;:::-;55866:285;;;;:::o;68819:125::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;68870:13:::1;:21:::0;;-1:-1:-1;;68870:21:0::1;68887:4;68870:21;::::0;;68907:29:::1;::::0;::::1;::::0;::::1;::::0;68923:12:::1;::::0;68907:29:::1;:::i;:::-;;;;;;;;68819:125::o:0;51936:792::-;52009:13;52043:16;52051:7;52043;:16::i;:::-;52035:76;;;;-1:-1:-1;;;52035:76:0;;;;;;;:::i;:::-;52124:23;52150:19;;;:10;:19;;;;;;;;52124:45;;;;;;;;;;;-1:-1:-1;;52124:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;52150:19;;52124:45;;;52150:19;52124:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52180:18;52201:9;:7;:9::i;:::-;52180:30;;52292:4;52286:18;52308:1;52286:23;52282:72;;;-1:-1:-1;52333:9:0;-1:-1:-1;52326:16:0;;52282:72;52458:23;;:27;52454:108;;52533:4;52539:9;52516:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52502:48;;;;;;52454:108;52694:4;52700:18;:7;:16;:18::i;:::-;52677:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52663:57;;;;51936:792;;;:::o;68578:175::-;68630:13;68670;:11;:13::i;:::-;68664:3;:19;68656:59;;;;-1:-1:-1;;;68656:59:0;;;;;;;:::i;:::-;68733:12;68726:19;;;;;;;;;;;;;-1:-1:-1;;68726:19:0;;;;;;;;;;;;;;;;;;;;;;;;;;;68733:12;68726:19;;68733:12;68726:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68578:175;;;:::o;55037:164::-;-1:-1:-1;;;;;55158:25:0;;;55134:4;55158:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55037:164::o;67348:32::-;;;;;;;;;:::o;66606:244::-;65883:12;:10;:12::i;:::-;-1:-1:-1;;;;;65872:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65872:23:0;;65864:68;;;;-1:-1:-1;;;65864:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66695:22:0;::::1;66687:73;;;;-1:-1:-1::0;;;66687:73:0::1;;;;;;;:::i;:::-;66797:6;::::0;66776:38:::1;::::0;-1:-1:-1;;;;;66776:38:0;;::::1;::::0;66797:6:::1;::::0;66776:38:::1;::::0;66797:6:::1;::::0;66776:38:::1;66825:6;:17:::0;;-1:-1:-1;;;;;;66825:17:0::1;-1:-1:-1::0;;;;;66825:17:0;;;::::1;::::0;;;::::1;::::0;;66606:244::o;57618:127::-;57683:4;57707:30;:12;57729:7;57707:21;:30::i;739:106::-;827:10;739:106;:::o;63636:192::-;63711:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63711:29:0;-1:-1:-1;;;;;63711:29:0;;;;;;;;:24;;63765:23;63711:24;63765:14;:23::i;:::-;-1:-1:-1;;;;;63756:46:0;;;;;;;;;;;63636:192;;:::o;44350:123::-;44419:7;44446:19;44454:3;44446:7;:19::i;57912:355::-;58005:4;58030:16;58038:7;58030;:16::i;:::-;58022:73;;;;-1:-1:-1;;;58022:73:0;;;;;;;:::i;:::-;58106:13;58122:23;58137:7;58122:14;:23::i;:::-;58106:39;;58175:5;-1:-1:-1;;;;;58164:16:0;:7;-1:-1:-1;;;;;58164:16:0;;:51;;;;58208:7;-1:-1:-1;;;;;58184:31:0;:20;58196:7;58184:11;:20::i;:::-;-1:-1:-1;;;;;58184:31:0;;58164:51;:94;;;;58219:39;58243:5;58250:7;58219:23;:39::i;:::-;58156:103;57912:355;-1:-1:-1;;;;57912:355:0:o;61048:599::-;61173:4;-1:-1:-1;;;;;61146:31:0;:23;61161:7;61146:14;:23::i;:::-;-1:-1:-1;;;;;61146:31:0;;61138:85;;;;-1:-1:-1;;;61138:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61260:16:0;;61252:65;;;;-1:-1:-1;;;61252:65:0;;;;;;;:::i;:::-;61330:39;61351:4;61357:2;61361:7;61330:20;:39::i;:::-;61434:29;61451:1;61455:7;61434:8;:29::i;:::-;-1:-1:-1;;;;;61476:19:0;;;;;;:13;:19;;;;;:35;;61503:7;61476:26;:35::i;:::-;-1:-1:-1;;;;;;61522:17:0;;;;;;:13;:17;;;;;:30;;61544:7;61522:21;:30::i;:::-;-1:-1:-1;61565:29:0;:12;61582:7;61591:2;61565:16;:29::i;:::-;;61631:7;61627:2;-1:-1:-1;;;;;61612:27:0;61621:4;-1:-1:-1;;;;;61612:27:0;;;;;;;;;;;61048:599;;;:::o;36141:137::-;36212:7;36247:22;36251:3;36263:5;36247:3;:22::i;44812:236::-;44892:7;;;;44952:22;44956:3;44968:5;44952:3;:22::i;:::-;44921:53;;;;-1:-1:-1;44812:236:0;-1:-1:-1;;;;;44812:236:0:o;62248:100::-;62321:19;;;;:8;;:19;;;;;:::i;46098:213::-;46205:7;46256:44;46261:3;46281;46287:12;46256:4;:44::i;:::-;46248:53;-1:-1:-1;46098:213:0;;;;;;:::o;13869:179::-;13927:7;13959:5;;;13983:6;;;;13975:46;;;;-1:-1:-1;;;13975:46:0;;;;;;;:::i;14748:220::-;14806:7;14830:6;14826:20;;-1:-1:-1;14845:1:0;14838:8;;14826:20;14869:5;;;14873:1;14869;:5;:1;14893:5;;;;;:10;14885:56;;;;-1:-1:-1;;;14885:56:0;;;;;;;:::i;58610:110::-;58686:26;58696:2;58700:7;58686:26;;;;;;;;;;;;:9;:26::i;57033:272::-;57147:28;57157:4;57163:2;57167:7;57147:9;:28::i;:::-;57194:48;57217:4;57223:2;57227:7;57236:5;57194:22;:48::i;:::-;57186:111;;;;-1:-1:-1;;;57186:111:0;;;;;;;:::i;46562:746::-;46618:13;46839:10;46835:53;;-1:-1:-1;46866:10:0;;;;;;;;;;;;-1:-1:-1;;;46866:10:0;;;;;;46835:53;46913:5;46898:12;46954:78;46961:9;;46954:78;;46987:8;;47018:2;47010:10;;;;46954:78;;;47042:19;47074:6;47064:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47064:17:0;-1:-1:-1;47136:5:0;;-1:-1:-1;47042:39:0;-1:-1:-1;;;47108:10:0;;47152:117;47159:9;;47152:117;;47228:2;47221:4;:9;47216:2;:14;47203:29;;47185:6;47192:7;;;;;;;47185:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47185:47:0;;;;;;;;-1:-1:-1;47255:2:0;47247:10;;;;47152:117;;;-1:-1:-1;47293:6:0;46562:746;-1:-1:-1;;;;46562:746:0:o;44111:151::-;44195:4;44219:35;44229:3;44249;44219:9;:35::i;40929:110::-;41012:19;;40929:110::o;35228:137::-;35298:4;35322:35;35330:3;35350:5;35322:7;:35::i;34921:131::-;34988:4;35012:32;35017:3;35037:5;35012:4;:32::i;43534:185::-;43623:4;43647:64;43652:3;43672;-1:-1:-1;;;;;43686:23:0;;43647:4;:64::i;31179:204::-;31274:18;;31246:7;;31274:26;-1:-1:-1;31266:73:0;;;;-1:-1:-1;;;31266:73:0;;;;;;;:::i;:::-;31357:3;:11;;31369:5;31357:18;;;;;;;;;;;;;;;;31350:25;;31179:204;;;;:::o;41394:279::-;41498:19;;41461:7;;;;41498:27;-1:-1:-1;41490:74:0;;;;-1:-1:-1;;;41490:74:0;;;;;;;:::i;:::-;41577:22;41602:3;:12;;41615:5;41602:19;;;;;;;;;;;;;;;;;;41577:44;;41640:5;:10;;;41652:5;:12;;;41632:33;;;;;41394:279;;;;;:::o;42891:319::-;42985:7;43024:17;;;:12;;;:17;;;;;;43075:12;43060:13;43052:36;;;;-1:-1:-1;;;43052:36:0;;;;;;;;:::i;:::-;;43142:3;:12;;43166:1;43155:8;:12;43142:26;;;;;;;;;;;;;;;;;;:33;;;43135:40;;;42891:319;;;;;:::o;58947:250::-;59043:18;59049:2;59053:7;59043:5;:18::i;:::-;59080:54;59111:1;59115:2;59119:7;59128:5;59080:22;:54::i;:::-;59072:117;;;;-1:-1:-1;;;59072:117:0;;;;;;;:::i;62913:604::-;63034:4;63061:15;:2;-1:-1:-1;;;;;63061:13:0;;:15::i;:::-;63056:60;;-1:-1:-1;63100:4:0;63093:11;;63056:60;63126:23;63152:252;-1:-1:-1;;;63265:12:0;:10;:12::i;:::-;63292:4;63311:7;63333:5;63168:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63168:181:0;;;;;;;-1:-1:-1;;;;;63168:181:0;;;;;;;;;;;63152:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63152:15:0;;;:252;:15;:252::i;:::-;63126:278;;63415:13;63442:10;63431:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63482:26:0;-1:-1:-1;;;63482:26:0;;-1:-1:-1;;;62913:604:0;;;;;;:::o;40709:125::-;40780:4;40804:17;;;:12;;;;;:17;;;;;;:22;;;40709:125::o;28881:1544::-;28947:4;29086:19;;;:12;;;:19;;;;;;29122:15;;29118:1300;;29557:18;;-1:-1:-1;;29508:14:0;;;;29557:22;;;;29484:21;;29557:3;;:22;;29844;;;;;;;;;;;;;;29824:42;;29990:9;29961:3;:11;;29973:13;29961:26;;;;;;;;;;;;;;;;;;;:38;;;;30067:23;;;30109:1;30067:12;;;:23;;;;;;30093:17;;;30067:43;;30219:17;;30067:3;;30219:17;;;;;;;;;;;;;;;;;;;;;;30314:3;:12;;:19;30327:5;30314:19;;;;;;;;;;;30307:26;;;30357:4;30350:11;;;;;;;;29118:1300;30401:5;30394:12;;;;;28291:414;28354:4;28376:21;28386:3;28391:5;28376:9;:21::i;:::-;28371:327;;-1:-1:-1;28414:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28597:18;;28575:19;;;:12;;;:19;;;;;;:40;;;;28630:11;;28371:327;-1:-1:-1;28681:5:0;28674:12;;38209:692;38285:4;38420:17;;;:12;;;:17;;;;;;38454:13;38450:444;;-1:-1:-1;;38539:38:0;;;;;;;;;;;;;;;;;;38521:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38736:19;;38716:17;;;:12;;;:17;;;;;;;:39;38770:11;;38450:444;38850:5;38814:3;:12;;38838:1;38827:8;:12;38814:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;38877:5;38870:12;;;;;59533:404;-1:-1:-1;;;;;59613:16:0;;59605:61;;;;-1:-1:-1;;;59605:61:0;;;;;;;:::i;:::-;59686:16;59694:7;59686;:16::i;:::-;59685:17;59677:58;;;;-1:-1:-1;;;59677:58:0;;;;;;;:::i;:::-;59748:45;59777:1;59781:2;59785:7;59748:20;:45::i;:::-;-1:-1:-1;;;;;59806:17:0;;;;;;:13;:17;;;;;:30;;59828:7;59806:21;:30::i;:::-;-1:-1:-1;59849:29:0;:12;59866:7;59875:2;59849:16;:29::i;:::-;-1:-1:-1;59896:33:0;;59921:7;;-1:-1:-1;;;;;59896:33:0;;;59913:1;;59896:33;;59913:1;;59896:33;59533:404;;:::o;19310:422::-;19677:20;19716:8;;;19310:422::o;22228:195::-;22331:12;22363:52;22385:6;22393:4;22399:1;22402:12;22331;23532:18;23543:6;23532:10;:18::i;:::-;23524:60;;;;-1:-1:-1;;;23524:60:0;;;;;;;:::i;:::-;23658:12;23672:23;23699:6;-1:-1:-1;;;;;23699:11:0;23719:5;23727:4;23699:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23657:75;;;;23750:52;23768:7;23777:10;23789:12;23750:17;:52::i;:::-;23743:59;23280:530;-1:-1:-1;;;;;;;23280:530:0:o;25820:742::-;25935:12;25964:7;25960:595;;;-1:-1:-1;25995:10:0;25988:17;;25960:595;26109:17;;:21;26105:439;;26372:10;26366:17;26433:15;26420:10;26416:2;26412:19;26405:44;26320:148;26515:12;26508:20;;-1:-1:-1;;;26508:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:589:1;;110:18;151:2;143:6;140:14;137:2;;;157:9;137:2;197;191:9;270:2;247:17;;-1:-1:-1;;243:31:1;231:44;;277:4;227:55;297:18;;;317:22;;;294:46;291:2;;;343:9;291:2;370;363:22;418;;;403:6;-1:-1:-1;403:6:1;455:16;;;452:25;-1:-1:-1;449:2:1;;;490:1;487;480:12;449:2;540:6;535:3;528:4;520:6;516:17;503:44;595:1;588:4;579:6;571;567:19;563:30;556:41;;;90:513;;;;;:::o;608:175::-;678:20;;-1:-1:-1;;;;;727:31:1;;717:42;;707:2;;773:1;770;763:12;788:198;;900:2;888:9;879:7;875:23;871:32;868:2;;;921:6;913;906:22;868:2;949:31;970:9;949:31;:::i;991:274::-;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1141:6;1133;1126:22;1088:2;1169:31;1190:9;1169:31;:::i;:::-;1159:41;;1219:40;1255:2;1244:9;1240:18;1219:40;:::i;:::-;1209:50;;1078:187;;;;;:::o;1270:342::-;;;;1416:2;1404:9;1395:7;1391:23;1387:32;1384:2;;;1437:6;1429;1422:22;1384:2;1465:31;1486:9;1465:31;:::i;:::-;1455:41;;1515:40;1551:2;1540:9;1536:18;1515:40;:::i;:::-;1505:50;;1602:2;1591:9;1587:18;1574:32;1564:42;;1374:238;;;;;:::o;1617:702::-;;;;;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1811:6;1803;1796:22;1757:2;1839:31;1860:9;1839:31;:::i;:::-;1829:41;;1889:40;1925:2;1914:9;1910:18;1889:40;:::i;:::-;1879:50;;1976:2;1965:9;1961:18;1948:32;1938:42;;2031:2;2020:9;2016:18;2003:32;2058:18;2050:6;2047:30;2044:2;;;2095:6;2087;2080:22;2044:2;2123:22;;2176:4;2168:13;;2164:27;-1:-1:-1;2154:2:1;;2210:6;2202;2195:22;2154:2;2238:75;2305:7;2300:2;2287:16;2282:2;2278;2274:11;2238:75;:::i;:::-;2228:85;;;1747:572;;;;;;;:::o;2324:369::-;;;2450:2;2438:9;2429:7;2425:23;2421:32;2418:2;;;2471:6;2463;2456:22;2418:2;2499:31;2520:9;2499:31;:::i;:::-;2489:41;;2580:2;2569:9;2565:18;2552:32;2627:5;2620:13;2613:21;2606:5;2603:32;2593:2;;2654:6;2646;2639:22;2593:2;2682:5;2672:15;;;2408:285;;;;;:::o;2698:266::-;;;2827:2;2815:9;2806:7;2802:23;2798:32;2795:2;;;2848:6;2840;2833:22;2795:2;2876:31;2897:9;2876:31;:::i;:::-;2866:41;2954:2;2939:18;;;;2926:32;;-1:-1:-1;;;2785:179:1:o;2969:257::-;;3080:2;3068:9;3059:7;3055:23;3051:32;3048:2;;;3101:6;3093;3086:22;3048:2;3145:9;3132:23;3164:32;3190:5;3164:32;:::i;3231:261::-;;3353:2;3341:9;3332:7;3328:23;3324:32;3321:2;;;3374:6;3366;3359:22;3321:2;3411:9;3405:16;3430:32;3456:5;3430:32;:::i;3497:482::-;;3619:2;3607:9;3598:7;3594:23;3590:32;3587:2;;;3640:6;3632;3625:22;3587:2;3685:9;3672:23;3718:18;3710:6;3707:30;3704:2;;;3755:6;3747;3740:22;3704:2;3783:22;;3836:4;3828:13;;3824:27;-1:-1:-1;3814:2:1;;3870:6;3862;3855:22;3814:2;3898:75;3965:7;3960:2;3947:16;3942:2;3938;3934:11;3898:75;:::i;3984:190::-;;4096:2;4084:9;4075:7;4071:23;4067:32;4064:2;;;4117:6;4109;4102:22;4064:2;-1:-1:-1;4145:23:1;;4054:120;-1:-1:-1;4054:120:1:o;4179:259::-;;4260:5;4254:12;4287:6;4282:3;4275:19;4303:63;4359:6;4352:4;4347:3;4343:14;4336:4;4329:5;4325:16;4303:63;:::i;:::-;4420:2;4399:15;-1:-1:-1;;4395:29:1;4386:39;;;;4427:4;4382:50;;4230:208;-1:-1:-1;;4230:208:1:o;4443:274::-;;4610:6;4604:13;4626:53;4672:6;4667:3;4660:4;4652:6;4648:17;4626:53;:::i;:::-;4695:16;;;;;4580:137;-1:-1:-1;;4580:137:1:o;4722:470::-;;4939:6;4933:13;4955:53;5001:6;4996:3;4989:4;4981:6;4977:17;4955:53;:::i;:::-;5071:13;;5030:16;;;;5093:57;5071:13;5030:16;5127:4;5115:17;;5093:57;:::i;:::-;5166:20;;4909:283;-1:-1:-1;;;;4909:283:1:o;5197:203::-;-1:-1:-1;;;;;5361:32:1;;;;5343:51;;5331:2;5316:18;;5298:102::o;5405:506::-;-1:-1:-1;;;;;5690:15:1;;;5672:34;;5742:15;;5737:2;5722:18;;5715:43;5789:2;5774:18;;5767:34;;;5837:3;5832:2;5817:18;;5810:31;;;5405:506;;5858:47;;5885:19;;5877:6;5858:47;:::i;:::-;5850:55;5624:287;-1:-1:-1;;;;;;5624:287:1:o;5916:635::-;6087:2;6139:21;;;6209:13;;6112:18;;;6231:22;;;5916:635;;6087:2;6310:15;;;;6284:2;6269:18;;;5916:635;6356:169;6370:6;6367:1;6364:13;6356:169;;;6431:13;;6419:26;;6500:15;;;;6465:12;;;;6392:1;6385:9;6356:169;;;-1:-1:-1;6542:3:1;;6067:484;-1:-1:-1;;;;;;6067:484:1:o;6556:187::-;6721:14;;6714:22;6696:41;;6684:2;6669:18;;6651:92::o;6748:221::-;;6897:2;6886:9;6879:21;6917:46;6959:2;6948:9;6944:18;6936:6;6917:46;:::i;6974:979::-;;7112:2;7152;7141:9;7137:18;7182:2;7171:9;7164:21;7205:4;7241:6;7235:13;7267:1;7299:2;7288:9;7284:18;7316:1;7311:178;;;;7503:1;7498:429;;;;7277:650;;7311:178;7366:1;7351:17;;7370:4;7347:28;7332:44;;-1:-1:-1;;7416:24:1;;7411:2;7396:18;;7389:52;7476:2;7461:18;;;-1:-1:-1;7311:178:1;;7498:429;7548:1;7537:9;7533:17;7578:6;7570;7563:22;7613:39;7645:6;7613:39;:::i;:::-;7674:4;7691:180;7705:6;7702:1;7699:13;7691:180;;;7798:14;;7774:17;;;7793:2;7770:26;7763:50;7841:16;;;;7720:10;;7691:180;;;7895:17;;7914:2;7891:26;;-1:-1:-1;;;7277:650:1;-1:-1:-1;7944:3:1;;7092:861;-1:-1:-1;;;;;;;7092:861:1:o;7958:398::-;8160:2;8142:21;;;8199:2;8179:18;;;8172:30;8238:34;8233:2;8218:18;;8211:62;-1:-1:-1;;;8304:2:1;8289:18;;8282:32;8346:3;8331:19;;8132:224::o;8361:414::-;8563:2;8545:21;;;8602:2;8582:18;;;8575:30;8641:34;8636:2;8621:18;;8614:62;-1:-1:-1;;;8707:2:1;8692:18;;8685:48;8765:3;8750:19;;8535:240::o;8780:402::-;8982:2;8964:21;;;9021:2;9001:18;;;8994:30;9060:34;9055:2;9040:18;;9033:62;-1:-1:-1;;;9126:2:1;9111:18;;9104:36;9172:3;9157:19;;8954:228::o;9187:352::-;9389:2;9371:21;;;9428:2;9408:18;;;9401:30;9467;9462:2;9447:18;;9440:58;9530:2;9515:18;;9361:178::o;9544:351::-;9746:2;9728:21;;;9785:2;9765:18;;;9758:30;9824:29;9819:2;9804:18;;9797:57;9886:2;9871:18;;9718:177::o;9900:351::-;10102:2;10084:21;;;10141:2;10121:18;;;10114:30;10180:29;10175:2;10160:18;;10153:57;10242:2;10227:18;;10074:177::o;10256:400::-;10458:2;10440:21;;;10497:2;10477:18;;;10470:30;10536:34;10531:2;10516:18;;10509:62;-1:-1:-1;;;10602:2:1;10587:18;;10580:34;10646:3;10631:19;;10430:226::o;10661:349::-;10863:2;10845:21;;;10902:2;10882:18;;;10875:30;10941:27;10936:2;10921:18;;10914:55;11001:2;10986:18;;10835:175::o;11015:355::-;11217:2;11199:21;;;11256:2;11236:18;;;11229:30;11295:33;11290:2;11275:18;;11268:61;11361:2;11346:18;;11189:181::o;11375:351::-;11577:2;11559:21;;;11616:2;11596:18;;;11589:30;11655:29;11650:2;11635:18;;11628:57;11717:2;11702:18;;11549:177::o;12138:408::-;12340:2;12322:21;;;12379:2;12359:18;;;12352:30;12418:34;12413:2;12398:18;;12391:62;-1:-1:-1;;;12484:2:1;12469:18;;12462:42;12536:3;12521:19;;12312:234::o;12551:406::-;12753:2;12735:21;;;12792:2;12772:18;;;12765:30;12831:34;12826:2;12811:18;;12804:62;-1:-1:-1;;;12897:2:1;12882:18;;12875:40;12947:3;12932:19;;12725:232::o;12962:397::-;13164:2;13146:21;;;13203:2;13183:18;;;13176:30;13242:34;13237:2;13222:18;;13215:62;-1:-1:-1;;;13308:2:1;13293:18;;13286:31;13349:3;13334:19;;13136:223::o;13364:420::-;13566:2;13548:21;;;13605:2;13585:18;;;13578:30;13644:34;13639:2;13624:18;;13617:62;13715:26;13710:2;13695:18;;13688:54;13774:3;13759:19;;13538:246::o;13789:406::-;13991:2;13973:21;;;14030:2;14010:18;;;14003:30;14069:34;14064:2;14049:18;;14042:62;-1:-1:-1;;;14135:2:1;14120:18;;14113:40;14185:3;14170:19;;13963:232::o;14200:398::-;14402:2;14384:21;;;14441:2;14421:18;;;14414:30;14480:34;14475:2;14460:18;;14453:62;-1:-1:-1;;;14546:2:1;14531:18;;14524:32;14588:3;14573:19;;14374:224::o;14603:356::-;14805:2;14787:21;;;14824:18;;;14817:30;14883:34;14878:2;14863:18;;14856:62;14950:2;14935:18;;14777:182::o;14964:397::-;15166:2;15148:21;;;15205:2;15185:18;;;15178:30;15244:34;15239:2;15224:18;;15217:62;-1:-1:-1;;;15310:2:1;15295:18;;15288:31;15351:3;15336:19;;15138:223::o;15366:408::-;15568:2;15550:21;;;15607:2;15587:18;;;15580:30;15646:34;15641:2;15626:18;;15619:62;-1:-1:-1;;;15712:2:1;15697:18;;15690:42;15764:3;15749:19;;15540:234::o;15779:356::-;15981:2;15963:21;;;16000:18;;;15993:30;16059:34;16054:2;16039:18;;16032:62;16126:2;16111:18;;15953:182::o;16140:405::-;16342:2;16324:21;;;16381:2;16361:18;;;16354:30;16420:34;16415:2;16400:18;;16393:62;-1:-1:-1;;;16486:2:1;16471:18;;16464:39;16535:3;16520:19;;16314:231::o;16550:411::-;16752:2;16734:21;;;16791:2;16771:18;;;16764:30;16830:34;16825:2;16810:18;;16803:62;-1:-1:-1;;;16896:2:1;16881:18;;16874:45;16951:3;16936:19;;16724:237::o;16966:397::-;17168:2;17150:21;;;17207:2;17187:18;;;17180:30;17246:34;17241:2;17226:18;;17219:62;-1:-1:-1;;;17312:2:1;17297:18;;17290:31;17353:3;17338:19;;17140:223::o;17368:346::-;17570:2;17552:21;;;17609:2;17589:18;;;17582:30;-1:-1:-1;;;17643:2:1;17628:18;;17621:52;17705:2;17690:18;;17542:172::o;17719:413::-;17921:2;17903:21;;;17960:2;17940:18;;;17933:30;17999:34;17994:2;17979:18;;17972:62;-1:-1:-1;;;18065:2:1;18050:18;;18043:47;18122:3;18107:19;;17893:239::o;18137:353::-;18339:2;18321:21;;;18378:2;18358:18;;;18351:30;18417:31;18412:2;18397:18;;18390:59;18481:2;18466:18;;18311:179::o;18495:177::-;18641:25;;;18629:2;18614:18;;18596:76::o;18677:129::-;;18745:17;;;18795:4;18779:21;;;18735:71::o;18811:258::-;18883:1;18893:113;18907:6;18904:1;18901:13;18893:113;;;18983:11;;;18977:18;18964:11;;;18957:39;18929:2;18922:10;18893:113;;;19024:6;19021:1;19018:13;19015:2;;;-1:-1:-1;;19059:1:1;19041:16;;19034:27;18864:205::o;19074:133::-;-1:-1:-1;;;;;;19150:32:1;;19140:43;;19130:2;;19197:1;19194;19187:12

Swarm Source

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