ETH Price: $3,383.27 (-1.86%)
Gas: 3 Gwei

Token

Doomers (DOOM)
 

Overview

Max Total Supply

6,969 DOOM

Holders

3,042

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
sloppypockets.eth
Balance
1 DOOM
0x72ceb02dccbbd1963af083b9cb221df70683b6d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Doom is here... A hand drawn project, by Degen Den , 6969 Doomers. Free Mint, No Roadmap.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Doomers

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : Doomers.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './base/Ownable.sol';
import './base/ERC721A.sol';
import './base/MerkleProof.sol';

/*========================================================================\
 ________  ________  ________  _____ ______   _______   ________  ________      
|\   ___ \|\   __  \|\   __  \|\   _ \  _   \|\  ___ \ |\   __  \|\   ____\     
\ \  \_|\ \ \  \|\  \ \  \|\  \ \  \\\__\ \  \ \   __/|\ \  \|\  \ \  \___|_    
 \ \  \ \\ \ \  \\\  \ \  \\\  \ \  \\|__| \  \ \  \_|/_\ \   _  _\ \_____  \   
  \ \  \_\\ \ \  \\\  \ \  \\\  \ \  \    \ \  \ \  \_|\ \ \  \\  \\|____|\  \  
   \ \_______\ \_______\ \_______\ \__\    \ \__\ \_______\ \__\\ _\ ____\_\  \ 
    \|_______|\|_______|\|_______|\|__|     \|__|\|_______|\|__|\|__|\_________\
                                                                    \|_________| 
     \============================ By Degen Den ===============================*/


contract Doomers is ERC721A, Ownable {

    //Global variables
    uint256 public maxSupply = 6969;
    uint256 public maxFree = 1;
    uint256 public maxPerTxn = 20;
    uint256 public cost = 0.0069 ether;
    
    bool public presale = false;
    bool public publicSale = false;
    bool public revealed = false;

    address public capitulation;

    bytes32 public root = 0xd8bdd8393b8c4f7f4e91c15efc5701aabc0cbdcb86be8292e36196e80544a8be;

    string public unrevealedURI = "ipfs/QmQ42mnX5PdupsXvRQjgHo5wftnLMPqwd17fmk2LpvREsm";
    string public revealedURI;

    //Maps the address of a user to its number of claims
    mapping(address => uint256) public validBlobs;

    //Maps address to its free mint calimed status
    mapping(address => bool) public freeClaimed;

    //Maps address to its doomlist calimed status
    mapping(address => bool) public doomlistClaimed;

    constructor() ERC721A("Doomers", "DOOM") {}

    //Check if the whitelist is enabled and the address is part of the whitelist
    modifier isDoomlisted(address _address, bytes32[] calldata proof) {
        require(
            doomlistClaimed[_address] == false && _verify(_leaf(_address), proof),
            "This address is not whitelisted or has reached maximum mints"
        );
        _;
    }
            /*----------------------//
            //  INTERNAL FUNCTIONS  //
            //----------------------*/
    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }
            
    function _baseURI() internal view virtual override returns (string memory) {
		return revealedURI;
	}

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        if(revealed == false) {
            return unrevealedURI;
        }
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId), ".json")) : '';
        }
    }

    function _leaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function _verify(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }
            /*----------------------//
            //    MINT FUNCTIONS    //
            //----------------------*/
    function claimWithBlobs() public {
        uint256 amt = validBlobs[msg.sender];
        require(presale == true, "Blob claiming is not active");
        require(totalSupply() + amt <= maxSupply, "Exceeds max supply");

        validBlobs[msg.sender] = 0;
        _safeMint(msg.sender, amt);
    }

    function doomlistMint(bytes32[] calldata _proof) public isDoomlisted(msg.sender, _proof) {
        require(presale == true, "Doomlist mint is not active");
        require(totalSupply() + 1 <= maxSupply, "Exceeds max supply");

        doomlistClaimed[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function mintFree() public {
        require(publicSale == true, "Public sale is not active");
        require(totalSupply() + 1 <= maxSupply, "Exceeds max supply");
        require(freeClaimed[msg.sender] == false, "Exceeds max free amount");

        freeClaimed[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function mintPaid(uint256 _mintAmount) public payable {
        require(publicSale == true, "Public sale is not active");
        require(totalSupply() + _mintAmount <= maxSupply, "Exceeds max supply");
        require(_mintAmount <= maxPerTxn, "Exceeds max transaction amount");
        require(msg.value >= _mintAmount * cost, "Not enough ether sent");

        _safeMint(msg.sender, _mintAmount);
    }
            /*---------------------//
            //   OWNER FUNCTIONS   //
            //---------------------*/
    function devMint(address _to, uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount <= maxSupply, "Exceeds max supply");

        _safeMint(_to, _amount);
    }

    function snapshot(address[] calldata _owners, uint256[] calldata _numBlobs) public onlyOwner {
        for (uint256 i = 0; i < _owners.length; i++) {
            validBlobs[_owners[i]] = _numBlobs[i];
        }
    }

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

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

    function setMaxTxn(uint256 _newMax) public onlyOwner {
        maxPerTxn = _newMax;
    }

    function setRoot(bytes32 _newRoot) public onlyOwner {
        root = _newRoot;
    }

    function setUnrevealedURI(string memory _newURI) public onlyOwner {
		unrevealedURI = _newURI;
	}

    function setRevealedURI(string memory _newURI) public onlyOwner {
		revealedURI = _newURI;
	}

    function setCapitulation(address _address) public onlyOwner {
		capitulation = _address;
	}

    function reveal(string memory _newURI) public onlyOwner {
        revealed = !revealed;
        revealedURI = _newURI;
    }

    function flipPresale() public onlyOwner {
		presale = !presale;
	}

    function flipPublicSale() public onlyOwner {
		publicSale = !publicSale;
	}
            /*------------------//
            //    CAPITULATE    //
            //------------------*/
    function capitulate(uint256 _tokenId) external {
        require(msg.sender == capitulation, "Not authorized");

        _burn(_tokenId);
    }
}

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.4;

import './Context.sol';

/**
 * @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 3 of 5 : ERC721A.sol
// SPDX-License-Identifier: MIT

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

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

/**
 * @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 (_addressToUint256(owner) == 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 (_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 for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 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 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _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();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            approvedAddress == _msgSenderERC721A());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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));
        address approvedAddress = _tokenApprovals[tokenId];

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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 4 of 5 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// 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;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"capitulate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"capitulation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimWithBlobs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"doomlistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"doomlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":"address","name":"_address","type":"address"}],"name":"setCapitulation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_owners","type":"address[]"},{"internalType":"uint256[]","name":"_numBlobs","type":"uint256[]"}],"name":"snapshot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"validBlobs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052611b396009556001600a556014600b556618838370f34000600c556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055507fd8bdd8393b8c4f7f4e91c15efc5701aabc0cbdcb86be8292e36196e80544a8be60001b600e5560405180606001604052806033815260200162004aab60339139600f9080519060200190620000c89291906200028a565b50348015620000d657600080fd5b506040518060400160405280600781526020017f446f6f6d657273000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f444f4f4d0000000000000000000000000000000000000000000000000000000081525081600290805190602001906200015b9291906200028a565b508060039080519060200190620001749291906200028a565b5062000185620001b360201b60201c565b6000819055505050620001ad620001a1620001bc60201b60201c565b620001c460201b60201c565b6200039f565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000298906200033a565b90600052602060002090601f016020900481019282620002bc576000855562000308565b82601f10620002d757805160ff191683800117855562000308565b8280016001018555821562000308579182015b8281111562000307578251825591602001919060010190620002ea565b5b5090506200031791906200031b565b5090565b5b80821115620003365760008160009055506001016200031c565b5090565b600060028204905060018216806200035357607f821691505b602082108114156200036a576200036962000370565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146fc80620003af6000396000f3fe6080604052600436106102925760003560e01c80636352211e1161015a578063c87b56dd116100c1578063f2fde38b1161007a578063f2fde38b14610997578063f7e8d6ea146109c0578063f9014acc146109eb578063fc588c0414610a16578063fdea8e0b14610a3f578063fe2c7fee14610a6a57610292565b8063c87b56dd14610875578063d5abeb01146108b2578063dab5f340146108dd578063e45958a314610906578063e985e9c51461092f578063ebf0c7171461096c57610292565b80638da5cb5b116101135780638da5cb5b1461078d57806395d89b41146107b8578063a22cb465146107e3578063a5614eba1461080c578063b88d4fde14610823578063c6d0bc061461084c57610292565b80636352211e146106a35780637035bf18146106e057806370a082311461070b578063715018a614610748578063880846051461075f5780638ab534471461077657610292565b80633ca8a8e4116101fe5780634b4cf40f116101b75780634b4cf40f146105835780634c261247146105ac57806351830227146105d557806352c782171461060057806361c0b6a01461063d578063627804af1461067a57610292565b80633ca8a8e4146104a85780633cb51994146104d15780633ccfd60b146104fc57806342842e0e1461050657806344a0d68a1461052f578063485a68a31461055857610292565b806318160ddd1161025057806318160ddd146103a757806323b872dd146103d257806326c7f77c146103fb5780633048ddee14610417578063326d43881461045457806333bc1c5c1461047d57610292565b8062acf3481461029757806301ffc9a7146102ae57806306fdde03146102eb578063081812fc14610316578063095ea7b31461035357806313faede61461037c575b600080fd5b3480156102a357600080fd5b506102ac610a93565b005b3480156102ba57600080fd5b506102d560048036038101906102d09190613a46565b610b3b565b6040516102e29190613e85565b60405180910390f35b3480156102f757600080fd5b50610300610bcd565b60405161030d9190613ebb565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613ad9565b610c5f565b60405161034a9190613e1e565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613927565b610cdb565b005b34801561038857600080fd5b50610391610e1c565b60405161039e919061403d565b60405180910390f35b3480156103b357600080fd5b506103bc610e22565b6040516103c9919061403d565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613821565b610e39565b005b61041560048036038101906104109190613ad9565b610e49565b005b34801561042357600080fd5b5061043e600480360381019061043991906137bc565b610f98565b60405161044b9190613e85565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613a98565b610fb8565b005b34801561048957600080fd5b5061049261104e565b60405161049f9190613e85565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190613963565b611061565b005b3480156104dd57600080fd5b506104e66111d5565b6040516104f3919061403d565b60405180910390f35b6105046111db565b005b34801561051257600080fd5b5061052d60048036038101906105289190613821565b6112d0565b005b34801561053b57600080fd5b5061055660048036038101906105519190613ad9565b6112f0565b005b34801561056457600080fd5b5061056d611376565b60405161057a919061403d565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906137bc565b61137c565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613a98565b61143c565b005b3480156105e157600080fd5b506105ea6114fc565b6040516105f79190613e85565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906137bc565b61150f565b604051610634919061403d565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906137bc565b611527565b6040516106719190613e85565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613927565b611547565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613ad9565b611628565b6040516106d79190613e1e565b60405180910390f35b3480156106ec57600080fd5b506106f561163a565b6040516107029190613ebb565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906137bc565b6116c8565b60405161073f919061403d565b60405180910390f35b34801561075457600080fd5b5061075d61175d565b005b34801561076b57600080fd5b506107746117e5565b005b34801561078257600080fd5b5061078b61188d565b005b34801561079957600080fd5b506107a2611a33565b6040516107af9190613e1e565b60405180910390f35b3480156107c457600080fd5b506107cd611a5d565b6040516107da9190613ebb565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906138eb565b611aef565b005b34801561081857600080fd5b50610821611c67565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613870565b611daa565b005b34801561085857600080fd5b50610873600480360381019061086e9190613ad9565b611e1d565b005b34801561088157600080fd5b5061089c60048036038101906108979190613ad9565b611eb9565b6040516108a99190613ebb565b60405180910390f35b3480156108be57600080fd5b506108c7612007565b6040516108d4919061403d565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613a1d565b61200d565b005b34801561091257600080fd5b5061092d600480360381019061092891906139d8565b612093565b005b34801561093b57600080fd5b50610956600480360381019061095191906137e5565b61229c565b6040516109639190613e85565b60405180910390f35b34801561097857600080fd5b50610981612330565b60405161098e9190613ea0565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906137bc565b612336565b005b3480156109cc57600080fd5b506109d561242e565b6040516109e29190613ebb565b60405180910390f35b3480156109f757600080fd5b50610a006124bc565b604051610a0d9190613e1e565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613ad9565b6124e2565b005b348015610a4b57600080fd5b50610a54612568565b604051610a619190613e85565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613a98565b61257b565b005b610a9b612611565b73ffffffffffffffffffffffffffffffffffffffff16610ab9611a33565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613fbd565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610bdc9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c089061429d565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b5050505050905090565b6000610c6a82612619565b610ca0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce682612678565b90508073ffffffffffffffffffffffffffffffffffffffff16610d07612746565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a57610d3381610d2e612746565b61229c565b610d69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610e2c61274e565b6001546000540303905090565b610e44838383612757565b505050565b60011515600d60019054906101000a900460ff16151514610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613f5d565b60405180910390fd5b60095481610eab610e22565b610eb5919061412d565b1115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613f7d565b60405180910390fd5b600b54811115610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613efd565b60405180910390fd5b600c5481610f499190614183565b341015610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613fdd565b60405180910390fd5b610f953382612b1f565b50565b60136020528060005260406000206000915054906101000a900460ff1681565b610fc0612611565b73ffffffffffffffffffffffffffffffffffffffff16610fde611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613fbd565b60405180910390fd5b806010908051906020019061104a9291906134ed565b5050565b600d60019054906101000a900460ff1681565b611069612611565b73ffffffffffffffffffffffffffffffffffffffff16611087611a33565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613fbd565b60405180910390fd5b60005b848490508110156111ce57828282818110611124577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560116000878785818110611168577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061117d91906137bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806111c690614300565b9150506110e0565b5050505050565b600b5481565b6111e3612611565b73ffffffffffffffffffffffffffffffffffffffff16611201611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90613fbd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161127d90613e09565b60006040518083038185875af1925050503d80600081146112ba576040519150601f19603f3d011682016040523d82523d6000602084013e6112bf565b606091505b50509050806112cd57600080fd5b50565b6112eb83838360405180602001604052806000815250611daa565b505050565b6112f8612611565b73ffffffffffffffffffffffffffffffffffffffff16611316611a33565b73ffffffffffffffffffffffffffffffffffffffff161461136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613fbd565b60405180910390fd5b80600c8190555050565b600a5481565b611384612611565b73ffffffffffffffffffffffffffffffffffffffff166113a2611a33565b73ffffffffffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613fbd565b60405180910390fd5b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611444612611565b73ffffffffffffffffffffffffffffffffffffffff16611462611a33565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613fbd565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff02191690831515021790555080601090805190602001906114f89291906134ed565b5050565b600d60029054906101000a900460ff1681565b60116020528060005260406000206000915090505481565b60126020528060005260406000206000915054906101000a900460ff1681565b61154f612611565b73ffffffffffffffffffffffffffffffffffffffff1661156d611a33565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90613fbd565b60405180910390fd5b600954816115cf610e22565b6115d9919061412d565b111561161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613f7d565b60405180910390fd5b6116248282612b1f565b5050565b600061163382612678565b9050919050565b600f80546116479061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546116739061429d565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b505050505081565b6000806116d483612b3d565b141561170c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611765612611565b73ffffffffffffffffffffffffffffffffffffffff16611783611a33565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613fbd565b60405180910390fd5b6117e36000612b47565b565b6117ed612611565b73ffffffffffffffffffffffffffffffffffffffff1661180b611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613fbd565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60011515600d60019054906101000a900460ff161515146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613f5d565b60405180910390fd5b60095460016118f0610e22565b6118fa919061412d565b111561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290613f7d565b60405180910390fd5b60001515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613f3d565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a31336001612b1f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a6c9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a989061429d565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b5050505050905090565b611af7612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b69612746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c16612746565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5b9190613e85565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060011515600d60009054906101000a900460ff16151514611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613edd565b60405180910390fd5b60095481611d0d610e22565b611d17919061412d565b1115611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613f7d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611da73382612b1f565b50565b611db5848484612757565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1757611de084848484612c0d565b611e16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490613ffd565b60405180910390fd5b611eb681612d6d565b50565b6060611ec482612619565b611efa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff1615151415611fa857600f8054611f239061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f9061429d565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b50505050509050612002565b6000611fb2612d7b565b9050600081511415611fd35760405180602001604052806000815250611ffe565b80611fdd84612e0d565b604051602001611fee929190613dda565b6040516020818303038152906040525b9150505b919050565b60095481565b612015612611565b73ffffffffffffffffffffffffffffffffffffffff16612033611a33565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613fbd565b60405180910390fd5b80600e8190555050565b33828260001515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561214557506121446120fd84612e67565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e97565b5b612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613f9d565b60405180910390fd5b60011515600d60009054906101000a900460ff161515146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d19061401d565b60405180910390fd5b60095460016121e7610e22565b6121f1919061412d565b1115612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990613f7d565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612295336001612b1f565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61233e612611565b73ffffffffffffffffffffffffffffffffffffffff1661235c611a33565b73ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613fbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990613f1d565b60405180910390fd5b61242b81612b47565b50565b6010805461243b9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546124679061429d565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b505050505081565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124ea612611565b73ffffffffffffffffffffffffffffffffffffffff16612508611a33565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613fbd565b60405180910390fd5b80600b8190555050565b600d60009054906101000a900460ff1681565b612583612611565b73ffffffffffffffffffffffffffffffffffffffff166125a1611a33565b73ffffffffffffffffffffffffffffffffffffffff16146125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee90613fbd565b60405180910390fd5b80600f908051906020019061260d9291906134ed565b5050565b600033905090565b60008161262461274e565b11158015612633575060005482105b8015612671575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061268761274e565b1161270f5760005481101561270e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561270c575b60008114156127025760046000836001900393508381526020019081526020016000205490506126d7565b8092505050612741565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061276282612678565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146127c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612822612746565b73ffffffffffffffffffffffffffffffffffffffff16148061285157506128508661284b612746565b61229c565b5b8061288e575061285f612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806128c7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006128d286612b3d565b141561290a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129178686866001612eae565b600061292283612b3d565b1461295e576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612a2587612b3d565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612aaf576000600185019050600060046000838152602001908152602001600020541415612aad576000548114612aac578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b178686866001612eb4565b505050505050565b612b39828260405180602001604052806000815250612eba565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c33612746565b8786866040518563ffffffff1660e01b8152600401612c559493929190613e39565b602060405180830381600087803b158015612c6f57600080fd5b505af1925050508015612ca057506040513d601f19601f82011682018060405250810190612c9d9190613a6f565b60015b612d1a573d8060008114612cd0576040519150601f19603f3d011682016040523d82523d6000602084013e612cd5565b606091505b50600081511415612d12576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612d78816000612f57565b50565b606060108054612d8a9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054612db69061429d565b8015612e035780601f10612dd857610100808354040283529160200191612e03565b820191906000526020600020905b815481529060010190602001808311612de657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e5357600183039250600a81066030018353600a81049050612e33565b508181036020830392508083525050919050565b600081604051602001612e7a9190613dbf565b604051602081830303815290604052805190602001209050919050565b6000612ea682600e5485613271565b905092915050565b50505050565b50505050565b612ec48383613288565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5257600080549050600083820390505b612f046000868380600101945086612c0d565b612f3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ef1578160005414612f4f57600080fd5b50505b505050565b6000612f6283612678565b9050600081905060006006600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050831561306f5760008273ffffffffffffffffffffffffffffffffffffffff16612fc8612746565b73ffffffffffffffffffffffffffffffffffffffff161480612ff75750612ff683612ff1612746565b61229c565b5b806130345750613005612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061306d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61307d826000876001612eae565b600061308882612b3d565b146130c4576006600086815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600160806001901b03600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61316385612b3d565b171717600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156131ee5760006001860190506000600460008381526020019081526020016000205414156131ec5760005481146131eb578360046000838152602001908152602001600020819055505b5b505b84600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613258826000876001612eb4565b6001600081548092919060010191905055505050505050565b60008261327e8584613431565b1490509392505050565b600080549050600061329984612b3d565b14156132d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561330c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133196000848385612eae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161337e600184146134cc565b901b60a042901b61338e85612b3d565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48281106133aa578282016000819055505061342c6000848385612eb4565b505050565b60008082905060005b84518110156134c157600085828151811061347e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134a05761349983826134d6565b92506134ad565b6134aa81846134d6565b92505b5080806134b990614300565b91505061343a565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b8280546134f99061429d565b90600052602060002090601f01602090048101928261351b5760008555613562565b82601f1061353457805160ff1916838001178555613562565b82800160010185558215613562579182015b82811115613561578251825591602001919060010190613546565b5b50905061356f9190613573565b5090565b5b8082111561358c576000816000905550600101613574565b5090565b60006135a361359e8461407d565b614058565b9050828152602081018484840111156135bb57600080fd5b6135c684828561425b565b509392505050565b60006135e16135dc846140ae565b614058565b9050828152602081018484840111156135f957600080fd5b61360484828561425b565b509392505050565b60008135905061361b81614653565b92915050565b60008083601f84011261363357600080fd5b8235905067ffffffffffffffff81111561364c57600080fd5b60208301915083602082028301111561366457600080fd5b9250929050565b60008083601f84011261367d57600080fd5b8235905067ffffffffffffffff81111561369657600080fd5b6020830191508360208202830111156136ae57600080fd5b9250929050565b60008083601f8401126136c757600080fd5b8235905067ffffffffffffffff8111156136e057600080fd5b6020830191508360208202830111156136f857600080fd5b9250929050565b60008135905061370e8161466a565b92915050565b60008135905061372381614681565b92915050565b60008135905061373881614698565b92915050565b60008151905061374d81614698565b92915050565b600082601f83011261376457600080fd5b8135613774848260208601613590565b91505092915050565b600082601f83011261378e57600080fd5b813561379e8482602086016135ce565b91505092915050565b6000813590506137b6816146af565b92915050565b6000602082840312156137ce57600080fd5b60006137dc8482850161360c565b91505092915050565b600080604083850312156137f857600080fd5b60006138068582860161360c565b92505060206138178582860161360c565b9150509250929050565b60008060006060848603121561383657600080fd5b60006138448682870161360c565b93505060206138558682870161360c565b9250506040613866868287016137a7565b9150509250925092565b6000806000806080858703121561388657600080fd5b60006138948782880161360c565b94505060206138a58782880161360c565b93505060406138b6878288016137a7565b925050606085013567ffffffffffffffff8111156138d357600080fd5b6138df87828801613753565b91505092959194509250565b600080604083850312156138fe57600080fd5b600061390c8582860161360c565b925050602061391d858286016136ff565b9150509250929050565b6000806040838503121561393a57600080fd5b60006139488582860161360c565b9250506020613959858286016137a7565b9150509250929050565b6000806000806040858703121561397957600080fd5b600085013567ffffffffffffffff81111561399357600080fd5b61399f87828801613621565b9450945050602085013567ffffffffffffffff8111156139be57600080fd5b6139ca878288016136b5565b925092505092959194509250565b600080602083850312156139eb57600080fd5b600083013567ffffffffffffffff811115613a0557600080fd5b613a118582860161366b565b92509250509250929050565b600060208284031215613a2f57600080fd5b6000613a3d84828501613714565b91505092915050565b600060208284031215613a5857600080fd5b6000613a6684828501613729565b91505092915050565b600060208284031215613a8157600080fd5b6000613a8f8482850161373e565b91505092915050565b600060208284031215613aaa57600080fd5b600082013567ffffffffffffffff811115613ac457600080fd5b613ad08482850161377d565b91505092915050565b600060208284031215613aeb57600080fd5b6000613af9848285016137a7565b91505092915050565b613b0b816141dd565b82525050565b613b22613b1d826141dd565b614349565b82525050565b613b31816141ef565b82525050565b613b40816141fb565b82525050565b6000613b51826140df565b613b5b81856140f5565b9350613b6b81856020860161426a565b613b74816143fa565b840191505092915050565b6000613b8a826140ea565b613b948185614111565b9350613ba481856020860161426a565b613bad816143fa565b840191505092915050565b6000613bc3826140ea565b613bcd8185614122565b9350613bdd81856020860161426a565b80840191505092915050565b6000613bf6601b83614111565b9150613c0182614418565b602082019050919050565b6000613c19601e83614111565b9150613c2482614441565b602082019050919050565b6000613c3c602683614111565b9150613c478261446a565b604082019050919050565b6000613c5f601783614111565b9150613c6a826144b9565b602082019050919050565b6000613c82601983614111565b9150613c8d826144e2565b602082019050919050565b6000613ca5601283614111565b9150613cb08261450b565b602082019050919050565b6000613cc8600583614122565b9150613cd382614534565b600582019050919050565b6000613ceb603c83614111565b9150613cf68261455d565b604082019050919050565b6000613d0e602083614111565b9150613d19826145ac565b602082019050919050565b6000613d31600083614106565b9150613d3c826145d5565b600082019050919050565b6000613d54601583614111565b9150613d5f826145d8565b602082019050919050565b6000613d77600e83614111565b9150613d8282614601565b602082019050919050565b6000613d9a601b83614111565b9150613da58261462a565b602082019050919050565b613db981614251565b82525050565b6000613dcb8284613b11565b60148201915081905092915050565b6000613de68285613bb8565b9150613df28284613bb8565b9150613dfd82613cbb565b91508190509392505050565b6000613e1482613d24565b9150819050919050565b6000602082019050613e336000830184613b02565b92915050565b6000608082019050613e4e6000830187613b02565b613e5b6020830186613b02565b613e686040830185613db0565b8181036060830152613e7a8184613b46565b905095945050505050565b6000602082019050613e9a6000830184613b28565b92915050565b6000602082019050613eb56000830184613b37565b92915050565b60006020820190508181036000830152613ed58184613b7f565b905092915050565b60006020820190508181036000830152613ef681613be9565b9050919050565b60006020820190508181036000830152613f1681613c0c565b9050919050565b60006020820190508181036000830152613f3681613c2f565b9050919050565b60006020820190508181036000830152613f5681613c52565b9050919050565b60006020820190508181036000830152613f7681613c75565b9050919050565b60006020820190508181036000830152613f9681613c98565b9050919050565b60006020820190508181036000830152613fb681613cde565b9050919050565b60006020820190508181036000830152613fd681613d01565b9050919050565b60006020820190508181036000830152613ff681613d47565b9050919050565b6000602082019050818103600083015261401681613d6a565b9050919050565b6000602082019050818103600083015261403681613d8d565b9050919050565b60006020820190506140526000830184613db0565b92915050565b6000614062614073565b905061406e82826142cf565b919050565b6000604051905090565b600067ffffffffffffffff821115614098576140976143cb565b5b6140a1826143fa565b9050602081019050919050565b600067ffffffffffffffff8211156140c9576140c86143cb565b5b6140d2826143fa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061413882614251565b915061414383614251565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141785761417761436d565b5b828201905092915050565b600061418e82614251565b915061419983614251565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d2576141d161436d565b5b828202905092915050565b60006141e882614231565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561428857808201518184015260208101905061426d565b83811115614297576000848401525b50505050565b600060028204905060018216806142b557607f821691505b602082108114156142c9576142c861439c565b5b50919050565b6142d8826143fa565b810181811067ffffffffffffffff821117156142f7576142f66143cb565b5b80604052505050565b600061430b82614251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433e5761433d61436d565b5b600182019050919050565b60006143548261435b565b9050919050565b60006143668261440b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f426c6f6220636c61696d696e67206973206e6f74206163746976650000000000600082015250565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206672656520616d6f756e74000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f6f72206861732072656163686564206d6178696d756d206d696e747300000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b7f446f6f6d6c697374206d696e74206973206e6f74206163746976650000000000600082015250565b61465c816141dd565b811461466757600080fd5b50565b614673816141ef565b811461467e57600080fd5b50565b61468a816141fb565b811461469557600080fd5b50565b6146a181614205565b81146146ac57600080fd5b50565b6146b881614251565b81146146c357600080fd5b5056fea264697066735822122059c75922a3736f59f2a8d40d3104dc1b833d9a6e0797dfcc75bcf3b9fbccac6f64736f6c63430008040033697066732f516d5134326d6e58355064757073587652516a67486f357766746e4c4d507177643137666d6b324c70765245736d

Deployed Bytecode

0x6080604052600436106102925760003560e01c80636352211e1161015a578063c87b56dd116100c1578063f2fde38b1161007a578063f2fde38b14610997578063f7e8d6ea146109c0578063f9014acc146109eb578063fc588c0414610a16578063fdea8e0b14610a3f578063fe2c7fee14610a6a57610292565b8063c87b56dd14610875578063d5abeb01146108b2578063dab5f340146108dd578063e45958a314610906578063e985e9c51461092f578063ebf0c7171461096c57610292565b80638da5cb5b116101135780638da5cb5b1461078d57806395d89b41146107b8578063a22cb465146107e3578063a5614eba1461080c578063b88d4fde14610823578063c6d0bc061461084c57610292565b80636352211e146106a35780637035bf18146106e057806370a082311461070b578063715018a614610748578063880846051461075f5780638ab534471461077657610292565b80633ca8a8e4116101fe5780634b4cf40f116101b75780634b4cf40f146105835780634c261247146105ac57806351830227146105d557806352c782171461060057806361c0b6a01461063d578063627804af1461067a57610292565b80633ca8a8e4146104a85780633cb51994146104d15780633ccfd60b146104fc57806342842e0e1461050657806344a0d68a1461052f578063485a68a31461055857610292565b806318160ddd1161025057806318160ddd146103a757806323b872dd146103d257806326c7f77c146103fb5780633048ddee14610417578063326d43881461045457806333bc1c5c1461047d57610292565b8062acf3481461029757806301ffc9a7146102ae57806306fdde03146102eb578063081812fc14610316578063095ea7b31461035357806313faede61461037c575b600080fd5b3480156102a357600080fd5b506102ac610a93565b005b3480156102ba57600080fd5b506102d560048036038101906102d09190613a46565b610b3b565b6040516102e29190613e85565b60405180910390f35b3480156102f757600080fd5b50610300610bcd565b60405161030d9190613ebb565b60405180910390f35b34801561032257600080fd5b5061033d60048036038101906103389190613ad9565b610c5f565b60405161034a9190613e1e565b60405180910390f35b34801561035f57600080fd5b5061037a60048036038101906103759190613927565b610cdb565b005b34801561038857600080fd5b50610391610e1c565b60405161039e919061403d565b60405180910390f35b3480156103b357600080fd5b506103bc610e22565b6040516103c9919061403d565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190613821565b610e39565b005b61041560048036038101906104109190613ad9565b610e49565b005b34801561042357600080fd5b5061043e600480360381019061043991906137bc565b610f98565b60405161044b9190613e85565b60405180910390f35b34801561046057600080fd5b5061047b60048036038101906104769190613a98565b610fb8565b005b34801561048957600080fd5b5061049261104e565b60405161049f9190613e85565b60405180910390f35b3480156104b457600080fd5b506104cf60048036038101906104ca9190613963565b611061565b005b3480156104dd57600080fd5b506104e66111d5565b6040516104f3919061403d565b60405180910390f35b6105046111db565b005b34801561051257600080fd5b5061052d60048036038101906105289190613821565b6112d0565b005b34801561053b57600080fd5b5061055660048036038101906105519190613ad9565b6112f0565b005b34801561056457600080fd5b5061056d611376565b60405161057a919061403d565b60405180910390f35b34801561058f57600080fd5b506105aa60048036038101906105a591906137bc565b61137c565b005b3480156105b857600080fd5b506105d360048036038101906105ce9190613a98565b61143c565b005b3480156105e157600080fd5b506105ea6114fc565b6040516105f79190613e85565b60405180910390f35b34801561060c57600080fd5b50610627600480360381019061062291906137bc565b61150f565b604051610634919061403d565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906137bc565b611527565b6040516106719190613e85565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190613927565b611547565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190613ad9565b611628565b6040516106d79190613e1e565b60405180910390f35b3480156106ec57600080fd5b506106f561163a565b6040516107029190613ebb565b60405180910390f35b34801561071757600080fd5b50610732600480360381019061072d91906137bc565b6116c8565b60405161073f919061403d565b60405180910390f35b34801561075457600080fd5b5061075d61175d565b005b34801561076b57600080fd5b506107746117e5565b005b34801561078257600080fd5b5061078b61188d565b005b34801561079957600080fd5b506107a2611a33565b6040516107af9190613e1e565b60405180910390f35b3480156107c457600080fd5b506107cd611a5d565b6040516107da9190613ebb565b60405180910390f35b3480156107ef57600080fd5b5061080a600480360381019061080591906138eb565b611aef565b005b34801561081857600080fd5b50610821611c67565b005b34801561082f57600080fd5b5061084a60048036038101906108459190613870565b611daa565b005b34801561085857600080fd5b50610873600480360381019061086e9190613ad9565b611e1d565b005b34801561088157600080fd5b5061089c60048036038101906108979190613ad9565b611eb9565b6040516108a99190613ebb565b60405180910390f35b3480156108be57600080fd5b506108c7612007565b6040516108d4919061403d565b60405180910390f35b3480156108e957600080fd5b5061090460048036038101906108ff9190613a1d565b61200d565b005b34801561091257600080fd5b5061092d600480360381019061092891906139d8565b612093565b005b34801561093b57600080fd5b50610956600480360381019061095191906137e5565b61229c565b6040516109639190613e85565b60405180910390f35b34801561097857600080fd5b50610981612330565b60405161098e9190613ea0565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906137bc565b612336565b005b3480156109cc57600080fd5b506109d561242e565b6040516109e29190613ebb565b60405180910390f35b3480156109f757600080fd5b50610a006124bc565b604051610a0d9190613e1e565b60405180910390f35b348015610a2257600080fd5b50610a3d6004803603810190610a389190613ad9565b6124e2565b005b348015610a4b57600080fd5b50610a54612568565b604051610a619190613e85565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c9190613a98565b61257b565b005b610a9b612611565b73ffffffffffffffffffffffffffffffffffffffff16610ab9611a33565b73ffffffffffffffffffffffffffffffffffffffff1614610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690613fbd565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bc65750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610bdc9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c089061429d565b8015610c555780601f10610c2a57610100808354040283529160200191610c55565b820191906000526020600020905b815481529060010190602001808311610c3857829003601f168201915b5050505050905090565b6000610c6a82612619565b610ca0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ce682612678565b90508073ffffffffffffffffffffffffffffffffffffffff16610d07612746565b73ffffffffffffffffffffffffffffffffffffffff1614610d6a57610d3381610d2e612746565b61229c565b610d69576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610e2c61274e565b6001546000540303905090565b610e44838383612757565b505050565b60011515600d60019054906101000a900460ff16151514610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690613f5d565b60405180910390fd5b60095481610eab610e22565b610eb5919061412d565b1115610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90613f7d565b60405180910390fd5b600b54811115610f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3290613efd565b60405180910390fd5b600c5481610f499190614183565b341015610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290613fdd565b60405180910390fd5b610f953382612b1f565b50565b60136020528060005260406000206000915054906101000a900460ff1681565b610fc0612611565b73ffffffffffffffffffffffffffffffffffffffff16610fde611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613fbd565b60405180910390fd5b806010908051906020019061104a9291906134ed565b5050565b600d60019054906101000a900460ff1681565b611069612611565b73ffffffffffffffffffffffffffffffffffffffff16611087611a33565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613fbd565b60405180910390fd5b60005b848490508110156111ce57828282818110611124577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560116000878785818110611168577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061117d91906137bc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806111c690614300565b9150506110e0565b5050505050565b600b5481565b6111e3612611565b73ffffffffffffffffffffffffffffffffffffffff16611201611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e90613fbd565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161127d90613e09565b60006040518083038185875af1925050503d80600081146112ba576040519150601f19603f3d011682016040523d82523d6000602084013e6112bf565b606091505b50509050806112cd57600080fd5b50565b6112eb83838360405180602001604052806000815250611daa565b505050565b6112f8612611565b73ffffffffffffffffffffffffffffffffffffffff16611316611a33565b73ffffffffffffffffffffffffffffffffffffffff161461136c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136390613fbd565b60405180910390fd5b80600c8190555050565b600a5481565b611384612611565b73ffffffffffffffffffffffffffffffffffffffff166113a2611a33565b73ffffffffffffffffffffffffffffffffffffffff16146113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90613fbd565b60405180910390fd5b80600d60036101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611444612611565b73ffffffffffffffffffffffffffffffffffffffff16611462611a33565b73ffffffffffffffffffffffffffffffffffffffff16146114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af90613fbd565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff02191690831515021790555080601090805190602001906114f89291906134ed565b5050565b600d60029054906101000a900460ff1681565b60116020528060005260406000206000915090505481565b60126020528060005260406000206000915054906101000a900460ff1681565b61154f612611565b73ffffffffffffffffffffffffffffffffffffffff1661156d611a33565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90613fbd565b60405180910390fd5b600954816115cf610e22565b6115d9919061412d565b111561161a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161190613f7d565b60405180910390fd5b6116248282612b1f565b5050565b600061163382612678565b9050919050565b600f80546116479061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546116739061429d565b80156116c05780601f10611695576101008083540402835291602001916116c0565b820191906000526020600020905b8154815290600101906020018083116116a357829003601f168201915b505050505081565b6000806116d483612b3d565b141561170c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611765612611565b73ffffffffffffffffffffffffffffffffffffffff16611783611a33565b73ffffffffffffffffffffffffffffffffffffffff16146117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090613fbd565b60405180910390fd5b6117e36000612b47565b565b6117ed612611565b73ffffffffffffffffffffffffffffffffffffffff1661180b611a33565b73ffffffffffffffffffffffffffffffffffffffff1614611861576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185890613fbd565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60011515600d60019054906101000a900460ff161515146118e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118da90613f5d565b60405180910390fd5b60095460016118f0610e22565b6118fa919061412d565b111561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290613f7d565b60405180910390fd5b60001515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613f3d565b60405180910390fd5b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a31336001612b1f565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054611a6c9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611a989061429d565b8015611ae55780601f10611aba57610100808354040283529160200191611ae5565b820191906000526020600020905b815481529060010190602001808311611ac857829003601f168201915b5050505050905090565b611af7612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b5c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611b69612746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c16612746565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5b9190613e85565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060011515600d60009054906101000a900460ff16151514611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf890613edd565b60405180910390fd5b60095481611d0d610e22565b611d17919061412d565b1115611d58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4f90613f7d565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611da73382612b1f565b50565b611db5848484612757565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1757611de084848484612c0d565b611e16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea490613ffd565b60405180910390fd5b611eb681612d6d565b50565b6060611ec482612619565b611efa576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515600d60029054906101000a900460ff1615151415611fa857600f8054611f239061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4f9061429d565b8015611f9c5780601f10611f7157610100808354040283529160200191611f9c565b820191906000526020600020905b815481529060010190602001808311611f7f57829003601f168201915b50505050509050612002565b6000611fb2612d7b565b9050600081511415611fd35760405180602001604052806000815250611ffe565b80611fdd84612e0d565b604051602001611fee929190613dda565b6040516020818303038152906040525b9150505b919050565b60095481565b612015612611565b73ffffffffffffffffffffffffffffffffffffffff16612033611a33565b73ffffffffffffffffffffffffffffffffffffffff1614612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613fbd565b60405180910390fd5b80600e8190555050565b33828260001515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514801561214557506121446120fd84612e67565b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612e97565b5b612184576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217b90613f9d565b60405180910390fd5b60011515600d60009054906101000a900460ff161515146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d19061401d565b60405180910390fd5b60095460016121e7610e22565b6121f1919061412d565b1115612232576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222990613f7d565b60405180910390fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612295336001612b1f565b5050505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b61233e612611565b73ffffffffffffffffffffffffffffffffffffffff1661235c611a33565b73ffffffffffffffffffffffffffffffffffffffff16146123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613fbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990613f1d565b60405180910390fd5b61242b81612b47565b50565b6010805461243b9061429d565b80601f01602080910402602001604051908101604052809291908181526020018280546124679061429d565b80156124b45780601f10612489576101008083540402835291602001916124b4565b820191906000526020600020905b81548152906001019060200180831161249757829003601f168201915b505050505081565b600d60039054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6124ea612611565b73ffffffffffffffffffffffffffffffffffffffff16612508611a33565b73ffffffffffffffffffffffffffffffffffffffff161461255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590613fbd565b60405180910390fd5b80600b8190555050565b600d60009054906101000a900460ff1681565b612583612611565b73ffffffffffffffffffffffffffffffffffffffff166125a1611a33565b73ffffffffffffffffffffffffffffffffffffffff16146125f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ee90613fbd565b60405180910390fd5b80600f908051906020019061260d9291906134ed565b5050565b600033905090565b60008161262461274e565b11158015612633575060005482105b8015612671575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b6000808290508061268761274e565b1161270f5760005481101561270e5760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561270c575b60008114156127025760046000836001900393508381526020019081526020016000205490506126d7565b8092505050612741565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b60006001905090565b600061276282612678565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146127c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612822612746565b73ffffffffffffffffffffffffffffffffffffffff16148061285157506128508661284b612746565b61229c565b5b8061288e575061285f612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806128c7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006128d286612b3d565b141561290a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129178686866001612eae565b600061292283612b3d565b1461295e576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612a2587612b3d565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612aaf576000600185019050600060046000838152602001908152602001600020541415612aad576000548114612aac578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b178686866001612eb4565b505050505050565b612b39828260405180602001604052806000815250612eba565b5050565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612c33612746565b8786866040518563ffffffff1660e01b8152600401612c559493929190613e39565b602060405180830381600087803b158015612c6f57600080fd5b505af1925050508015612ca057506040513d601f19601f82011682018060405250810190612c9d9190613a6f565b60015b612d1a573d8060008114612cd0576040519150601f19603f3d011682016040523d82523d6000602084013e612cd5565b606091505b50600081511415612d12576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b612d78816000612f57565b50565b606060108054612d8a9061429d565b80601f0160208091040260200160405190810160405280929190818152602001828054612db69061429d565b8015612e035780601f10612dd857610100808354040283529160200191612e03565b820191906000526020600020905b815481529060010190602001808311612de657829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612e5357600183039250600a81066030018353600a81049050612e33565b508181036020830392508083525050919050565b600081604051602001612e7a9190613dbf565b604051602081830303815290604052805190602001209050919050565b6000612ea682600e5485613271565b905092915050565b50505050565b50505050565b612ec48383613288565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612f5257600080549050600083820390505b612f046000868380600101945086612c0d565b612f3a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612ef1578160005414612f4f57600080fd5b50505b505050565b6000612f6283612678565b9050600081905060006006600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050831561306f5760008273ffffffffffffffffffffffffffffffffffffffff16612fc8612746565b73ffffffffffffffffffffffffffffffffffffffff161480612ff75750612ff683612ff1612746565b61229c565b5b806130345750613005612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b90508061306d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b61307d826000876001612eae565b600061308882612b3d565b146130c4576006600086815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600160806001901b03600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61316385612b3d565b171717600460008781526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156131ee5760006001860190506000600460008381526020019081526020016000205414156131ec5760005481146131eb578360046000838152602001908152602001600020819055505b5b505b84600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613258826000876001612eb4565b6001600081548092919060010191905055505050505050565b60008261327e8584613431565b1490509392505050565b600080549050600061329984612b3d565b14156132d1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561330c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133196000848385612eae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e161337e600184146134cc565b901b60a042901b61338e85612b3d565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48281106133aa578282016000819055505061342c6000848385612eb4565b505050565b60008082905060005b84518110156134c157600085828151811061347e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190508083116134a05761349983826134d6565b92506134ad565b6134aa81846134d6565b92505b5080806134b990614300565b91505061343a565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b8280546134f99061429d565b90600052602060002090601f01602090048101928261351b5760008555613562565b82601f1061353457805160ff1916838001178555613562565b82800160010185558215613562579182015b82811115613561578251825591602001919060010190613546565b5b50905061356f9190613573565b5090565b5b8082111561358c576000816000905550600101613574565b5090565b60006135a361359e8461407d565b614058565b9050828152602081018484840111156135bb57600080fd5b6135c684828561425b565b509392505050565b60006135e16135dc846140ae565b614058565b9050828152602081018484840111156135f957600080fd5b61360484828561425b565b509392505050565b60008135905061361b81614653565b92915050565b60008083601f84011261363357600080fd5b8235905067ffffffffffffffff81111561364c57600080fd5b60208301915083602082028301111561366457600080fd5b9250929050565b60008083601f84011261367d57600080fd5b8235905067ffffffffffffffff81111561369657600080fd5b6020830191508360208202830111156136ae57600080fd5b9250929050565b60008083601f8401126136c757600080fd5b8235905067ffffffffffffffff8111156136e057600080fd5b6020830191508360208202830111156136f857600080fd5b9250929050565b60008135905061370e8161466a565b92915050565b60008135905061372381614681565b92915050565b60008135905061373881614698565b92915050565b60008151905061374d81614698565b92915050565b600082601f83011261376457600080fd5b8135613774848260208601613590565b91505092915050565b600082601f83011261378e57600080fd5b813561379e8482602086016135ce565b91505092915050565b6000813590506137b6816146af565b92915050565b6000602082840312156137ce57600080fd5b60006137dc8482850161360c565b91505092915050565b600080604083850312156137f857600080fd5b60006138068582860161360c565b92505060206138178582860161360c565b9150509250929050565b60008060006060848603121561383657600080fd5b60006138448682870161360c565b93505060206138558682870161360c565b9250506040613866868287016137a7565b9150509250925092565b6000806000806080858703121561388657600080fd5b60006138948782880161360c565b94505060206138a58782880161360c565b93505060406138b6878288016137a7565b925050606085013567ffffffffffffffff8111156138d357600080fd5b6138df87828801613753565b91505092959194509250565b600080604083850312156138fe57600080fd5b600061390c8582860161360c565b925050602061391d858286016136ff565b9150509250929050565b6000806040838503121561393a57600080fd5b60006139488582860161360c565b9250506020613959858286016137a7565b9150509250929050565b6000806000806040858703121561397957600080fd5b600085013567ffffffffffffffff81111561399357600080fd5b61399f87828801613621565b9450945050602085013567ffffffffffffffff8111156139be57600080fd5b6139ca878288016136b5565b925092505092959194509250565b600080602083850312156139eb57600080fd5b600083013567ffffffffffffffff811115613a0557600080fd5b613a118582860161366b565b92509250509250929050565b600060208284031215613a2f57600080fd5b6000613a3d84828501613714565b91505092915050565b600060208284031215613a5857600080fd5b6000613a6684828501613729565b91505092915050565b600060208284031215613a8157600080fd5b6000613a8f8482850161373e565b91505092915050565b600060208284031215613aaa57600080fd5b600082013567ffffffffffffffff811115613ac457600080fd5b613ad08482850161377d565b91505092915050565b600060208284031215613aeb57600080fd5b6000613af9848285016137a7565b91505092915050565b613b0b816141dd565b82525050565b613b22613b1d826141dd565b614349565b82525050565b613b31816141ef565b82525050565b613b40816141fb565b82525050565b6000613b51826140df565b613b5b81856140f5565b9350613b6b81856020860161426a565b613b74816143fa565b840191505092915050565b6000613b8a826140ea565b613b948185614111565b9350613ba481856020860161426a565b613bad816143fa565b840191505092915050565b6000613bc3826140ea565b613bcd8185614122565b9350613bdd81856020860161426a565b80840191505092915050565b6000613bf6601b83614111565b9150613c0182614418565b602082019050919050565b6000613c19601e83614111565b9150613c2482614441565b602082019050919050565b6000613c3c602683614111565b9150613c478261446a565b604082019050919050565b6000613c5f601783614111565b9150613c6a826144b9565b602082019050919050565b6000613c82601983614111565b9150613c8d826144e2565b602082019050919050565b6000613ca5601283614111565b9150613cb08261450b565b602082019050919050565b6000613cc8600583614122565b9150613cd382614534565b600582019050919050565b6000613ceb603c83614111565b9150613cf68261455d565b604082019050919050565b6000613d0e602083614111565b9150613d19826145ac565b602082019050919050565b6000613d31600083614106565b9150613d3c826145d5565b600082019050919050565b6000613d54601583614111565b9150613d5f826145d8565b602082019050919050565b6000613d77600e83614111565b9150613d8282614601565b602082019050919050565b6000613d9a601b83614111565b9150613da58261462a565b602082019050919050565b613db981614251565b82525050565b6000613dcb8284613b11565b60148201915081905092915050565b6000613de68285613bb8565b9150613df28284613bb8565b9150613dfd82613cbb565b91508190509392505050565b6000613e1482613d24565b9150819050919050565b6000602082019050613e336000830184613b02565b92915050565b6000608082019050613e4e6000830187613b02565b613e5b6020830186613b02565b613e686040830185613db0565b8181036060830152613e7a8184613b46565b905095945050505050565b6000602082019050613e9a6000830184613b28565b92915050565b6000602082019050613eb56000830184613b37565b92915050565b60006020820190508181036000830152613ed58184613b7f565b905092915050565b60006020820190508181036000830152613ef681613be9565b9050919050565b60006020820190508181036000830152613f1681613c0c565b9050919050565b60006020820190508181036000830152613f3681613c2f565b9050919050565b60006020820190508181036000830152613f5681613c52565b9050919050565b60006020820190508181036000830152613f7681613c75565b9050919050565b60006020820190508181036000830152613f9681613c98565b9050919050565b60006020820190508181036000830152613fb681613cde565b9050919050565b60006020820190508181036000830152613fd681613d01565b9050919050565b60006020820190508181036000830152613ff681613d47565b9050919050565b6000602082019050818103600083015261401681613d6a565b9050919050565b6000602082019050818103600083015261403681613d8d565b9050919050565b60006020820190506140526000830184613db0565b92915050565b6000614062614073565b905061406e82826142cf565b919050565b6000604051905090565b600067ffffffffffffffff821115614098576140976143cb565b5b6140a1826143fa565b9050602081019050919050565b600067ffffffffffffffff8211156140c9576140c86143cb565b5b6140d2826143fa565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061413882614251565b915061414383614251565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141785761417761436d565b5b828201905092915050565b600061418e82614251565b915061419983614251565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156141d2576141d161436d565b5b828202905092915050565b60006141e882614231565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561428857808201518184015260208101905061426d565b83811115614297576000848401525b50505050565b600060028204905060018216806142b557607f821691505b602082108114156142c9576142c861439c565b5b50919050565b6142d8826143fa565b810181811067ffffffffffffffff821117156142f7576142f66143cb565b5b80604052505050565b600061430b82614251565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561433e5761433d61436d565b5b600182019050919050565b60006143548261435b565b9050919050565b60006143668261440b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f426c6f6220636c61696d696e67206973206e6f74206163746976650000000000600082015250565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206672656520616d6f756e74000000000000000000600082015250565b7f5075626c69632073616c65206973206e6f742061637469766500000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f6f72206861732072656163686564206d6178696d756d206d696e747300000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b7f446f6f6d6c697374206d696e74206973206e6f74206163746976650000000000600082015250565b61465c816141dd565b811461466757600080fd5b50565b614673816141ef565b811461467e57600080fd5b50565b61468a816141fb565b811461469557600080fd5b50565b6146a181614205565b81146146ac57600080fd5b50565b6146b881614251565b81146146c357600080fd5b5056fea264697066735822122059c75922a3736f59f2a8d40d3104dc1b833d9a6e0797dfcc75bcf3b9fbccac6f64736f6c63430008040033

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.