ETH Price: $3,098.53 (+2.16%)
Gas: 3 Gwei

Token

Goblin Beaches (GBWTF)
 

Overview

Max Total Supply

1,410 GBWTF

Holders

1,033

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 GBWTF
0x57797c4814608a46494f9bed5541b94d0a037fcf
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:
GoblinBeaches

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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


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

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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

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

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

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID. 
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count. 
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @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 Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _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 {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * 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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * 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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/GoblinBeaches.sol


pragma solidity ^0.8.11;



contract GoblinBeaches is ERC721A, Ownable {
  string _baseTokenURI;
  
  bool public isActive = false;
  uint256 public mintPrice = 0.0069 ether;
  uint256 public MAX_SUPPLY = 6969;
  uint256 public maxPerPurchase = 10;

  constructor(string memory baseURI) ERC721A("Goblin Beaches", "GBWTF") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    maxPerPurchase = _count;
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    MAX_SUPPLY = maxMintSupply;
  }

  function toggleBeach() public onlyAuthorized {
    isActive = !isActive;
  }

  function setPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

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

  function freeBeach(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();
    uint256 discountPrice = _count;

    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(
      _count <= maxPerPurchase,
      "Exceeds maximum allowed tokens"
    );

    if(_count > 1){
      discountPrice = _count - 1;
    }

    if(balanceOf(msg.sender) >= 1 || _count > 1) {
      require(msg.value >= mintPrice * discountPrice, "Insufficient ETH amount sent.");
    }
   
    _safeMint(msg.sender, _count);

  }

  function partialWithdraw() external onlyAuthorized {
      uint balance = address(this).balance;
      payable(owner()).transfer(balance * 2500 / 10000);
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeBeach","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partialWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":[],"name":"toggleBeach","outputs":[],"stateMutability":"nonpayable","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506618838370f34000600b55611b39600c55600a600d553480156200004257600080fd5b50604051620033cf380380620033cf833981810160405281019062000068919062000504565b6040518060400160405280600e81526020017f476f626c696e20426561636865730000000000000000000000000000000000008152506040518060400160405280600581526020017f47425754460000000000000000000000000000000000000000000000000000008152508160029080519060200190620000ec929190620002b7565b50806003908051906020019062000105929190620002b7565b50620001166200015660201b60201c565b60008190555050506200013e620001326200015b60201b60201c565b6200016360201b60201c565b6200014f816200022960201b60201c565b50620005ba565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002506200028d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027157600080fd5b806009908051906020019062000289929190620002b7565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002c59062000584565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003d08262000385565b810181811067ffffffffffffffff82111715620003f257620003f162000396565b5b80604052505050565b60006200040762000367565b9050620004158282620003c5565b919050565b600067ffffffffffffffff82111562000438576200043762000396565b5b620004438262000385565b9050602081019050919050565b60005b838110156200047057808201518184015260208101905062000453565b8381111562000480576000848401525b50505050565b60006200049d62000497846200041a565b620003fb565b905082815260208101848484011115620004bc57620004bb62000380565b5b620004c984828562000450565b509392505050565b600082601f830112620004e957620004e86200037b565b5b8151620004fb84826020860162000486565b91505092915050565b6000602082840312156200051d576200051c62000371565b5b600082015167ffffffffffffffff8111156200053e576200053d62000376565b5b6200054c84828501620004d1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059d57607f821691505b60208210811415620005b457620005b362000555565b5b50919050565b612e0580620005ca6000396000f3fe6080604052600436106101c25760003560e01c80636817c76c116100f7578063a22cb46511610095578063e984ee3f11610064578063e984ee3f14610606578063e985e9c514610622578063f2fde38b1461065f578063f90ca11714610688576101c2565b8063a22cb46514610560578063b88d4fde14610589578063be901d10146105b2578063c87b56dd146105c9576101c2565b80637389fbb7116100d15780637389fbb7146104b85780638da5cb5b146104e157806391b7f5ed1461050c57806395d89b4114610535576101c2565b80636817c76c1461043957806370a0823114610464578063715018a6146104a1576101c2565b806332cb6b0c11610164578063498d16b81161013e578063498d16b81461037f5780634dfea627146103aa57806355f804b3146103d35780636352211e146103fc576101c2565b806332cb6b0c146103145780633ccfd60b1461033f57806342842e0e14610356576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806322f3e2d4146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061215d565b61069f565b6040516101fb91906121a5565b60405180910390f35b34801561021057600080fd5b50610219610731565b6040516102269190612259565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906122b1565b6107c3565b604051610263919061231f565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612366565b61083f565b005b3480156102a157600080fd5b506102aa6109e6565b6040516102b791906123b5565b60405180910390f35b3480156102cc57600080fd5b506102d56109fd565b6040516102e291906121a5565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906123d0565b610a10565b005b34801561032057600080fd5b50610329610a20565b60405161033691906123b5565b60405180910390f35b34801561034b57600080fd5b50610354610a26565b005b34801561036257600080fd5b5061037d600480360381019061037891906123d0565b610abb565b005b34801561038b57600080fd5b50610394610adb565b6040516103a191906123b5565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906122b1565b610ae1565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612558565b610b2a565b005b34801561040857600080fd5b50610423600480360381019061041e91906122b1565b610b83565b604051610430919061231f565b60405180910390f35b34801561044557600080fd5b5061044e610b95565b60405161045b91906123b5565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906125a1565b610b9b565b60405161049891906123b5565b60405180910390f35b3480156104ad57600080fd5b506104b6610c54565b005b3480156104c457600080fd5b506104df60048036038101906104da91906122b1565b610cdc565b005b3480156104ed57600080fd5b506104f6610d25565b604051610503919061231f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906122b1565b610d4f565b005b34801561054157600080fd5b5061054a610d98565b6040516105579190612259565b60405180910390f35b34801561056c57600080fd5b50610587600480360381019061058291906125fa565b610e2a565b005b34801561059557600080fd5b506105b060048036038101906105ab91906126db565b610fa2565b005b3480156105be57600080fd5b506105c7611015565b005b3480156105d557600080fd5b506105f060048036038101906105eb91906122b1565b611080565b6040516105fd9190612259565b60405180910390f35b610620600480360381019061061b91906122b1565b61111f565b005b34801561062e57600080fd5b506106496004803603810190610644919061275e565b611331565b60405161065691906121a5565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906125a1565b6113c5565b005b34801561069457600080fd5b5061069d6114bd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610740906127cd565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906127cd565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce8261156c565b610804576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084a826115cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d1611699565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f8611699565b611331565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f06116a1565b6001546000540303905090565b600a60009054906101000a900460ff1681565b610a1b8383836116a6565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610a45610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610a6557600080fd5b6000479050610a72610d25565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b610ad683838360405180602001604052806000815250610fa2565b505050565b600d5481565b3373ffffffffffffffffffffffffffffffffffffffff16610b00610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610b2057600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610b49610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610b6957600080fd5b8060099080519060200190610b7f92919061204e565b5050565b6000610b8e826115cb565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c5c611a50565b73ffffffffffffffffffffffffffffffffffffffff16610c7a610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc79061284b565b60405180910390fd5b610cda6000611a58565b565b3373ffffffffffffffffffffffffffffffffffffffff16610cfb610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610d1b57600080fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16610d6e610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e57600080fd5b80600b8190555050565b606060038054610da7906127cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd3906127cd565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b610e32611699565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea4611699565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f51611699565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9691906121a5565b60405180910390a35050565b610fad8484846116a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461100f57610fd884848484611b1e565b61100e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16611034610d25565b73ffffffffffffffffffffffffffffffffffffffff161461105457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606061108b8261156c565b6110c1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110cb611c6f565b90506000815114156110ec5760405180602001604052806000815250611117565b806110f684611d01565b6040516020016111079291906128a7565b6040516020818303038152906040525b915050919050565b600c5461112a6109e6565b111561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612917565b60405180910390fd5b60006111756109e6565b90506000829050611184610d25565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120657600a60009054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612983565b60405180910390fd5b5b600c54838361121591906129d2565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90612a74565b60405180910390fd5b600d5483111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612ae0565b60405180910390fd5b60018311156112b4576001836112b19190612b00565b90505b60016112bf33610b9b565b1015806112cc5750600183115b156113225780600b546112df9190612b34565b341015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612bda565b60405180910390fd5b5b61132c3384611d5b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cd611a50565b73ffffffffffffffffffffffffffffffffffffffff166113eb610d25565b73ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061284b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612c6c565b60405180910390fd5b6114ba81611a58565b50565b3373ffffffffffffffffffffffffffffffffffffffff166114dc610d25565b73ffffffffffffffffffffffffffffffffffffffff16146114fc57600080fd5b6000479050611509610d25565b73ffffffffffffffffffffffffffffffffffffffff166108fc6127106109c4846115339190612b34565b61153d9190612cbb565b9081150290604051600060405180830381858888f19350505050158015611568573d6000803e3d6000fd5b5050565b6000816115776116a1565b11158015611586575060005482105b80156115c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115da6116a1565b11611662576000548110156116615760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561165f575b600081141561165557600460008360019003935083815260200190815260200160002054905061162a565b8092505050611694565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116b1826115cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611739611699565b73ffffffffffffffffffffffffffffffffffffffff161480611768575061176785611762611699565b611331565b5b806117ad5750611776611699565b73ffffffffffffffffffffffffffffffffffffffff16611795846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561184d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185a8585856001611d79565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61195786611d7f565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156119e15760006001840190506000600460008381526020019081526020016000205414156119df5760005481146119de578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a498585856001611d89565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b44611699565b8786866040518563ffffffff1660e01b8152600401611b669493929190612d41565b6020604051808303816000875af1925050508015611ba257506040513d601f19601f82011682018060405250810190611b9f9190612da2565b60015b611c1c573d8060008114611bd2576040519150601f19603f3d011682016040523d82523d6000602084013e611bd7565b606091505b50600081511415611c14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611c7e906127cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611caa906127cd565b8015611cf75780601f10611ccc57610100808354040283529160200191611cf7565b820191906000526020600020905b815481529060010190602001808311611cda57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d4757600183039250600a81066030018353600a81049050611d27565b508181036020830392508083525050919050565b611d75828260405180602001604052806000815250611d8f565b5050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611e37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e446000858386611d79565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ea960018514612044565b901b60a042901b611eb986611d7f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611fbd575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6d6000878480600101955087611b1e565b611fa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611efe578260005414611fb857600080fd5b612028565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611fbe575b81600081905550505061203e6000858386611d89565b50505050565b6000819050919050565b82805461205a906127cd565b90600052602060002090601f01602090048101928261207c57600085556120c3565b82601f1061209557805160ff19168380011785556120c3565b828001600101855582156120c3579182015b828111156120c25782518255916020019190600101906120a7565b5b5090506120d091906120d4565b5090565b5b808211156120ed5760008160009055506001016120d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213a81612105565b811461214557600080fd5b50565b60008135905061215781612131565b92915050565b600060208284031215612173576121726120fb565b5b600061218184828501612148565b91505092915050565b60008115159050919050565b61219f8161218a565b82525050565b60006020820190506121ba6000830184612196565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121fa5780820151818401526020810190506121df565b83811115612209576000848401525b50505050565b6000601f19601f8301169050919050565b600061222b826121c0565b61223581856121cb565b93506122458185602086016121dc565b61224e8161220f565b840191505092915050565b600060208201905081810360008301526122738184612220565b905092915050565b6000819050919050565b61228e8161227b565b811461229957600080fd5b50565b6000813590506122ab81612285565b92915050565b6000602082840312156122c7576122c66120fb565b5b60006122d58482850161229c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b82525050565b60006020820190506123346000830184612310565b92915050565b612343816122fe565b811461234e57600080fd5b50565b6000813590506123608161233a565b92915050565b6000806040838503121561237d5761237c6120fb565b5b600061238b85828601612351565b925050602061239c8582860161229c565b9150509250929050565b6123af8161227b565b82525050565b60006020820190506123ca60008301846123a6565b92915050565b6000806000606084860312156123e9576123e86120fb565b5b60006123f786828701612351565b935050602061240886828701612351565b92505060406124198682870161229c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124658261220f565b810181811067ffffffffffffffff821117156124845761248361242d565b5b80604052505050565b60006124976120f1565b90506124a3828261245c565b919050565b600067ffffffffffffffff8211156124c3576124c261242d565b5b6124cc8261220f565b9050602081019050919050565b82818337600083830152505050565b60006124fb6124f6846124a8565b61248d565b90508281526020810184848401111561251757612516612428565b5b6125228482856124d9565b509392505050565b600082601f83011261253f5761253e612423565b5b813561254f8482602086016124e8565b91505092915050565b60006020828403121561256e5761256d6120fb565b5b600082013567ffffffffffffffff81111561258c5761258b612100565b5b6125988482850161252a565b91505092915050565b6000602082840312156125b7576125b66120fb565b5b60006125c584828501612351565b91505092915050565b6125d78161218a565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b60008060408385031215612611576126106120fb565b5b600061261f85828601612351565b9250506020612630858286016125e5565b9150509250929050565b600067ffffffffffffffff8211156126555761265461242d565b5b61265e8261220f565b9050602081019050919050565b600061267e6126798461263a565b61248d565b90508281526020810184848401111561269a57612699612428565b5b6126a58482856124d9565b509392505050565b600082601f8301126126c2576126c1612423565b5b81356126d284826020860161266b565b91505092915050565b600080600080608085870312156126f5576126f46120fb565b5b600061270387828801612351565b945050602061271487828801612351565b93505060406127258782880161229c565b925050606085013567ffffffffffffffff81111561274657612745612100565b5b612752878288016126ad565b91505092959194509250565b60008060408385031215612775576127746120fb565b5b600061278385828601612351565b925050602061279485828601612351565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127e557607f821691505b602082108114156127f9576127f861279e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128356020836121cb565b9150612840826127ff565b602082019050919050565b6000602082019050818103600083015261286481612828565b9050919050565b600081905092915050565b6000612881826121c0565b61288b818561286b565b935061289b8185602086016121dc565b80840191505092915050565b60006128b38285612876565b91506128bf8284612876565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612901600f836121cb565b915061290c826128cb565b602082019050919050565b60006020820190508181036000830152612930816128f4565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061296d601d836121cb565b915061297882612937565b602082019050919050565b6000602082019050818103600083015261299c81612960565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129dd8261227b565b91506129e88361227b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a1d57612a1c6129a3565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612a5e6016836121cb565b9150612a6982612a28565b602082019050919050565b60006020820190508181036000830152612a8d81612a51565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612aca601e836121cb565b9150612ad582612a94565b602082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b6000612b0b8261227b565b9150612b168361227b565b925082821015612b2957612b286129a3565b5b828203905092915050565b6000612b3f8261227b565b9150612b4a8361227b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8357612b826129a3565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612bc4601d836121cb565b9150612bcf82612b8e565b602082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c566026836121cb565b9150612c6182612bfa565b604082019050919050565b60006020820190508181036000830152612c8581612c49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cc68261227b565b9150612cd18361227b565b925082612ce157612ce0612c8c565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000612d1382612cec565b612d1d8185612cf7565b9350612d2d8185602086016121dc565b612d368161220f565b840191505092915050565b6000608082019050612d566000830187612310565b612d636020830186612310565b612d7060408301856123a6565b8181036060830152612d828184612d08565b905095945050505050565b600081519050612d9c81612131565b92915050565b600060208284031215612db857612db76120fb565b5b6000612dc684828501612d8d565b9150509291505056fea264697066735822122099c78ba14b6667df242098e3b3504bf26de46302ea6cc8711fd9f9cca850239864736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56566d5669324a314e4339547461636b766d64317a5154543848695938574a6d51534d4654524574783566452f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636817c76c116100f7578063a22cb46511610095578063e984ee3f11610064578063e984ee3f14610606578063e985e9c514610622578063f2fde38b1461065f578063f90ca11714610688576101c2565b8063a22cb46514610560578063b88d4fde14610589578063be901d10146105b2578063c87b56dd146105c9576101c2565b80637389fbb7116100d15780637389fbb7146104b85780638da5cb5b146104e157806391b7f5ed1461050c57806395d89b4114610535576101c2565b80636817c76c1461043957806370a0823114610464578063715018a6146104a1576101c2565b806332cb6b0c11610164578063498d16b81161013e578063498d16b81461037f5780634dfea627146103aa57806355f804b3146103d35780636352211e146103fc576101c2565b806332cb6b0c146103145780633ccfd60b1461033f57806342842e0e14610356576101c2565b8063095ea7b3116101a0578063095ea7b31461026c57806318160ddd1461029557806322f3e2d4146102c057806323b872dd146102eb576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e9919061215d565b61069f565b6040516101fb91906121a5565b60405180910390f35b34801561021057600080fd5b50610219610731565b6040516102269190612259565b60405180910390f35b34801561023b57600080fd5b50610256600480360381019061025191906122b1565b6107c3565b604051610263919061231f565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612366565b61083f565b005b3480156102a157600080fd5b506102aa6109e6565b6040516102b791906123b5565b60405180910390f35b3480156102cc57600080fd5b506102d56109fd565b6040516102e291906121a5565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906123d0565b610a10565b005b34801561032057600080fd5b50610329610a20565b60405161033691906123b5565b60405180910390f35b34801561034b57600080fd5b50610354610a26565b005b34801561036257600080fd5b5061037d600480360381019061037891906123d0565b610abb565b005b34801561038b57600080fd5b50610394610adb565b6040516103a191906123b5565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc91906122b1565b610ae1565b005b3480156103df57600080fd5b506103fa60048036038101906103f59190612558565b610b2a565b005b34801561040857600080fd5b50610423600480360381019061041e91906122b1565b610b83565b604051610430919061231f565b60405180910390f35b34801561044557600080fd5b5061044e610b95565b60405161045b91906123b5565b60405180910390f35b34801561047057600080fd5b5061048b600480360381019061048691906125a1565b610b9b565b60405161049891906123b5565b60405180910390f35b3480156104ad57600080fd5b506104b6610c54565b005b3480156104c457600080fd5b506104df60048036038101906104da91906122b1565b610cdc565b005b3480156104ed57600080fd5b506104f6610d25565b604051610503919061231f565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e91906122b1565b610d4f565b005b34801561054157600080fd5b5061054a610d98565b6040516105579190612259565b60405180910390f35b34801561056c57600080fd5b50610587600480360381019061058291906125fa565b610e2a565b005b34801561059557600080fd5b506105b060048036038101906105ab91906126db565b610fa2565b005b3480156105be57600080fd5b506105c7611015565b005b3480156105d557600080fd5b506105f060048036038101906105eb91906122b1565b611080565b6040516105fd9190612259565b60405180910390f35b610620600480360381019061061b91906122b1565b61111f565b005b34801561062e57600080fd5b506106496004803603810190610644919061275e565b611331565b60405161065691906121a5565b60405180910390f35b34801561066b57600080fd5b50610686600480360381019061068191906125a1565b6113c5565b005b34801561069457600080fd5b5061069d6114bd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106fa57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061072a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610740906127cd565b80601f016020809104026020016040519081016040528092919081815260200182805461076c906127cd565b80156107b95780601f1061078e576101008083540402835291602001916107b9565b820191906000526020600020905b81548152906001019060200180831161079c57829003601f168201915b5050505050905090565b60006107ce8261156c565b610804576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084a826115cb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108b2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108d1611699565b73ffffffffffffffffffffffffffffffffffffffff1614610934576108fd816108f8611699565b611331565b610933576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109f06116a1565b6001546000540303905090565b600a60009054906101000a900460ff1681565b610a1b8383836116a6565b505050565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff16610a45610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610a6557600080fd5b6000479050610a72610d25565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b610ad683838360405180602001604052806000815250610fa2565b505050565b600d5481565b3373ffffffffffffffffffffffffffffffffffffffff16610b00610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610b2057600080fd5b80600d8190555050565b3373ffffffffffffffffffffffffffffffffffffffff16610b49610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610b6957600080fd5b8060099080519060200190610b7f92919061204e565b5050565b6000610b8e826115cb565b9050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c03576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610c5c611a50565b73ffffffffffffffffffffffffffffffffffffffff16610c7a610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc79061284b565b60405180910390fd5b610cda6000611a58565b565b3373ffffffffffffffffffffffffffffffffffffffff16610cfb610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610d1b57600080fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16610d6e610d25565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e57600080fd5b80600b8190555050565b606060038054610da7906127cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610dd3906127cd565b8015610e205780601f10610df557610100808354040283529160200191610e20565b820191906000526020600020905b815481529060010190602001808311610e0357829003601f168201915b5050505050905090565b610e32611699565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e97576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610ea4611699565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f51611699565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f9691906121a5565b60405180910390a35050565b610fad8484846116a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461100f57610fd884848484611b1e565b61100e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16611034610d25565b73ffffffffffffffffffffffffffffffffffffffff161461105457600080fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b606061108b8261156c565b6110c1576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110cb611c6f565b90506000815114156110ec5760405180602001604052806000815250611117565b806110f684611d01565b6040516020016111079291906128a7565b6040516020818303038152906040525b915050919050565b600c5461112a6109e6565b111561116b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116290612917565b60405180910390fd5b60006111756109e6565b90506000829050611184610d25565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461120657600a60009054906101000a900460ff16611205576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fc90612983565b60405180910390fd5b5b600c54838361121591906129d2565b1115611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90612a74565b60405180910390fd5b600d5483111561129b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129290612ae0565b60405180910390fd5b60018311156112b4576001836112b19190612b00565b90505b60016112bf33610b9b565b1015806112cc5750600183115b156113225780600b546112df9190612b34565b341015611321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131890612bda565b60405180910390fd5b5b61132c3384611d5b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6113cd611a50565b73ffffffffffffffffffffffffffffffffffffffff166113eb610d25565b73ffffffffffffffffffffffffffffffffffffffff1614611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061284b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890612c6c565b60405180910390fd5b6114ba81611a58565b50565b3373ffffffffffffffffffffffffffffffffffffffff166114dc610d25565b73ffffffffffffffffffffffffffffffffffffffff16146114fc57600080fd5b6000479050611509610d25565b73ffffffffffffffffffffffffffffffffffffffff166108fc6127106109c4846115339190612b34565b61153d9190612cbb565b9081150290604051600060405180830381858888f19350505050158015611568573d6000803e3d6000fd5b5050565b6000816115776116a1565b11158015611586575060005482105b80156115c4575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115da6116a1565b11611662576000548110156116615760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561165f575b600081141561165557600460008360019003935083815260200190815260200160002054905061162a565b8092505050611694565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116b1826115cb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611739611699565b73ffffffffffffffffffffffffffffffffffffffff161480611768575061176785611762611699565b611331565b5b806117ad5750611776611699565b73ffffffffffffffffffffffffffffffffffffffff16611795846107c3565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806117e6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561184d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61185a8585856001611d79565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61195786611d7f565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156119e15760006001840190506000600460008381526020019081526020016000205414156119df5760005481146119de578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a498585856001611d89565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b44611699565b8786866040518563ffffffff1660e01b8152600401611b669493929190612d41565b6020604051808303816000875af1925050508015611ba257506040513d601f19601f82011682018060405250810190611b9f9190612da2565b60015b611c1c573d8060008114611bd2576040519150601f19603f3d011682016040523d82523d6000602084013e611bd7565b606091505b50600081511415611c14576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611c7e906127cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611caa906127cd565b8015611cf75780601f10611ccc57610100808354040283529160200191611cf7565b820191906000526020600020905b815481529060010190602001808311611cda57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d4757600183039250600a81066030018353600a81049050611d27565b508181036020830392508083525050919050565b611d75828260405180602001604052806000815250611d8f565b5050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415611e37576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e446000858386611d79565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ea960018514612044565b901b60a042901b611eb986611d7f565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611fbd575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f6d6000878480600101955087611b1e565b611fa3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611efe578260005414611fb857600080fd5b612028565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611fbe575b81600081905550505061203e6000858386611d89565b50505050565b6000819050919050565b82805461205a906127cd565b90600052602060002090601f01602090048101928261207c57600085556120c3565b82601f1061209557805160ff19168380011785556120c3565b828001600101855582156120c3579182015b828111156120c25782518255916020019190600101906120a7565b5b5090506120d091906120d4565b5090565b5b808211156120ed5760008160009055506001016120d5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213a81612105565b811461214557600080fd5b50565b60008135905061215781612131565b92915050565b600060208284031215612173576121726120fb565b5b600061218184828501612148565b91505092915050565b60008115159050919050565b61219f8161218a565b82525050565b60006020820190506121ba6000830184612196565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156121fa5780820151818401526020810190506121df565b83811115612209576000848401525b50505050565b6000601f19601f8301169050919050565b600061222b826121c0565b61223581856121cb565b93506122458185602086016121dc565b61224e8161220f565b840191505092915050565b600060208201905081810360008301526122738184612220565b905092915050565b6000819050919050565b61228e8161227b565b811461229957600080fd5b50565b6000813590506122ab81612285565b92915050565b6000602082840312156122c7576122c66120fb565b5b60006122d58482850161229c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b82525050565b60006020820190506123346000830184612310565b92915050565b612343816122fe565b811461234e57600080fd5b50565b6000813590506123608161233a565b92915050565b6000806040838503121561237d5761237c6120fb565b5b600061238b85828601612351565b925050602061239c8582860161229c565b9150509250929050565b6123af8161227b565b82525050565b60006020820190506123ca60008301846123a6565b92915050565b6000806000606084860312156123e9576123e86120fb565b5b60006123f786828701612351565b935050602061240886828701612351565b92505060406124198682870161229c565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6124658261220f565b810181811067ffffffffffffffff821117156124845761248361242d565b5b80604052505050565b60006124976120f1565b90506124a3828261245c565b919050565b600067ffffffffffffffff8211156124c3576124c261242d565b5b6124cc8261220f565b9050602081019050919050565b82818337600083830152505050565b60006124fb6124f6846124a8565b61248d565b90508281526020810184848401111561251757612516612428565b5b6125228482856124d9565b509392505050565b600082601f83011261253f5761253e612423565b5b813561254f8482602086016124e8565b91505092915050565b60006020828403121561256e5761256d6120fb565b5b600082013567ffffffffffffffff81111561258c5761258b612100565b5b6125988482850161252a565b91505092915050565b6000602082840312156125b7576125b66120fb565b5b60006125c584828501612351565b91505092915050565b6125d78161218a565b81146125e257600080fd5b50565b6000813590506125f4816125ce565b92915050565b60008060408385031215612611576126106120fb565b5b600061261f85828601612351565b9250506020612630858286016125e5565b9150509250929050565b600067ffffffffffffffff8211156126555761265461242d565b5b61265e8261220f565b9050602081019050919050565b600061267e6126798461263a565b61248d565b90508281526020810184848401111561269a57612699612428565b5b6126a58482856124d9565b509392505050565b600082601f8301126126c2576126c1612423565b5b81356126d284826020860161266b565b91505092915050565b600080600080608085870312156126f5576126f46120fb565b5b600061270387828801612351565b945050602061271487828801612351565b93505060406127258782880161229c565b925050606085013567ffffffffffffffff81111561274657612745612100565b5b612752878288016126ad565b91505092959194509250565b60008060408385031215612775576127746120fb565b5b600061278385828601612351565b925050602061279485828601612351565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127e557607f821691505b602082108114156127f9576127f861279e565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128356020836121cb565b9150612840826127ff565b602082019050919050565b6000602082019050818103600083015261286481612828565b9050919050565b600081905092915050565b6000612881826121c0565b61288b818561286b565b935061289b8185602086016121dc565b80840191505092915050565b60006128b38285612876565b91506128bf8284612876565b91508190509392505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000612901600f836121cb565b915061290c826128cb565b602082019050919050565b60006020820190508181036000830152612930816128f4565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061296d601d836121cb565b915061297882612937565b602082019050919050565b6000602082019050818103600083015261299c81612960565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129dd8261227b565b91506129e88361227b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a1d57612a1c6129a3565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000612a5e6016836121cb565b9150612a6982612a28565b602082019050919050565b60006020820190508181036000830152612a8d81612a51565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000612aca601e836121cb565b9150612ad582612a94565b602082019050919050565b60006020820190508181036000830152612af981612abd565b9050919050565b6000612b0b8261227b565b9150612b168361227b565b925082821015612b2957612b286129a3565b5b828203905092915050565b6000612b3f8261227b565b9150612b4a8361227b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8357612b826129a3565b5b828202905092915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000612bc4601d836121cb565b9150612bcf82612b8e565b602082019050919050565b60006020820190508181036000830152612bf381612bb7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c566026836121cb565b9150612c6182612bfa565b604082019050919050565b60006020820190508181036000830152612c8581612c49565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612cc68261227b565b9150612cd18361227b565b925082612ce157612ce0612c8c565b5b828204905092915050565b600081519050919050565b600082825260208201905092915050565b6000612d1382612cec565b612d1d8185612cf7565b9350612d2d8185602086016121dc565b612d368161220f565b840191505092915050565b6000608082019050612d566000830187612310565b612d636020830186612310565b612d7060408301856123a6565b8181036060830152612d828184612d08565b905095945050505050565b600081519050612d9c81612131565b92915050565b600060208284031215612db857612db76120fb565b5b6000612dc684828501612d8d565b9150509291505056fea264697066735822122099c78ba14b6667df242098e3b3504bf26de46302ea6cc8711fd9f9cca850239864736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d56566d5669324a314e4339547461636b766d64317a5154543848695938574a6d51534d4654524574783566452f000000000000000000000000000000

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

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d56566d5669324a314e4339547461636b766d64317a51545438486959
Arg [4] : 38574a6d51534d4654524574783566452f000000000000000000000000000000


Deployed Bytecode Sourcemap

41844:2139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16496:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21509:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23577:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23037:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15550:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41921:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24463:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41998:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43846:134;;;;;;;;;;;;;:::i;:::-;;24704:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42035:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42369:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42778:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21298:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41954:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17175:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2606:103;;;;;;;;;;;;;:::i;:::-;;42482:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1955:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42685;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21678:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23853:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24960:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42601:78;;;;;;;;;;;;;:::i;:::-;;21853:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42999:675;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24232:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2864:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43680:160;;;;;;;;;;;;;:::i;:::-;;16496:615;16581:4;16896:10;16881:25;;:11;:25;;;;:102;;;;16973:10;16958:25;;:11;:25;;;;16881:102;:179;;;;17050:10;17035:25;;:11;:25;;;;16881:179;16861:199;;16496:615;;;:::o;21509:100::-;21563:13;21596:5;21589:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21509:100;:::o;23577:204::-;23645:7;23670:16;23678:7;23670;:16::i;:::-;23665:64;;23695:34;;;;;;;;;;;;;;23665:64;23749:15;:24;23765:7;23749:24;;;;;;;;;;;;;;;;;;;;;23742:31;;23577:204;;;:::o;23037:474::-;23110:13;23142:27;23161:7;23142:18;:27::i;:::-;23110:61;;23192:5;23186:11;;:2;:11;;;23182:48;;;23206:24;;;;;;;;;;;;;;23182:48;23270:5;23247:28;;:19;:17;:19::i;:::-;:28;;;23243:175;;23295:44;23312:5;23319:19;:17;:19::i;:::-;23295:16;:44::i;:::-;23290:128;;23367:35;;;;;;;;;;;;;;23290:128;23243:175;23457:2;23430:15;:24;23446:7;23430:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;23495:7;23491:2;23475:28;;23484:5;23475:28;;;;;;;;;;;;23099:412;23037:474;;:::o;15550:315::-;15603:7;15831:15;:13;:15::i;:::-;15816:12;;15800:13;;:28;:46;15793:53;;15550:315;:::o;41921:28::-;;;;;;;;;;;;;:::o;24463:170::-;24597:28;24607:4;24613:2;24617:7;24597:9;:28::i;:::-;24463:170;;;:::o;41998:32::-;;;;:::o;43846:134::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;43897:12:::1;43912:21;43897:36;;43948:7;:5;:7::i;:::-;43940:25;;:34;43966:7;43940:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43890:90;43846:134::o:0;24704:185::-;24842:39;24859:4;24865:2;24869:7;24842:39;;;;;;;;;;;;:16;:39::i;:::-;24704:185;;;:::o;42035:34::-;;;;:::o;42369:107::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;42464:6:::1;42447:14;:23;;;;42369:107:::0;:::o;42778:101::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;42866:7:::1;42850:13;:23;;;;;;;;;;;;:::i;:::-;;42778:101:::0;:::o;21298:144::-;21362:7;21405:27;21424:7;21405:18;:27::i;:::-;21382:52;;21298:144;;;:::o;41954:39::-;;;;:::o;17175:224::-;17239:7;17280:1;17263:19;;:5;:19;;;17259:60;;;17291:28;;;;;;;;;;;;;;17259:60;12514:13;17337:18;:25;17356:5;17337:25;;;;;;;;;;;;;;;;:54;17330:61;;17175:224;;;:::o;2606:103::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;42482:113::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;42576:13:::1;42563:10;:26;;;;42482:113:::0;:::o;1955:87::-;2001:7;2028:6;;;;;;;;;;;2021:13;;1955:87;:::o;42685:::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;42760:6:::1;42748:9;:18;;;;42685:87:::0;:::o;21678:104::-;21734:13;21767:7;21760:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21678:104;:::o;23853:308::-;23964:19;:17;:19::i;:::-;23952:31;;:8;:31;;;23948:61;;;23992:17;;;;;;;;;;;;;;23948:61;24074:8;24022:18;:39;24041:19;:17;:19::i;:::-;24022:39;;;;;;;;;;;;;;;:49;24062:8;24022:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;24134:8;24098:55;;24113:19;:17;:19::i;:::-;24098:55;;;24144:8;24098:55;;;;;;:::i;:::-;;;;;;;;23853:308;;:::o;24960:396::-;25127:28;25137:4;25143:2;25147:7;25127:9;:28::i;:::-;25188:1;25170:2;:14;;;:19;25166:183;;25209:56;25240:4;25246:2;25250:7;25259:5;25209:30;:56::i;:::-;25204:145;;25293:40;;;;;;;;;;;;;;25204:145;25166:183;24960:396;;;;:::o;42601:78::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;42665:8:::1;;;;;;;;;;;42664:9;42653:8;;:20;;;;;;;;;;;;;;;;;;42601:78::o:0;21853:318::-;21926:13;21957:16;21965:7;21957;:16::i;:::-;21952:59;;21982:29;;;;;;;;;;;;;;21952:59;22024:21;22048:10;:8;:10::i;:::-;22024:34;;22101:1;22082:7;22076:21;:26;;:87;;;;;;;;;;;;;;;;;22129:7;22138:18;22148:7;22138:9;:18::i;:::-;22112:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22076:87;22069:94;;;21853:318;;;:::o;42999:675::-;42236:10;;42219:13;:11;:13::i;:::-;:27;;42211:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;43067:17:::1;43087:13;:11;:13::i;:::-;43067:33;;43107:21;43131:6;43107:30;;43164:7;:5;:7::i;:::-;43150:21;;:10;:21;;;43146:94;;43190:8;;;;;;;;;;;43182:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;43146:94;43278:10;;43268:6;43256:9;:18;;;;:::i;:::-;:32;;43248:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;43348:14;;43338:6;:24;;43322:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;43431:1;43422:6;:10;43419:57;;;43467:1;43458:6;:10;;;;:::i;:::-;43442:26;;43419:57;43512:1;43487:21;43497:10;43487:9;:21::i;:::-;:26;;:40;;;;43526:1;43517:6;:10;43487:40;43484:142;;;43571:13;43559:9;;:25;;;;:::i;:::-;43546:9;:38;;43538:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;43484:142;43637:29;43647:10;43659:6;43637:9;:29::i;:::-;43060:614;;42999:675:::0;:::o;24232:164::-;24329:4;24353:18;:25;24372:5;24353:25;;;;;;;;;;;;;;;:35;24379:8;24353:35;;;;;;;;;;;;;;;;;;;;;;;;;24346:42;;24232:164;;;;:::o;2864:201::-;2186:12;:10;:12::i;:::-;2175:23;;:7;:5;:7::i;:::-;:23;;;2167:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2973:1:::1;2953:22;;:8;:22;;;;2945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3029:28;3048:8;3029:18;:28::i;:::-;2864:201:::0;:::o;43680:160::-;42338:10;42327:21;;:7;:5;:7::i;:::-;:21;;;42319:30;;;;;;43740:12:::1;43755:21;43740:36;;43793:7;:5;:7::i;:::-;43785:25;;:49;43828:5;43821:4;43811:7;:14;;;;:::i;:::-;:22;;;;:::i;:::-;43785:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;43731:109;43680:160::o:0;25611:273::-;25668:4;25724:7;25705:15;:13;:15::i;:::-;:26;;:66;;;;;25758:13;;25748:7;:23;25705:66;:152;;;;;25856:1;13284:8;25809:17;:26;25827:7;25809:26;;;;;;;;;;;;:43;:48;25705:152;25685:172;;25611:273;;;:::o;18813:1129::-;18880:7;18900:12;18915:7;18900:22;;18983:4;18964:15;:13;:15::i;:::-;:23;18960:915;;19017:13;;19010:4;:20;19006:869;;;19055:14;19072:17;:23;19090:4;19072:23;;;;;;;;;;;;19055:40;;19188:1;13284:8;19161:6;:23;:28;19157:699;;;19680:113;19697:1;19687:6;:11;19680:113;;;19740:17;:25;19758:6;;;;;;;19740:25;;;;;;;;;;;;19731:34;;19680:113;;;19826:6;19819:13;;;;;;19157:699;19032:843;19006:869;18960:915;19903:31;;;;;;;;;;;;;;18813:1129;;;;:::o;39593:105::-;39653:7;39680:10;39673:17;;39593:105;:::o;15073:92::-;15129:7;15073:92;:::o;30850:2515::-;30965:27;30995;31014:7;30995:18;:27::i;:::-;30965:57;;31080:4;31039:45;;31055:19;31039:45;;;31035:86;;31093:28;;;;;;;;;;;;;;31035:86;31134:22;31183:4;31160:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31204:43;31221:4;31227:19;:17;:19::i;:::-;31204:16;:43::i;:::-;31160:87;:147;;;;31288:19;:17;:19::i;:::-;31264:43;;:20;31276:7;31264:11;:20::i;:::-;:43;;;31160:147;31134:174;;31326:17;31321:66;;31352:35;;;;;;;;;;;;;;31321:66;31416:1;31402:16;;:2;:16;;;31398:52;;;31427:23;;;;;;;;;;;;;;31398:52;31463:43;31485:4;31491:2;31495:7;31504:1;31463:21;:43::i;:::-;31579:15;:24;31595:7;31579:24;;;;;;;;;;;;31572:31;;;;;;;;;;;31971:18;:24;31990:4;31971:24;;;;;;;;;;;;;;;;31969:26;;;;;;;;;;;;32040:18;:22;32059:2;32040:22;;;;;;;;;;;;;;;;32038:24;;;;;;;;;;;13566:8;13168:3;32421:15;:41;;32379:21;32397:2;32379:17;:21::i;:::-;:84;:128;32333:17;:26;32351:7;32333:26;;;;;;;;;;;:174;;;;32677:1;13566:8;32627:19;:46;:51;32623:626;;;32699:19;32731:1;32721:7;:11;32699:33;;32888:1;32854:17;:30;32872:11;32854:30;;;;;;;;;;;;:35;32850:384;;;32992:13;;32977:11;:28;32973:242;;33172:19;33139:17;:30;33157:11;33139:30;;;;;;;;;;;:52;;;;32973:242;32850:384;32680:569;32623:626;33296:7;33292:2;33277:27;;33286:4;33277:27;;;;;;;;;;;;33315:42;33336:4;33342:2;33346:7;33355:1;33315:20;:42::i;:::-;30954:2411;;30850:2515;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;3225:191::-;3299:16;3318:6;;;;;;;;;;;3299:25;;3344:8;3335:6;;:17;;;;;;;;;;;;;;;;;;3399:8;3368:40;;3389:8;3368:40;;;;;;;;;;;;3288:128;3225:191;:::o;37062:716::-;37225:4;37271:2;37246:45;;;37292:19;:17;:19::i;:::-;37313:4;37319:7;37328:5;37246:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37242:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37546:1;37529:6;:13;:18;37525:235;;;37575:40;;;;;;;;;;;;;;37525:235;37718:6;37712:13;37703:6;37699:2;37695:15;37688:38;37242:529;37415:54;;;37405:64;;;:6;:64;;;;37398:71;;;37062:716;;;;;;:::o;42885:108::-;42945:13;42974;42967:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42885:108;:::o;39804:1959::-;39861:17;40282:3;40275:4;40269:11;40265:21;40258:28;;40373:3;40367:4;40360:17;40479:3;40936:5;41066:1;41061:3;41057:11;41050:18;;41203:2;41197:4;41193:13;41189:2;41185:22;41180:3;41172:36;41244:2;41238:4;41234:13;41226:21;;40827:682;41263:4;40827:682;;;41438:1;41433:3;41429:11;41422:18;;41489:2;41483:4;41479:13;41475:2;41471:22;41466:3;41458:36;41359:2;41353:4;41349:13;41341:21;;40827:682;;;40831:431;41560:3;41555;41551:13;41675:2;41670:3;41666:12;41659:19;;41738:6;41733:3;41726:19;39900:1856;;39804:1959;;;:::o;25968:104::-;26037:27;26047:2;26051:8;26037:27;;;;;;;;;;;;:9;:27::i;:::-;25968:104;;:::o;38426:159::-;;;;;:::o;22598:148::-;22662:14;22723:5;22713:15;;22598:148;;;:::o;39244:158::-;;;;;:::o;26445:2236::-;26568:20;26591:13;;26568:36;;26633:1;26619:16;;:2;:16;;;26615:48;;;26644:19;;;;;;;;;;;;;;26615:48;26690:1;26678:8;:13;26674:44;;;26700:18;;;;;;;;;;;;;;26674:44;26731:61;26761:1;26765:2;26769:12;26783:8;26731:21;:61::i;:::-;27335:1;12651:2;27306:1;:25;;27305:31;27293:8;:44;27267:18;:22;27286:2;27267:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13431:3;27736:29;27763:1;27751:8;:13;27736:14;:29::i;:::-;:56;;13168:3;27673:15;:41;;27631:21;27649:2;27631:17;:21::i;:::-;:84;:162;27580:17;:31;27598:12;27580:31;;;;;;;;;;;:213;;;;27810:20;27833:12;27810:35;;27860:11;27889:8;27874:12;:23;27860:37;;27936:1;27918:2;:14;;;:19;27914:635;;27958:313;28014:12;28010:2;27989:38;;28006:1;27989:38;;;;;;;;;;;;28055:69;28094:1;28098:2;28102:14;;;;;;28118:5;28055:30;:69::i;:::-;28050:174;;28160:40;;;;;;;;;;;;;;28050:174;28266:3;28251:12;:18;27958:313;;28352:12;28335:13;;:29;28331:43;;28366:8;;;28331:43;27914:635;;;28415:119;28471:14;;;;;;28467:2;28446:40;;28463:1;28446:40;;;;;;;;;;;;28529:3;28514:12;:18;28415:119;;27914:635;28579:12;28563:13;:28;;;;27044:1559;;28613:60;28642:1;28646:2;28650:12;28664:8;28613:20;:60::i;:::-;26557:2124;26445:2236;;;:::o;22833:142::-;22891:14;22952:5;22942:15;;22833:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:182::-;12773:34;12769:1;12761:6;12757:14;12750:58;12633:182;:::o;12821:366::-;12963:3;12984:67;13048:2;13043:3;12984:67;:::i;:::-;12977:74;;13060:93;13149:3;13060:93;:::i;:::-;13178:2;13173:3;13169:12;13162:19;;12821:366;;;:::o;13193:419::-;13359:4;13397:2;13386:9;13382:18;13374:26;;13446:9;13440:4;13436:20;13432:1;13421:9;13417:17;13410:47;13474:131;13600:4;13474:131;:::i;:::-;13466:139;;13193:419;;;:::o;13618:148::-;13720:11;13757:3;13742:18;;13618:148;;;;:::o;13772:377::-;13878:3;13906:39;13939:5;13906:39;:::i;:::-;13961:89;14043:6;14038:3;13961:89;:::i;:::-;13954:96;;14059:52;14104:6;14099:3;14092:4;14085:5;14081:16;14059:52;:::i;:::-;14136:6;14131:3;14127:16;14120:23;;13882:267;13772:377;;;;:::o;14155:435::-;14335:3;14357:95;14448:3;14439:6;14357:95;:::i;:::-;14350:102;;14469:95;14560:3;14551:6;14469:95;:::i;:::-;14462:102;;14581:3;14574:10;;14155:435;;;;;:::o;14596:165::-;14736:17;14732:1;14724:6;14720:14;14713:41;14596:165;:::o;14767:366::-;14909:3;14930:67;14994:2;14989:3;14930:67;:::i;:::-;14923:74;;15006:93;15095:3;15006:93;:::i;:::-;15124:2;15119:3;15115:12;15108:19;;14767:366;;;:::o;15139:419::-;15305:4;15343:2;15332:9;15328:18;15320:26;;15392:9;15386:4;15382:20;15378:1;15367:9;15363:17;15356:47;15420:131;15546:4;15420:131;:::i;:::-;15412:139;;15139:419;;;:::o;15564:179::-;15704:31;15700:1;15692:6;15688:14;15681:55;15564:179;:::o;15749:366::-;15891:3;15912:67;15976:2;15971:3;15912:67;:::i;:::-;15905:74;;15988:93;16077:3;15988:93;:::i;:::-;16106:2;16101:3;16097:12;16090:19;;15749:366;;;:::o;16121:419::-;16287:4;16325:2;16314:9;16310:18;16302:26;;16374:9;16368:4;16364:20;16360:1;16349:9;16345:17;16338:47;16402:131;16528:4;16402:131;:::i;:::-;16394:139;;16121:419;;;:::o;16546:180::-;16594:77;16591:1;16584:88;16691:4;16688:1;16681:15;16715:4;16712:1;16705:15;16732:305;16772:3;16791:20;16809:1;16791:20;:::i;:::-;16786:25;;16825:20;16843:1;16825:20;:::i;:::-;16820:25;;16979:1;16911:66;16907:74;16904:1;16901:81;16898:107;;;16985:18;;:::i;:::-;16898:107;17029:1;17026;17022:9;17015:16;;16732:305;;;;:::o;17043:172::-;17183:24;17179:1;17171:6;17167:14;17160:48;17043:172;:::o;17221:366::-;17363:3;17384:67;17448:2;17443:3;17384:67;:::i;:::-;17377:74;;17460:93;17549:3;17460:93;:::i;:::-;17578:2;17573:3;17569:12;17562:19;;17221:366;;;:::o;17593:419::-;17759:4;17797:2;17786:9;17782:18;17774:26;;17846:9;17840:4;17836:20;17832:1;17821:9;17817:17;17810:47;17874:131;18000:4;17874:131;:::i;:::-;17866:139;;17593:419;;;:::o;18018:180::-;18158:32;18154:1;18146:6;18142:14;18135:56;18018:180;:::o;18204:366::-;18346:3;18367:67;18431:2;18426:3;18367:67;:::i;:::-;18360:74;;18443:93;18532:3;18443:93;:::i;:::-;18561:2;18556:3;18552:12;18545:19;;18204:366;;;:::o;18576:419::-;18742:4;18780:2;18769:9;18765:18;18757:26;;18829:9;18823:4;18819:20;18815:1;18804:9;18800:17;18793:47;18857:131;18983:4;18857:131;:::i;:::-;18849:139;;18576:419;;;:::o;19001:191::-;19041:4;19061:20;19079:1;19061:20;:::i;:::-;19056:25;;19095:20;19113:1;19095:20;:::i;:::-;19090:25;;19134:1;19131;19128:8;19125:34;;;19139:18;;:::i;:::-;19125:34;19184:1;19181;19177:9;19169:17;;19001:191;;;;:::o;19198:348::-;19238:7;19261:20;19279:1;19261:20;:::i;:::-;19256:25;;19295:20;19313:1;19295:20;:::i;:::-;19290:25;;19483:1;19415:66;19411:74;19408:1;19405:81;19400:1;19393:9;19386:17;19382:105;19379:131;;;19490:18;;:::i;:::-;19379:131;19538:1;19535;19531:9;19520:20;;19198:348;;;;:::o;19552:179::-;19692:31;19688:1;19680:6;19676:14;19669:55;19552:179;:::o;19737:366::-;19879:3;19900:67;19964:2;19959:3;19900:67;:::i;:::-;19893:74;;19976:93;20065:3;19976:93;:::i;:::-;20094:2;20089:3;20085:12;20078:19;;19737:366;;;:::o;20109:419::-;20275:4;20313:2;20302:9;20298:18;20290:26;;20362:9;20356:4;20352:20;20348:1;20337:9;20333:17;20326:47;20390:131;20516:4;20390:131;:::i;:::-;20382:139;;20109:419;;;:::o;20534:225::-;20674:34;20670:1;20662:6;20658:14;20651:58;20743:8;20738:2;20730:6;20726:15;20719:33;20534:225;:::o;20765:366::-;20907:3;20928:67;20992:2;20987:3;20928:67;:::i;:::-;20921:74;;21004:93;21093:3;21004:93;:::i;:::-;21122:2;21117:3;21113:12;21106:19;;20765:366;;;:::o;21137:419::-;21303:4;21341:2;21330:9;21326:18;21318:26;;21390:9;21384:4;21380:20;21376:1;21365:9;21361:17;21354:47;21418:131;21544:4;21418:131;:::i;:::-;21410:139;;21137:419;;;:::o;21562:180::-;21610:77;21607:1;21600:88;21707:4;21704:1;21697:15;21731:4;21728:1;21721:15;21748:185;21788:1;21805:20;21823:1;21805:20;:::i;:::-;21800:25;;21839:20;21857:1;21839:20;:::i;:::-;21834:25;;21878:1;21868:35;;21883:18;;:::i;:::-;21868:35;21925:1;21922;21918:9;21913:14;;21748:185;;;;:::o;21939:98::-;21990:6;22024:5;22018:12;22008:22;;21939:98;;;:::o;22043:168::-;22126:11;22160:6;22155:3;22148:19;22200:4;22195:3;22191:14;22176:29;;22043:168;;;;:::o;22217:360::-;22303:3;22331:38;22363:5;22331:38;:::i;:::-;22385:70;22448:6;22443:3;22385:70;:::i;:::-;22378:77;;22464:52;22509:6;22504:3;22497:4;22490:5;22486:16;22464:52;:::i;:::-;22541:29;22563:6;22541:29;:::i;:::-;22536:3;22532:39;22525:46;;22307:270;22217:360;;;;:::o;22583:640::-;22778:4;22816:3;22805:9;22801:19;22793:27;;22830:71;22898:1;22887:9;22883:17;22874:6;22830:71;:::i;:::-;22911:72;22979:2;22968:9;22964:18;22955:6;22911:72;:::i;:::-;22993;23061:2;23050:9;23046:18;23037:6;22993:72;:::i;:::-;23112:9;23106:4;23102:20;23097:2;23086:9;23082:18;23075:48;23140:76;23211:4;23202:6;23140:76;:::i;:::-;23132:84;;22583:640;;;;;;;:::o;23229:141::-;23285:5;23316:6;23310:13;23301:22;;23332:32;23358:5;23332:32;:::i;:::-;23229:141;;;;:::o;23376:349::-;23445:6;23494:2;23482:9;23473:7;23469:23;23465:32;23462:119;;;23500:79;;:::i;:::-;23462:119;23620:1;23645:63;23700:7;23691:6;23680:9;23676:22;23645:63;:::i;:::-;23635:73;;23591:127;23376:349;;;;:::o

Swarm Source

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