ETH Price: $2,670.27 (+1.25%)

Token

t33bs (T33B)
 

Overview

Max Total Supply

7,500 T33B

Holders

1,557

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 T33B
0x1dcfb8f0eda9c8c29ac299580187fa7567d76777
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
t33bs

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.8.4;

import './openzeppelin/Ownable.sol';
import './openzeppelin/ERC721A.sol';


/*
  $$\      $$$$$$\   $$$$$$\  $$\                 
  $$ |    $$ ___$$\ $$ ___$$\ $$ |                
$$$$$$\   \_/   $$ |\_/   $$ |$$$$$$$\   $$$$$$$\ 
\_$$  _|    $$$$$ /   $$$$$ / $$  __$$\ $$  _____|
  $$ |      \___$$\   \___$$\ $$ |  $$ |\$$$$$$\  
  $$ |$$\ $$\   $$ |$$\   $$ |$$ |  $$ | \____$$\ 
  \$$$$  |\$$$$$$  |\$$$$$$  |$$$$$$$  |$$$$$$$  |
   \____/  \______/  \______/ \_______/ \_______/ 
*/                                               
                                                  
                                                  
contract t33bs is ERC721A, Ownable {

    uint256 public maxSupply = 7500;
    uint256 public maxFree = 2;
    uint256 public maxPerTxn = 20;
    uint256 public cost = 0.0001 ether;

    address public y33ts;

    bool public mintLive = false;

    string public URI = "ipfs/Qmb5f9Wbj5WNrGG19e1jeoEHgGnqQJn4AhDiG7o8ot9nGv";

    mapping(address => bool) public freeMinted;

    constructor() ERC721A("t33bs", "T33B") {}

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        return URI;
    }

    function mintFree() public {
        require(mintLive == true, "Minting is not active");
        require(totalSupply() + 2 <= maxSupply, "Exceeds max supply");
        require(freeMinted[msg.sender] == false, "Exceeds max free amount");

        freeMinted[msg.sender] = true;
        _safeMint(msg.sender, 2);
    }

    function mintPaid(uint256 _mintAmount) public payable {
        require(mintLive == true, "Minting 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);
    }

    function devMint(address _to, uint256 _amount) public onlyOwner {
        require(totalSupply() + _amount <= maxSupply, "Exceeds max supply");

        _safeMint(_to, _amount);
    }

    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 setBaseURI(string memory _newURI) public onlyOwner {
		URI = _newURI;
	}

    function flipMinting() public onlyOwner {
		mintLive = !mintLive;
	}

    function y33t(uint256 _tokenId) external {
        require(msg.sender == y33ts, "Not authorized");

        _burn(_tokenId);
    }
}

File 2 of 4 : 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 4 : 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 4 : 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":[],"name":"URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[],"name":"flipMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMinted","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":[],"name":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxTxn","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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"y33t","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"y33ts","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052611d4c6009556002600a556014600b55655af3107a4000600c556000600d60146101000a81548160ff0219169083151502179055506040518060600160405280603381526020016200370760339139600e90805190602001906200006a92919062000228565b503480156200007857600080fd5b506040518060400160405280600581526020017f74333362730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f54333342000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fd92919062000228565b5080600390805190602001906200011692919062000228565b50620001276200015560201b60201c565b60008190555050506200014f620001436200015a60201b60201c565b6200016260201b60201c565b6200033d565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023690620002d8565b90600052602060002090601f0160209004810192826200025a5760008555620002a6565b82601f106200027557805160ff1916838001178555620002a6565b82800160010185558215620002a6579182015b82811115620002a557825182559160200191906001019062000288565b5b509050620002b59190620002b9565b5090565b5b80821115620002d4576000816000905550600101620002ba565b5090565b60006002820490506001821680620002f157607f821691505b602082108114156200030857620003076200030e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6133ba806200034d6000396000f3fe6080604052600436106101f95760003560e01c8063627804af1161010d578063a22cb465116100a0578063e8656fcc1161006f578063e8656fcc146106cb578063e985e9c5146106f6578063edcac4f914610733578063f2fde38b1461075e578063fc588c0414610787576101f9565b8063a22cb46514610611578063b88d4fde1461063a578063c87b56dd14610663578063d5abeb01146106a0576101f9565b80638ab53447116100dc5780638ab534471461057b5780638da5cb5b1461059257806395d89b41146105bd57806396574d1b146105e8576101f9565b8063627804af146104c15780636352211e146104ea57806370a0823114610527578063715018a614610564576101f9565b806326c7f77c116101905780633ccfd60b1161015f5780633ccfd60b1461041157806342842e0e1461041b57806344a0d68a14610444578063485a68a31461046d57806355f804b314610498576101f9565b806326c7f77c146103765780632deaa11614610392578063389fcf06146103a95780633cb51994146103e6576101f9565b80631141d7de116101cc5780631141d7de146102cc57806313faede6146102f757806318160ddd1461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a1c565b6107b0565b6040516102329190612d2e565b60405180910390f35b34801561024757600080fd5b50610250610842565b60405161025d9190612d49565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612aaf565b6108d4565b60405161029a9190612cc7565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906129e0565b610950565b005b3480156102d857600080fd5b506102e1610a91565b6040516102ee9190612d49565b60405180910390f35b34801561030357600080fd5b5061030c610b1f565b6040516103199190612e6b565b60405180910390f35b34801561032e57600080fd5b50610337610b25565b6040516103449190612e6b565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906128da565b610b3c565b005b610390600480360381019061038b9190612aaf565b610b4c565b005b34801561039e57600080fd5b506103a7610c9b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612875565b610d43565b6040516103dd9190612d2e565b60405180910390f35b3480156103f257600080fd5b506103fb610d63565b6040516104089190612e6b565b60405180910390f35b610419610d69565b005b34801561042757600080fd5b50610442600480360381019061043d91906128da565b610e5e565b005b34801561045057600080fd5b5061046b60048036038101906104669190612aaf565b610e7e565b005b34801561047957600080fd5b50610482610f04565b60405161048f9190612e6b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612a6e565b610f0a565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906129e0565b610fa0565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612aaf565b611081565b60405161051e9190612cc7565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612875565b611093565b60405161055b9190612e6b565b60405180910390f35b34801561057057600080fd5b50610579611128565b005b34801561058757600080fd5b506105906111b0565b005b34801561059e57600080fd5b506105a7611356565b6040516105b49190612cc7565b60405180910390f35b3480156105c957600080fd5b506105d2611380565b6040516105df9190612d49565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612aaf565b611412565b005b34801561061d57600080fd5b50610638600480360381019061063391906129a4565b6114ae565b005b34801561064657600080fd5b50610661600480360381019061065c9190612929565b611626565b005b34801561066f57600080fd5b5061068a60048036038101906106859190612aaf565b611699565b6040516106979190612d49565b60405180910390f35b3480156106ac57600080fd5b506106b561176c565b6040516106c29190612e6b565b60405180910390f35b3480156106d757600080fd5b506106e0611772565b6040516106ed9190612d2e565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061289e565b611785565b60405161072a9190612d2e565b60405180910390f35b34801561073f57600080fd5b50610748611819565b6040516107559190612cc7565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190612875565b61183f565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612aaf565b611937565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610851906130b6565b80601f016020809104026020016040519081016040528092919081815260200182805461087d906130b6565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b5050505050905090565b60006108df826119bd565b610915576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82611a1c565b90508073ffffffffffffffffffffffffffffffffffffffff1661097c611aea565b73ffffffffffffffffffffffffffffffffffffffff16146109df576109a8816109a3611aea565b611785565b6109de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e8054610a9e906130b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca906130b6565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b505050505081565b600c5481565b6000610b2f611af2565b6001546000540303905090565b610b47838383611af7565b505050565b60011515600d60149054906101000a900460ff16151514610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612e0b565b60405180910390fd5b60095481610bae610b25565b610bb89190612f50565b1115610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090612dcb565b60405180910390fd5b600b54811115610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590612d6b565b60405180910390fd5b600c5481610c4c9190612fa6565b341015610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612e2b565b60405180910390fd5b610c983382611ebf565b50565b610ca3611edd565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611356565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612deb565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b610d71611edd565b73ffffffffffffffffffffffffffffffffffffffff16610d8f611356565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612deb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e0b90612cb2565b60006040518083038185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610e5b57600080fd5b50565b610e7983838360405180602001604052806000815250611626565b505050565b610e86611edd565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611356565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612deb565b60405180910390fd5b80600c8190555050565b600a5481565b610f12611edd565b73ffffffffffffffffffffffffffffffffffffffff16610f30611356565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612deb565b60405180910390fd5b80600e9080519060200190610f9c929190612699565b5050565b610fa8611edd565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611356565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612deb565b60405180910390fd5b60095481611028610b25565b6110329190612f50565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612dcb565b60405180910390fd5b61107d8282611ebf565b5050565b600061108c82611a1c565b9050919050565b60008061109f83611ee5565b14156110d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611130611edd565b73ffffffffffffffffffffffffffffffffffffffff1661114e611356565b73ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612deb565b60405180910390fd5b6111ae6000611eef565b565b60011515600d60149054906101000a900460ff16151514611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90612e0b565b60405180910390fd5b6009546002611213610b25565b61121d9190612f50565b111561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590612dcb565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612dab565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611354336002611ebf565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138f906130b6565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906130b6565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990612e4b565b60405180910390fd5b6114ab81611fb5565b50565b6114b6611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611528611aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d5611aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161a9190612d2e565b60405180910390a35050565b611631848484611af7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116935761165c84848484611fc3565b611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116a4826119bd565b6116da576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e80546116e7906130b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611713906130b6565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b50505050509050919050565b60095481565b600d60149054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611847611edd565b73ffffffffffffffffffffffffffffffffffffffff16611865611356565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290612deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290612d8b565b60405180910390fd5b61193481611eef565b50565b61193f611edd565b73ffffffffffffffffffffffffffffffffffffffff1661195d611356565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612deb565b60405180910390fd5b80600b8190555050565b6000816119c8611af2565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a2b611af2565b11611ab357600054811015611ab25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ab0575b6000811415611aa6576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b0282611a1c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611bc2611aea565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf086611beb611aea565b611785565b5b80611c2e5750611bff611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611c67576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c7286611ee5565b1415611caa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb78686866001612123565b6000611cc283611ee5565b14611cfe576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611dc587611ee5565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611e4f576000600185019050600060046000838152602001908152602001600020541415611e4d576000548114611e4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb78686866001612129565b505050505050565b611ed982826040518060200160405280600081525061212f565b5050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc08160006121cc565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe9611aea565b8786866040518563ffffffff1660e01b815260040161200b9493929190612ce2565b602060405180830381600087803b15801561202557600080fd5b505af192505050801561205657506040513d601f19601f820116820180604052508101906120539190612a45565b60015b6120d0573d8060008114612086576040519150601f19603f3d011682016040523d82523d6000602084013e61208b565b606091505b506000815114156120c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b61213983836124e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c757600080549050600083820390505b6121796000868380600101945086611fc3565b6121af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121665781600054146121c457600080fd5b50505b505050565b60006121d783611a1c565b9050600081905060006006600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083156122e45760008273ffffffffffffffffffffffffffffffffffffffff1661223d611aea565b73ffffffffffffffffffffffffffffffffffffffff16148061226c575061226b83612266611aea565b611785565b5b806122a9575061227a611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806122e2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6122f2826000876001612123565b60006122fd82611ee5565b14612339576006600086815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600160806001901b03600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b6123d885611ee5565b171717600460008781526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612463576000600186019050600060046000838152602001908152602001600020541415612461576000548114612460578360046000838152602001908152602001600020819055505b5b505b84600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cd826000876001612129565b6001600081548092919060010191905055505050505050565b60008054905060006124f784611ee5565b141561252f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561256a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125776000848385612123565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125dc6001841461268f565b901b60a042901b6125ec85611ee5565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612608578282016000819055505061268a6000848385612129565b505050565b6000819050919050565b8280546126a5906130b6565b90600052602060002090601f0160209004810192826126c7576000855561270e565b82601f106126e057805160ff191683800117855561270e565b8280016001018555821561270e579182015b8281111561270d5782518255916020019190600101906126f2565b5b50905061271b919061271f565b5090565b5b80821115612738576000816000905550600101612720565b5090565b600061274f61274a84612eab565b612e86565b90508281526020810184848401111561276757600080fd5b612772848285613074565b509392505050565b600061278d61278884612edc565b612e86565b9050828152602081018484840111156127a557600080fd5b6127b0848285613074565b509392505050565b6000813590506127c781613328565b92915050565b6000813590506127dc8161333f565b92915050565b6000813590506127f181613356565b92915050565b60008151905061280681613356565b92915050565b600082601f83011261281d57600080fd5b813561282d84826020860161273c565b91505092915050565b600082601f83011261284757600080fd5b813561285784826020860161277a565b91505092915050565b60008135905061286f8161336d565b92915050565b60006020828403121561288757600080fd5b6000612895848285016127b8565b91505092915050565b600080604083850312156128b157600080fd5b60006128bf858286016127b8565b92505060206128d0858286016127b8565b9150509250929050565b6000806000606084860312156128ef57600080fd5b60006128fd868287016127b8565b935050602061290e868287016127b8565b925050604061291f86828701612860565b9150509250925092565b6000806000806080858703121561293f57600080fd5b600061294d878288016127b8565b945050602061295e878288016127b8565b935050604061296f87828801612860565b925050606085013567ffffffffffffffff81111561298c57600080fd5b6129988782880161280c565b91505092959194509250565b600080604083850312156129b757600080fd5b60006129c5858286016127b8565b92505060206129d6858286016127cd565b9150509250929050565b600080604083850312156129f357600080fd5b6000612a01858286016127b8565b9250506020612a1285828601612860565b9150509250929050565b600060208284031215612a2e57600080fd5b6000612a3c848285016127e2565b91505092915050565b600060208284031215612a5757600080fd5b6000612a65848285016127f7565b91505092915050565b600060208284031215612a8057600080fd5b600082013567ffffffffffffffff811115612a9a57600080fd5b612aa684828501612836565b91505092915050565b600060208284031215612ac157600080fd5b6000612acf84828501612860565b91505092915050565b612ae181613000565b82525050565b612af081613012565b82525050565b6000612b0182612f0d565b612b0b8185612f23565b9350612b1b818560208601613083565b612b24816131a6565b840191505092915050565b6000612b3a82612f18565b612b448185612f3f565b9350612b54818560208601613083565b612b5d816131a6565b840191505092915050565b6000612b75601e83612f3f565b9150612b80826131b7565b602082019050919050565b6000612b98602683612f3f565b9150612ba3826131e0565b604082019050919050565b6000612bbb601783612f3f565b9150612bc68261322f565b602082019050919050565b6000612bde601283612f3f565b9150612be982613258565b602082019050919050565b6000612c01602083612f3f565b9150612c0c82613281565b602082019050919050565b6000612c24601583612f3f565b9150612c2f826132aa565b602082019050919050565b6000612c47600083612f34565b9150612c52826132d3565b600082019050919050565b6000612c6a601583612f3f565b9150612c75826132d6565b602082019050919050565b6000612c8d600e83612f3f565b9150612c98826132ff565b602082019050919050565b612cac8161306a565b82525050565b6000612cbd82612c3a565b9150819050919050565b6000602082019050612cdc6000830184612ad8565b92915050565b6000608082019050612cf76000830187612ad8565b612d046020830186612ad8565b612d116040830185612ca3565b8181036060830152612d238184612af6565b905095945050505050565b6000602082019050612d436000830184612ae7565b92915050565b60006020820190508181036000830152612d638184612b2f565b905092915050565b60006020820190508181036000830152612d8481612b68565b9050919050565b60006020820190508181036000830152612da481612b8b565b9050919050565b60006020820190508181036000830152612dc481612bae565b9050919050565b60006020820190508181036000830152612de481612bd1565b9050919050565b60006020820190508181036000830152612e0481612bf4565b9050919050565b60006020820190508181036000830152612e2481612c17565b9050919050565b60006020820190508181036000830152612e4481612c5d565b9050919050565b60006020820190508181036000830152612e6481612c80565b9050919050565b6000602082019050612e806000830184612ca3565b92915050565b6000612e90612ea1565b9050612e9c82826130e8565b919050565b6000604051905090565b600067ffffffffffffffff821115612ec657612ec5613177565b5b612ecf826131a6565b9050602081019050919050565b600067ffffffffffffffff821115612ef757612ef6613177565b5b612f00826131a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000612f5b8261306a565b9150612f668361306a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9b57612f9a613119565b5b828201905092915050565b6000612fb18261306a565b9150612fbc8361306a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff557612ff4613119565b5b828202905092915050565b600061300b8261304a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130a1578082015181840152602081019050613086565b838111156130b0576000848401525b50505050565b600060028204905060018216806130ce57607f821691505b602082108114156130e2576130e1613148565b5b50919050565b6130f1826131a6565b810181811067ffffffffffffffff821117156131105761310f613177565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206672656520616d6f756e74000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b61333181613000565b811461333c57600080fd5b50565b61334881613012565b811461335357600080fd5b50565b61335f8161301e565b811461336a57600080fd5b50565b6133768161306a565b811461338157600080fd5b5056fea2646970667358221220efb5d3a61f1dafc3c54d3756465c6d0b863771b41f5f1b7274eeb6cc5294345864736f6c63430008040033697066732f516d6235663957626a35574e724747313965316a656f454867476e71514a6e344168446947376f386f74396e4776

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063627804af1161010d578063a22cb465116100a0578063e8656fcc1161006f578063e8656fcc146106cb578063e985e9c5146106f6578063edcac4f914610733578063f2fde38b1461075e578063fc588c0414610787576101f9565b8063a22cb46514610611578063b88d4fde1461063a578063c87b56dd14610663578063d5abeb01146106a0576101f9565b80638ab53447116100dc5780638ab534471461057b5780638da5cb5b1461059257806395d89b41146105bd57806396574d1b146105e8576101f9565b8063627804af146104c15780636352211e146104ea57806370a0823114610527578063715018a614610564576101f9565b806326c7f77c116101905780633ccfd60b1161015f5780633ccfd60b1461041157806342842e0e1461041b57806344a0d68a14610444578063485a68a31461046d57806355f804b314610498576101f9565b806326c7f77c146103765780632deaa11614610392578063389fcf06146103a95780633cb51994146103e6576101f9565b80631141d7de116101cc5780631141d7de146102cc57806313faede6146102f757806318160ddd1461032257806323b872dd1461034d576101f9565b806301ffc9a7146101fe57806306fdde031461023b578063081812fc14610266578063095ea7b3146102a3575b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612a1c565b6107b0565b6040516102329190612d2e565b60405180910390f35b34801561024757600080fd5b50610250610842565b60405161025d9190612d49565b60405180910390f35b34801561027257600080fd5b5061028d60048036038101906102889190612aaf565b6108d4565b60405161029a9190612cc7565b60405180910390f35b3480156102af57600080fd5b506102ca60048036038101906102c591906129e0565b610950565b005b3480156102d857600080fd5b506102e1610a91565b6040516102ee9190612d49565b60405180910390f35b34801561030357600080fd5b5061030c610b1f565b6040516103199190612e6b565b60405180910390f35b34801561032e57600080fd5b50610337610b25565b6040516103449190612e6b565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906128da565b610b3c565b005b610390600480360381019061038b9190612aaf565b610b4c565b005b34801561039e57600080fd5b506103a7610c9b565b005b3480156103b557600080fd5b506103d060048036038101906103cb9190612875565b610d43565b6040516103dd9190612d2e565b60405180910390f35b3480156103f257600080fd5b506103fb610d63565b6040516104089190612e6b565b60405180910390f35b610419610d69565b005b34801561042757600080fd5b50610442600480360381019061043d91906128da565b610e5e565b005b34801561045057600080fd5b5061046b60048036038101906104669190612aaf565b610e7e565b005b34801561047957600080fd5b50610482610f04565b60405161048f9190612e6b565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190612a6e565b610f0a565b005b3480156104cd57600080fd5b506104e860048036038101906104e391906129e0565b610fa0565b005b3480156104f657600080fd5b50610511600480360381019061050c9190612aaf565b611081565b60405161051e9190612cc7565b60405180910390f35b34801561053357600080fd5b5061054e60048036038101906105499190612875565b611093565b60405161055b9190612e6b565b60405180910390f35b34801561057057600080fd5b50610579611128565b005b34801561058757600080fd5b506105906111b0565b005b34801561059e57600080fd5b506105a7611356565b6040516105b49190612cc7565b60405180910390f35b3480156105c957600080fd5b506105d2611380565b6040516105df9190612d49565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190612aaf565b611412565b005b34801561061d57600080fd5b50610638600480360381019061063391906129a4565b6114ae565b005b34801561064657600080fd5b50610661600480360381019061065c9190612929565b611626565b005b34801561066f57600080fd5b5061068a60048036038101906106859190612aaf565b611699565b6040516106979190612d49565b60405180910390f35b3480156106ac57600080fd5b506106b561176c565b6040516106c29190612e6b565b60405180910390f35b3480156106d757600080fd5b506106e0611772565b6040516106ed9190612d2e565b60405180910390f35b34801561070257600080fd5b5061071d6004803603810190610718919061289e565b611785565b60405161072a9190612d2e565b60405180910390f35b34801561073f57600080fd5b50610748611819565b6040516107559190612cc7565b60405180910390f35b34801561076a57600080fd5b5061078560048036038101906107809190612875565b61183f565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612aaf565b611937565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061080b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061083b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610851906130b6565b80601f016020809104026020016040519081016040528092919081815260200182805461087d906130b6565b80156108ca5780601f1061089f576101008083540402835291602001916108ca565b820191906000526020600020905b8154815290600101906020018083116108ad57829003601f168201915b5050505050905090565b60006108df826119bd565b610915576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061095b82611a1c565b90508073ffffffffffffffffffffffffffffffffffffffff1661097c611aea565b73ffffffffffffffffffffffffffffffffffffffff16146109df576109a8816109a3611aea565b611785565b6109de576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600e8054610a9e906130b6565b80601f0160208091040260200160405190810160405280929190818152602001828054610aca906130b6565b8015610b175780601f10610aec57610100808354040283529160200191610b17565b820191906000526020600020905b815481529060010190602001808311610afa57829003601f168201915b505050505081565b600c5481565b6000610b2f611af2565b6001546000540303905090565b610b47838383611af7565b505050565b60011515600d60149054906101000a900460ff16151514610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990612e0b565b60405180910390fd5b60095481610bae610b25565b610bb89190612f50565b1115610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090612dcb565b60405180910390fd5b600b54811115610c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3590612d6b565b60405180910390fd5b600c5481610c4c9190612fa6565b341015610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590612e2b565b60405180910390fd5b610c983382611ebf565b50565b610ca3611edd565b73ffffffffffffffffffffffffffffffffffffffff16610cc1611356565b73ffffffffffffffffffffffffffffffffffffffff1614610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90612deb565b60405180910390fd5b600d60149054906101000a900460ff1615600d60146101000a81548160ff021916908315150217905550565b600f6020528060005260406000206000915054906101000a900460ff1681565b600b5481565b610d71611edd565b73ffffffffffffffffffffffffffffffffffffffff16610d8f611356565b73ffffffffffffffffffffffffffffffffffffffff1614610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc90612deb565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e0b90612cb2565b60006040518083038185875af1925050503d8060008114610e48576040519150601f19603f3d011682016040523d82523d6000602084013e610e4d565b606091505b5050905080610e5b57600080fd5b50565b610e7983838360405180602001604052806000815250611626565b505050565b610e86611edd565b73ffffffffffffffffffffffffffffffffffffffff16610ea4611356565b73ffffffffffffffffffffffffffffffffffffffff1614610efa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef190612deb565b60405180910390fd5b80600c8190555050565b600a5481565b610f12611edd565b73ffffffffffffffffffffffffffffffffffffffff16610f30611356565b73ffffffffffffffffffffffffffffffffffffffff1614610f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7d90612deb565b60405180910390fd5b80600e9080519060200190610f9c929190612699565b5050565b610fa8611edd565b73ffffffffffffffffffffffffffffffffffffffff16610fc6611356565b73ffffffffffffffffffffffffffffffffffffffff161461101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612deb565b60405180910390fd5b60095481611028610b25565b6110329190612f50565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90612dcb565b60405180910390fd5b61107d8282611ebf565b5050565b600061108c82611a1c565b9050919050565b60008061109f83611ee5565b14156110d7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611130611edd565b73ffffffffffffffffffffffffffffffffffffffff1661114e611356565b73ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b90612deb565b60405180910390fd5b6111ae6000611eef565b565b60011515600d60149054906101000a900460ff16151514611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90612e0b565b60405180910390fd5b6009546002611213610b25565b61121d9190612f50565b111561125e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125590612dcb565b60405180910390fd5b60001515600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612dab565b60405180910390fd5b6001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611354336002611ebf565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461138f906130b6565b80601f01602080910402602001604051908101604052809291908181526020018280546113bb906130b6565b80156114085780601f106113dd57610100808354040283529160200191611408565b820191906000526020600020905b8154815290600101906020018083116113eb57829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149990612e4b565b60405180910390fd5b6114ab81611fb5565b50565b6114b6611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561151b576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611528611aea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115d5611aea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161161a9190612d2e565b60405180910390a35050565b611631848484611af7565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116935761165c84848484611fc3565b611692576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116a4826119bd565b6116da576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600e80546116e7906130b6565b80601f0160208091040260200160405190810160405280929190818152602001828054611713906130b6565b80156117605780601f1061173557610100808354040283529160200191611760565b820191906000526020600020905b81548152906001019060200180831161174357829003601f168201915b50505050509050919050565b60095481565b600d60149054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611847611edd565b73ffffffffffffffffffffffffffffffffffffffff16611865611356565b73ffffffffffffffffffffffffffffffffffffffff16146118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290612deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561192b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192290612d8b565b60405180910390fd5b61193481611eef565b50565b61193f611edd565b73ffffffffffffffffffffffffffffffffffffffff1661195d611356565b73ffffffffffffffffffffffffffffffffffffffff16146119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90612deb565b60405180910390fd5b80600b8190555050565b6000816119c8611af2565b111580156119d7575060005482105b8015611a15575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080611a2b611af2565b11611ab357600054811015611ab25760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ab0575b6000811415611aa6576004600083600190039350838152602001908152602001600020549050611a7b565b8092505050611ae5565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000611b0282611a1c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b69576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006006600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16611bc2611aea565b73ffffffffffffffffffffffffffffffffffffffff161480611bf15750611bf086611beb611aea565b611785565b5b80611c2e5750611bff611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611c67576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611c7286611ee5565b1415611caa576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cb78686866001612123565b6000611cc283611ee5565b14611cfe576006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b611dc587611ee5565b1717600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611e4f576000600185019050600060046000838152602001908152602001600020541415611e4d576000548114611e4c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611eb78686866001612129565b505050505050565b611ed982826040518060200160405280600081525061212f565b5050565b600033905090565b6000819050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611fc08160006121cc565b50565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fe9611aea565b8786866040518563ffffffff1660e01b815260040161200b9493929190612ce2565b602060405180830381600087803b15801561202557600080fd5b505af192505050801561205657506040513d601f19601f820116820180604052508101906120539190612a45565b60015b6120d0573d8060008114612086576040519150601f19603f3d011682016040523d82523d6000602084013e61208b565b606091505b506000815114156120c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b50505050565b61213983836124e6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121c757600080549050600083820390505b6121796000868380600101945086611fc3565b6121af576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106121665781600054146121c457600080fd5b50505b505050565b60006121d783611a1c565b9050600081905060006006600086815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905083156122e45760008273ffffffffffffffffffffffffffffffffffffffff1661223d611aea565b73ffffffffffffffffffffffffffffffffffffffff16148061226c575061226b83612266611aea565b611785565b5b806122a9575061227a611aea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806122e2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b6122f2826000876001612123565b60006122fd82611ee5565b14612339576006600086815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600160806001901b03600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b6123d885611ee5565b171717600460008781526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415612463576000600186019050600060046000838152602001908152602001600020541415612461576000548114612460578360046000838152602001908152602001600020819055505b5b505b84600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124cd826000876001612129565b6001600081548092919060010191905055505050505050565b60008054905060006124f784611ee5565b141561252f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082141561256a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125776000848385612123565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125dc6001841461268f565b901b60a042901b6125ec85611ee5565b1717600460008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612608578282016000819055505061268a6000848385612129565b505050565b6000819050919050565b8280546126a5906130b6565b90600052602060002090601f0160209004810192826126c7576000855561270e565b82601f106126e057805160ff191683800117855561270e565b8280016001018555821561270e579182015b8281111561270d5782518255916020019190600101906126f2565b5b50905061271b919061271f565b5090565b5b80821115612738576000816000905550600101612720565b5090565b600061274f61274a84612eab565b612e86565b90508281526020810184848401111561276757600080fd5b612772848285613074565b509392505050565b600061278d61278884612edc565b612e86565b9050828152602081018484840111156127a557600080fd5b6127b0848285613074565b509392505050565b6000813590506127c781613328565b92915050565b6000813590506127dc8161333f565b92915050565b6000813590506127f181613356565b92915050565b60008151905061280681613356565b92915050565b600082601f83011261281d57600080fd5b813561282d84826020860161273c565b91505092915050565b600082601f83011261284757600080fd5b813561285784826020860161277a565b91505092915050565b60008135905061286f8161336d565b92915050565b60006020828403121561288757600080fd5b6000612895848285016127b8565b91505092915050565b600080604083850312156128b157600080fd5b60006128bf858286016127b8565b92505060206128d0858286016127b8565b9150509250929050565b6000806000606084860312156128ef57600080fd5b60006128fd868287016127b8565b935050602061290e868287016127b8565b925050604061291f86828701612860565b9150509250925092565b6000806000806080858703121561293f57600080fd5b600061294d878288016127b8565b945050602061295e878288016127b8565b935050604061296f87828801612860565b925050606085013567ffffffffffffffff81111561298c57600080fd5b6129988782880161280c565b91505092959194509250565b600080604083850312156129b757600080fd5b60006129c5858286016127b8565b92505060206129d6858286016127cd565b9150509250929050565b600080604083850312156129f357600080fd5b6000612a01858286016127b8565b9250506020612a1285828601612860565b9150509250929050565b600060208284031215612a2e57600080fd5b6000612a3c848285016127e2565b91505092915050565b600060208284031215612a5757600080fd5b6000612a65848285016127f7565b91505092915050565b600060208284031215612a8057600080fd5b600082013567ffffffffffffffff811115612a9a57600080fd5b612aa684828501612836565b91505092915050565b600060208284031215612ac157600080fd5b6000612acf84828501612860565b91505092915050565b612ae181613000565b82525050565b612af081613012565b82525050565b6000612b0182612f0d565b612b0b8185612f23565b9350612b1b818560208601613083565b612b24816131a6565b840191505092915050565b6000612b3a82612f18565b612b448185612f3f565b9350612b54818560208601613083565b612b5d816131a6565b840191505092915050565b6000612b75601e83612f3f565b9150612b80826131b7565b602082019050919050565b6000612b98602683612f3f565b9150612ba3826131e0565b604082019050919050565b6000612bbb601783612f3f565b9150612bc68261322f565b602082019050919050565b6000612bde601283612f3f565b9150612be982613258565b602082019050919050565b6000612c01602083612f3f565b9150612c0c82613281565b602082019050919050565b6000612c24601583612f3f565b9150612c2f826132aa565b602082019050919050565b6000612c47600083612f34565b9150612c52826132d3565b600082019050919050565b6000612c6a601583612f3f565b9150612c75826132d6565b602082019050919050565b6000612c8d600e83612f3f565b9150612c98826132ff565b602082019050919050565b612cac8161306a565b82525050565b6000612cbd82612c3a565b9150819050919050565b6000602082019050612cdc6000830184612ad8565b92915050565b6000608082019050612cf76000830187612ad8565b612d046020830186612ad8565b612d116040830185612ca3565b8181036060830152612d238184612af6565b905095945050505050565b6000602082019050612d436000830184612ae7565b92915050565b60006020820190508181036000830152612d638184612b2f565b905092915050565b60006020820190508181036000830152612d8481612b68565b9050919050565b60006020820190508181036000830152612da481612b8b565b9050919050565b60006020820190508181036000830152612dc481612bae565b9050919050565b60006020820190508181036000830152612de481612bd1565b9050919050565b60006020820190508181036000830152612e0481612bf4565b9050919050565b60006020820190508181036000830152612e2481612c17565b9050919050565b60006020820190508181036000830152612e4481612c5d565b9050919050565b60006020820190508181036000830152612e6481612c80565b9050919050565b6000602082019050612e806000830184612ca3565b92915050565b6000612e90612ea1565b9050612e9c82826130e8565b919050565b6000604051905090565b600067ffffffffffffffff821115612ec657612ec5613177565b5b612ecf826131a6565b9050602081019050919050565b600067ffffffffffffffff821115612ef757612ef6613177565b5b612f00826131a6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000612f5b8261306a565b9150612f668361306a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9b57612f9a613119565b5b828201905092915050565b6000612fb18261306a565b9150612fbc8361306a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ff557612ff4613119565b5b828202905092915050565b600061300b8261304a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130a1578082015181840152602081019050613086565b838111156130b0576000848401525b50505050565b600060028204905060018216806130ce57607f821691505b602082108114156130e2576130e1613148565b5b50919050565b6130f1826131a6565b810181811067ffffffffffffffff821117156131105761310f613177565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f45786365656473206d6178207472616e73616374696f6e20616d6f756e740000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178206672656520616d6f756e74000000000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d696e74696e67206973206e6f74206163746976650000000000000000000000600082015250565b50565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b7f4e6f7420617574686f72697a6564000000000000000000000000000000000000600082015250565b61333181613000565b811461333c57600080fd5b50565b61334881613012565b811461335357600080fd5b50565b61335f8161301e565b811461336a57600080fd5b50565b6133768161306a565b811461338157600080fd5b5056fea2646970667358221220efb5d3a61f1dafc3c54d3756465c6d0b863771b41f5f1b7274eeb6cc5294345864736f6c63430008040033

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.