ETH Price: $2,638.68 (+2.93%)
Gas: 1.38 Gwei

Token

GOATz Access Utility Token (GAUT)
 

Overview

Max Total Supply

731 GAUT

Holders

431

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
henryg.eth
Balance
4 GAUT
0x9eEFBb6759E48aAafd8a49d825abFdD0B22d5aD1
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:
GOATzAccessUtilityToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: node_modules\@openzeppelin\contracts\GSN\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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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: node_modules\@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 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: node_modules\@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, 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) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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);
        uint256 c = a - b;

        return c;
    }

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

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: node_modules\@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);
    }

    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: node_modules\@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(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(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(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(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: node_modules\@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 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) {
        return _get(map, key, "EnumerableMap: nonexistent key");
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     */
    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(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(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(uint256(_get(map._inner, bytes32(key))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint256(_get(map._inner, bytes32(key), errorMessage)));
    }
}

// File: node_modules\@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--] = byte(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 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 override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

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

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

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

        string memory _tokenURI = _tokenURIs[tokenId];

        // If there is no base URI, return the token URI.
        if (bytes(_baseURI).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(_baseURI, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(_baseURI, 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 returns (string memory) {
        return _baseURI;
    }

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view 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 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 = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(_msgSender() == owner || 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 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 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 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 returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || 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 = ownerOf(tokenId);

        _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(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

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

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    /**
     * @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 returns (address) {
        return _owner;
    }

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

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

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

// File: contracts\GOATzAccessUtilityToken.sol
pragma solidity 0.7.6;
pragma abicoder v2;

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

    uint256 public totalAccessTokenMinted;

    constructor (string memory _tokenBaseUri) ERC721("GOATz Access Utility Token", "GAUT") {
        _setBaseURI(_tokenBaseUri);
    }

    ////////////////////
    // Action methods //
    ////////////////////

	function claimAccessToken(bytes calldata _data) external {
        (,, uint256[] memory _unclaimedToken,,,) = abi.decode(_data, (bytes, address, uint256[], uint256, bytes, string));
        uint256 length = _unclaimedToken.length;
	    require(length > 0, "Minimum 1 tokens need to be claimed");
		for (uint256 i = 0; i < length; i++) {
			_mintAccessToken(_msgSender());
		}
	}
    
    function _mintAccessToken(address _to) private {
        totalAccessTokenMinted++;
        require(!_exists(totalAccessTokenMinted), "Mint: Token already exist.");
        _mint(_to, totalAccessTokenMinted);
        _setTokenURI(totalAccessTokenMinted, "metadata");
    }

    function mintAccessToken(address _to) external onlyOwner {
		_mintAccessToken(_to);
    }

    function burn(uint256 _tokenId) external {
        require(_exists(_tokenId), "Burn: token does not exist.");
        require(ownerOf(_tokenId) == _msgSender(), "Burn: caller is not token owner.");
        _burn(_tokenId);
    }

    ///////////////////
    // Query methods //
    ///////////////////

    function exists(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }

    function isUnclaimed(uint256 _tokenId) external view returns (bool) {
        return _exists(_tokenId);
    }

    function isApprovedOrOwner(address _spender, uint256 _tokenId) external view returns (bool) {
        return _isApprovedOrOwner(_spender, _tokenId);
    }

    /////////////
    // Setters //
    /////////////

    function withdrawETH(uint256 _amount) external onlyOwner {
        payable(owner()).transfer(_amount);
    }

    function setTokenURI(uint256 _tokenId, string memory _uri) external onlyOwner {
        _setTokenURI(_tokenId, _uri);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        _setBaseURI(_baseURI);
    }

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override(ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"claimAccessToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isApprovedOrOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isUnclaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintAccessToken","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAccessTokenMinted","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620029c5380380620029c583398101604081905262000034916200028b565b604080518082018252601a81527f474f41547a20416363657373205574696c69747920546f6b656e0000000000006020808301919091528251808401909352600483526311d0555560e21b9083015290620000966301ffc9a760e01b62000167565b8151620000ab906006906020850190620001df565b508051620000c1906007906020840190620001df565b50620000d46380ac58cd60e01b62000167565b620000e6635b5e139f60e01b62000167565b620000f863780e9d6360e01b62000167565b506000905062000107620001c2565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200016081620001c6565b5062000381565b6001600160e01b031980821614156200019d5760405162461bcd60e51b815260040162000194906200034a565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b8051620001db906009906020840190620001df565b5050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b600060208083850312156200029e578182fd5b82516001600160401b0380821115620002b5578384fd5b818501915085601f830112620002c9578384fd5b815181811115620002d657fe5b604051601f8201601f1916810185018381118282101715620002f457fe5b60405281815283820185018810156200030b578586fd5b8592505b818310156200032e57838301850151818401860152918401916200030f565b818311156200033f57858583830101525b979650505050505050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b61263480620003916000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e11610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103ac578063e985e9c5146103bf578063f14210a6146103d2578063f2fde38b146103e5576101da565b8063a22cb4651461036b578063b535f1201461037e578063b88d4fde14610386578063bd6de29814610399576101da565b8063715018a6116100de578063715018a6146103405780638da5cb5b146103485780638ebbe2dd1461035057806395d89b4114610363576101da565b80636352211e146103125780636c0360eb1461032557806370a082311461032d576101da565b806325b86aae1161017c578063430c20811161014b578063430c2081146102d95780634f558e791461028d5780634f6ccce7146102ec57806355f804b3146102ff576101da565b806325b86aae1461028d5780632f745c59146102a057806342842e0e146102b357806342966c68146102c6576101da565b8063095ea7b3116101b8578063095ea7b31461023d578063162094c41461025257806318160ddd1461026557806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611be7565b6103f8565b6040516101ff9190611ef7565b60405180910390f35b61021061041b565b6040516101ff9190611f02565b61023061022b366004611d80565b6104b1565b6040516101ff9190611ea6565b61025061024b366004611bbc565b6104fd565b005b610250610260366004611d98565b610595565b61026d6105d8565b6040516101ff919061251f565b610250610288366004611ae1565b6105e9565b6101f261029b366004611d80565b610621565b61026d6102ae366004611bbc565b610632565b6102506102c1366004611ae1565b61065b565b6102506102d4366004611d80565b610676565b6101f26102e7366004611bbc565b6106e7565b61026d6102fa366004611d80565b6106f3565b61025061030d366004611d4d565b610709565b610230610320366004611d80565b610747565b61021061076f565b61026d61033b366004611a8d565b6107d0565b610250610819565b610230610898565b61025061035e366004611c1f565b6108a7565b61021061090c565b610250610379366004611b8b565b61096d565b61026d610a3b565b610250610394366004611b21565b610a41565b6102506103a7366004611a8d565b610a80565b6102106103ba366004611d80565b610abe565b6101f26103cd366004611aa9565b610c06565b6102506103e0366004611d80565b610c34565b6102506103f3366004611a8d565b610ca9565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104bc82610d60565b6104e15760405162461bcd60e51b81526004016104d890612285565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061050882610747565b9050806001600160a01b0316836001600160a01b0316141561053c5760405162461bcd60e51b81526004016104d8906123ea565b806001600160a01b031661054e610d6d565b6001600160a01b0316148061056a575061056a816103cd610d6d565b6105865760405162461bcd60e51b81526004016104d890612124565b6105908383610d71565b505050565b61059d610d6d565b600a546001600160a01b039081169116146105ca5760405162461bcd60e51b81526004016104d89061231d565b6105d48282610ddf565b5050565b60006105e46002610e23565b905090565b6105fa6105f4610d6d565b82610e2e565b6106165760405162461bcd60e51b81526004016104d890612460565b610590838383610eb3565b600061062c82610d60565b92915050565b6001600160a01b03821660009081526001602052604081206106549083610fc1565b9392505050565b61059083838360405180602001604052806000815250610a41565b61067f81610d60565b61069b5760405162461bcd60e51b81526004016104d8906124e8565b6106a3610d6d565b6001600160a01b03166106b582610747565b6001600160a01b0316146106db5760405162461bcd60e51b81526004016104d89061242b565b6106e481610fcd565b50565b60006106548383610e2e565b60008061070160028461109a565b509392505050565b610711610d6d565b600a546001600160a01b0390811691161461073e5760405162461bcd60e51b81526004016104d89061231d565b6106e4816110b6565b600061062c826040518060600160405280602981526020016125d660299139600291906110c9565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b60006001600160a01b0382166107f85760405162461bcd60e51b81526004016104d890612181565b6001600160a01b038216600090815260016020526040902061062c90610e23565b610821610d6d565b600a546001600160a01b0390811691161461084e5760405162461bcd60e51b81526004016104d89061231d565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b60006108b582840184611c8c565b50505092505050600081519050600081116108e25760405162461bcd60e51b81526004016104d8906121cb565b60005b81811015610905576108fd6108f8610d6d565b6110d6565b6001016108e5565b5050505050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b610975610d6d565b6001600160a01b0316826001600160a01b031614156109a65760405162461bcd60e51b81526004016104d8906120a1565b80600560006109b3610d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109f7610d6d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a2f9190611ef7565b60405180910390a35050565b600b5481565b610a52610a4c610d6d565b83610e2e565b610a6e5760405162461bcd60e51b81526004016104d890612460565b610a7a8484848461113f565b50505050565b610a88610d6d565b600a546001600160a01b03908116911614610ab55760405162461bcd60e51b81526004016104d89061231d565b6106e4816110d6565b6060610ac982610d60565b610ae55760405162461bcd60e51b81526004016104d89061239b565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815292909190830182828015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b505060095493945050505060026000196101006001841615020190911604610ba1579050610416565b805115610bd357600981604051602001610bbc929190611e25565b604051602081830303815290604052915050610416565b6009610bde84611172565b604051602001610bef929190611e25565b604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c3c610d6d565b600a546001600160a01b03908116911614610c695760405162461bcd60e51b81526004016104d89061231d565b610c71610898565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156105d4573d6000803e3d6000fd5b610cb1610d6d565b600a546001600160a01b03908116911614610cde5760405162461bcd60e51b81526004016104d89061231d565b6001600160a01b038116610d045760405162461bcd60e51b81526004016104d890611fe0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061062c60028361124d565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610da682610747565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610de882610d60565b610e045760405162461bcd60e51b81526004016104d8906122d1565b60008281526008602090815260409091208251610590928401906118c0565b600061062c82611259565b6000610e3982610d60565b610e555760405162461bcd60e51b81526004016104d8906120d8565b6000610e6083610747565b9050806001600160a01b0316846001600160a01b03161480610e9b5750836001600160a01b0316610e90846104b1565b6001600160a01b0316145b80610eab5750610eab8185610c06565b949350505050565b826001600160a01b0316610ec682610747565b6001600160a01b031614610eec5760405162461bcd60e51b81526004016104d890612352565b6001600160a01b038216610f125760405162461bcd60e51b81526004016104d89061205d565b610f1d83838361125d565b610f28600082610d71565b6001600160a01b0383166000908152600160205260409020610f4a9082611268565b506001600160a01b0382166000908152600160205260409020610f6d9082611274565b50610f7a60028284611280565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006106548383611296565b6000610fd882610747565b9050610fe68160008461125d565b610ff1600083610d71565b600082815260086020526040902054600260001961010060018416150201909116041561102f57600082815260086020526040812061102f9161194c565b6001600160a01b03811660009081526001602052604090206110519083611268565b5061105d6002836112db565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806110a986866112e7565b9097909650945050505050565b80516105d49060099060208401906118c0565b6000610eab848484611343565b600b8054600101908190556110ea90610d60565b156111075760405162461bcd60e51b81526004016104d890611fa9565b61111381600b546113a2565b6106e4600b54604051806040016040528060088152602001676d6574616461746160c01b815250610ddf565b61114a848484610eb3565b61115684848484611466565b610a7a5760405162461bcd60e51b81526004016104d890611f57565b60608161119757506040805180820190915260018152600360fc1b6020820152610416565b8160005b81156111af57600101600a8204915061119b565b60008167ffffffffffffffff811180156111c857600080fd5b506040519080825280601f01601f1916602001820160405280156111f3576020820181803683370190505b50859350905060001982015b831561124457600a840660300160f81b8282806001900393508151811061122257fe5b60200101906001600160f81b031916908160001a905350600a840493506111ff565b50949350505050565b60006106548383611545565b5490565b610590838383610590565b6000610654838361155d565b60006106548383611623565b6000610eab84846001600160a01b03851661166d565b815460009082106112b95760405162461bcd60e51b81526004016104d890611f15565b8260000182815481106112c857fe5b9060005260206000200154905092915050565b60006106548383611704565b81546000908190831061130c5760405162461bcd60e51b81526004016104d89061220e565b600084600001848154811061131d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816113735760405162461bcd60e51b81526004016104d89190611f02565b5084600001600182038154811061138657fe5b9060005260206000209060020201600101549150509392505050565b6001600160a01b0382166113c85760405162461bcd60e51b81526004016104d890612250565b6113d181610d60565b156113ee5760405162461bcd60e51b81526004016104d890612026565b6113fa6000838361125d565b6001600160a01b038216600090815260016020526040902061141c9082611274565b5061142960028284611280565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061147a846001600160a01b03166117d8565b61148657506001610eab565b600061150e630a85bd0160e11b61149b610d6d565b8887876040516024016114b19493929190611eba565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016125a4603291396001600160a01b03881691906117de565b90506000818060200190518101906115269190611c03565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611619578354600019808301919081019060009087908390811061159057fe5b90600052602060002001549050808760000184815481106115ad57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806115dd57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061062c565b600091505061062c565b600061162f8383611545565b6116655750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561062c565b50600061062c565b6000828152600184016020526040812054806116d2575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055610654565b828560000160018303815481106116e557fe5b9060005260206000209060020201600101819055506000915050610654565b60008181526001830160205260408120548015611619578354600019808301919081019060009087908390811061173757fe5b906000526020600020906002020190508087600001848154811061175757fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061179657fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061062c9350505050565b3b151590565b6060610eab8484600085856117f2856117d8565b61180e5760405162461bcd60e51b81526004016104d8906124b1565b600080866001600160a01b0316858760405161182a9190611e09565b60006040518083038185875af1925050503d8060008114611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b509150915061187c828286611887565b979650505050505050565b60608315611896575081610654565b8251156118a65782518084602001fd5b8160405162461bcd60e51b81526004016104d89190611f02565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826118f6576000855561193c565b82601f1061190f57805160ff191683800117855561193c565b8280016001018555821561193c579182015b8281111561193c578251825591602001919060010190611921565b5061194892915061198c565b5090565b50805460018160011615610100020316600290046000825580601f1061197257506106e4565b601f0160209004906000526020600020908101906106e491905b5b80821115611948576000815560010161198d565b803561041681612578565b600082601f8301126119bc578081fd5b8135602067ffffffffffffffff8211156119d257fe5b8082026119e0828201612528565b8381528281019086840183880185018910156119fa578687fd5b8693505b85841015611a1c5780358352600193909301929184019184016119fe565b50979650505050505050565b600082601f830112611a38578081fd5b813567ffffffffffffffff811115611a4c57fe5b611a5f601f8201601f1916602001612528565b818152846020838601011115611a73578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215611a9e578081fd5b813561065481612578565b60008060408385031215611abb578081fd5b8235611ac681612578565b91506020830135611ad681612578565b809150509250929050565b600080600060608486031215611af5578081fd5b8335611b0081612578565b92506020840135611b1081612578565b929592945050506040919091013590565b60008060008060808587031215611b36578081fd5b8435611b4181612578565b93506020850135611b5181612578565b925060408501359150606085013567ffffffffffffffff811115611b73578182fd5b611b7f87828801611a28565b91505092959194509250565b60008060408385031215611b9d578182fd5b8235611ba881612578565b915060208301358015158114611ad6578182fd5b60008060408385031215611bce578182fd5b8235611bd981612578565b946020939093013593505050565b600060208284031215611bf8578081fd5b81356106548161258d565b600060208284031215611c14578081fd5b81516106548161258d565b60008060208385031215611c31578182fd5b823567ffffffffffffffff80821115611c48578384fd5b818501915085601f830112611c5b578384fd5b813581811115611c69578485fd5b866020828501011115611c7a578485fd5b60209290920196919550909350505050565b60008060008060008060c08789031215611ca4578182fd5b863567ffffffffffffffff80821115611cbb578384fd5b611cc78a838b01611a28565b9750611cd560208a016119a1565b96506040890135915080821115611cea578384fd5b611cf68a838b016119ac565b9550606089013594506080890135915080821115611d12578384fd5b611d1e8a838b01611a28565b935060a0890135915080821115611d33578283fd5b50611d4089828a01611a28565b9150509295509295509295565b600060208284031215611d5e578081fd5b813567ffffffffffffffff811115611d74578182fd5b610eab84828501611a28565b600060208284031215611d91578081fd5b5035919050565b60008060408385031215611daa578182fd5b82359150602083013567ffffffffffffffff811115611dc7578182fd5b611dd385828601611a28565b9150509250929050565b60008151808452611df581602086016020860161254c565b601f01601f19169290920160200192915050565b60008251611e1b81846020870161254c565b9190910192915050565b6000808454600180821660008114611e445760018114611e5b57611e8a565b60ff198316865260028304607f1686019350611e8a565b600283048886526020808720875b83811015611e825781548a820152908501908201611e69565b505050860193505b5050508351611e9d81836020880161254c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eed90830184611ddd565b9695505050505050565b901515815260200190565b6000602082526106546020830184611ddd565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526023908201527f4d696e696d756d203120746f6b656e73206e65656420746f20626520636c61696040820152621b595960ea1b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561254457fe5b604052919050565b60005b8381101561256757818101518382015260200161254f565b83811115610a7a5750506000910152565b6001600160a01b03811681146106e457600080fd5b6001600160e01b0319811681146106e457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212200cb8ffea5eaa66b012c970a6bba91130b42feb571c1f21763238f905dd14899c64736f6c634300070600330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d545966765a53474a6a323673736774544e38784a4459746f64776a57725a503450436343355a796a575a57392f000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80636352211e11610104578063a22cb465116100a2578063c87b56dd11610071578063c87b56dd146103ac578063e985e9c5146103bf578063f14210a6146103d2578063f2fde38b146103e5576101da565b8063a22cb4651461036b578063b535f1201461037e578063b88d4fde14610386578063bd6de29814610399576101da565b8063715018a6116100de578063715018a6146103405780638da5cb5b146103485780638ebbe2dd1461035057806395d89b4114610363576101da565b80636352211e146103125780636c0360eb1461032557806370a082311461032d576101da565b806325b86aae1161017c578063430c20811161014b578063430c2081146102d95780634f558e791461028d5780634f6ccce7146102ec57806355f804b3146102ff576101da565b806325b86aae1461028d5780632f745c59146102a057806342842e0e146102b357806342966c68146102c6576101da565b8063095ea7b3116101b8578063095ea7b31461023d578063162094c41461025257806318160ddd1461026557806323b872dd1461027a576101da565b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611be7565b6103f8565b6040516101ff9190611ef7565b60405180910390f35b61021061041b565b6040516101ff9190611f02565b61023061022b366004611d80565b6104b1565b6040516101ff9190611ea6565b61025061024b366004611bbc565b6104fd565b005b610250610260366004611d98565b610595565b61026d6105d8565b6040516101ff919061251f565b610250610288366004611ae1565b6105e9565b6101f261029b366004611d80565b610621565b61026d6102ae366004611bbc565b610632565b6102506102c1366004611ae1565b61065b565b6102506102d4366004611d80565b610676565b6101f26102e7366004611bbc565b6106e7565b61026d6102fa366004611d80565b6106f3565b61025061030d366004611d4d565b610709565b610230610320366004611d80565b610747565b61021061076f565b61026d61033b366004611a8d565b6107d0565b610250610819565b610230610898565b61025061035e366004611c1f565b6108a7565b61021061090c565b610250610379366004611b8b565b61096d565b61026d610a3b565b610250610394366004611b21565b610a41565b6102506103a7366004611a8d565b610a80565b6102106103ba366004611d80565b610abe565b6101f26103cd366004611aa9565b610c06565b6102506103e0366004611d80565b610c34565b6102506103f3366004611a8d565b610ca9565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104bc82610d60565b6104e15760405162461bcd60e51b81526004016104d890612285565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061050882610747565b9050806001600160a01b0316836001600160a01b0316141561053c5760405162461bcd60e51b81526004016104d8906123ea565b806001600160a01b031661054e610d6d565b6001600160a01b0316148061056a575061056a816103cd610d6d565b6105865760405162461bcd60e51b81526004016104d890612124565b6105908383610d71565b505050565b61059d610d6d565b600a546001600160a01b039081169116146105ca5760405162461bcd60e51b81526004016104d89061231d565b6105d48282610ddf565b5050565b60006105e46002610e23565b905090565b6105fa6105f4610d6d565b82610e2e565b6106165760405162461bcd60e51b81526004016104d890612460565b610590838383610eb3565b600061062c82610d60565b92915050565b6001600160a01b03821660009081526001602052604081206106549083610fc1565b9392505050565b61059083838360405180602001604052806000815250610a41565b61067f81610d60565b61069b5760405162461bcd60e51b81526004016104d8906124e8565b6106a3610d6d565b6001600160a01b03166106b582610747565b6001600160a01b0316146106db5760405162461bcd60e51b81526004016104d89061242b565b6106e481610fcd565b50565b60006106548383610e2e565b60008061070160028461109a565b509392505050565b610711610d6d565b600a546001600160a01b0390811691161461073e5760405162461bcd60e51b81526004016104d89061231d565b6106e4816110b6565b600061062c826040518060600160405280602981526020016125d660299139600291906110c9565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b60006001600160a01b0382166107f85760405162461bcd60e51b81526004016104d890612181565b6001600160a01b038216600090815260016020526040902061062c90610e23565b610821610d6d565b600a546001600160a01b0390811691161461084e5760405162461bcd60e51b81526004016104d89061231d565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b60006108b582840184611c8c565b50505092505050600081519050600081116108e25760405162461bcd60e51b81526004016104d8906121cb565b60005b81811015610905576108fd6108f8610d6d565b6110d6565b6001016108e5565b5050505050565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104a75780601f1061047c576101008083540402835291602001916104a7565b610975610d6d565b6001600160a01b0316826001600160a01b031614156109a65760405162461bcd60e51b81526004016104d8906120a1565b80600560006109b3610d6d565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556109f7610d6d565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610a2f9190611ef7565b60405180910390a35050565b600b5481565b610a52610a4c610d6d565b83610e2e565b610a6e5760405162461bcd60e51b81526004016104d890612460565b610a7a8484848461113f565b50505050565b610a88610d6d565b600a546001600160a01b03908116911614610ab55760405162461bcd60e51b81526004016104d89061231d565b6106e4816110d6565b6060610ac982610d60565b610ae55760405162461bcd60e51b81526004016104d89061239b565b60008281526008602090815260408083208054825160026001831615610100026000190190921691909104601f810185900485028201850190935282815292909190830182828015610b785780601f10610b4d57610100808354040283529160200191610b78565b820191906000526020600020905b815481529060010190602001808311610b5b57829003601f168201915b505060095493945050505060026000196101006001841615020190911604610ba1579050610416565b805115610bd357600981604051602001610bbc929190611e25565b604051602081830303815290604052915050610416565b6009610bde84611172565b604051602001610bef929190611e25565b604051602081830303815290604052915050919050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610c3c610d6d565b600a546001600160a01b03908116911614610c695760405162461bcd60e51b81526004016104d89061231d565b610c71610898565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156105d4573d6000803e3d6000fd5b610cb1610d6d565b600a546001600160a01b03908116911614610cde5760405162461bcd60e51b81526004016104d89061231d565b6001600160a01b038116610d045760405162461bcd60e51b81526004016104d890611fe0565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600061062c60028361124d565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610da682610747565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610de882610d60565b610e045760405162461bcd60e51b81526004016104d8906122d1565b60008281526008602090815260409091208251610590928401906118c0565b600061062c82611259565b6000610e3982610d60565b610e555760405162461bcd60e51b81526004016104d8906120d8565b6000610e6083610747565b9050806001600160a01b0316846001600160a01b03161480610e9b5750836001600160a01b0316610e90846104b1565b6001600160a01b0316145b80610eab5750610eab8185610c06565b949350505050565b826001600160a01b0316610ec682610747565b6001600160a01b031614610eec5760405162461bcd60e51b81526004016104d890612352565b6001600160a01b038216610f125760405162461bcd60e51b81526004016104d89061205d565b610f1d83838361125d565b610f28600082610d71565b6001600160a01b0383166000908152600160205260409020610f4a9082611268565b506001600160a01b0382166000908152600160205260409020610f6d9082611274565b50610f7a60028284611280565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006106548383611296565b6000610fd882610747565b9050610fe68160008461125d565b610ff1600083610d71565b600082815260086020526040902054600260001961010060018416150201909116041561102f57600082815260086020526040812061102f9161194c565b6001600160a01b03811660009081526001602052604090206110519083611268565b5061105d6002836112db565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008080806110a986866112e7565b9097909650945050505050565b80516105d49060099060208401906118c0565b6000610eab848484611343565b600b8054600101908190556110ea90610d60565b156111075760405162461bcd60e51b81526004016104d890611fa9565b61111381600b546113a2565b6106e4600b54604051806040016040528060088152602001676d6574616461746160c01b815250610ddf565b61114a848484610eb3565b61115684848484611466565b610a7a5760405162461bcd60e51b81526004016104d890611f57565b60608161119757506040805180820190915260018152600360fc1b6020820152610416565b8160005b81156111af57600101600a8204915061119b565b60008167ffffffffffffffff811180156111c857600080fd5b506040519080825280601f01601f1916602001820160405280156111f3576020820181803683370190505b50859350905060001982015b831561124457600a840660300160f81b8282806001900393508151811061122257fe5b60200101906001600160f81b031916908160001a905350600a840493506111ff565b50949350505050565b60006106548383611545565b5490565b610590838383610590565b6000610654838361155d565b60006106548383611623565b6000610eab84846001600160a01b03851661166d565b815460009082106112b95760405162461bcd60e51b81526004016104d890611f15565b8260000182815481106112c857fe5b9060005260206000200154905092915050565b60006106548383611704565b81546000908190831061130c5760405162461bcd60e51b81526004016104d89061220e565b600084600001848154811061131d57fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816113735760405162461bcd60e51b81526004016104d89190611f02565b5084600001600182038154811061138657fe5b9060005260206000209060020201600101549150509392505050565b6001600160a01b0382166113c85760405162461bcd60e51b81526004016104d890612250565b6113d181610d60565b156113ee5760405162461bcd60e51b81526004016104d890612026565b6113fa6000838361125d565b6001600160a01b038216600090815260016020526040902061141c9082611274565b5061142960028284611280565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600061147a846001600160a01b03166117d8565b61148657506001610eab565b600061150e630a85bd0160e11b61149b610d6d565b8887876040516024016114b19493929190611eba565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016125a4603291396001600160a01b03881691906117de565b90506000818060200190518101906115269190611c03565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611619578354600019808301919081019060009087908390811061159057fe5b90600052602060002001549050808760000184815481106115ad57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806115dd57fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061062c565b600091505061062c565b600061162f8383611545565b6116655750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561062c565b50600061062c565b6000828152600184016020526040812054806116d2575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055610654565b828560000160018303815481106116e557fe5b9060005260206000209060020201600101819055506000915050610654565b60008181526001830160205260408120548015611619578354600019808301919081019060009087908390811061173757fe5b906000526020600020906002020190508087600001848154811061175757fe5b60009182526020808320845460029093020191825560019384015491840191909155835482528983019052604090209084019055865487908061179657fe5b600082815260208082206002600019909401938402018281556001908101839055929093558881528982019092526040822091909155945061062c9350505050565b3b151590565b6060610eab8484600085856117f2856117d8565b61180e5760405162461bcd60e51b81526004016104d8906124b1565b600080866001600160a01b0316858760405161182a9190611e09565b60006040518083038185875af1925050503d8060008114611867576040519150601f19603f3d011682016040523d82523d6000602084013e61186c565b606091505b509150915061187c828286611887565b979650505050505050565b60608315611896575081610654565b8251156118a65782518084602001fd5b8160405162461bcd60e51b81526004016104d89190611f02565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826118f6576000855561193c565b82601f1061190f57805160ff191683800117855561193c565b8280016001018555821561193c579182015b8281111561193c578251825591602001919060010190611921565b5061194892915061198c565b5090565b50805460018160011615610100020316600290046000825580601f1061197257506106e4565b601f0160209004906000526020600020908101906106e491905b5b80821115611948576000815560010161198d565b803561041681612578565b600082601f8301126119bc578081fd5b8135602067ffffffffffffffff8211156119d257fe5b8082026119e0828201612528565b8381528281019086840183880185018910156119fa578687fd5b8693505b85841015611a1c5780358352600193909301929184019184016119fe565b50979650505050505050565b600082601f830112611a38578081fd5b813567ffffffffffffffff811115611a4c57fe5b611a5f601f8201601f1916602001612528565b818152846020838601011115611a73578283fd5b816020850160208301379081016020019190915292915050565b600060208284031215611a9e578081fd5b813561065481612578565b60008060408385031215611abb578081fd5b8235611ac681612578565b91506020830135611ad681612578565b809150509250929050565b600080600060608486031215611af5578081fd5b8335611b0081612578565b92506020840135611b1081612578565b929592945050506040919091013590565b60008060008060808587031215611b36578081fd5b8435611b4181612578565b93506020850135611b5181612578565b925060408501359150606085013567ffffffffffffffff811115611b73578182fd5b611b7f87828801611a28565b91505092959194509250565b60008060408385031215611b9d578182fd5b8235611ba881612578565b915060208301358015158114611ad6578182fd5b60008060408385031215611bce578182fd5b8235611bd981612578565b946020939093013593505050565b600060208284031215611bf8578081fd5b81356106548161258d565b600060208284031215611c14578081fd5b81516106548161258d565b60008060208385031215611c31578182fd5b823567ffffffffffffffff80821115611c48578384fd5b818501915085601f830112611c5b578384fd5b813581811115611c69578485fd5b866020828501011115611c7a578485fd5b60209290920196919550909350505050565b60008060008060008060c08789031215611ca4578182fd5b863567ffffffffffffffff80821115611cbb578384fd5b611cc78a838b01611a28565b9750611cd560208a016119a1565b96506040890135915080821115611cea578384fd5b611cf68a838b016119ac565b9550606089013594506080890135915080821115611d12578384fd5b611d1e8a838b01611a28565b935060a0890135915080821115611d33578283fd5b50611d4089828a01611a28565b9150509295509295509295565b600060208284031215611d5e578081fd5b813567ffffffffffffffff811115611d74578182fd5b610eab84828501611a28565b600060208284031215611d91578081fd5b5035919050565b60008060408385031215611daa578182fd5b82359150602083013567ffffffffffffffff811115611dc7578182fd5b611dd385828601611a28565b9150509250929050565b60008151808452611df581602086016020860161254c565b601f01601f19169290920160200192915050565b60008251611e1b81846020870161254c565b9190910192915050565b6000808454600180821660008114611e445760018114611e5b57611e8a565b60ff198316865260028304607f1686019350611e8a565b600283048886526020808720875b83811015611e825781548a820152908501908201611e69565b505050860193505b5050508351611e9d81836020880161254c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eed90830184611ddd565b9695505050505050565b901515815260200190565b6000602082526106546020830184611ddd565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601a908201527f4d696e743a20546f6b656e20616c72656164792065786973742e000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526023908201527f4d696e696d756d203120746f6b656e73206e65656420746f20626520636c61696040820152621b595960ea1b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252602c908201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f4275726e3a2063616c6c6572206973206e6f7420746f6b656e206f776e65722e604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252601b908201527f4275726e3a20746f6b656e20646f6573206e6f742065786973742e0000000000604082015260600190565b90815260200190565b60405181810167ffffffffffffffff8111828210171561254457fe5b604052919050565b60005b8381101561256757818101518382015260200161254f565b83811115610a7a5750506000910152565b6001600160a01b03811681146106e457600080fd5b6001600160e01b0319811681146106e457600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212200cb8ffea5eaa66b012c970a6bba91130b42feb571c1f21763238f905dd14899c64736f6c63430007060033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d545966765a53474a6a323673736774544e38784a4459746f64776a57725a503450436343355a796a575a57392f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenBaseUri (string): https://gateway.pinata.cloud/ipfs/QmTYfvZSGJj26ssgtTN8xJDYtodwjWrZP4PCcC5ZyjWZW9/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d545966765a53474a6a323673736774544e38784a4459746f64776a57
Arg [4] : 725a503450436343355a796a575a57392f000000000000000000000000000000


Deployed Bytecode Sourcemap

62043:2452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10263:142;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47036:92;;;:::i;:::-;;;;;;;:::i;49723:213::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49267:390::-;;;;;;:::i;:::-;;:::i;:::-;;64071:125;;;;;;:::i;:::-;;:::i;48761:203::-;;;:::i;:::-;;;;;;;:::i;50597:305::-;;;;;;:::i;:::-;;:::i;63611:111::-;;;;;;:::i;:::-;;:::i;48531:154::-;;;;;;:::i;:::-;;:::i;50973:151::-;;;;;;:::i;:::-;;:::i;63180:232::-;;;;;;:::i;:::-;;:::i;63730:156::-;;;;;;:::i;:::-;;:::i;49041:164::-;;;;;;:::i;:::-;;:::i;64204:103::-;;;;;;:::i;:::-;;:::i;46800:169::-;;;;;;:::i;:::-;;:::i;48358:89::-;;;:::i;46523:215::-;;;;;;:::i;:::-;;:::i;61394:148::-;;;:::i;60752:79::-;;;:::i;62400:385::-;;;;;;:::i;:::-;;:::i;47197:96::-;;;:::i;50008:295::-;;;;;;:::i;:::-;;:::i;62137:37::-;;;:::i;51195:285::-;;;;;;:::i;:::-;;:::i;63081:91::-;;;;;;:::i;:::-;;:::i;47364:755::-;;;;;;:::i;:::-;;:::i;50374:156::-;;;;;;:::i;:::-;;:::i;63953:110::-;;;;;;:::i;:::-;;:::i;61697:244::-;;;;;;:::i;:::-;;:::i;10263:142::-;-1:-1:-1;;;;;;10364:33:0;;10340:4;10364:33;;;;;;;;;;;;;10263:142;;;;:::o;47036:92::-;47115:5;47108:12;;;;;;;;-1:-1:-1;;47108:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47082:13;;47108:12;;47115:5;;47108:12;;47115:5;47108:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47036:92;:::o;49723:213::-;49791:7;49819:16;49827:7;49819;:16::i;:::-;49811:73;;;;-1:-1:-1;;;49811:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;49904:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;49904:24:0;;49723:213::o;49267:390::-;49348:13;49364:16;49372:7;49364;:16::i;:::-;49348:32;;49405:5;-1:-1:-1;;;;;49399:11:0;:2;-1:-1:-1;;;;;49399:11:0;;;49391:57;;;;-1:-1:-1;;;49391:57:0;;;;;;;:::i;:::-;49485:5;-1:-1:-1;;;;;49469:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;49469:21:0;;:62;;;;49494:37;49511:5;49518:12;:10;:12::i;49494:37::-;49461:154;;;;-1:-1:-1;;;49461:154:0;;;;;;;:::i;:::-;49628:21;49637:2;49641:7;49628:8;:21::i;:::-;49267:390;;;:::o;64071:125::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;64160:28:::1;64173:8;64183:4;64160:12;:28::i;:::-;64071:125:::0;;:::o;48761:203::-;48814:7;48935:21;:12;:19;:21::i;:::-;48928:28;;48761:203;:::o;50597:305::-;50758:41;50777:12;:10;:12::i;:::-;50791:7;50758:18;:41::i;:::-;50750:103;;;;-1:-1:-1;;;50750:103:0;;;;;;;:::i;:::-;50866:28;50876:4;50882:2;50886:7;50866:9;:28::i;63611:111::-;63673:4;63697:17;63705:8;63697:7;:17::i;:::-;63690:24;63611:111;-1:-1:-1;;63611:111:0:o;48531:154::-;-1:-1:-1;;;;;48647:20:0;;48620:7;48647:20;;;:13;:20;;;;;:30;;48671:5;48647:23;:30::i;:::-;48640:37;48531:154;-1:-1:-1;;;48531:154:0:o;50973:151::-;51077:39;51094:4;51100:2;51104:7;51077:39;;;;;;;;;;;;:16;:39::i;63180:232::-;63240:17;63248:8;63240:7;:17::i;:::-;63232:57;;;;-1:-1:-1;;;63232:57:0;;;;;;;:::i;:::-;63329:12;:10;:12::i;:::-;-1:-1:-1;;;;;63308:33:0;:17;63316:8;63308:7;:17::i;:::-;-1:-1:-1;;;;;63308:33:0;;63300:78;;;;-1:-1:-1;;;63300:78:0;;;;;;;:::i;:::-;63389:15;63395:8;63389:5;:15::i;:::-;63180:232;:::o;63730:156::-;63816:4;63840:38;63859:8;63869;63840:18;:38::i;49041:164::-;49108:7;;49150:22;:12;49166:5;49150:15;:22::i;:::-;-1:-1:-1;49128:44:0;49041:164;-1:-1:-1;;;49041:164:0:o;64204:103::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;64278:21:::1;64290:8;64278:11;:21::i;46800:169::-:0;46864:7;46891:70;46908:7;46891:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;48358:89::-;48431:8;48424:15;;;;;;;;-1:-1:-1;;48424:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48398:13;;48424:15;;48431:8;;48424:15;;48431:8;48424:15;;;;;;;;;;;;;;;;;;;;;;;;46523:215;46587:7;-1:-1:-1;;;;;46615:19:0;;46607:74;;;;-1:-1:-1;;;46607:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46701:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;61394:148::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;61485:6:::1;::::0;61464:40:::1;::::0;61501:1:::1;::::0;-1:-1:-1;;;;;61485:6:0::1;::::0;61464:40:::1;::::0;61501:1;;61464:40:::1;61515:6;:19:::0;;-1:-1:-1;;;;;;61515:19:0::1;::::0;;61394:148::o;60752:79::-;60817:6;;-1:-1:-1;;;;;60817:6:0;60752:79;:::o;62400:385::-;62472:32;62511:70;;;;62522:5;62511:70;:::i;:::-;62468:113;;;;;;;62592:14;62609:15;:22;62592:39;;62656:1;62647:6;:10;62639:58;;;;-1:-1:-1;;;62639:58:0;;;;;;;:::i;:::-;62707:9;62702:79;62726:6;62722:1;:10;62702:79;;;62745:30;62762:12;:10;:12::i;:::-;62745:16;:30::i;:::-;62734:3;;62702:79;;;;62400:385;;;;:::o;47197:96::-;47278:7;47271:14;;;;;;;;-1:-1:-1;;47271:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47245:13;;47271:14;;47278:7;;47271:14;;47278:7;47271:14;;;;;;;;;;;;;;;;;;;;;;;;50008:295;50123:12;:10;:12::i;:::-;-1:-1:-1;;;;;50111:24:0;:8;-1:-1:-1;;;;;50111:24:0;;;50103:62;;;;-1:-1:-1;;;50103:62:0;;;;;;;:::i;:::-;50223:8;50178:18;:32;50197:12;:10;:12::i;:::-;-1:-1:-1;;;;;50178:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;50178:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;50178:53:0;;;;;;;;;;;50262:12;:10;:12::i;:::-;-1:-1:-1;;;;;50247:48:0;;50286:8;50247:48;;;;;;:::i;:::-;;;;;;;;50008:295;;:::o;62137:37::-;;;;:::o;51195:285::-;51327:41;51346:12;:10;:12::i;:::-;51360:7;51327:18;:41::i;:::-;51319:103;;;;-1:-1:-1;;;51319:103:0;;;;;;;:::i;:::-;51433:39;51447:4;51453:2;51457:7;51466:5;51433:13;:39::i;:::-;51195:285;;;;:::o;63081:91::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;63143:21:::1;63160:3;63143:16;:21::i;47364:755::-:0;47429:13;47463:16;47471:7;47463;:16::i;:::-;47455:76;;;;-1:-1:-1;;;47455:76:0;;;;;;;:::i;:::-;47544:23;47570:19;;;:10;:19;;;;;;;;47544:45;;;;;;;;;;;-1:-1:-1;;47544:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;47570:19;;47544:45;;;47570:19;47544:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47671:8:0;47665:22;47544:45;;-1:-1:-1;;;;47665:22:0;-1:-1:-1;;47665:22:0;;;;;;;;;;;47661:76;;47716:9;-1:-1:-1;47709:16:0;;47661:76;47841:23;;:27;47837:112;;47916:8;47926:9;47899:37;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47885:52;;;;;47837:112;48081:8;48091:18;:7;:16;:18::i;:::-;48064:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48050:61;;;47364:755;;;:::o;50374:156::-;-1:-1:-1;;;;;50487:25:0;;;50463:4;50487:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50374:156::o;63953:110::-;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;64029:7:::1;:5;:7::i;:::-;-1:-1:-1::0;;;;;64021:25:0::1;:34;64047:7;64021:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;61697:244:::0;60974:12;:10;:12::i;:::-;60964:6;;-1:-1:-1;;;;;60964:6:0;;;:22;;;60956:67;;;;-1:-1:-1;;;60956:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;61786:22:0;::::1;61778:73;;;;-1:-1:-1::0;;;61778:73:0::1;;;;;;;:::i;:::-;61888:6;::::0;61867:38:::1;::::0;-1:-1:-1;;;;;61867:38:0;;::::1;::::0;61888:6:::1;::::0;61867:38:::1;::::0;61888:6:::1;::::0;61867:38:::1;61916:6;:17:::0;;-1:-1:-1;;;;;;61916:17:0::1;-1:-1:-1::0;;;;;61916:17:0;;;::::1;::::0;;;::::1;::::0;;61697:244::o;52947:119::-;53004:4;53028:30;:12;53050:7;53028:21;:30::i;643:106::-;731:10;643:106;:::o;58774:158::-;58840:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;58840:29:0;-1:-1:-1;;;;;58840:29:0;;;;;;;;:24;;58894:16;58840:24;58894:7;:16::i;:::-;-1:-1:-1;;;;;58885:39:0;;;;;;;;;;;58774:158;;:::o;57052:215::-;57152:16;57160:7;57152;:16::i;:::-;57144:73;;;;-1:-1:-1;;;57144:73:0;;;;;;;:::i;:::-;57228:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;40419:123::-;40488:7;40515:19;40523:3;40515:7;:19::i;53233:333::-;53318:4;53343:16;53351:7;53343;:16::i;:::-;53335:73;;;;-1:-1:-1;;;53335:73:0;;;;;;;:::i;:::-;53419:13;53435:16;53443:7;53435;:16::i;:::-;53419:32;;53481:5;-1:-1:-1;;;;;53470:16:0;:7;-1:-1:-1;;;;;53470:16:0;;:51;;;;53514:7;-1:-1:-1;;;;;53490:31:0;:20;53502:7;53490:11;:20::i;:::-;-1:-1:-1;;;;;53490:31:0;;53470:51;:87;;;;53525:32;53542:5;53549:7;53525:16;:32::i;:::-;53462:96;53233:333;-1:-1:-1;;;;53233:333:0:o;56322:574::-;56440:4;-1:-1:-1;;;;;56420:24:0;:16;56428:7;56420;:16::i;:::-;-1:-1:-1;;;;;56420:24:0;;56412:78;;;;-1:-1:-1;;;56412:78:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;56509:16:0;;56501:65;;;;-1:-1:-1;;;56501:65:0;;;;;;;:::i;:::-;56579:39;56600:4;56606:2;56610:7;56579:20;:39::i;:::-;56683:29;56700:1;56704:7;56683:8;:29::i;:::-;-1:-1:-1;;;;;56725:19:0;;;;;;:13;:19;;;;;:35;;56752:7;56725:26;:35::i;:::-;-1:-1:-1;;;;;;56771:17:0;;;;;;:13;:17;;;;;:30;;56793:7;56771:21;:30::i;:::-;-1:-1:-1;56814:29:0;:12;56831:7;56840:2;56814:16;:29::i;:::-;;56880:7;56876:2;-1:-1:-1;;;;;56861:27:0;56870:4;-1:-1:-1;;;;;56861:27:0;;;;;;;;;;;56322:574;;;:::o;33005:137::-;33076:7;33111:22;33115:3;33127:5;33111:3;:22::i;55465:520::-;55525:13;55541:16;55549:7;55541;:16::i;:::-;55525:32;;55570:48;55591:5;55606:1;55610:7;55570:20;:48::i;:::-;55659:29;55676:1;55680:7;55659:8;:29::i;:::-;55747:19;;;;:10;:19;;;;;55741:33;;-1:-1:-1;;55741:33:0;;;;;;;;;;;:38;55737:97;;55803:19;;;;:10;:19;;;;;55796:26;;;:::i;:::-;-1:-1:-1;;;;;55846:20:0;;;;;;:13;:20;;;;;:36;;55874:7;55846:27;:36::i;:::-;-1:-1:-1;55895:28:0;:12;55915:7;55895:19;:28::i;:::-;-1:-1:-1;55941:36:0;;55969:7;;55965:1;;-1:-1:-1;;;;;55941:36:0;;;;;55965:1;;55941:36;55465:520;;:::o;40881:227::-;40961:7;;;;41021:22;41025:3;41037:5;41021:3;:22::i;:::-;40990:53;;;;-1:-1:-1;40881:227:0;-1:-1:-1;;;;;40881:227:0:o;57497:100::-;57570:19;;;;:8;;:19;;;;;:::i;41543:204::-;41650:7;41693:44;41698:3;41718;41724:12;41693:4;:44::i;62797:276::-;62855:22;:24;;;;;;;;62899:31;;:7;:31::i;:::-;62898:32;62890:71;;;;-1:-1:-1;;;62890:71:0;;;;;;;:::i;:::-;62972:34;62978:3;62983:22;;62972:5;:34::i;:::-;63017:48;63030:22;;63017:48;;;;;;;;;;;;;-1:-1:-1;;;63017:48:0;;;:12;:48::i;52362:272::-;52476:28;52486:4;52492:2;52496:7;52476:9;:28::i;:::-;52523:48;52546:4;52552:2;52556:7;52565:5;52523:22;:48::i;:::-;52515:111;;;;-1:-1:-1;;;52515:111:0;;;;;;;:::i;42007:744::-;42063:13;42284:10;42280:53;;-1:-1:-1;42311:10:0;;;;;;;;;;;;-1:-1:-1;;;42311:10:0;;;;;;42280:53;42358:5;42343:12;42399:78;42406:9;;42399:78;;42432:8;;42463:2;42455:10;;;;42399:78;;;42487:19;42519:6;42509:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42509:17:0;-1:-1:-1;42581:5:0;;-1:-1:-1;42487:39:0;-1:-1:-1;;;42553:10:0;;42597:115;42604:9;;42597:115;;42671:2;42664:4;:9;42659:2;:14;42648:27;;42630:6;42637:7;;;;;;;42630:15;;;;;;;;;;;:45;-1:-1:-1;;;;;42630:45:0;;;;;;;;-1:-1:-1;42698:2:0;42690:10;;;;42597:115;;;-1:-1:-1;42736:6:0;42007:744;-1:-1:-1;;;;42007:744:0:o;40180:151::-;40264:4;40288:35;40298:3;40318;40288:9;:35::i;37802:110::-;37885:19;;37802:110::o;64315:177::-;64436:48;64463:5;64470:3;64475:8;64436:26;:48::i;32092:137::-;32162:4;32186:35;32194:3;32214:5;32186:7;:35::i;31785:131::-;31852:4;31876:32;31881:3;31901:5;31876:4;:32::i;39612:176::-;39701:4;39725:55;39730:3;39750;-1:-1:-1;;;;;39764:14:0;;39725:4;:55::i;28079:204::-;28174:18;;28146:7;;28174:26;-1:-1:-1;28166:73:0;;;;-1:-1:-1;;;28166:73:0;;;;;;;:::i;:::-;28257:3;:11;;28269:5;28257:18;;;;;;;;;;;;;;;;28250:25;;28079:204;;;;:::o;39954:142::-;40031:4;40055:33;40063:3;40083;40055:7;:33::i;38267:279::-;38371:19;;38334:7;;;;38371:27;-1:-1:-1;38363:74:0;;;;-1:-1:-1;;;38363:74:0;;;;;;;:::i;:::-;38450:22;38475:3;:12;;38488:5;38475:19;;;;;;;;;;;;;;;;;;38450:44;;38513:5;:10;;;38525:5;:12;;;38505:33;;;;;38267:279;;;;;:::o;38969:319::-;39063:7;39102:17;;;:12;;;:17;;;;;;39153:12;39138:13;39130:36;;;;-1:-1:-1;;;39130:36:0;;;;;;;;:::i;:::-;;39220:3;:12;;39244:1;39233:8;:12;39220:26;;;;;;;;;;;;;;;;;;:33;;;39213:40;;;38969:319;;;;;:::o;54832:404::-;-1:-1:-1;;;;;54912:16:0;;54904:61;;;;-1:-1:-1;;;54904:61:0;;;;;;;:::i;:::-;54985:16;54993:7;54985;:16::i;:::-;54984:17;54976:58;;;;-1:-1:-1;;;54976:58:0;;;;;;;:::i;:::-;55047:45;55076:1;55080:2;55084:7;55047:20;:45::i;:::-;-1:-1:-1;;;;;55105:17:0;;;;;;:13;:17;;;;;:30;;55127:7;55105:21;:30::i;:::-;-1:-1:-1;55148:29:0;:12;55165:7;55174:2;55148:16;:29::i;:::-;-1:-1:-1;55195:33:0;;55220:7;;-1:-1:-1;;;;;55195:33:0;;;55212:1;;55195:33;;55212:1;;55195:33;54832:404;;:::o;58162:604::-;58283:4;58310:15;:2;-1:-1:-1;;;;;58310:13:0;;:15::i;:::-;58305:60;;-1:-1:-1;58349:4:0;58342:11;;58305:60;58375:23;58401:252;-1:-1:-1;;;58514:12:0;:10;:12::i;:::-;58541:4;58560:7;58582:5;58417:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;58417:181:0;;;;;;;-1:-1:-1;;;;;58417:181:0;;;;;;;;;;;58401:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58401:15:0;;;:252;:15;:252::i;:::-;58375:278;;58664:13;58691:10;58680:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;58731:26:0;-1:-1:-1;;;58731:26:0;;-1:-1:-1;;;58162:604:0;;;;;;:::o;37582:125::-;37653:4;37677:17;;;:12;;;;;:17;;;;;;:22;;;37582:125::o;25781:1544::-;25847:4;25986:19;;;:12;;;:19;;;;;;26022:15;;26018:1300;;26457:18;;-1:-1:-1;;26408:14:0;;;;26457:22;;;;26384:21;;26457:3;;:22;;26744;;;;;;;;;;;;;;26724:42;;26890:9;26861:3;:11;;26873:13;26861:26;;;;;;;;;;;;;;;;;;;:38;;;;26967:23;;;27009:1;26967:12;;;:23;;;;;;26993:17;;;26967:43;;27119:17;;26967:3;;27119:17;;;;;;;;;;;;;;;;;;;;;;27214:3;:12;;:19;27227:5;27214:19;;;;;;;;;;;27207:26;;;27257:4;27250:11;;;;;;;;26018:1300;27301:5;27294:12;;;;;25191:414;25254:4;25276:21;25286:3;25291:5;25276:9;:21::i;:::-;25271:327;;-1:-1:-1;25314:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;25497:18;;25475:19;;;:12;;;:19;;;;;;:40;;;;25530:11;;25271:327;-1:-1:-1;25581:5:0;25574:12;;35082:692;35158:4;35293:17;;;:12;;;:17;;;;;;35327:13;35323:444;;-1:-1:-1;;35412:38:0;;;;;;;;;;;;;;;;;;35394:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;35609:19;;35589:17;;;:12;;;:17;;;;;;;:39;35643:11;;35323:444;35723:5;35687:3;:12;;35711:1;35700:8;:12;35687:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;35750:5;35743:12;;;;;35949:1549;36013:4;36148:17;;;:12;;;:17;;;;;;36182:13;;36178:1313;;36614:19;;-1:-1:-1;;36567:12:0;;;;36614:23;;;;36543:21;;36614:3;;:23;;36911;;;;;;;;;;;;;;;;36882:52;;37059:9;37029:3;:12;;37042:13;37029:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;37149:14;;37136:28;;:12;;;:28;;;;;37167:17;;;37136:48;;37293:18;;37136:3;;37293:18;;;;;;;;;;;;;;-1:-1:-1;;37293:18:0;;;;;;;;;;;;;;;;;;;;;37389:17;;;:12;;;:17;;;;;;37382:24;;;;37293:18;-1:-1:-1;37423:11:0;;-1:-1:-1;;;;37423:11:0;17205:422;17572:20;17611:8;;;17205:422::o;20123:195::-;20226:12;20258:52;20280:6;20288:4;20294:1;20297:12;20226;21427:18;21438:6;21427:10;:18::i;:::-;21419:60;;;;-1:-1:-1;;;21419:60:0;;;;;;;:::i;:::-;21553:12;21567:23;21594:6;-1:-1:-1;;;;;21594:11:0;21614:5;21622:4;21594:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21552:75;;;;21645:52;21663:7;21672:10;21684:12;21645:17;:52::i;:::-;21638:59;21175:530;-1:-1:-1;;;;;;;21175:530:0:o;22711:742::-;22826:12;22855:7;22851:595;;;-1:-1:-1;22886:10:0;22879:17;;22851:595;23000:17;;:21;22996:439;;23263:10;23257:17;23324:15;23311:10;23307:2;23303:19;23296:44;23211:148;23406:12;23399:20;;-1:-1:-1;;;23399:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:146:1;92:20;;121:33;92:20;121:33;:::i;165:740::-;;278:3;271:4;263:6;259:17;255:27;245:2;;300:5;293;286:20;245:2;340:6;327:20;366:4;389:18;385:2;382:26;379:2;;;411:9;379:2;449;445;441:11;472:27;495:2;491;487:11;472:27;:::i;:::-;533:15;;;564:12;;;;596:15;;;630;;;626:24;;623:33;-1:-1:-1;620:2:1;;;673:5;666;659:20;620:2;699:5;690:14;;713:163;727:2;724:1;721:9;713:163;;;784:17;;772:30;;745:1;738:9;;;;;822:12;;;;854;;713:163;;;-1:-1:-1;894:5:1;235:670;-1:-1:-1;;;;;;;235:670:1:o;910:542::-;;1007:3;1000:4;992:6;988:17;984:27;974:2;;1029:5;1022;1015:20;974:2;1069:6;1056:20;1095:18;1091:2;1088:26;1085:2;;;1117:9;1085:2;1152:54;1194:2;1175:13;;-1:-1:-1;;1171:27:1;1200:4;1167:38;1152:54;:::i;:::-;1231:2;1222:7;1215:19;1277:3;1270:4;1265:2;1257:6;1253:15;1249:26;1246:35;1243:2;;;1298:5;1291;1284:20;1243:2;1367;1360:4;1352:6;1348:17;1341:4;1332:7;1328:18;1315:55;1390:16;;;1408:4;1386:27;1379:42;;;;1394:7;964:488;-1:-1:-1;;964:488:1:o;1457:259::-;;1569:2;1557:9;1548:7;1544:23;1540:32;1537:2;;;1590:6;1582;1575:22;1537:2;1634:9;1621:23;1653:33;1680:5;1653:33;:::i;1721:402::-;;;1850:2;1838:9;1829:7;1825:23;1821:32;1818:2;;;1871:6;1863;1856:22;1818:2;1915:9;1902:23;1934:33;1961:5;1934:33;:::i;:::-;1986:5;-1:-1:-1;2043:2:1;2028:18;;2015:32;2056:35;2015:32;2056:35;:::i;:::-;2110:7;2100:17;;;1808:315;;;;;:::o;2128:470::-;;;;2274:2;2262:9;2253:7;2249:23;2245:32;2242:2;;;2295:6;2287;2280:22;2242:2;2339:9;2326:23;2358:33;2385:5;2358:33;:::i;:::-;2410:5;-1:-1:-1;2467:2:1;2452:18;;2439:32;2480:35;2439:32;2480:35;:::i;:::-;2232:366;;2534:7;;-1:-1:-1;;;2588:2:1;2573:18;;;;2560:32;;2232:366::o;2603:691::-;;;;;2775:3;2763:9;2754:7;2750:23;2746:33;2743:2;;;2797:6;2789;2782:22;2743:2;2841:9;2828:23;2860:33;2887:5;2860:33;:::i;:::-;2912:5;-1:-1:-1;2969:2:1;2954:18;;2941:32;2982:35;2941:32;2982:35;:::i;:::-;3036:7;-1:-1:-1;3090:2:1;3075:18;;3062:32;;-1:-1:-1;3145:2:1;3130:18;;3117:32;3172:18;3161:30;;3158:2;;;3209:6;3201;3194:22;3158:2;3237:51;3280:7;3271:6;3260:9;3256:22;3237:51;:::i;:::-;3227:61;;;2733:561;;;;;;;:::o;3299:438::-;;;3425:2;3413:9;3404:7;3400:23;3396:32;3393:2;;;3446:6;3438;3431:22;3393:2;3490:9;3477:23;3509:33;3536:5;3509:33;:::i;:::-;3561:5;-1:-1:-1;3618:2:1;3603:18;;3590:32;3660:15;;3653:23;3641:36;;3631:2;;3696:6;3688;3681:22;3742:327;;;3871:2;3859:9;3850:7;3846:23;3842:32;3839:2;;;3892:6;3884;3877:22;3839:2;3936:9;3923:23;3955:33;3982:5;3955:33;:::i;:::-;4007:5;4059:2;4044:18;;;;4031:32;;-1:-1:-1;;;3829:240:1:o;4074:257::-;;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4206:6;4198;4191:22;4153:2;4250:9;4237:23;4269:32;4295:5;4269:32;:::i;4336:261::-;;4458:2;4446:9;4437:7;4433:23;4429:32;4426:2;;;4479:6;4471;4464:22;4426:2;4516:9;4510:16;4535:32;4561:5;4535:32;:::i;4602:641::-;;;4733:2;4721:9;4712:7;4708:23;4704:32;4701:2;;;4754:6;4746;4739:22;4701:2;4799:9;4786:23;4828:18;4869:2;4861:6;4858:14;4855:2;;;4890:6;4882;4875:22;4855:2;4933:6;4922:9;4918:22;4908:32;;4978:7;4971:4;4967:2;4963:13;4959:27;4949:2;;5005:6;4997;4990:22;4949:2;5050;5037:16;5076:2;5068:6;5065:14;5062:2;;;5097:6;5089;5082:22;5062:2;5147:7;5142:2;5133:6;5129:2;5125:15;5121:24;5118:37;5115:2;;;5173:6;5165;5158:22;5115:2;5209;5201:11;;;;;5231:6;;-1:-1:-1;4691:552:1;;-1:-1:-1;;;;4691:552:1:o;5248:1189::-;;;;;;;5506:3;5494:9;5485:7;5481:23;5477:33;5474:2;;;5528:6;5520;5513:22;5474:2;5573:9;5560:23;5602:18;5643:2;5635:6;5632:14;5629:2;;;5664:6;5656;5649:22;5629:2;5692:51;5735:7;5726:6;5715:9;5711:22;5692:51;:::i;:::-;5682:61;;5762:48;5806:2;5795:9;5791:18;5762:48;:::i;:::-;5752:58;;5863:2;5852:9;5848:18;5835:32;5819:48;;5892:2;5882:8;5879:16;5876:2;;;5913:6;5905;5898:22;5876:2;5941:69;6002:7;5991:8;5980:9;5976:24;5941:69;:::i;:::-;5931:79;;6057:2;6046:9;6042:18;6029:32;6019:42;;6114:3;6103:9;6099:19;6086:33;6070:49;;6144:2;6134:8;6131:16;6128:2;;;6165:6;6157;6150:22;6128:2;6193:53;6238:7;6227:8;6216:9;6212:24;6193:53;:::i;:::-;6183:63;;6299:3;6288:9;6284:19;6271:33;6255:49;;6329:2;6319:8;6316:16;6313:2;;;6350:6;6342;6335:22;6313:2;;6378:53;6423:7;6412:8;6401:9;6397:24;6378:53;:::i;:::-;6368:63;;;5464:973;;;;;;;;:::o;6442:343::-;;6564:2;6552:9;6543:7;6539:23;6535:32;6532:2;;;6585:6;6577;6570:22;6532:2;6630:9;6617:23;6663:18;6655:6;6652:30;6649:2;;;6700:6;6692;6685:22;6649:2;6728:51;6771:7;6762:6;6751:9;6747:22;6728:51;:::i;6790:190::-;;6902:2;6890:9;6881:7;6877:23;6873:32;6870:2;;;6923:6;6915;6908:22;6870:2;-1:-1:-1;6951:23:1;;6860:120;-1:-1:-1;6860:120:1:o;6985:411::-;;;7124:2;7112:9;7103:7;7099:23;7095:32;7092:2;;;7145:6;7137;7130:22;7092:2;7186:9;7173:23;7163:33;;7247:2;7236:9;7232:18;7219:32;7274:18;7266:6;7263:30;7260:2;;;7311:6;7303;7296:22;7260:2;7339:51;7382:7;7373:6;7362:9;7358:22;7339:51;:::i;:::-;7329:61;;;7082:314;;;;;:::o;7401:259::-;;7482:5;7476:12;7509:6;7504:3;7497:19;7525:63;7581:6;7574:4;7569:3;7565:14;7558:4;7551:5;7547:16;7525:63;:::i;:::-;7642:2;7621:15;-1:-1:-1;;7617:29:1;7608:39;;;;7649:4;7604:50;;7452:208;-1:-1:-1;;7452:208:1:o;7665:274::-;;7832:6;7826:13;7848:53;7894:6;7889:3;7882:4;7874:6;7870:17;7848:53;:::i;:::-;7917:16;;;;;7802:137;-1:-1:-1;;7802:137:1:o;7944:993::-;;8149:3;8184:6;8178:13;8210:1;8242:2;8231:9;8227:18;8259:1;8254:126;;;;8394:1;8389:406;;;;8220:575;;8254:126;-1:-1:-1;;8287:24:1;;8275:37;;8360:1;8345:17;;8364:4;8341:28;8332:38;;;-1:-1:-1;8254:126:1;;8389:406;8439:1;8428:9;8424:17;8466:6;8461:3;8454:19;8496:4;8543:2;8538:3;8528:18;8568:3;8584:165;8598:6;8595:1;8592:13;8584:165;;;8676:14;;8663:11;;;8656:35;8719:16;;;;8613:10;;8584:165;;;-1:-1:-1;;;8769:16:1;;;-1:-1:-1;8220:575:1;;;;8826:6;8820:13;8842:55;8888:8;8883:3;8876:4;8868:6;8864:17;8842:55;:::i;:::-;8913:18;;8128:809;-1:-1:-1;;;;8128:809:1:o;8942:203::-;-1:-1:-1;;;;;9106:32:1;;;;9088:51;;9076:2;9061:18;;9043:102::o;9150:506::-;-1:-1:-1;;;;;9435:15:1;;;9417:34;;9487:15;;9482:2;9467:18;;9460:43;9534:2;9519:18;;9512:34;;;9582:3;9577:2;9562:18;;9555:31;;;9150:506;;9603:47;;9630:19;;9622:6;9603:47;:::i;:::-;9595:55;9369:287;-1:-1:-1;;;;;;9369:287:1:o;9661:187::-;9826:14;;9819:22;9801:41;;9789:2;9774:18;;9756:92::o;9853:221::-;;10002:2;9991:9;9984:21;10022:46;10064:2;10053:9;10049:18;10041:6;10022:46;:::i;10079:398::-;10281:2;10263:21;;;10320:2;10300:18;;;10293:30;10359:34;10354:2;10339:18;;10332:62;-1:-1:-1;;;10425:2:1;10410:18;;10403:32;10467:3;10452:19;;10253:224::o;10482:414::-;10684:2;10666:21;;;10723:2;10703:18;;;10696:30;10762:34;10757:2;10742:18;;10735:62;-1:-1:-1;;;10828:2:1;10813:18;;10806:48;10886:3;10871:19;;10656:240::o;10901:350::-;11103:2;11085:21;;;11142:2;11122:18;;;11115:30;11181:28;11176:2;11161:18;;11154:56;11242:2;11227:18;;11075:176::o;11256:402::-;11458:2;11440:21;;;11497:2;11477:18;;;11470:30;11536:34;11531:2;11516:18;;11509:62;-1:-1:-1;;;11602:2:1;11587:18;;11580:36;11648:3;11633:19;;11430:228::o;11663:352::-;11865:2;11847:21;;;11904:2;11884:18;;;11877:30;11943;11938:2;11923:18;;11916:58;12006:2;11991:18;;11837:178::o;12020:400::-;12222:2;12204:21;;;12261:2;12241:18;;;12234:30;12300:34;12295:2;12280:18;;12273:62;-1:-1:-1;;;12366:2:1;12351:18;;12344:34;12410:3;12395:19;;12194:226::o;12425:349::-;12627:2;12609:21;;;12666:2;12646:18;;;12639:30;12705:27;12700:2;12685:18;;12678:55;12765:2;12750:18;;12599:175::o;13186:408::-;13388:2;13370:21;;;13427:2;13407:18;;;13400:30;13466:34;13461:2;13446:18;;13439:62;-1:-1:-1;;;13532:2:1;13517:18;;13510:42;13584:3;13569:19;;13360:234::o;13599:420::-;13801:2;13783:21;;;13840:2;13820:18;;;13813:30;13879:34;13874:2;13859:18;;13852:62;13950:26;13945:2;13930:18;;13923:54;14009:3;13994:19;;13773:246::o;14024:406::-;14226:2;14208:21;;;14265:2;14245:18;;;14238:30;14304:34;14299:2;14284:18;;14277:62;-1:-1:-1;;;14370:2:1;14355:18;;14348:40;14420:3;14405:19;;14198:232::o;14435:399::-;14637:2;14619:21;;;14676:2;14656:18;;;14649:30;14715:34;14710:2;14695:18;;14688:62;-1:-1:-1;;;14781:2:1;14766:18;;14759:33;14824:3;14809:19;;14609:225::o;14839:398::-;15041:2;15023:21;;;15080:2;15060:18;;;15053:30;15119:34;15114:2;15099:18;;15092:62;-1:-1:-1;;;15185:2:1;15170:18;;15163:32;15227:3;15212:19;;15013:224::o;15242:356::-;15444:2;15426:21;;;15463:18;;;15456:30;15522:34;15517:2;15502:18;;15495:62;15589:2;15574:18;;15416:182::o;15603:408::-;15805:2;15787:21;;;15844:2;15824:18;;;15817:30;15883:34;15878:2;15863:18;;15856:62;-1:-1:-1;;;15949:2:1;15934:18;;15927:42;16001:3;15986:19;;15777:234::o;16016:408::-;16218:2;16200:21;;;16257:2;16237:18;;;16230:30;16296:34;16291:2;16276:18;;16269:62;-1:-1:-1;;;16362:2:1;16347:18;;16340:42;16414:3;16399:19;;16190:234::o;16429:356::-;16631:2;16613:21;;;16650:18;;;16643:30;16709:34;16704:2;16689:18;;16682:62;16776:2;16761:18;;16603:182::o;16790:405::-;16992:2;16974:21;;;17031:2;17011:18;;;17004:30;17070:34;17065:2;17050:18;;17043:62;-1:-1:-1;;;17136:2:1;17121:18;;17114:39;17185:3;17170:19;;16964:231::o;17200:411::-;17402:2;17384:21;;;17441:2;17421:18;;;17414:30;17480:34;17475:2;17460:18;;17453:62;-1:-1:-1;;;17546:2:1;17531:18;;17524:45;17601:3;17586:19;;17374:237::o;17616:397::-;17818:2;17800:21;;;17857:2;17837:18;;;17830:30;17896:34;17891:2;17876:18;;17869:62;-1:-1:-1;;;17962:2:1;17947:18;;17940:31;18003:3;17988:19;;17790:223::o;18018:356::-;18220:2;18202:21;;;18239:18;;;18232:30;18298:34;18293:2;18278:18;;18271:62;18365:2;18350:18;;18192:182::o;18379:413::-;18581:2;18563:21;;;18620:2;18600:18;;;18593:30;18659:34;18654:2;18639:18;;18632:62;-1:-1:-1;;;18725:2:1;18710:18;;18703:47;18782:3;18767:19;;18553:239::o;18797:353::-;18999:2;18981:21;;;19038:2;19018:18;;;19011:30;19077:31;19072:2;19057:18;;19050:59;19141:2;19126:18;;18971:179::o;19155:351::-;19357:2;19339:21;;;19396:2;19376:18;;;19369:30;19435:29;19430:2;19415:18;;19408:57;19497:2;19482:18;;19329:177::o;19511:::-;19657:25;;;19645:2;19630:18;;19612:76::o;19693:242::-;19763:2;19757:9;19793:17;;;19840:18;19825:34;;19861:22;;;19822:62;19819:2;;;19887:9;19819:2;19914;19907:22;19737:198;;-1:-1:-1;19737:198:1:o;19940:258::-;20012:1;20022:113;20036:6;20033:1;20030:13;20022:113;;;20112:11;;;20106:18;20093:11;;;20086:39;20058:2;20051:10;20022:113;;;20153:6;20150:1;20147:13;20144:2;;;-1:-1:-1;;20188:1:1;20170:16;;20163:27;19993:205::o;20203:133::-;-1:-1:-1;;;;;20280:31:1;;20270:42;;20260:2;;20326:1;20323;20316:12;20341:133;-1:-1:-1;;;;;;20417:32:1;;20407:43;;20397:2;;20464:1;20461;20454:12

Swarm Source

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