ETH Price: $2,552.91 (+3.65%)

Token

Guild Alpha Pass (GUILD)
 

Overview

Max Total Supply

500 GUILD

Holders

276

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GUILD
0x3f64e29f58b914890fb30192bc28a8aed3b109f7
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A private squad consists of 500 enthusiastic NFT collectors and talented artists. This membership provides an exclusive access to a prestigious community with a privilege access of all the benefits by holding the GUILD ALPHA PASS NFT.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GuildAlphaPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-12
*/

// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^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);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^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 meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^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() {
        _transferOwnership(_msgSender());
    }

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/1_Storage.sol











pragma solidity ^0.8.7;

contract ERC721A is Context, ERC165, IERC721Metadata, IERC721Enumerable {
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 1;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex - 1;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @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()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}


pragma solidity ^0.8.7;

contract GuildAlphaPass is ERC721A, Ownable {

    uint256 public maxSupply = 500;

    string public _baseTokenURI = "ipfs://QmYEgySW9wje8xW8joDTa8CCu6whA8yU3mzqKoVnEYKSQG/METADATA.json";

    constructor() ERC721A("Guild Alpha Pass", "GUILD", 20, 500) {}

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "Token does not exist!");
        return _baseTokenURI;
    }

    function airdrop(address[] memory addresses, uint256[] memory counts) external onlyOwner {
        require(addresses.length == counts.length, "Arrays must be the same size.");
        
        for (uint256 i = 0; i < addresses.length; i++) {
            require(counts[i] > 0 && totalSupply() + counts[i] <= maxSupply, "Count must be greater than 0 and lower than maximum allowed supply.");
        
            _safeMint(addresses[i], counts[i]);
        } 
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"counts","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600160009081556007556101f4600955610140604052604360c081815290620020db60e03980516200003a91600a91602090910190620001ff565b503480156200004857600080fd5b506040518060400160405280601081526020016f4775696c6420416c706861205061737360801b8152506040518060400160405280600581526020016411d552531160da1b81525060146101f460008111620001025760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001645760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000f9565b835162000179906001906020870190620001ff565b5082516200018f906002906020860190620001ff565b5060a09190915260805250620001a7905033620001ad565b620002e2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200020d90620002a5565b90600052602060002090601f0160209004810192826200023157600085556200027c565b82601f106200024c57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027c5782518255916020019190600101906200025f565b506200028a9291506200028e565b5090565b5b808211156200028a57600081556001016200028f565b600181811c90821680620002ba57607f821691505b60208210811415620002dc57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611dc862000313600039600081816111f10152818161121b0152611554015260005050611dc86000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063c87b56dd1161007c578063c87b56dd146102b1578063cfc86f7b146102c4578063d5abeb01146102cc578063d7224ba0146102d5578063e985e9c5146102de578063f2fde38b1461031a57600080fd5b806370a0823114610257578063715018a61461026a5780638da5cb5b1461027257806395d89b4114610283578063a22cb4651461028b578063b88d4fde1461029e57600080fd5b806323b872dd1161011557806323b872dd146101e55780632f745c59146101f857806342842e0e1461020b5780634f6ccce71461021e5780636352211e14610231578063672434821461024457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b610165610160366004611a7e565b61032d565b60405190151581526020015b60405180910390f35b61018261039a565b6040516101719190611b5b565b6101a261019d366004611ab8565b61042c565b6040516001600160a01b039091168152602001610171565b6101cd6101c836600461198d565b6104bc565b005b6101d76105d4565b604051908152602001610171565b6101cd6101f3366004611855565b6105ea565b6101d761020636600461198d565b6105f5565b6101cd610219366004611855565b61076d565b6101d761022c366004611ab8565b610788565b6101a261023f366004611ab8565b6107f0565b6101cd6102523660046119b7565b610802565b6101d7610265366004611800565b6109ab565b6101cd610a3c565b6008546001600160a01b03166101a2565b610182610a72565b6101cd610299366004611951565b610a81565b6101cd6102ac366004611891565b610b46565b6101826102bf366004611ab8565b610b7f565b610182610c62565b6101d760095481565b6101d760075481565b6101656102ec366004611822565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101cd610328366004611800565b610cf0565b60006001600160e01b031982166380ac58cd60e01b148061035e57506001600160e01b03198216635b5e139f60e01b145b8061037957506001600160e01b0319821663780e9d6360e01b145b8061039457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546103a990611ce4565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611ce4565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000610439826000541190565b6104a05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104c7826107f0565b9050806001600160a01b0316836001600160a01b031614156105365760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610497565b336001600160a01b0382161480610552575061055281336102ec565b6105c45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610497565b6105cf838383610d8b565b505050565b600060016000546105e59190611cb6565b905090565b6105cf838383610de7565b6000610600836109ab565b82106106595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610497565b60006106636105d4565b905060008060005b8381101561070d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156106be57805192505b876001600160a01b0316836001600160a01b031614156106fa57868414156106ec5750935061039492505050565b836106f681611d1f565b9450505b508061070581611d1f565b91505061066b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610497565b6105cf83838360405180602001604052806000815250610b46565b60006107926105d4565b82106107ec5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610497565b5090565b60006107fb8261116f565b5192915050565b6008546001600160a01b0316331461082c5760405162461bcd60e51b815260040161049790611b6e565b805182511461087d5760405162461bcd60e51b815260206004820152601d60248201527f417272617973206d757374206265207468652073616d652073697a652e0000006044820152606401610497565b60005b82518110156105cf57600082828151811061089d5761089d611d50565b60200260200101511180156108df57506009548282815181106108c2576108c2611d50565b60200260200101516108d26105d4565b6108dc9190611c76565b11155b61095d5760405162461bcd60e51b815260206004820152604360248201527f436f756e74206d7573742062652067726561746572207468616e203020616e6460448201527f206c6f776572207468616e206d6178696d756d20616c6c6f7765642073757070606482015262363c9760e91b608482015260a401610497565b61099983828151811061097257610972611d50565b602002602001015183838151811061098c5761098c611d50565b6020026020010151611319565b806109a381611d1f565b915050610880565b60006001600160a01b038216610a175760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610497565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610a665760405162461bcd60e51b815260040161049790611b6e565b610a706000611337565b565b6060600280546103a990611ce4565b6001600160a01b038216331415610ada5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610497565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b51848484610de7565b610b5d84848484611389565b610b795760405162461bcd60e51b815260040161049790611ba3565b50505050565b6060610b8c826000541190565b610bd05760405162461bcd60e51b8152602060048201526015602482015274546f6b656e20646f6573206e6f742065786973742160581b6044820152606401610497565b600a8054610bdd90611ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990611ce4565b8015610c565780601f10610c2b57610100808354040283529160200191610c56565b820191906000526020600020905b815481529060010190602001808311610c3957829003601f168201915b50505050509050919050565b600a8054610c6f90611ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90611ce4565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161049790611b6e565b6001600160a01b038116610d7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610497565b610d8881611337565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610df28261116f565b80519091506000906001600160a01b0316336001600160a01b03161480610e29575033610e1e8461042c565b6001600160a01b0316145b80610e3b57508151610e3b90336102ec565b905080610ea55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610497565b846001600160a01b031682600001516001600160a01b031614610f195760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610497565b6001600160a01b038416610f7d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610497565b610f8d6000848460000151610d8b565b6001600160a01b0385166000908152600460205260408120805460019290610fbf9084906001600160801b0316611c8e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261100b91859116611c4b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611093846001611c76565b6000818152600360205260409020549091506001600160a01b0316611125576110bd816000541190565b156111255760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261118e826000541190565b6111ed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610497565b60007f0000000000000000000000000000000000000000000000000000000000000000831061124e576112407f000000000000000000000000000000000000000000000000000000000000000084611cb6565b61124b906001611c76565b90505b825b8181106112b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112a557949350505050565b50806112b081611ccd565b915050611250565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610497565b611333828260405180602001604052806000815250611497565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561148b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113cd903390899088908890600401611b1e565b602060405180830381600087803b1580156113e757600080fd5b505af1925050508015611417575060408051601f3d908101601f1916820190925261141491810190611a9b565b60015b611471573d808015611445576040519150601f19603f3d011682016040523d82523d6000602084013e61144a565b606091505b5080516114695760405162461bcd60e51b815260040161049790611ba3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061148f565b5060015b949350505050565b6000546001600160a01b0384166114fa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610497565b611505816000541190565b156115525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610497565b7f00000000000000000000000000000000000000000000000000000000000000008311156115cd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610497565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611629908790611c4b565b6001600160801b031681526020018583602001516116479190611c4b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156117675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172b6000888488611389565b6117475760405162461bcd60e51b815260040161049790611ba3565b8161175181611d1f565b925050808061175f90611d1f565b9150506116de565b506000819055611167565b80356001600160a01b038116811461178957600080fd5b919050565b600082601f83011261179f57600080fd5b813560206117b46117af83611c27565b611bf6565b80838252828201915082860187848660051b89010111156117d457600080fd5b60005b858110156117f3578135845292840192908401906001016117d7565b5090979650505050505050565b60006020828403121561181257600080fd5b61181b82611772565b9392505050565b6000806040838503121561183557600080fd5b61183e83611772565b915061184c60208401611772565b90509250929050565b60008060006060848603121561186a57600080fd5b61187384611772565b925061188160208501611772565b9150604084013590509250925092565b600080600080608085870312156118a757600080fd5b6118b085611772565b935060206118bf818701611772565b935060408601359250606086013567ffffffffffffffff808211156118e357600080fd5b818801915088601f8301126118f757600080fd5b81358181111561190957611909611d66565b61191b601f8201601f19168501611bf6565b9150808252898482850101111561193157600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561196457600080fd5b61196d83611772565b91506020830135801515811461198257600080fd5b809150509250929050565b600080604083850312156119a057600080fd5b6119a983611772565b946020939093013593505050565b600080604083850312156119ca57600080fd5b823567ffffffffffffffff808211156119e257600080fd5b818501915085601f8301126119f657600080fd5b81356020611a066117af83611c27565b8083825282820191508286018a848660051b8901011115611a2657600080fd5b600096505b84871015611a5057611a3c81611772565b835260019690960195918301918301611a2b565b5096505086013592505080821115611a6757600080fd5b50611a748582860161178e565b9150509250929050565b600060208284031215611a9057600080fd5b813561181b81611d7c565b600060208284031215611aad57600080fd5b815161181b81611d7c565b600060208284031215611aca57600080fd5b5035919050565b6000815180845260005b81811015611af757602081850181015186830182015201611adb565b81811115611b09576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5190830184611ad1565b9695505050505050565b60208152600061181b6020830184611ad1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c1f57611c1f611d66565b604052919050565b600067ffffffffffffffff821115611c4157611c41611d66565b5060051b60200190565b60006001600160801b03808316818516808303821115611c6d57611c6d611d3a565b01949350505050565b60008219821115611c8957611c89611d3a565b500190565b60006001600160801b0383811690831681811015611cae57611cae611d3a565b039392505050565b600082821015611cc857611cc8611d3a565b500390565b600081611cdc57611cdc611d3a565b506000190190565b600181811c90821680611cf857607f821691505b60208210811415611d1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3357611d33611d3a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8857600080fdfea2646970667358221220b576d51434dedb78ab7a3607e3068f5312524f0a893dd19bb02a9c8047a7ee0164736f6c63430008070033697066733a2f2f516d59456779535739776a65387857386a6f4454613843437536776841387955336d7a714b6f566e45594b5351472f4d455441444154412e6a736f6e

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806370a08231116100c3578063c87b56dd1161007c578063c87b56dd146102b1578063cfc86f7b146102c4578063d5abeb01146102cc578063d7224ba0146102d5578063e985e9c5146102de578063f2fde38b1461031a57600080fd5b806370a0823114610257578063715018a61461026a5780638da5cb5b1461027257806395d89b4114610283578063a22cb4651461028b578063b88d4fde1461029e57600080fd5b806323b872dd1161011557806323b872dd146101e55780632f745c59146101f857806342842e0e1461020b5780634f6ccce71461021e5780636352211e14610231578063672434821461024457600080fd5b806301ffc9a71461015257806306fdde031461017a578063081812fc1461018f578063095ea7b3146101ba57806318160ddd146101cf575b600080fd5b610165610160366004611a7e565b61032d565b60405190151581526020015b60405180910390f35b61018261039a565b6040516101719190611b5b565b6101a261019d366004611ab8565b61042c565b6040516001600160a01b039091168152602001610171565b6101cd6101c836600461198d565b6104bc565b005b6101d76105d4565b604051908152602001610171565b6101cd6101f3366004611855565b6105ea565b6101d761020636600461198d565b6105f5565b6101cd610219366004611855565b61076d565b6101d761022c366004611ab8565b610788565b6101a261023f366004611ab8565b6107f0565b6101cd6102523660046119b7565b610802565b6101d7610265366004611800565b6109ab565b6101cd610a3c565b6008546001600160a01b03166101a2565b610182610a72565b6101cd610299366004611951565b610a81565b6101cd6102ac366004611891565b610b46565b6101826102bf366004611ab8565b610b7f565b610182610c62565b6101d760095481565b6101d760075481565b6101656102ec366004611822565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101cd610328366004611800565b610cf0565b60006001600160e01b031982166380ac58cd60e01b148061035e57506001600160e01b03198216635b5e139f60e01b145b8061037957506001600160e01b0319821663780e9d6360e01b145b8061039457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546103a990611ce4565b80601f01602080910402602001604051908101604052809291908181526020018280546103d590611ce4565b80156104225780601f106103f757610100808354040283529160200191610422565b820191906000526020600020905b81548152906001019060200180831161040557829003601f168201915b5050505050905090565b6000610439826000541190565b6104a05760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104c7826107f0565b9050806001600160a01b0316836001600160a01b031614156105365760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610497565b336001600160a01b0382161480610552575061055281336102ec565b6105c45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610497565b6105cf838383610d8b565b505050565b600060016000546105e59190611cb6565b905090565b6105cf838383610de7565b6000610600836109ab565b82106106595760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610497565b60006106636105d4565b905060008060005b8381101561070d576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156106be57805192505b876001600160a01b0316836001600160a01b031614156106fa57868414156106ec5750935061039492505050565b836106f681611d1f565b9450505b508061070581611d1f565b91505061066b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610497565b6105cf83838360405180602001604052806000815250610b46565b60006107926105d4565b82106107ec5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610497565b5090565b60006107fb8261116f565b5192915050565b6008546001600160a01b0316331461082c5760405162461bcd60e51b815260040161049790611b6e565b805182511461087d5760405162461bcd60e51b815260206004820152601d60248201527f417272617973206d757374206265207468652073616d652073697a652e0000006044820152606401610497565b60005b82518110156105cf57600082828151811061089d5761089d611d50565b60200260200101511180156108df57506009548282815181106108c2576108c2611d50565b60200260200101516108d26105d4565b6108dc9190611c76565b11155b61095d5760405162461bcd60e51b815260206004820152604360248201527f436f756e74206d7573742062652067726561746572207468616e203020616e6460448201527f206c6f776572207468616e206d6178696d756d20616c6c6f7765642073757070606482015262363c9760e91b608482015260a401610497565b61099983828151811061097257610972611d50565b602002602001015183838151811061098c5761098c611d50565b6020026020010151611319565b806109a381611d1f565b915050610880565b60006001600160a01b038216610a175760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610497565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610a665760405162461bcd60e51b815260040161049790611b6e565b610a706000611337565b565b6060600280546103a990611ce4565b6001600160a01b038216331415610ada5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610497565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b51848484610de7565b610b5d84848484611389565b610b795760405162461bcd60e51b815260040161049790611ba3565b50505050565b6060610b8c826000541190565b610bd05760405162461bcd60e51b8152602060048201526015602482015274546f6b656e20646f6573206e6f742065786973742160581b6044820152606401610497565b600a8054610bdd90611ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0990611ce4565b8015610c565780601f10610c2b57610100808354040283529160200191610c56565b820191906000526020600020905b815481529060010190602001808311610c3957829003601f168201915b50505050509050919050565b600a8054610c6f90611ce4565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9b90611ce4565b8015610ce85780601f10610cbd57610100808354040283529160200191610ce8565b820191906000526020600020905b815481529060010190602001808311610ccb57829003601f168201915b505050505081565b6008546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161049790611b6e565b6001600160a01b038116610d7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610497565b610d8881611337565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610df28261116f565b80519091506000906001600160a01b0316336001600160a01b03161480610e29575033610e1e8461042c565b6001600160a01b0316145b80610e3b57508151610e3b90336102ec565b905080610ea55760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610497565b846001600160a01b031682600001516001600160a01b031614610f195760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610497565b6001600160a01b038416610f7d5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610497565b610f8d6000848460000151610d8b565b6001600160a01b0385166000908152600460205260408120805460019290610fbf9084906001600160801b0316611c8e565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261100b91859116611c4b565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611093846001611c76565b6000818152600360205260409020549091506001600160a01b0316611125576110bd816000541190565b156111255760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261118e826000541190565b6111ed5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610497565b60007f0000000000000000000000000000000000000000000000000000000000000014831061124e576112407f000000000000000000000000000000000000000000000000000000000000001484611cb6565b61124b906001611c76565b90505b825b8181106112b8576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156112a557949350505050565b50806112b081611ccd565b915050611250565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610497565b611333828260405180602001604052806000815250611497565b5050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561148b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113cd903390899088908890600401611b1e565b602060405180830381600087803b1580156113e757600080fd5b505af1925050508015611417575060408051601f3d908101601f1916820190925261141491810190611a9b565b60015b611471573d808015611445576040519150601f19603f3d011682016040523d82523d6000602084013e61144a565b606091505b5080516114695760405162461bcd60e51b815260040161049790611ba3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061148f565b5060015b949350505050565b6000546001600160a01b0384166114fa5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610497565b611505816000541190565b156115525760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610497565b7f00000000000000000000000000000000000000000000000000000000000000148311156115cd5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610497565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611629908790611c4b565b6001600160801b031681526020018583602001516116479190611c4b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156117675760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461172b6000888488611389565b6117475760405162461bcd60e51b815260040161049790611ba3565b8161175181611d1f565b925050808061175f90611d1f565b9150506116de565b506000819055611167565b80356001600160a01b038116811461178957600080fd5b919050565b600082601f83011261179f57600080fd5b813560206117b46117af83611c27565b611bf6565b80838252828201915082860187848660051b89010111156117d457600080fd5b60005b858110156117f3578135845292840192908401906001016117d7565b5090979650505050505050565b60006020828403121561181257600080fd5b61181b82611772565b9392505050565b6000806040838503121561183557600080fd5b61183e83611772565b915061184c60208401611772565b90509250929050565b60008060006060848603121561186a57600080fd5b61187384611772565b925061188160208501611772565b9150604084013590509250925092565b600080600080608085870312156118a757600080fd5b6118b085611772565b935060206118bf818701611772565b935060408601359250606086013567ffffffffffffffff808211156118e357600080fd5b818801915088601f8301126118f757600080fd5b81358181111561190957611909611d66565b61191b601f8201601f19168501611bf6565b9150808252898482850101111561193157600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561196457600080fd5b61196d83611772565b91506020830135801515811461198257600080fd5b809150509250929050565b600080604083850312156119a057600080fd5b6119a983611772565b946020939093013593505050565b600080604083850312156119ca57600080fd5b823567ffffffffffffffff808211156119e257600080fd5b818501915085601f8301126119f657600080fd5b81356020611a066117af83611c27565b8083825282820191508286018a848660051b8901011115611a2657600080fd5b600096505b84871015611a5057611a3c81611772565b835260019690960195918301918301611a2b565b5096505086013592505080821115611a6757600080fd5b50611a748582860161178e565b9150509250929050565b600060208284031215611a9057600080fd5b813561181b81611d7c565b600060208284031215611aad57600080fd5b815161181b81611d7c565b600060208284031215611aca57600080fd5b5035919050565b6000815180845260005b81811015611af757602081850181015186830182015201611adb565b81811115611b09576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5190830184611ad1565b9695505050505050565b60208152600061181b6020830184611ad1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611c1f57611c1f611d66565b604052919050565b600067ffffffffffffffff821115611c4157611c41611d66565b5060051b60200190565b60006001600160801b03808316818516808303821115611c6d57611c6d611d3a565b01949350505050565b60008219821115611c8957611c89611d3a565b500190565b60006001600160801b0383811690831681811015611cae57611cae611d3a565b039392505050565b600082821015611cc857611cc8611d3a565b500390565b600081611cdc57611cdc611d3a565b506000190190565b600181811c90821680611cf857607f821691505b60208210811415611d1957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d3357611d33611d3a565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d8857600080fdfea2646970667358221220b576d51434dedb78ab7a3607e3068f5312524f0a893dd19bb02a9c8047a7ee0164736f6c63430008070033

Deployed Bytecode Sourcemap

39433:935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27100:370;;;;;;:::i;:::-;;:::i;:::-;;;6448:14:1;;6441:22;6423:41;;6411:2;6396:18;27100:370:0;;;;;;;;28826:94;;;:::i;:::-;;;;;;;:::i;30351:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5746:32:1;;;5728:51;;5716:2;5701:18;30351:204:0;5582:203:1;29914:379:0;;;;;;:::i;:::-;;:::i;:::-;;25657:98;;;:::i;:::-;;;15671:25:1;;;15659:2;15644:18;25657:98:0;15525:177:1;31201:142:0;;;;;;:::i;:::-;;:::i;26292:744::-;;;;;;:::i;:::-;;:::i;31406:157::-;;;;;;:::i;:::-;;:::i;25824:177::-;;;;;;:::i;:::-;;:::i;28649:118::-;;;;;;:::i;:::-;;:::i;39891:472::-;;;;;;:::i;:::-;;:::i;27526:211::-;;;;;;:::i;:::-;;:::i;23000:103::-;;;:::i;22349:87::-;22422:6;;-1:-1:-1;;;;;22422:6:0;22349:87;;28981:98;;;:::i;30619:274::-;;;;;;:::i;:::-;;:::i;31626:311::-;;;;;;:::i;:::-;;:::i;39703:180::-;;;;;;:::i;:::-;;:::i;39525:99::-;;;:::i;39486:30::-;;;;;;36041:43;;;;;;30956:186;;;;;;:::i;:::-;-1:-1:-1;;;;;31101:25:0;;;31078:4;31101:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30956:186;23258:201;;;;;;:::i;:::-;;:::i;27100:370::-;27227:4;-1:-1:-1;;;;;;27257:40:0;;-1:-1:-1;;;27257:40:0;;:99;;-1:-1:-1;;;;;;;27308:48:0;;-1:-1:-1;;;27308:48:0;27257:99;:160;;;-1:-1:-1;;;;;;;27367:50:0;;-1:-1:-1;;;27367:50:0;27257:160;:207;;;-1:-1:-1;;;;;;;;;;9712:40:0;;;27428:36;27243:221;27100:370;-1:-1:-1;;27100:370:0:o;28826:94::-;28880:13;28909:5;28902:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28826:94;:::o;30351:204::-;30419:7;30443:16;30451:7;32233:4;32263:12;-1:-1:-1;32253:22:0;32176:105;30443:16;30435:74;;;;-1:-1:-1;;;30435:74:0;;14910:2:1;30435:74:0;;;14892:21:1;14949:2;14929:18;;;14922:30;14988:34;14968:18;;;14961:62;-1:-1:-1;;;15039:18:1;;;15032:43;15092:19;;30435:74:0;;;;;;;;;-1:-1:-1;30525:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30525:24:0;;30351:204::o;29914:379::-;29983:13;29999:24;30015:7;29999:15;:24::i;:::-;29983:40;;30044:5;-1:-1:-1;;;;;30038:11:0;:2;-1:-1:-1;;;;;30038:11:0;;;30030:58;;;;-1:-1:-1;;;30030:58:0;;12146:2:1;30030:58:0;;;12128:21:1;12185:2;12165:18;;;12158:30;12224:34;12204:18;;;12197:62;-1:-1:-1;;;12275:18:1;;;12268:32;12317:19;;30030:58:0;11944:398:1;30030:58:0;21153:10;-1:-1:-1;;;;;30113:21:0;;;;:62;;-1:-1:-1;30138:37:0;30155:5;21153:10;30956:186;:::i;30138:37::-;30097:153;;;;-1:-1:-1;;;30097:153:0;;9408:2:1;30097:153:0;;;9390:21:1;9447:2;9427:18;;;9420:30;9486:34;9466:18;;;9459:62;9557:27;9537:18;;;9530:55;9602:19;;30097:153:0;9206:421:1;30097:153:0;30259:28;30268:2;30272:7;30281:5;30259:8;:28::i;:::-;29976:317;29914:379;;:::o;25657:98::-;25710:7;25748:1;25733:12;;:16;;;;:::i;:::-;25726:23;;25657:98;:::o;31201:142::-;31309:28;31319:4;31325:2;31329:7;31309:9;:28::i;26292:744::-;26401:7;26436:16;26446:5;26436:9;:16::i;:::-;26428:5;:24;26420:71;;;;-1:-1:-1;;;26420:71:0;;6901:2:1;26420:71:0;;;6883:21:1;6940:2;6920:18;;;6913:30;6979:34;6959:18;;;6952:62;-1:-1:-1;;;7030:18:1;;;7023:32;7072:19;;26420:71:0;6699:398:1;26420:71:0;26498:22;26523:13;:11;:13::i;:::-;26498:38;;26543:19;26573:25;26623:9;26618:350;26642:14;26638:1;:18;26618:350;;;26672:31;26706:14;;;:11;:14;;;;;;;;;26672:48;;;;;;;;;-1:-1:-1;;;;;26672:48:0;;;;;-1:-1:-1;;;26672:48:0;;;;;;;;;;;;26733:28;26729:89;;26794:14;;;-1:-1:-1;26729:89:0;26851:5;-1:-1:-1;;;;;26830:26:0;:17;-1:-1:-1;;;;;26830:26:0;;26826:135;;;26888:5;26873:11;:20;26869:59;;;-1:-1:-1;26915:1:0;-1:-1:-1;26908:8:0;;-1:-1:-1;;;26908:8:0;26869:59;26938:13;;;;:::i;:::-;;;;26826:135;-1:-1:-1;26658:3:0;;;;:::i;:::-;;;;26618:350;;;-1:-1:-1;26974:56:0;;-1:-1:-1;;;26974:56:0;;13729:2:1;26974:56:0;;;13711:21:1;13768:2;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;-1:-1:-1;;;13858:18:1;;;13851:44;13912:19;;26974:56:0;13527:410:1;31406:157:0;31518:39;31535:4;31541:2;31545:7;31518:39;;;;;;;;;;;;:16;:39::i;25824:177::-;25891:7;25923:13;:11;:13::i;:::-;25915:5;:21;25907:69;;;;-1:-1:-1;;;25907:69:0;;8122:2:1;25907:69:0;;;8104:21:1;8161:2;8141:18;;;8134:30;8200:34;8180:18;;;8173:62;-1:-1:-1;;;8251:18:1;;;8244:33;8294:19;;25907:69:0;7920:399:1;25907:69:0;-1:-1:-1;25990:5:0;25824:177::o;28649:118::-;28713:7;28736:20;28748:7;28736:11;:20::i;:::-;:25;;28649:118;-1:-1:-1;;28649:118:0:o;39891:472::-;22422:6;;-1:-1:-1;;;;;22422:6:0;21153:10;22569:23;22561:68;;;;-1:-1:-1;;;22561:68:0;;;;;;;:::i;:::-;40019:6:::1;:13;39999:9;:16;:33;39991:75;;;::::0;-1:-1:-1;;;39991:75:0;;10246:2:1;39991:75:0::1;::::0;::::1;10228:21:1::0;10285:2;10265:18;;;10258:30;10324:31;10304:18;;;10297:59;10373:18;;39991:75:0::1;10044:353:1::0;39991:75:0::1;40092:9;40087:268;40111:9;:16;40107:1;:20;40087:268;;;40169:1;40157:6;40164:1;40157:9;;;;;;;;:::i;:::-;;;;;;;:13;:55;;;;;40203:9;;40190:6;40197:1;40190:9;;;;;;;;:::i;:::-;;;;;;;40174:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;40157:55;40149:135;;;::::0;-1:-1:-1;;;40149:135:0;;8932:2:1;40149:135:0::1;::::0;::::1;8914:21:1::0;8971:2;8951:18;;;8944:30;9010:34;8990:18;;;8983:62;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:19:1;;;9125:34;9176:19;;40149:135:0::1;8730:471:1::0;40149:135:0::1;40309:34;40319:9;40329:1;40319:12;;;;;;;;:::i;:::-;;;;;;;40333:6;40340:1;40333:9;;;;;;;;:::i;:::-;;;;;;;40309;:34::i;:::-;40129:3:::0;::::1;::::0;::::1;:::i;:::-;;;;40087:268;;27526:211:::0;27590:7;-1:-1:-1;;;;;27614:19:0;;27606:75;;;;-1:-1:-1;;;27606:75:0;;9834:2:1;27606:75:0;;;9816:21:1;9873:2;9853:18;;;9846:30;9912:34;9892:18;;;9885:62;-1:-1:-1;;;9963:18:1;;;9956:41;10014:19;;27606:75:0;9632:407:1;27606:75:0;-1:-1:-1;;;;;;27703:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27703:27:0;;27526:211::o;23000:103::-;22422:6;;-1:-1:-1;;;;;22422:6:0;21153:10;22569:23;22561:68;;;;-1:-1:-1;;;22561:68:0;;;;;;;:::i;:::-;23065:30:::1;23092:1;23065:18;:30::i;:::-;23000:103::o:0;28981:98::-;29037:13;29066:7;29059:14;;;;;:::i;30619:274::-;-1:-1:-1;;;;;30710:24:0;;21153:10;30710:24;;30702:63;;;;-1:-1:-1;;;30702:63:0;;11372:2:1;30702:63:0;;;11354:21:1;11411:2;11391:18;;;11384:30;11450:28;11430:18;;;11423:56;11496:18;;30702:63:0;11170:350:1;30702:63:0;21153:10;30774:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30774:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30774:53:0;;;;;;;;;;30839:48;;6423:41:1;;;30774:42:0;;21153:10;30839:48;;6396:18:1;30839:48:0;;;;;;;30619:274;;:::o;31626:311::-;31763:28;31773:4;31779:2;31783:7;31763:9;:28::i;:::-;31814:48;31837:4;31843:2;31847:7;31856:5;31814:22;:48::i;:::-;31798:133;;;;-1:-1:-1;;;31798:133:0;;;;;;;:::i;:::-;31626:311;;;;:::o;39703:180::-;39768:13;39802:16;39810:7;32233:4;32263:12;-1:-1:-1;32253:22:0;32176:105;39802:16;39794:50;;;;-1:-1:-1;;;39794:50:0;;14560:2:1;39794:50:0;;;14542:21:1;14599:2;14579:18;;;14572:30;-1:-1:-1;;;14618:18:1;;;14611:51;14679:18;;39794:50:0;14358:345:1;39794:50:0;39862:13;39855:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39703:180;;;:::o;39525:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23258:201::-;22422:6;;-1:-1:-1;;;;;22422:6:0;21153:10;22569:23;22561:68;;;;-1:-1:-1;;;22561:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23347:22:0;::::1;23339:73;;;::::0;-1:-1:-1;;;23339:73:0;;7304:2:1;23339:73:0::1;::::0;::::1;7286:21:1::0;7343:2;7323:18;;;7316:30;7382:34;7362:18;;;7355:62;-1:-1:-1;;;7433:18:1;;;7426:36;7479:19;;23339:73:0::1;7102:402:1::0;23339:73:0::1;23423:28;23442:8;23423:18;:28::i;:::-;23258:201:::0;:::o;35863:172::-;35960:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35960:29:0;-1:-1:-1;;;;;35960:29:0;;;;;;;;;36001:28;;35960:24;;36001:28;;;;;;;35863:172;;;:::o;34228:1529::-;34325:35;34363:20;34375:7;34363:11;:20::i;:::-;34434:18;;34325:58;;-1:-1:-1;34392:22:0;;-1:-1:-1;;;;;34418:34:0;21153:10;-1:-1:-1;;;;;34418:34:0;;:81;;;-1:-1:-1;21153:10:0;34463:20;34475:7;34463:11;:20::i;:::-;-1:-1:-1;;;;;34463:36:0;;34418:81;:142;;;-1:-1:-1;34527:18:0;;34510:50;;21153:10;30956:186;:::i;34510:50::-;34392:169;;34586:17;34570:101;;;;-1:-1:-1;;;34570:101:0;;11727:2:1;34570:101:0;;;11709:21:1;11766:2;11746:18;;;11739:30;11805:34;11785:18;;;11778:62;-1:-1:-1;;;11856:18:1;;;11849:48;11914:19;;34570:101:0;11525:414:1;34570:101:0;34718:4;-1:-1:-1;;;;;34696:26:0;:13;:18;;;-1:-1:-1;;;;;34696:26:0;;34680:98;;;;-1:-1:-1;;;34680:98:0;;10604:2:1;34680:98:0;;;10586:21:1;10643:2;10623:18;;;10616:30;10682:34;10662:18;;;10655:62;-1:-1:-1;;;10733:18:1;;;10726:36;10779:19;;34680:98:0;10402:402:1;34680:98:0;-1:-1:-1;;;;;34793:16:0;;34785:66;;;;-1:-1:-1;;;34785:66:0;;8526:2:1;34785:66:0;;;8508:21:1;8565:2;8545:18;;;8538:30;8604:34;8584:18;;;8577:62;-1:-1:-1;;;8655:18:1;;;8648:35;8700:19;;34785:66:0;8324:401:1;34785:66:0;34960:49;34977:1;34981:7;34990:13;:18;;;34960:8;:49::i;:::-;-1:-1:-1;;;;;35018:18:0;;;;;;:12;:18;;;;;:31;;35048:1;;35018:18;:31;;35048:1;;-1:-1:-1;;;;;35018:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35018:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35056:16:0;;-1:-1:-1;35056:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35056:16:0;;:29;;-1:-1:-1;;35056:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35056:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35115:43:0;;;;;;;;-1:-1:-1;;;;;35115:43:0;;;;;;35141:15;35115:43;;;;;;;;;-1:-1:-1;35092:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35092:66:0;-1:-1:-1;;;;;;35092:66:0;;;;;;;;;;;35408:11;35104:7;-1:-1:-1;35408:11:0;:::i;:::-;35471:1;35430:24;;;:11;:24;;;;;:29;35386:33;;-1:-1:-1;;;;;;35430:29:0;35426:236;;35488:20;35496:11;32233:4;32263:12;-1:-1:-1;32253:22:0;32176:105;35488:20;35484:171;;;35548:97;;;;;;;;35575:18;;-1:-1:-1;;;;;35548:97:0;;;;;;35606:28;;;;35548:97;;;;;;;;;;-1:-1:-1;35521:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35521:124:0;-1:-1:-1;;;;;;35521:124:0;;;;;;;;;;;;35484:171;35694:7;35690:2;-1:-1:-1;;;;;35675:27:0;35684:4;-1:-1:-1;;;;;35675:27:0;;;;;;;;;;;35709:42;34318:1439;;;34228:1529;;;:::o;27989:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28106:16:0;28114:7;32233:4;32263:12;-1:-1:-1;32253:22:0;32176:105;28106:16;28098:71;;;;-1:-1:-1;;;28098:71:0;;7711:2:1;28098:71:0;;;7693:21:1;7750:2;7730:18;;;7723:30;7789:34;7769:18;;;7762:62;-1:-1:-1;;;7840:18:1;;;7833:40;7890:19;;28098:71:0;7509:406:1;28098:71:0;28178:26;28226:12;28215:7;:23;28211:93;;28270:22;28280:12;28270:7;:22;:::i;:::-;:26;;28295:1;28270:26;:::i;:::-;28249:47;;28211:93;28332:7;28312:212;28349:18;28341:4;:26;28312:212;;28386:31;28420:17;;;:11;:17;;;;;;;;;28386:51;;;;;;;;;-1:-1:-1;;;;;28386:51:0;;;;;-1:-1:-1;;;28386:51:0;;;;;;;;;;;;28450:28;28446:71;;28498:9;27989:606;-1:-1:-1;;;;27989:606:0:o;28446:71::-;-1:-1:-1;28369:6:0;;;;:::i;:::-;;;;28312:212;;;-1:-1:-1;28532:57:0;;-1:-1:-1;;;28532:57:0;;14144:2:1;28532:57:0;;;14126:21:1;14183:2;14163:18;;;14156:30;14222:34;14202:18;;;14195:62;-1:-1:-1;;;14273:18:1;;;14266:45;14328:19;;28532:57:0;13942:411:1;32287:98:0;32352:27;32362:2;32366:8;32352:27;;;;;;;;;;;;:9;:27::i;:::-;32287:98;;:::o;23619:191::-;23712:6;;;-1:-1:-1;;;;;23729:17:0;;;-1:-1:-1;;;;;;23729:17:0;;;;;;;23762:40;;23712:6;;;23729:17;23712:6;;23762:40;;23693:16;;23762:40;23682:128;23619:191;:::o;37578:690::-;37715:4;-1:-1:-1;;;;;37732:13:0;;11295:19;:23;37728:535;;37771:72;;-1:-1:-1;;;37771:72:0;;-1:-1:-1;;;;;37771:36:0;;;;;:72;;21153:10;;37822:4;;37828:7;;37837:5;;37771:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37771:72:0;;;;;;;;-1:-1:-1;;37771:72:0;;;;;;;;;;;;:::i;:::-;;;37758:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38002:13:0;;37998:215;;38035:61;;-1:-1:-1;;;38035:61:0;;;;;;;:::i;37998:215::-;38181:6;38175:13;38166:6;38162:2;38158:15;38151:38;37758:464;-1:-1:-1;;;;;;37893:55:0;-1:-1:-1;;;37893:55:0;;-1:-1:-1;37886:62:0;;37728:535;-1:-1:-1;38251:4:0;37728:535;37578:690;;;;;;:::o;32724:1272::-;32829:20;32852:12;-1:-1:-1;;;;;32879:16:0;;32871:62;;;;-1:-1:-1;;;32871:62:0;;13327:2:1;32871:62:0;;;13309:21:1;13366:2;13346:18;;;13339:30;13405:34;13385:18;;;13378:62;-1:-1:-1;;;13456:18:1;;;13449:31;13497:19;;32871:62:0;13125:397:1;32871:62:0;33070:21;33078:12;32233:4;32263:12;-1:-1:-1;32253:22:0;32176:105;33070:21;33069:22;33061:64;;;;-1:-1:-1;;;33061:64:0;;12969:2:1;33061:64:0;;;12951:21:1;13008:2;12988:18;;;12981:30;13047:31;13027:18;;;13020:59;13096:18;;33061:64:0;12767:353:1;33061:64:0;33152:12;33140:8;:24;;33132:71;;;;-1:-1:-1;;;33132:71:0;;15324:2:1;33132:71:0;;;15306:21:1;15363:2;15343:18;;;15336:30;15402:34;15382:18;;;15375:62;-1:-1:-1;;;15453:18:1;;;15446:32;15495:19;;33132:71:0;15122:398:1;33132:71:0;-1:-1:-1;;;;;33315:16:0;;33282:30;33315:16;;;:12;:16;;;;;;;;;33282:49;;;;;;;;;-1:-1:-1;;;;;33282:49:0;;;;;-1:-1:-1;;;33282:49:0;;;;;;;;;;;33357:119;;;;;;;;33377:19;;33282:49;;33357:119;;;33377:39;;33407:8;;33377:39;:::i;:::-;-1:-1:-1;;;;;33357:119:0;;;;;33460:8;33425:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33357:119:0;;;;;;-1:-1:-1;;;;;33338:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33338:138:0;;;;;;;;;;;;33511:43;;;;;;;;;;;33537:15;33511:43;;;;;;;;33483:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33483:71:0;-1:-1:-1;;;;;;33483:71:0;;;;;;;;;;;;;;;;;;33495:12;;33607:281;33631:8;33627:1;:12;33607:281;;;33660:38;;33685:12;;-1:-1:-1;;;;;33660:38:0;;;33677:1;;33660:38;;33677:1;;33660:38;33725:59;33756:1;33760:2;33764:12;33778:5;33725:22;:59::i;:::-;33707:150;;;;-1:-1:-1;;;33707:150:0;;;;;;;:::i;:::-;33866:14;;;;:::i;:::-;;;;33641:3;;;;;:::i;:::-;;;;33607:281;;;-1:-1:-1;33896:12:0;:27;;;33930:60;31626:311;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;870:186;-1:-1:-1;;;870:186:1:o;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:980::-;1754:6;1762;1770;1778;1831:3;1819:9;1810:7;1806:23;1802:33;1799:53;;;1848:1;1845;1838:12;1799:53;1871:29;1890:9;1871:29;:::i;:::-;1861:39;;1919:2;1940:38;1974:2;1963:9;1959:18;1940:38;:::i;:::-;1930:48;;2025:2;2014:9;2010:18;1997:32;1987:42;;2080:2;2069:9;2065:18;2052:32;2103:18;2144:2;2136:6;2133:14;2130:34;;;2160:1;2157;2150:12;2130:34;2198:6;2187:9;2183:22;2173:32;;2243:7;2236:4;2232:2;2228:13;2224:27;2214:55;;2265:1;2262;2255:12;2214:55;2301:2;2288:16;2323:2;2319;2316:10;2313:36;;;2329:18;;:::i;:::-;2371:53;2414:2;2395:13;;-1:-1:-1;;2391:27:1;2387:36;;2371:53;:::i;:::-;2358:66;;2447:2;2440:5;2433:17;2487:7;2482:2;2477;2473;2469:11;2465:20;2462:33;2459:53;;;2508:1;2505;2498:12;2459:53;2563:2;2558;2554;2550:11;2545:2;2538:5;2534:14;2521:45;2607:1;2602:2;2597;2590:5;2586:14;2582:23;2575:34;;2628:5;2618:15;;;;;1659:980;;;;;;;:::o;2644:347::-;2709:6;2717;2770:2;2758:9;2749:7;2745:23;2741:32;2738:52;;;2786:1;2783;2776:12;2738:52;2809:29;2828:9;2809:29;:::i;:::-;2799:39;;2888:2;2877:9;2873:18;2860:32;2935:5;2928:13;2921:21;2914:5;2911:32;2901:60;;2957:1;2954;2947:12;2901:60;2980:5;2970:15;;;2644:347;;;;;:::o;2996:254::-;3064:6;3072;3125:2;3113:9;3104:7;3100:23;3096:32;3093:52;;;3141:1;3138;3131:12;3093:52;3164:29;3183:9;3164:29;:::i;:::-;3154:39;3240:2;3225:18;;;;3212:32;;-1:-1:-1;;;2996:254:1:o;3255:1157::-;3373:6;3381;3434:2;3422:9;3413:7;3409:23;3405:32;3402:52;;;3450:1;3447;3440:12;3402:52;3490:9;3477:23;3519:18;3560:2;3552:6;3549:14;3546:34;;;3576:1;3573;3566:12;3546:34;3614:6;3603:9;3599:22;3589:32;;3659:7;3652:4;3648:2;3644:13;3640:27;3630:55;;3681:1;3678;3671:12;3630:55;3717:2;3704:16;3739:4;3763:60;3779:43;3819:2;3779:43;:::i;3763:60::-;3845:3;3869:2;3864:3;3857:15;3897:2;3892:3;3888:12;3881:19;;3928:2;3924;3920:11;3976:7;3971:2;3965;3962:1;3958:10;3954:2;3950:19;3946:28;3943:41;3940:61;;;3997:1;3994;3987:12;3940:61;4019:1;4010:10;;4029:169;4043:2;4040:1;4037:9;4029:169;;;4100:23;4119:3;4100:23;:::i;:::-;4088:36;;4061:1;4054:9;;;;;4144:12;;;;4176;;4029:169;;;-1:-1:-1;4217:5:1;-1:-1:-1;;4260:18:1;;4247:32;;-1:-1:-1;;4291:16:1;;;4288:36;;;4320:1;4317;4310:12;4288:36;;4343:63;4398:7;4387:8;4376:9;4372:24;4343:63;:::i;:::-;4333:73;;;3255:1157;;;;;:::o;4417:245::-;4475:6;4528:2;4516:9;4507:7;4503:23;4499:32;4496:52;;;4544:1;4541;4534:12;4496:52;4583:9;4570:23;4602:30;4626:5;4602:30;:::i;4667:249::-;4736:6;4789:2;4777:9;4768:7;4764:23;4760:32;4757:52;;;4805:1;4802;4795:12;4757:52;4837:9;4831:16;4856:30;4880:5;4856:30;:::i;4921:180::-;4980:6;5033:2;5021:9;5012:7;5008:23;5004:32;5001:52;;;5049:1;5046;5039:12;5001:52;-1:-1:-1;5072:23:1;;4921:180;-1:-1:-1;4921:180:1:o;5106:471::-;5147:3;5185:5;5179:12;5212:6;5207:3;5200:19;5237:1;5247:162;5261:6;5258:1;5255:13;5247:162;;;5323:4;5379:13;;;5375:22;;5369:29;5351:11;;;5347:20;;5340:59;5276:12;5247:162;;;5427:6;5424:1;5421:13;5418:87;;;5493:1;5486:4;5477:6;5472:3;5468:16;5464:27;5457:38;5418:87;-1:-1:-1;5559:2:1;5538:15;-1:-1:-1;;5534:29:1;5525:39;;;;5566:4;5521:50;;5106:471;-1:-1:-1;;5106:471:1:o;5790:488::-;-1:-1:-1;;;;;6059:15:1;;;6041:34;;6111:15;;6106:2;6091:18;;6084:43;6158:2;6143:18;;6136:34;;;6206:3;6201:2;6186:18;;6179:31;;;5984:4;;6227:45;;6252:19;;6244:6;6227:45;:::i;:::-;6219:53;5790:488;-1:-1:-1;;;;;;5790:488:1:o;6475:219::-;6624:2;6613:9;6606:21;6587:4;6644:44;6684:2;6673:9;6669:18;6661:6;6644:44;:::i;10809:356::-;11011:2;10993:21;;;11030:18;;;11023:30;11089:34;11084:2;11069:18;;11062:62;11156:2;11141:18;;10809:356::o;12347:415::-;12549:2;12531:21;;;12588:2;12568:18;;;12561:30;12627:34;12622:2;12607:18;;12600:62;-1:-1:-1;;;12693:2:1;12678:18;;12671:49;12752:3;12737:19;;12347:415::o;15707:275::-;15778:2;15772:9;15843:2;15824:13;;-1:-1:-1;;15820:27:1;15808:40;;15878:18;15863:34;;15899:22;;;15860:62;15857:88;;;15925:18;;:::i;:::-;15961:2;15954:22;15707:275;;-1:-1:-1;15707:275:1:o;15987:183::-;16047:4;16080:18;16072:6;16069:30;16066:56;;;16102:18;;:::i;:::-;-1:-1:-1;16147:1:1;16143:14;16159:4;16139:25;;15987:183::o;16175:253::-;16215:3;-1:-1:-1;;;;;16304:2:1;16301:1;16297:10;16334:2;16331:1;16327:10;16365:3;16361:2;16357:12;16352:3;16349:21;16346:47;;;16373:18;;:::i;:::-;16409:13;;16175:253;-1:-1:-1;;;;16175:253:1:o;16433:128::-;16473:3;16504:1;16500:6;16497:1;16494:13;16491:39;;;16510:18;;:::i;:::-;-1:-1:-1;16546:9:1;;16433:128::o;16566:246::-;16606:4;-1:-1:-1;;;;;16719:10:1;;;;16689;;16741:12;;;16738:38;;;16756:18;;:::i;:::-;16793:13;;16566:246;-1:-1:-1;;;16566:246:1:o;16817:125::-;16857:4;16885:1;16882;16879:8;16876:34;;;16890:18;;:::i;:::-;-1:-1:-1;16927:9:1;;16817:125::o;16947:136::-;16986:3;17014:5;17004:39;;17023:18;;:::i;:::-;-1:-1:-1;;;17059:18:1;;16947:136::o;17088:380::-;17167:1;17163:12;;;;17210;;;17231:61;;17285:4;17277:6;17273:17;17263:27;;17231:61;17338:2;17330:6;17327:14;17307:18;17304:38;17301:161;;;17384:10;17379:3;17375:20;17372:1;17365:31;17419:4;17416:1;17409:15;17447:4;17444:1;17437:15;17301:161;;17088:380;;;:::o;17473:135::-;17512:3;-1:-1:-1;;17533:17:1;;17530:43;;;17553:18;;:::i;:::-;-1:-1:-1;17600:1:1;17589:13;;17473:135::o;17613:127::-;17674:10;17669:3;17665:20;17662:1;17655:31;17705:4;17702:1;17695:15;17729:4;17726:1;17719:15;17745:127;17806:10;17801:3;17797:20;17794:1;17787:31;17837:4;17834:1;17827:15;17861:4;17858:1;17851:15;17877:127;17938:10;17933:3;17929:20;17926:1;17919:31;17969:4;17966:1;17959:15;17993:4;17990:1;17983:15;18009:131;-1:-1:-1;;;;;;18083:32:1;;18073:43;;18063:71;;18130:1;18127;18120:12

Swarm Source

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