ETH Price: $3,388.24 (-1.55%)
Gas: 2 Gwei

Token

PunksV420 (Pv420)
 

Overview

Max Total Supply

10,000 Pv420

Holders

784

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Pv420
0xf746fb75a9c1d0f1c9799e434aea2aef90f7aa22
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PunksV420

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-09-03
*/

// SPDX-License-Identifier: GPL-3.0


pragma solidity >=0.7.0 <0.9.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;
    }
}

/**
 * @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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}


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

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

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

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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





/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


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


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


/**
 * @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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}





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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}





/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  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 public 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 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 {}
}




contract PunksV420 is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.0042 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxsize = 10 ; // max mint per tx
  bool public paused = true;

  constructor() ERC721A("PunksV420", "Pv420", maxsize) {
    setBaseURI("ipfs://Qmavwfzq8YgeKLFUyu16wbYj81PyuotSMt3xciGoB59Sn8/");
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "PunksV420: oops contract is paused");
    uint256 supply = totalSupply();
    require(tokens > 0, "PunksV420: need to mint at least 1 NFT");
    require(tokens <= maxsize, "PunksV420: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "PunksV420: We Soldout");
    if (supply < 1500) {
      require(msg.value >= 0 * tokens, "PunksV420: It's Free Mint");
    } else {

    require(msg.value >= cost * tokens, "PunksV420: insufficient funds");
    }

      _safeMint(_msgSender(), tokens);
    
  }



  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    

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

  //only owner

  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }


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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxsize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6001600090815560075560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a919062000247565b50660eebe0b40e8000600b55612710600c55600a600d55600e805460ff191660011790553480156200006357600080fd5b5060405180604001604052806009815260200168050756e6b73563432360bc1b81525060405180604001604052806005815260200164050763432360dc1b815250600d54600081116200010d5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200012290600190602086019062000247565b5081516200013890600290602085019062000247565b50608052506200014a90503362000174565b6200016e6040518060600160405280603681526020016200296760369139620001c6565b6200032a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001d0620001e9565b8051620001e590600990602084019062000247565b5050565b6008546001600160a01b03163314620002455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000104565b565b8280546200025590620002ed565b90600052602060002090601f016020900481019282620002795760008555620002c4565b82601f106200029457805160ff1916838001178555620002c4565b82800160010185558215620002c4579182015b82811115620002c4578251825591602001919060010190620002a7565b50620002d2929150620002d6565b5090565b5b80821115620002d25760008155600101620002d7565b600181811c908216806200030257607f821691505b602082108114156200032457634e487b7160e01b600052602260045260246000fd5b50919050565b60805161260c6200035b600039600081816103700152818161183f015281816118690152611cab015261260c6000f3fe60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105dc578063d7224ba0146105f2578063da3ef23f14610608578063e985e9c514610628578063f2fde38b1461067157600080fd5b8063a22cb46514610567578063b88d4fde14610587578063c6682862146105a7578063c87b56dd146105bc57600080fd5b8063715018a6116100e7578063715018a6146104ec57806383a076be146105015780638da5cb5b1461052157806395d89b411461053f578063a0712d681461055457600080fd5b80636352211e146104815780636c0360eb146104a15780636c6e927e146104b657806370a08231146104cc57600080fd5b80632913daa01161019b578063438b63001161016a578063438b6300146103da57806344a0d68a146104075780634f6ccce71461042757806355f804b3146104475780635c975abb1461046757600080fd5b80632913daa01461035e5780632f745c59146103925780633ccfd60b146103b257806342842e0e146103ba57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e5578063149835a01461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004612170565b610691565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004612155565b6106fe565b005b34801561027757600080fd5b50610280610719565b60405161024091906123a0565b34801561029957600080fd5b506102ad6102a83660046121f3565b6107ab565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e036600461212b565b61083b565b3480156102f157600080fd5b506102fb600b5481565b604051908152602001610240565b34801561031557600080fd5b506102696103243660046121f3565b610953565b34801561033557600080fd5b506102fb610960565b34801561034a57600080fd5b50610269610359366004612049565b610976565b34801561036a57600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561039e57600080fd5b506102fb6103ad36600461212b565b610981565b610269610af9565b3480156103c657600080fd5b506102696103d5366004612049565b610b59565b3480156103e657600080fd5b506103fa6103f5366004611ffb565b610b74565b604051610240919061235c565b34801561041357600080fd5b506102696104223660046121f3565b610c16565b34801561043357600080fd5b506102fb6104423660046121f3565b610c23565b34801561045357600080fd5b506102696104623660046121aa565b610c8b565b34801561047357600080fd5b50600e546102349060ff1681565b34801561048d57600080fd5b506102ad61049c3660046121f3565b610caa565b3480156104ad57600080fd5b50610280610cbc565b3480156104c257600080fd5b506102fb600d5481565b3480156104d857600080fd5b506102fb6104e7366004611ffb565b610d4a565b3480156104f857600080fd5b50610269610ddb565b34801561050d57600080fd5b5061026961051c36600461220c565b610def565b34801561052d57600080fd5b506008546001600160a01b03166102ad565b34801561054b57600080fd5b50610280610eb2565b6102696105623660046121f3565b610ec1565b34801561057357600080fd5b50610269610582366004612101565b611112565b34801561059357600080fd5b506102696105a2366004612085565b6111d7565b3480156105b357600080fd5b50610280611210565b3480156105c857600080fd5b506102806105d73660046121f3565b61121d565b3480156105e857600080fd5b506102fb600c5481565b3480156105fe57600080fd5b506102fb60075481565b34801561061457600080fd5b506102696106233660046121aa565b6112ee565b34801561063457600080fd5b50610234610643366004612016565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b5061026961068c366004611ffb565b611309565b60006001600160e01b031982166380ac58cd60e01b14806106c257506001600160e01b03198216635b5e139f60e01b145b806106dd57506001600160e01b0319821663780e9d6360e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b61070661137f565b600e805460ff1916911515919091179055565b606060018054610728906124fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610754906124fe565b80156107a15780601f10610776576101008083540402835291602001916107a1565b820191906000526020600020905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b60006107b8826000541190565b61081f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084682610caa565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610816565b336001600160a01b03821614806108d157506108d18133610643565b6109435760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610816565b61094e8383836113d9565b505050565b61095b61137f565b600c55565b6000600160005461097191906124a4565b905090565b61094e838383611435565b600061098c83610d4a565b82106109e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610816565b60006109ef610960565b905060008060005b83811015610a99576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4a57805192505b876001600160a01b0316836001600160a01b03161415610a865786841415610a78575093506106f892505050565b83610a8281612539565b9450505b5080610a9181612539565b9150506109f7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610816565b610b0161137f565b604051600090339047908381818185875af1925050503d8060008114610b43576040519150601f19603f3d011682016040523d82523d6000602084013e610b48565b606091505b5050905080610b5657600080fd5b50565b61094e838383604051806020016040528060008152506111d7565b60606000610b8183610d4a565b905060008167ffffffffffffffff811115610b9e57610b9e6125aa565b604051908082528060200260200182016040528015610bc7578160200160208202803683370190505b50905060005b82811015610c0e57610bdf8582610981565b828281518110610bf157610bf1612594565b602090810291909101015280610c0681612539565b915050610bcd565b509392505050565b610c1e61137f565b600b55565b6000610c2d610960565b8210610c875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610816565b5090565b610c9361137f565b8051610ca6906009906020840190611ec9565b5050565b6000610cb5826117bd565b5192915050565b60098054610cc9906124fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf5906124fe565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b505050505081565b60006001600160a01b038216610db65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610816565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610de361137f565b610ded6000611967565b565b610df761137f565b60008211610e475760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610816565b6000610e51610960565b600c54909150610e618483612431565b1115610ea85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610816565b61094e82846119b9565b606060028054610728906124fe565b600e5460ff1615610f1f5760405162461bcd60e51b815260206004820152602260248201527f50756e6b73563432303a206f6f707320636f6e74726163742069732070617573604482015261195960f21b6064820152608401610816565b6000610f29610960565b905060008211610f8a5760405162461bcd60e51b815260206004820152602660248201527f50756e6b73563432303a206e65656420746f206d696e74206174206c65617374604482015265080c4813919560d21b6064820152608401610816565b600d54821115610fef5760405162461bcd60e51b815260206004820152602a60248201527f50756e6b73563432303a206d6178206d696e7420616d6f756e742070657220746044820152691e08195e18d95959195960b21b6064820152608401610816565b600c54610ffc8383612431565b11156110425760405162461bcd60e51b8152602060048201526015602482015274141d5b9adcd58d0c8c0e8815d94814dbdb191bdd5d605a1b6044820152606401610816565b6105dc8110156110ab5761105782600061245d565b3410156110a65760405162461bcd60e51b815260206004820152601960248201527f50756e6b73563432303a20497427732046726565204d696e74000000000000006044820152606401610816565b611108565b81600b546110b9919061245d565b3410156111085760405162461bcd60e51b815260206004820152601d60248201527f50756e6b73563432303a20696e73756666696369656e742066756e64730000006044820152606401610816565b610ca633836119b9565b6001600160a01b03821633141561116b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610816565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e2848484611435565b6111ee848484846119d3565b61120a5760405162461bcd60e51b8152600401610816906123b3565b50505050565b600a8054610cc9906124fe565b606061122a826000541190565b61128f5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610816565b6000611299611ae1565b905060008151116112b957604051806020016040528060008152506112e7565b806112c384611af0565b600a6040516020016112d79392919061225b565b6040516020818303038152906040525b9392505050565b6112f661137f565b8051610ca690600a906020840190611ec9565b61131161137f565b6001600160a01b0381166113765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610816565b610b5681611967565b6008546001600160a01b03163314610ded5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610816565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611440826117bd565b80519091506000906001600160a01b0316336001600160a01b0316148061147757503361146c846107ab565b6001600160a01b0316145b80611489575081516114899033610643565b9050806114f35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610816565b846001600160a01b031682600001516001600160a01b0316146115675760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610816565b6001600160a01b0384166115cb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610816565b6115db60008484600001516113d9565b6001600160a01b038516600090815260046020526040812080546001929061160d9084906001600160801b031661247c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261165991859116612406565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116e1846001612431565b6000818152600360205260409020549091506001600160a01b03166117735761170b816000541190565b156117735760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117dc826000541190565b61183b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610816565b60007f0000000000000000000000000000000000000000000000000000000000000000831061189c5761188e7f0000000000000000000000000000000000000000000000000000000000000000846124a4565b611899906001612431565b90505b825b818110611906576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118f357949350505050565b50806118fe816124e7565b91505061189e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610816565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ca6828260405180602001604052806000815250611bee565b60006001600160a01b0384163b15611ad557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1790339089908890889060040161231f565b602060405180830381600087803b158015611a3157600080fd5b505af1925050508015611a61575060408051601f3d908101601f19168201909252611a5e9181019061218d565b60015b611abb573d808015611a8f576040519150601f19603f3d011682016040523d82523d6000602084013e611a94565b606091505b508051611ab35760405162461bcd60e51b8152600401610816906123b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad9565b5060015b949350505050565b606060098054610728906124fe565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b2881612539565b9150611b379050600a83612449565b9150611b18565b60008167ffffffffffffffff811115611b5957611b596125aa565b6040519080825280601f01601f191660200182016040528015611b83576020820181803683370190505b5090505b8415611ad957611b986001836124a4565b9150611ba5600a86612554565b611bb0906030612431565b60f81b818381518110611bc557611bc5612594565b60200101906001600160f81b031916908160001a905350611be7600a86612449565b9450611b87565b6000546001600160a01b038416611c515760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610816565b611c5c816000541190565b15611ca95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610816565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610816565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d80908790612406565b6001600160801b03168152602001858360200151611d9e9190612406565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ebe5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8260008884886119d3565b611e9e5760405162461bcd60e51b8152600401610816906123b3565b81611ea881612539565b9250508080611eb690612539565b915050611e35565b5060008190556117b5565b828054611ed5906124fe565b90600052602060002090601f016020900481019282611ef75760008555611f3d565b82601f10611f1057805160ff1916838001178555611f3d565b82800160010185558215611f3d579182015b82811115611f3d578251825591602001919060010190611f22565b50610c879291505b80821115610c875760008155600101611f45565b600067ffffffffffffffff80841115611f7457611f746125aa565b604051601f8501601f19908116603f01168101908282118183101715611f9c57611f9c6125aa565b81604052809350858152868686011115611fb557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe657600080fd5b919050565b80358015158114611fe657600080fd5b60006020828403121561200d57600080fd5b6112e782611fcf565b6000806040838503121561202957600080fd5b61203283611fcf565b915061204060208401611fcf565b90509250929050565b60008060006060848603121561205e57600080fd5b61206784611fcf565b925061207560208501611fcf565b9150604084013590509250925092565b6000806000806080858703121561209b57600080fd5b6120a485611fcf565b93506120b260208601611fcf565b925060408501359150606085013567ffffffffffffffff8111156120d557600080fd5b8501601f810187136120e657600080fd5b6120f587823560208401611f59565b91505092959194509250565b6000806040838503121561211457600080fd5b61211d83611fcf565b915061204060208401611feb565b6000806040838503121561213e57600080fd5b61214783611fcf565b946020939093013593505050565b60006020828403121561216757600080fd5b6112e782611feb565b60006020828403121561218257600080fd5b81356112e7816125c0565b60006020828403121561219f57600080fd5b81516112e7816125c0565b6000602082840312156121bc57600080fd5b813567ffffffffffffffff8111156121d357600080fd5b8201601f810184136121e457600080fd5b611ad984823560208401611f59565b60006020828403121561220557600080fd5b5035919050565b6000806040838503121561221f57600080fd5b8235915061204060208401611fcf565b600081518084526122478160208601602086016124bb565b601f01601f19169290920160200192915050565b60008451602061226e8285838a016124bb565b8551918401916122818184848a016124bb565b8554920191600090600181811c908083168061229e57607f831692505b8583108114156122bc57634e487b7160e01b85526022600452602485fd5b8080156122d057600181146122e15761230e565b60ff1985168852838801955061230e565b60008b81526020902060005b858110156123065781548a8201529084019088016122ed565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123529083018461222f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561239457835183529284019291840191600101612378565b50909695505050505050565b6020815260006112e7602083018461222f565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561242857612428612568565b01949350505050565b6000821982111561244457612444612568565b500190565b6000826124585761245861257e565b500490565b600081600019048311821515161561247757612477612568565b500290565b60006001600160801b038381169083168181101561249c5761249c612568565b039392505050565b6000828210156124b6576124b6612568565b500390565b60005b838110156124d65781810151838201526020016124be565b8381111561120a5750506000910152565b6000816124f6576124f6612568565b506000190190565b600181811c9082168061251257607f821691505b6020821081141561253357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561254d5761254d612568565b5060010190565b6000826125635761256361257e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5657600080fdfea2646970667358221220b5d1f6503dbd3b79213f10b3d4172b83cff1382856e83b12c10a9e7c1c9fff1164736f6c63430008070033697066733a2f2f516d617677667a71385967654b4c4655797531367762596a38315079756f74534d7433786369476f423539536e382f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80636352211e11610118578063a22cb465116100a0578063d5abeb011161006f578063d5abeb01146105dc578063d7224ba0146105f2578063da3ef23f14610608578063e985e9c514610628578063f2fde38b1461067157600080fd5b8063a22cb46514610567578063b88d4fde14610587578063c6682862146105a7578063c87b56dd146105bc57600080fd5b8063715018a6116100e7578063715018a6146104ec57806383a076be146105015780638da5cb5b1461052157806395d89b411461053f578063a0712d681461055457600080fd5b80636352211e146104815780636c0360eb146104a15780636c6e927e146104b657806370a08231146104cc57600080fd5b80632913daa01161019b578063438b63001161016a578063438b6300146103da57806344a0d68a146104075780634f6ccce71461042757806355f804b3146104475780635c975abb1461046757600080fd5b80632913daa01461035e5780632f745c59146103925780633ccfd60b146103b257806342842e0e146103ba57600080fd5b8063095ea7b3116101e2578063095ea7b3146102c557806313faede6146102e5578063149835a01461030957806318160ddd1461032957806323b872dd1461033e57600080fd5b806301ffc9a71461021457806302329a291461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f366004612170565b610691565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b50610269610264366004612155565b6106fe565b005b34801561027757600080fd5b50610280610719565b60405161024091906123a0565b34801561029957600080fd5b506102ad6102a83660046121f3565b6107ab565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e036600461212b565b61083b565b3480156102f157600080fd5b506102fb600b5481565b604051908152602001610240565b34801561031557600080fd5b506102696103243660046121f3565b610953565b34801561033557600080fd5b506102fb610960565b34801561034a57600080fd5b50610269610359366004612049565b610976565b34801561036a57600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000a81565b34801561039e57600080fd5b506102fb6103ad36600461212b565b610981565b610269610af9565b3480156103c657600080fd5b506102696103d5366004612049565b610b59565b3480156103e657600080fd5b506103fa6103f5366004611ffb565b610b74565b604051610240919061235c565b34801561041357600080fd5b506102696104223660046121f3565b610c16565b34801561043357600080fd5b506102fb6104423660046121f3565b610c23565b34801561045357600080fd5b506102696104623660046121aa565b610c8b565b34801561047357600080fd5b50600e546102349060ff1681565b34801561048d57600080fd5b506102ad61049c3660046121f3565b610caa565b3480156104ad57600080fd5b50610280610cbc565b3480156104c257600080fd5b506102fb600d5481565b3480156104d857600080fd5b506102fb6104e7366004611ffb565b610d4a565b3480156104f857600080fd5b50610269610ddb565b34801561050d57600080fd5b5061026961051c36600461220c565b610def565b34801561052d57600080fd5b506008546001600160a01b03166102ad565b34801561054b57600080fd5b50610280610eb2565b6102696105623660046121f3565b610ec1565b34801561057357600080fd5b50610269610582366004612101565b611112565b34801561059357600080fd5b506102696105a2366004612085565b6111d7565b3480156105b357600080fd5b50610280611210565b3480156105c857600080fd5b506102806105d73660046121f3565b61121d565b3480156105e857600080fd5b506102fb600c5481565b3480156105fe57600080fd5b506102fb60075481565b34801561061457600080fd5b506102696106233660046121aa565b6112ee565b34801561063457600080fd5b50610234610643366004612016565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067d57600080fd5b5061026961068c366004611ffb565b611309565b60006001600160e01b031982166380ac58cd60e01b14806106c257506001600160e01b03198216635b5e139f60e01b145b806106dd57506001600160e01b0319821663780e9d6360e01b145b806106f857506301ffc9a760e01b6001600160e01b03198316145b92915050565b61070661137f565b600e805460ff1916911515919091179055565b606060018054610728906124fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610754906124fe565b80156107a15780601f10610776576101008083540402835291602001916107a1565b820191906000526020600020905b81548152906001019060200180831161078457829003601f168201915b5050505050905090565b60006107b8826000541190565b61081f5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061084682610caa565b9050806001600160a01b0316836001600160a01b031614156108b55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610816565b336001600160a01b03821614806108d157506108d18133610643565b6109435760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610816565b61094e8383836113d9565b505050565b61095b61137f565b600c55565b6000600160005461097191906124a4565b905090565b61094e838383611435565b600061098c83610d4a565b82106109e55760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610816565b60006109ef610960565b905060008060005b83811015610a99576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4a57805192505b876001600160a01b0316836001600160a01b03161415610a865786841415610a78575093506106f892505050565b83610a8281612539565b9450505b5080610a9181612539565b9150506109f7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610816565b610b0161137f565b604051600090339047908381818185875af1925050503d8060008114610b43576040519150601f19603f3d011682016040523d82523d6000602084013e610b48565b606091505b5050905080610b5657600080fd5b50565b61094e838383604051806020016040528060008152506111d7565b60606000610b8183610d4a565b905060008167ffffffffffffffff811115610b9e57610b9e6125aa565b604051908082528060200260200182016040528015610bc7578160200160208202803683370190505b50905060005b82811015610c0e57610bdf8582610981565b828281518110610bf157610bf1612594565b602090810291909101015280610c0681612539565b915050610bcd565b509392505050565b610c1e61137f565b600b55565b6000610c2d610960565b8210610c875760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610816565b5090565b610c9361137f565b8051610ca6906009906020840190611ec9565b5050565b6000610cb5826117bd565b5192915050565b60098054610cc9906124fe565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf5906124fe565b8015610d425780601f10610d1757610100808354040283529160200191610d42565b820191906000526020600020905b815481529060010190602001808311610d2557829003601f168201915b505050505081565b60006001600160a01b038216610db65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610816565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610de361137f565b610ded6000611967565b565b610df761137f565b60008211610e475760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e465400000000006044820152606401610816565b6000610e51610960565b600c54909150610e618483612431565b1115610ea85760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610816565b61094e82846119b9565b606060028054610728906124fe565b600e5460ff1615610f1f5760405162461bcd60e51b815260206004820152602260248201527f50756e6b73563432303a206f6f707320636f6e74726163742069732070617573604482015261195960f21b6064820152608401610816565b6000610f29610960565b905060008211610f8a5760405162461bcd60e51b815260206004820152602660248201527f50756e6b73563432303a206e65656420746f206d696e74206174206c65617374604482015265080c4813919560d21b6064820152608401610816565b600d54821115610fef5760405162461bcd60e51b815260206004820152602a60248201527f50756e6b73563432303a206d6178206d696e7420616d6f756e742070657220746044820152691e08195e18d95959195960b21b6064820152608401610816565b600c54610ffc8383612431565b11156110425760405162461bcd60e51b8152602060048201526015602482015274141d5b9adcd58d0c8c0e8815d94814dbdb191bdd5d605a1b6044820152606401610816565b6105dc8110156110ab5761105782600061245d565b3410156110a65760405162461bcd60e51b815260206004820152601960248201527f50756e6b73563432303a20497427732046726565204d696e74000000000000006044820152606401610816565b611108565b81600b546110b9919061245d565b3410156111085760405162461bcd60e51b815260206004820152601d60248201527f50756e6b73563432303a20696e73756666696369656e742066756e64730000006044820152606401610816565b610ca633836119b9565b6001600160a01b03821633141561116b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610816565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111e2848484611435565b6111ee848484846119d3565b61120a5760405162461bcd60e51b8152600401610816906123b3565b50505050565b600a8054610cc9906124fe565b606061122a826000541190565b61128f5760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610816565b6000611299611ae1565b905060008151116112b957604051806020016040528060008152506112e7565b806112c384611af0565b600a6040516020016112d79392919061225b565b6040516020818303038152906040525b9392505050565b6112f661137f565b8051610ca690600a906020840190611ec9565b61131161137f565b6001600160a01b0381166113765760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610816565b610b5681611967565b6008546001600160a01b03163314610ded5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610816565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611440826117bd565b80519091506000906001600160a01b0316336001600160a01b0316148061147757503361146c846107ab565b6001600160a01b0316145b80611489575081516114899033610643565b9050806114f35760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610816565b846001600160a01b031682600001516001600160a01b0316146115675760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610816565b6001600160a01b0384166115cb5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610816565b6115db60008484600001516113d9565b6001600160a01b038516600090815260046020526040812080546001929061160d9084906001600160801b031661247c565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261165991859116612406565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116e1846001612431565b6000818152600360205260409020549091506001600160a01b03166117735761170b816000541190565b156117735760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117dc826000541190565b61183b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610816565b60007f000000000000000000000000000000000000000000000000000000000000000a831061189c5761188e7f000000000000000000000000000000000000000000000000000000000000000a846124a4565b611899906001612431565b90505b825b818110611906576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118f357949350505050565b50806118fe816124e7565b91505061189e565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610816565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610ca6828260405180602001604052806000815250611bee565b60006001600160a01b0384163b15611ad557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a1790339089908890889060040161231f565b602060405180830381600087803b158015611a3157600080fd5b505af1925050508015611a61575060408051601f3d908101601f19168201909252611a5e9181019061218d565b60015b611abb573d808015611a8f576040519150601f19603f3d011682016040523d82523d6000602084013e611a94565b606091505b508051611ab35760405162461bcd60e51b8152600401610816906123b3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ad9565b5060015b949350505050565b606060098054610728906124fe565b606081611b145750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b3e5780611b2881612539565b9150611b379050600a83612449565b9150611b18565b60008167ffffffffffffffff811115611b5957611b596125aa565b6040519080825280601f01601f191660200182016040528015611b83576020820181803683370190505b5090505b8415611ad957611b986001836124a4565b9150611ba5600a86612554565b611bb0906030612431565b60f81b818381518110611bc557611bc5612594565b60200101906001600160f81b031916908160001a905350611be7600a86612449565b9450611b87565b6000546001600160a01b038416611c515760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610816565b611c5c816000541190565b15611ca95760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610816565b7f000000000000000000000000000000000000000000000000000000000000000a831115611d245760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610816565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d80908790612406565b6001600160801b03168152602001858360200151611d9e9190612406565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ebe5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e8260008884886119d3565b611e9e5760405162461bcd60e51b8152600401610816906123b3565b81611ea881612539565b9250508080611eb690612539565b915050611e35565b5060008190556117b5565b828054611ed5906124fe565b90600052602060002090601f016020900481019282611ef75760008555611f3d565b82601f10611f1057805160ff1916838001178555611f3d565b82800160010185558215611f3d579182015b82811115611f3d578251825591602001919060010190611f22565b50610c879291505b80821115610c875760008155600101611f45565b600067ffffffffffffffff80841115611f7457611f746125aa565b604051601f8501601f19908116603f01168101908282118183101715611f9c57611f9c6125aa565b81604052809350858152868686011115611fb557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fe657600080fd5b919050565b80358015158114611fe657600080fd5b60006020828403121561200d57600080fd5b6112e782611fcf565b6000806040838503121561202957600080fd5b61203283611fcf565b915061204060208401611fcf565b90509250929050565b60008060006060848603121561205e57600080fd5b61206784611fcf565b925061207560208501611fcf565b9150604084013590509250925092565b6000806000806080858703121561209b57600080fd5b6120a485611fcf565b93506120b260208601611fcf565b925060408501359150606085013567ffffffffffffffff8111156120d557600080fd5b8501601f810187136120e657600080fd5b6120f587823560208401611f59565b91505092959194509250565b6000806040838503121561211457600080fd5b61211d83611fcf565b915061204060208401611feb565b6000806040838503121561213e57600080fd5b61214783611fcf565b946020939093013593505050565b60006020828403121561216757600080fd5b6112e782611feb565b60006020828403121561218257600080fd5b81356112e7816125c0565b60006020828403121561219f57600080fd5b81516112e7816125c0565b6000602082840312156121bc57600080fd5b813567ffffffffffffffff8111156121d357600080fd5b8201601f810184136121e457600080fd5b611ad984823560208401611f59565b60006020828403121561220557600080fd5b5035919050565b6000806040838503121561221f57600080fd5b8235915061204060208401611fcf565b600081518084526122478160208601602086016124bb565b601f01601f19169290920160200192915050565b60008451602061226e8285838a016124bb565b8551918401916122818184848a016124bb565b8554920191600090600181811c908083168061229e57607f831692505b8583108114156122bc57634e487b7160e01b85526022600452602485fd5b8080156122d057600181146122e15761230e565b60ff1985168852838801955061230e565b60008b81526020902060005b858110156123065781548a8201529084019088016122ed565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123529083018461222f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561239457835183529284019291840191600101612378565b50909695505050505050565b6020815260006112e7602083018461222f565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561242857612428612568565b01949350505050565b6000821982111561244457612444612568565b500190565b6000826124585761245861257e565b500490565b600081600019048311821515161561247757612477612568565b500290565b60006001600160801b038381169083168181101561249c5761249c612568565b039392505050565b6000828210156124b6576124b6612568565b500390565b60005b838110156124d65781810151838201526020016124be565b8381111561120a5750506000910152565b6000816124f6576124f6612568565b506000190190565b600181811c9082168061251257607f821691505b6020821081141561253357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561254d5761254d612568565b5060010190565b6000826125635761256361257e565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5657600080fdfea2646970667358221220b5d1f6503dbd3b79213f10b3d4172b83cff1382856e83b12c10a9e7c1c9fff1164736f6c63430008070033

Deployed Bytecode Sourcemap

38326:3048:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26104:370;;;;;;;;;;-1:-1:-1;26104:370:0;;;;;:::i;:::-;;:::i;:::-;;;8066:14:1;;8059:22;8041:41;;8029:2;8014:18;26104:370:0;;;;;;;;41133:73;;;;;;;;;;-1:-1:-1;41133:73:0;;;;;:::i;:::-;;:::i;:::-;;27830:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29355:204::-;;;;;;;;;;-1:-1:-1;29355:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6727:32:1;;;6709:51;;6697:2;6682:18;29355:204:0;6563:203:1;28918:379:0;;;;;;;;;;-1:-1:-1;28918:379:0;;;;;:::i;:::-;;:::i;38470:34::-;;;;;;;;;;;;;;;;;;;19512:25:1;;;19500:2;19485:18;38470:34:0;19366:177:1;40795:94:0;;;;;;;;;;-1:-1:-1;40795:94:0;;;;;:::i;:::-;;:::i;24664:98::-;;;;;;;;;;;;;:::i;30205:142::-;;;;;;;;;;-1:-1:-1;30205:142:0;;;;;:::i;:::-;;:::i;23542:37::-;;;;;;;;;;;;;;;25296:744;;;;;;;;;;-1:-1:-1;25296:744:0;;;;;:::i;:::-;;:::i;41213:158::-;;;:::i;30410:157::-;;;;;;;;;;-1:-1:-1;30410:157:0;;;;;:::i;:::-;;:::i;39899:348::-;;;;;;;;;;-1:-1:-1;39899:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40707:80::-;;;;;;;;;;-1:-1:-1;40707:80:0;;;;;:::i;:::-;;:::i;24831:177::-;;;;;;;;;;-1:-1:-1;24831:177:0;;;;;:::i;:::-;;:::i;40897:98::-;;;;;;;;;;-1:-1:-1;40897:98:0;;;;;:::i;:::-;;:::i;38598:25::-;;;;;;;;;;-1:-1:-1;38598:25:0;;;;;;;;27653:118;;;;;;;;;;-1:-1:-1;27653:118:0;;;;;:::i;:::-;;:::i;38402:21::-;;;;;;;;;;;;;:::i;38546:27::-;;;;;;;;;;;;;;;;26530:211;;;;;;;;;;-1:-1:-1;26530:211:0;;;;;:::i;:::-;;:::i;2557:103::-;;;;;;;;;;;;;:::i;39580:305::-;;;;;;;;;;-1:-1:-1;39580:305:0;;;;;:::i;:::-;;:::i;1909:87::-;;;;;;;;;;-1:-1:-1;1982:6:0;;-1:-1:-1;;;;;1982:6:0;1909:87;;27985:98;;;;;;;;;;;;;:::i;38906:607::-;;;;;;:::i;:::-;;:::i;29623:274::-;;;;;;;;;;-1:-1:-1;29623:274:0;;;;;:::i;:::-;;:::i;30630:311::-;;;;;;;;;;-1:-1:-1;30630:311:0;;;;;:::i;:::-;;:::i;38428:37::-;;;;;;;;;;;;;:::i;40253:430::-;;;;;;;;;;-1:-1:-1;40253:430:0;;;;;:::i;:::-;;:::i;38509:32::-;;;;;;;;;;;;;;;;34961:43;;;;;;;;;;;;;;;;41001:122;;;;;;;;;;-1:-1:-1;41001:122:0;;;;;:::i;:::-;;:::i;29960:186::-;;;;;;;;;;-1:-1:-1;29960:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;30105:25:0;;;30082:4;30105:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29960:186;2815:201;;;;;;;;;;-1:-1:-1;2815:201:0;;;;;:::i;:::-;;:::i;26104:370::-;26231:4;-1:-1:-1;;;;;;26261:40:0;;-1:-1:-1;;;26261:40:0;;:99;;-1:-1:-1;;;;;;;26312:48:0;;-1:-1:-1;;;26312:48:0;26261:99;:160;;;-1:-1:-1;;;;;;;26371:50:0;;-1:-1:-1;;;26371:50:0;26261:160;:207;;;-1:-1:-1;;;;;;;;;;4933:40:0;;;26432:36;26247:221;26104:370;-1:-1:-1;;26104:370:0:o;41133:73::-;1795:13;:11;:13::i;:::-;41185:6:::1;:15:::0;;-1:-1:-1;;41185:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41133:73::o;27830:94::-;27884:13;27913:5;27906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27830:94;:::o;29355:204::-;29423:7;29447:16;29455:7;31237:4;31267:12;-1:-1:-1;31257:22:0;31180:105;29447:16;29439:74;;;;-1:-1:-1;;;29439:74:0;;18395:2:1;29439:74:0;;;18377:21:1;18434:2;18414:18;;;18407:30;18473:34;18453:18;;;18446:62;-1:-1:-1;;;18524:18:1;;;18517:43;18577:19;;29439:74:0;;;;;;;;;-1:-1:-1;29529:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29529:24:0;;29355:204::o;28918:379::-;28987:13;29003:24;29019:7;29003:15;:24::i;:::-;28987:40;;29048:5;-1:-1:-1;;;;;29042:11:0;:2;-1:-1:-1;;;;;29042:11:0;;;29034:58;;;;-1:-1:-1;;;29034:58:0;;15212:2:1;29034:58:0;;;15194:21:1;15251:2;15231:18;;;15224:30;15290:34;15270:18;;;15263:62;-1:-1:-1;;;15341:18:1;;;15334:32;15383:19;;29034:58:0;15010:398:1;29034:58:0;698:10;-1:-1:-1;;;;;29117:21:0;;;;:62;;-1:-1:-1;29142:37:0;29159:5;698:10;29960:186;:::i;29142:37::-;29101:153;;;;-1:-1:-1;;;29101:153:0;;12074:2:1;29101:153:0;;;12056:21:1;12113:2;12093:18;;;12086:30;12152:34;12132:18;;;12125:62;12223:27;12203:18;;;12196:55;12268:19;;29101:153:0;11872:421:1;29101:153:0;29263:28;29272:2;29276:7;29285:5;29263:8;:28::i;:::-;28980:317;28918:379;;:::o;40795:94::-;1795:13;:11;:13::i;:::-;40861:9:::1;:22:::0;40795:94::o;24664:98::-;24717:7;24755:1;24740:12;;:16;;;;:::i;:::-;24733:23;;24664:98;:::o;30205:142::-;30313:28;30323:4;30329:2;30333:7;30313:9;:28::i;25296:744::-;25405:7;25440:16;25450:5;25440:9;:16::i;:::-;25432:5;:24;25424:71;;;;-1:-1:-1;;;25424:71:0;;8519:2:1;25424:71:0;;;8501:21:1;8558:2;8538:18;;;8531:30;8597:34;8577:18;;;8570:62;-1:-1:-1;;;8648:18:1;;;8641:32;8690:19;;25424:71:0;8317:398:1;25424:71:0;25502:22;25527:13;:11;:13::i;:::-;25502:38;;25547:19;25577:25;25627:9;25622:350;25646:14;25642:1;:18;25622:350;;;25676:31;25710:14;;;:11;:14;;;;;;;;;25676:48;;;;;;;;;-1:-1:-1;;;;;25676:48:0;;;;;-1:-1:-1;;;25676:48:0;;;;;;;;;;;;25737:28;25733:89;;25798:14;;;-1:-1:-1;25733:89:0;25855:5;-1:-1:-1;;;;;25834:26:0;:17;-1:-1:-1;;;;;25834:26:0;;25830:135;;;25892:5;25877:11;:20;25873:59;;;-1:-1:-1;25919:1:0;-1:-1:-1;25912:8:0;;-1:-1:-1;;;25912:8:0;25873:59;25942:13;;;;:::i;:::-;;;;25830:135;-1:-1:-1;25662:3:0;;;;:::i;:::-;;;;25622:350;;;-1:-1:-1;25978:56:0;;-1:-1:-1;;;25978:56:0;;16795:2:1;25978:56:0;;;16777:21:1;16834:2;16814:18;;;16807:30;16873:34;16853:18;;;16846:62;-1:-1:-1;;;16924:18:1;;;16917:44;16978:19;;25978:56:0;16593:410:1;41213:158:0;1795:13;:11;:13::i;:::-;41284:58:::1;::::0;41266:12:::1;::::0;41292:10:::1;::::0;41316:21:::1;::::0;41266:12;41284:58;41266:12;41284:58;41316:21;41292:10;41284:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41265:77;;;41357:7;41349:16;;;::::0;::::1;;41258:113;41213:158::o:0;30410:157::-;30522:39;30539:4;30545:2;30549:7;30522:39;;;;;;;;;;;;:16;:39::i;39899:348::-;39974:16;40002:23;40028:17;40038:6;40028:9;:17::i;:::-;40002:43;;40052:25;40094:15;40080:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40080:30:0;;40052:58;;40122:9;40117:103;40137:15;40133:1;:19;40117:103;;;40182:30;40202:6;40210:1;40182:19;:30::i;:::-;40168:8;40177:1;40168:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;40154:3;;;;:::i;:::-;;;;40117:103;;;-1:-1:-1;40233:8:0;39899:348;-1:-1:-1;;;39899:348:0:o;40707:80::-;1795:13;:11;:13::i;:::-;40766:4:::1;:15:::0;40707:80::o;24831:177::-;24898:7;24930:13;:11;:13::i;:::-;24922:5;:21;24914:69;;;;-1:-1:-1;;;24914:69:0;;10861:2:1;24914:69:0;;;10843:21:1;10900:2;10880:18;;;10873:30;10939:34;10919:18;;;10912:62;-1:-1:-1;;;10990:18:1;;;10983:33;11033:19;;24914:69:0;10659:399:1;24914:69:0;-1:-1:-1;24997:5:0;24831:177::o;40897:98::-;1795:13;:11;:13::i;:::-;40968:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40897:98:::0;:::o;27653:118::-;27717:7;27740:20;27752:7;27740:11;:20::i;:::-;:25;;27653:118;-1:-1:-1;;27653:118:0:o;38402:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26530:211::-;26594:7;-1:-1:-1;;;;;26618:19:0;;26610:75;;;;-1:-1:-1;;;26610:75:0;;12851:2:1;26610:75:0;;;12833:21:1;12890:2;12870:18;;;12863:30;12929:34;12909:18;;;12902:62;-1:-1:-1;;;12980:18:1;;;12973:41;13031:19;;26610:75:0;12649:407:1;26610:75:0;-1:-1:-1;;;;;;26707:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26707:27:0;;26530:211::o;2557:103::-;1795:13;:11;:13::i;:::-;2622:30:::1;2649:1;2622:18;:30::i;:::-;2557:103::o:0;39580:305::-;1795:13;:11;:13::i;:::-;39682:1:::1;39668:11;:15;39660:55;;;::::0;-1:-1:-1;;;39660:55:0;;18809:2:1;39660:55:0::1;::::0;::::1;18791:21:1::0;18848:2;18828:18;;;18821:30;18887:29;18867:18;;;18860:57;18934:18;;39660:55:0::1;18607:351:1::0;39660:55:0::1;39722:14;39739:13;:11;:13::i;:::-;39791:9;::::0;39722:30;;-1:-1:-1;39767:20:0::1;39776:11:::0;39722:30;39767:20:::1;:::i;:::-;:33;;39759:68;;;::::0;-1:-1:-1;;;39759:68:0;;12500:2:1;39759:68:0::1;::::0;::::1;12482:21:1::0;12539:2;12519:18;;;12512:30;-1:-1:-1;;;12558:18:1;;;12551:52;12620:18;;39759:68:0::1;12298:346:1::0;39759:68:0::1;39838:35;39848:11;39861;39838:9;:35::i;27985:98::-:0;28041:13;28070:7;28063:14;;;;;:::i;38906:607::-;38967:6;;;;38966:7;38958:54;;;;-1:-1:-1;;;38958:54:0;;11671:2:1;38958:54:0;;;11653:21:1;11710:2;11690:18;;;11683:30;11749:34;11729:18;;;11722:62;-1:-1:-1;;;11800:18:1;;;11793:32;11842:19;;38958:54:0;11469:398:1;38958:54:0;39019:14;39036:13;:11;:13::i;:::-;39019:30;;39073:1;39064:6;:10;39056:61;;;;-1:-1:-1;;;39056:61:0;;13263:2:1;39056:61:0;;;13245:21:1;13302:2;13282:18;;;13275:30;13341:34;13321:18;;;13314:62;-1:-1:-1;;;13392:18:1;;;13385:36;13438:19;;39056:61:0;13061:402:1;39056:61:0;39142:7;;39132:6;:17;;39124:72;;;;-1:-1:-1;;;39124:72:0;;17210:2:1;39124:72:0;;;17192:21:1;17249:2;17229:18;;;17222:30;17288:34;17268:18;;;17261:62;-1:-1:-1;;;17339:18:1;;;17332:40;17389:19;;39124:72:0;17008:406:1;39124:72:0;39230:9;;39211:15;39220:6;39211;:15;:::i;:::-;:28;;39203:62;;;;-1:-1:-1;;;39203:62:0;;10511:2:1;39203:62:0;;;10493:21:1;10550:2;10530:18;;;10523:30;-1:-1:-1;;;10569:18:1;;;10562:51;10630:18;;39203:62:0;10309:345:1;39203:62:0;39285:4;39276:6;:13;39272:188;;;39321:10;39325:6;39321:1;:10;:::i;:::-;39308:9;:23;;39300:61;;;;-1:-1:-1;;;39300:61:0;;9339:2:1;39300:61:0;;;9321:21:1;9378:2;9358:18;;;9351:30;9417:27;9397:18;;;9390:55;9462:18;;39300:61:0;9137:349:1;39300:61:0;39272:188;;;39412:6;39405:4;;:13;;;;:::i;:::-;39392:9;:26;;39384:68;;;;-1:-1:-1;;;39384:68:0;;18037:2:1;39384:68:0;;;18019:21:1;18076:2;18056:18;;;18049:30;18115:31;18095:18;;;18088:59;18164:18;;39384:68:0;17835:353:1;39384:68:0;39470:31;698:10;39494:6;39470:9;:31::i;29623:274::-;-1:-1:-1;;;;;29714:24:0;;698:10;29714:24;;29706:63;;;;-1:-1:-1;;;29706:63:0;;14438:2:1;29706:63:0;;;14420:21:1;14477:2;14457:18;;;14450:30;14516:28;14496:18;;;14489:56;14562:18;;29706:63:0;14236:350:1;29706:63:0;698:10;29778:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29778:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29778:53:0;;;;;;;;;;29843:48;;8041:41:1;;;29778:42:0;;698:10;29843:48;;8014:18:1;29843:48:0;;;;;;;29623:274;;:::o;30630:311::-;30767:28;30777:4;30783:2;30787:7;30767:9;:28::i;:::-;30818:48;30841:4;30847:2;30851:7;30860:5;30818:22;:48::i;:::-;30802:133;;;;-1:-1:-1;;;30802:133:0;;;;;;;:::i;:::-;30630:311;;;;:::o;38428:37::-;;;;;;;:::i;40253:430::-;40351:13;40392:16;40400:7;31237:4;31267:12;-1:-1:-1;31257:22:0;31180:105;40392:16;40376:98;;;;-1:-1:-1;;;40376:98:0;;8922:2:1;40376:98:0;;;8904:21:1;8961:2;8941:18;;;8934:30;9000:34;8980:18;;;8973:62;-1:-1:-1;;;9051:18:1;;;9044:46;9107:19;;40376:98:0;8720:412:1;40376:98:0;40489:28;40520:10;:8;:10::i;:::-;40489:41;;40575:1;40550:14;40544:28;:32;:133;;;;;;;;;;;;;;;;;40612:14;40628:18;:7;:16;:18::i;:::-;40648:13;40595:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40544:133;40537:140;40253:430;-1:-1:-1;;;40253:430:0:o;41001:122::-;1795:13;:11;:13::i;:::-;41084:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;2815:201::-:0;1795:13;:11;:13::i;:::-;-1:-1:-1;;;;;2904:22:0;::::1;2896:73;;;::::0;-1:-1:-1;;;2896:73:0;;9693:2:1;2896:73:0::1;::::0;::::1;9675:21:1::0;9732:2;9712:18;;;9705:30;9771:34;9751:18;;;9744:62;-1:-1:-1;;;9822:18:1;;;9815:36;9868:19;;2896:73:0::1;9491:402:1::0;2896:73:0::1;2980:28;2999:8;2980:18;:28::i;2074:132::-:0;1982:6;;-1:-1:-1;;;;;1982:6:0;698:10;2138:23;2130:68;;;;-1:-1:-1;;;2130:68:0;;14077:2:1;2130:68:0;;;14059:21:1;;;14096:18;;;14089:30;14155:34;14135:18;;;14128:62;14207:18;;2130:68:0;13875:356:1;34783:172:0;34880:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34880:29:0;-1:-1:-1;;;;;34880:29:0;;;;;;;;;34921:28;;34880:24;;34921:28;;;;;;;34783:172;;;:::o;33148:1529::-;33245:35;33283:20;33295:7;33283:11;:20::i;:::-;33354:18;;33245:58;;-1:-1:-1;33312:22:0;;-1:-1:-1;;;;;33338:34:0;698:10;-1:-1:-1;;;;;33338:34:0;;:81;;;-1:-1:-1;698:10:0;33383:20;33395:7;33383:11;:20::i;:::-;-1:-1:-1;;;;;33383:36:0;;33338:81;:142;;;-1:-1:-1;33447:18:0;;33430:50;;698:10;29960:186;:::i;33430:50::-;33312:169;;33506:17;33490:101;;;;-1:-1:-1;;;33490:101:0;;14793:2:1;33490:101:0;;;14775:21:1;14832:2;14812:18;;;14805:30;14871:34;14851:18;;;14844:62;-1:-1:-1;;;14922:18:1;;;14915:48;14980:19;;33490:101:0;14591:414:1;33490:101:0;33638:4;-1:-1:-1;;;;;33616:26:0;:13;:18;;;-1:-1:-1;;;;;33616:26:0;;33600:98;;;;-1:-1:-1;;;33600:98:0;;13670:2:1;33600:98:0;;;13652:21:1;13709:2;13689:18;;;13682:30;13748:34;13728:18;;;13721:62;-1:-1:-1;;;13799:18:1;;;13792:36;13845:19;;33600:98:0;13468:402:1;33600:98:0;-1:-1:-1;;;;;33713:16:0;;33705:66;;;;-1:-1:-1;;;33705:66:0;;11265:2:1;33705:66:0;;;11247:21:1;11304:2;11284:18;;;11277:30;11343:34;11323:18;;;11316:62;-1:-1:-1;;;11394:18:1;;;11387:35;11439:19;;33705:66:0;11063:401:1;33705:66:0;33880:49;33897:1;33901:7;33910:13;:18;;;33880:8;:49::i;:::-;-1:-1:-1;;;;;33938:18:0;;;;;;:12;:18;;;;;:31;;33968:1;;33938:18;:31;;33968:1;;-1:-1:-1;;;;;33938:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;33938:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33976:16:0;;-1:-1:-1;33976:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;33976:16:0;;:29;;-1:-1:-1;;33976:29:0;;:::i;:::-;;;-1:-1:-1;;;;;33976:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34035:43:0;;;;;;;;-1:-1:-1;;;;;34035:43:0;;;;;;34061:15;34035:43;;;;;;;;;-1:-1:-1;34012:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34012:66:0;-1:-1:-1;;;;;;34012:66:0;;;;;;;;;;;34328:11;34024:7;-1:-1:-1;34328:11:0;:::i;:::-;34391:1;34350:24;;;:11;:24;;;;;:29;34306:33;;-1:-1:-1;;;;;;34350:29:0;34346:236;;34408:20;34416:11;31237:4;31267:12;-1:-1:-1;31257:22:0;31180:105;34408:20;34404:171;;;34468:97;;;;;;;;34495:18;;-1:-1:-1;;;;;34468:97:0;;;;;;34526:28;;;;34468:97;;;;;;;;;;-1:-1:-1;34441:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34441:124:0;-1:-1:-1;;;;;;34441:124:0;;;;;;;;;;;;34404:171;34614:7;34610:2;-1:-1:-1;;;;;34595:27:0;34604:4;-1:-1:-1;;;;;34595:27:0;;;;;;;;;;;34629:42;33238:1439;;;33148:1529;;;:::o;26993:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27110:16:0;27118:7;31237:4;31267:12;-1:-1:-1;31257:22:0;31180:105;27110:16;27102:71;;;;-1:-1:-1;;;27102:71:0;;10100:2:1;27102:71:0;;;10082:21:1;10139:2;10119:18;;;10112:30;10178:34;10158:18;;;10151:62;-1:-1:-1;;;10229:18:1;;;10222:40;10279:19;;27102:71:0;9898:406:1;27102:71:0;27182:26;27230:12;27219:7;:23;27215:93;;27274:22;27284:12;27274:7;:22;:::i;:::-;:26;;27299:1;27274:26;:::i;:::-;27253:47;;27215:93;27336:7;27316:212;27353:18;27345:4;:26;27316:212;;27390:31;27424:17;;;:11;:17;;;;;;;;;27390:51;;;;;;;;;-1:-1:-1;;;;;27390:51:0;;;;;-1:-1:-1;;;27390:51:0;;;;;;;;;;;;27454:28;27450:71;;27502:9;26993:606;-1:-1:-1;;;;26993:606:0:o;27450:71::-;-1:-1:-1;27373:6:0;;;;:::i;:::-;;;;27316:212;;;-1:-1:-1;27536:57:0;;-1:-1:-1;;;27536:57:0;;17621:2:1;27536:57:0;;;17603:21:1;17660:2;17640:18;;;17633:30;17699:34;17679:18;;;17672:62;-1:-1:-1;;;17750:18:1;;;17743:45;17805:19;;27536:57:0;17419:411:1;3176:191:0;3269:6;;;-1:-1:-1;;;;;3286:17:0;;;-1:-1:-1;;;;;;3286:17:0;;;;;;;3319:40;;3269:6;;;3286:17;3269:6;;3319:40;;3250:16;;3319:40;3239:128;3176:191;:::o;31291:98::-;31356:27;31366:2;31370:8;31356:27;;;;;;;;;;;;:9;:27::i;36494:690::-;36631:4;-1:-1:-1;;;;;36648:13:0;;13438:19;:23;36644:535;;36687:72;;-1:-1:-1;;;36687:72:0;;-1:-1:-1;;;;;36687:36:0;;;;;:72;;698:10;;36738:4;;36744:7;;36753:5;;36687:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36687:72:0;;;;;;;;-1:-1:-1;;36687:72:0;;;;;;;;;;;;:::i;:::-;;;36674:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36918:13:0;;36914:215;;36951:61;;-1:-1:-1;;;36951:61:0;;;;;;;:::i;36914:215::-;37097:6;37091:13;37082:6;37078:2;37074:15;37067:38;36674:464;-1:-1:-1;;;;;;36809:55:0;-1:-1:-1;;;36809:55:0;;-1:-1:-1;36802:62:0;;36644:535;-1:-1:-1;37167:4:0;36644:535;36494:690;;;;;;:::o;38785:102::-;38845:13;38874:7;38867:14;;;;;:::i;20747:723::-;20803:13;21024:10;21020:53;;-1:-1:-1;;21051:10:0;;;;;;;;;;;;-1:-1:-1;;;21051:10:0;;;;;20747:723::o;21020:53::-;21098:5;21083:12;21139:78;21146:9;;21139:78;;21172:8;;;;:::i;:::-;;-1:-1:-1;21195:10:0;;-1:-1:-1;21203:2:0;21195:10;;:::i;:::-;;;21139:78;;;21227:19;21259:6;21249:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21249:17:0;;21227:39;;21277:154;21284:10;;21277:154;;21311:11;21321:1;21311:11;;:::i;:::-;;-1:-1:-1;21380:10:0;21388:2;21380:5;:10;:::i;:::-;21367:24;;:2;:24;:::i;:::-;21354:39;;21337:6;21344;21337:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21337:56:0;;;;;;;;-1:-1:-1;21408:11:0;21417:2;21408:11;;:::i;:::-;;;21277:154;;31644:1272;31749:20;31772:12;-1:-1:-1;;;;;31799:16:0;;31791:62;;;;-1:-1:-1;;;31791:62:0;;16393:2:1;31791:62:0;;;16375:21:1;16432:2;16412:18;;;16405:30;16471:34;16451:18;;;16444:62;-1:-1:-1;;;16522:18:1;;;16515:31;16563:19;;31791:62:0;16191:397:1;31791:62:0;31990:21;31998:12;31237:4;31267:12;-1:-1:-1;31257:22:0;31180:105;31990:21;31989:22;31981:64;;;;-1:-1:-1;;;31981:64:0;;16035:2:1;31981:64:0;;;16017:21:1;16074:2;16054:18;;;16047:30;16113:31;16093:18;;;16086:59;16162:18;;31981:64:0;15833:353:1;31981:64:0;32072:12;32060:8;:24;;32052:71;;;;-1:-1:-1;;;32052:71:0;;19165:2:1;32052:71:0;;;19147:21:1;19204:2;19184:18;;;19177:30;19243:34;19223:18;;;19216:62;-1:-1:-1;;;19294:18:1;;;19287:32;19336:19;;32052:71:0;18963:398:1;32052:71:0;-1:-1:-1;;;;;32235:16:0;;32202:30;32235:16;;;:12;:16;;;;;;;;;32202:49;;;;;;;;;-1:-1:-1;;;;;32202:49:0;;;;;-1:-1:-1;;;32202:49:0;;;;;;;;;;;32277:119;;;;;;;;32297:19;;32202:49;;32277:119;;;32297:39;;32327:8;;32297:39;:::i;:::-;-1:-1:-1;;;;;32277:119:0;;;;;32380:8;32345:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32277:119:0;;;;;;-1:-1:-1;;;;;32258:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32258:138:0;;;;;;;;;;;;32431:43;;;;;;;;;;;32457:15;32431:43;;;;;;;;32403:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32403:71:0;-1:-1:-1;;;;;;32403:71:0;;;;;;;;;;;;;;;;;;32415:12;;32527:281;32551:8;32547:1;:12;32527:281;;;32580:38;;32605:12;;-1:-1:-1;;;;;32580:38:0;;;32597:1;;32580:38;;32597:1;;32580:38;32645:59;32676:1;32680:2;32684:12;32698:5;32645:22;:59::i;:::-;32627:150;;;;-1:-1:-1;;;32627:150:0;;;;;;;:::i;:::-;32786:14;;;;:::i;:::-;;;;32561:3;;;;;:::i;:::-;;;;32527:281;;;-1:-1:-1;32816:12:0;:27;;;32850:60;30630:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:1527::-;5045:3;5083:6;5077:13;5109:4;5122:51;5166:6;5161:3;5156:2;5148:6;5144:15;5122:51;:::i;:::-;5236:13;;5195:16;;;;5258:55;5236:13;5195:16;5280:15;;;5258:55;:::i;:::-;5402:13;;5335:20;;;5375:1;;5462;5484:18;;;;5537;;;;5564:93;;5642:4;5632:8;5628:19;5616:31;;5564:93;5705:2;5695:8;5692:16;5672:18;5669:40;5666:167;;;-1:-1:-1;;;5732:33:1;;5788:4;5785:1;5778:15;5818:4;5739:3;5806:17;5666:167;5849:18;5876:110;;;;6000:1;5995:328;;;;5842:481;;5876:110;-1:-1:-1;;5911:24:1;;5897:39;;5956:20;;;;-1:-1:-1;5876:110:1;;5995:328;19621:1;19614:14;;;19658:4;19645:18;;6090:1;6104:169;6118:8;6115:1;6112:15;6104:169;;;6200:14;;6185:13;;;6178:37;6243:16;;;;6135:10;;6104:169;;;6108:3;;6304:8;6297:5;6293:20;6286:27;;5842:481;-1:-1:-1;6339:3:1;;4821:1527;-1:-1:-1;;;;;;;;;;;4821:1527:1:o;6771:488::-;-1:-1:-1;;;;;7040:15:1;;;7022:34;;7092:15;;7087:2;7072:18;;7065:43;7139:2;7124:18;;7117:34;;;7187:3;7182:2;7167:18;;7160:31;;;6965:4;;7208:45;;7233:19;;7225:6;7208:45;:::i;:::-;7200:53;6771:488;-1:-1:-1;;;;;;6771:488:1:o;7264:632::-;7435:2;7487:21;;;7557:13;;7460:18;;;7579:22;;;7406:4;;7435:2;7658:15;;;;7632:2;7617:18;;;7406:4;7701:169;7715:6;7712:1;7709:13;7701:169;;;7776:13;;7764:26;;7845:15;;;;7810:12;;;;7737:1;7730:9;7701:169;;;-1:-1:-1;7887:3:1;;7264:632;-1:-1:-1;;;;;;7264:632:1:o;8093:219::-;8242:2;8231:9;8224:21;8205:4;8262:44;8302:2;8291:9;8287:18;8279:6;8262:44;:::i;15413:415::-;15615:2;15597:21;;;15654:2;15634:18;;;15627:30;15693:34;15688:2;15673:18;;15666:62;-1:-1:-1;;;15759:2:1;15744:18;;15737:49;15818:3;15803:19;;15413:415::o;19674:253::-;19714:3;-1:-1:-1;;;;;19803:2:1;19800:1;19796:10;19833:2;19830:1;19826:10;19864:3;19860:2;19856:12;19851:3;19848:21;19845:47;;;19872:18;;:::i;:::-;19908:13;;19674:253;-1:-1:-1;;;;19674:253:1:o;19932:128::-;19972:3;20003:1;19999:6;19996:1;19993:13;19990:39;;;20009:18;;:::i;:::-;-1:-1:-1;20045:9:1;;19932:128::o;20065:120::-;20105:1;20131;20121:35;;20136:18;;:::i;:::-;-1:-1:-1;20170:9:1;;20065:120::o;20190:168::-;20230:7;20296:1;20292;20288:6;20284:14;20281:1;20278:21;20273:1;20266:9;20259:17;20255:45;20252:71;;;20303:18;;:::i;:::-;-1:-1:-1;20343:9:1;;20190:168::o;20363:246::-;20403:4;-1:-1:-1;;;;;20516:10:1;;;;20486;;20538:12;;;20535:38;;;20553:18;;:::i;:::-;20590:13;;20363:246;-1:-1:-1;;;20363:246:1:o;20614:125::-;20654:4;20682:1;20679;20676:8;20673:34;;;20687:18;;:::i;:::-;-1:-1:-1;20724:9:1;;20614:125::o;20744:258::-;20816:1;20826:113;20840:6;20837:1;20834:13;20826:113;;;20916:11;;;20910:18;20897:11;;;20890:39;20862:2;20855:10;20826:113;;;20957:6;20954:1;20951:13;20948:48;;;-1:-1:-1;;20992:1:1;20974:16;;20967:27;20744:258::o;21007:136::-;21046:3;21074:5;21064:39;;21083:18;;:::i;:::-;-1:-1:-1;;;21119:18:1;;21007:136::o;21148:380::-;21227:1;21223:12;;;;21270;;;21291:61;;21345:4;21337:6;21333:17;21323:27;;21291:61;21398:2;21390:6;21387:14;21367:18;21364:38;21361:161;;;21444:10;21439:3;21435:20;21432:1;21425:31;21479:4;21476:1;21469:15;21507:4;21504:1;21497:15;21361:161;;21148:380;;;:::o;21533:135::-;21572:3;-1:-1:-1;;21593:17:1;;21590:43;;;21613:18;;:::i;:::-;-1:-1:-1;21660:1:1;21649:13;;21533:135::o;21673:112::-;21705:1;21731;21721:35;;21736:18;;:::i;:::-;-1:-1:-1;21770:9:1;;21673:112::o;21790:127::-;21851:10;21846:3;21842:20;21839:1;21832:31;21882:4;21879:1;21872:15;21906:4;21903:1;21896:15;21922:127;21983:10;21978:3;21974:20;21971:1;21964:31;22014:4;22011:1;22004:15;22038:4;22035:1;22028:15;22054:127;22115:10;22110:3;22106:20;22103:1;22096:31;22146:4;22143:1;22136:15;22170:4;22167:1;22160:15;22186:127;22247:10;22242:3;22238:20;22235:1;22228:31;22278:4;22275:1;22268:15;22302:4;22299:1;22292:15;22318:131;-1:-1:-1;;;;;;22392:32:1;;22382:43;;22372:71;;22439:1;22436;22429:12

Swarm Source

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